/**
 * CleanIndex Complete CSS - FIXED BTN-PRIMARY
 * All buttons now use consistent green theme
 */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    --forest-green: #1a3d2e;
    --sage-green: #5a7d6f;
    --leaf-accent: #7aa88b;
    --cream: #f8f7f3;
    --off-white: #fefefe;
    --charcoal: #2d2d2d;
    --soft-gray: #e8e6e1;
    
    /* Aliases */
    --primary: #1a3d2e;
    --primary-color: #1a3d2e;
    --primary-dark: #0f2419;
    --secondary: #5a7d6f;
    --accent: #7aa88b;
    --background: #f8f7f3;
    --bg-light: #f8f7f3;
    --surface: #fefefe;
    --text-dark: #2d2d2d;
    --text-primary: #2d2d2d;
    --text-medium: #5a7d6f;
    --text-secondary: #5a7d6f;
    --text-light: #7aa88b;
    --border-color: #e8e6e1;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 61, 46, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 61, 46, 0.12);
    --shadow-lg: 0 8px 30px rgba(26, 61, 46, 0.15);
    
    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   BUTTONS - CONSOLIDATED & CONSISTENT
   ========================================================================== */

/* Primary Button - Green Background (DEFAULT) */
.btn,
.btn-primary,
.choose-plan-btn,
.blog-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary, #1a3d2e) !important;
    color: white !important;
    border: 2px solid var(--primary, #1a3d2e);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(26, 61, 46, 0.15);
    text-align: center;
}

.btn:hover,
.btn-primary:hover,
.choose-plan-btn:hover,
.blog-search-btn:hover {
    background: var(--secondary, #5a7d6f) !important;
    border-color: var(--secondary, #5a7d6f);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 61, 46, 0.25);
}

/* Large Button */
.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* White Button (For Dark Backgrounds) */
.btn-white {
    background: white !important;
    color: var(--primary, #1a3d2e) !important;
    border: 2px solid white;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary, #1a3d2e) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Secondary Button */
.btn-secondary {
    background: white !important;
    color: var(--primary, #1a3d2e) !important;
    border: 2px solid var(--primary, #1a3d2e);
}

.btn-secondary:hover {
    background: var(--primary, #1a3d2e) !important;
    color: white !important;
}

/* Outline Button */
.btn-outline {
    background: transparent !important;
    color: var(--primary, #1a3d2e) !important;
    border: 2px solid var(--primary, #1a3d2e);
}

.btn-outline:hover {
    background: var(--primary, #1a3d2e) !important;
    color: white !important;
}

/* Login Button */
.btn-login {
    padding: 10px 24px;
    background: var(--forest-green);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--sage-green);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header,
.site-header {
    background: var(--off-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(26, 61, 46, 0.05);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDownHeader {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

nav,
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo,
.site-title {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--forest-green);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.site-title:hover {
    color: var(--accent);
}

.site-branding {
    flex-shrink: 0;
}

.site-branding a {
    display: inline-block;
    text-decoration: none;
}

.site-logo {
    display: block;
    max-height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.site-logo:hover {
    opacity: 0.85;
}

.nav-links,
.main-nav {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a,
.main-nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.main-nav a:hover,
.main-nav a.active,
.main-nav .current-menu-item > a {
    color: var(--forest-green);
}

.site-navigation {
    display: flex;
    align-items: center;
}

.main-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    box-shadow: 0 4px 20px rgba(26, 61, 46, 0.08);
    border-radius: 6px;
    padding: 10px 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
}

.main-nav li {
    position: relative;
    margin: 0;
}

.main-nav li:hover > .sub-menu {
    display: block;
}

.main-nav .sub-menu li {
    padding: 0;
}

.main-nav .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
}

.main-nav .sub-menu a:hover {
    background: rgba(26, 61, 46, 0.05);
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-cta {
    padding: 10px 24px;
    background: var(--primary) !important;
    color: white !important;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.header-cta:hover {
    background: var(--secondary) !important;
    transform: translateY(-2px);
    color: white !important;
    box-shadow: 0 4px 12px rgba(26, 61, 46, 0.2);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122, 168, 139, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 125, 111, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Crimson Text', serif;
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--off-white);
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--forest-green);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--sage-green);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 61, 46, 0.12);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--leaf-accent));
    border-radius: 12px 12px 0 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--cream);
    color: var(--forest-green);
    border-radius: 50%;
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.step h3 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--forest-green);
}

.step p {
    color: var(--sage-green);
    line-height: 1.7;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features {
    padding: 100px 0;
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature {
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 61, 46, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature h3 {
    font-family: 'Crimson Text', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--forest-green);
}

.feature p {
    color: var(--sage-green);
    line-height: 1.7;
}

/* ==========================================================================
   CERTIFICATION LEVELS
   ========================================================================== */
.certification-levels {
    padding: 100px 0;
    background: var(--off-white);
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.level-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--forest-green), var(--leaf-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.level-card:hover::before {
    transform: scaleX(1);
}

.level-card:hover {
    border-color: var(--leaf-accent);
    transform: translateY(-5px);
}

.level-badge {
    display: inline-block;
    padding: 12px 28px;
    background: var(--cream);
    border-radius: 30px;
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.level-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.level-card p {
    color: var(--sage-green);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: white;
    padding: 48px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 20px rgba(26, 61, 46, 0.06);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 32px;
    font-family: 'Crimson Text', serif;
    font-size: 120px;
    color: var(--cream);
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--forest-green), var(--leaf-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.author-info h5 {
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--sage-green);
    margin: 0;
    font-style: normal;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta,
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--sage-green) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2,
.cta-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
}

.cta p,
.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

/* CTA Light Background */
.cta-section.cta-light {
    background: var(--background);
    color: var(--text-primary);
}

.cta-section.cta-light h2 {
    color: var(--primary);
}

.cta-section.cta-light p {
    color: var(--text-secondary);
    opacity: 1;
}

.cta-section.cta-solid {
    background: var(--primary);
}

.cta-section.cta-solid::before,
.cta-section.cta-solid::after {
    display: none;
}

.cta-section.cta-accent {
    background: linear-gradient(135deg, #7aa88b 0%, #5a7d6f 100%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer,
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    /* Base styles */
}

.footer-section h4 {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.7;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-branding {
    max-width: 280px;
}

.footer-logo-wrap {
    margin-bottom: 20px;
}

.footer-logo {
    display: block;
    max-height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 14px;
}

.footer-description p {
    margin-bottom: 12px;
}

.footer-description p:last-child {
    margin-bottom: 0;
}

.footer-text {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li,
.footer-menu li {
    margin-bottom: 12px;
}

.footer-section ul li:last-child,
.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-section ul li a,
.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover,
.footer-menu li a:hover {
    color: var(--leaf-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   FLEXIBLE PAGE BUILDER SECTIONS
   ========================================================================== */

.flexible-page-wrapper {
    /* Main wrapper */
}

/* Hero Section */
.fpb-hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fpb-hero-gradient {
    background: linear-gradient(135deg, #1a3d2e 0%, #5a7d6f 100%);
    color: white;
}

.fpb-hero-primary {
    background: var(--primary);
    color: white;
}

.fpb-hero-white {
    background: #ffffff;
    color: var(--text-primary);
}

.fpb-hero-light {
    background: var(--background);
    color: var(--text-primary);
}

.fpb-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.fpb-hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.fpb-hero-gradient h1,
.fpb-hero-primary h1 {
    color: white;
}

.fpb-hero-subheading {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.fpb-hero .btn {
    margin-top: 16px;
}

/* Text Section */
.fpb-text-section {
    padding: 80px 0;
}

.fpb-text-content {
    margin: 0 auto;
}

.fpb-width-narrow {
    max-width: 700px;
}

.fpb-width-medium {
    max-width: 900px;
}

.fpb-width-wide {
    max-width: 1200px;
}

.fpb-text-content h2 {
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.fpb-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.fpb-content p {
    margin-bottom: 20px;
}

.fpb-content ul,
.fpb-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.fpb-content li {
    margin-bottom: 10px;
}

/* Two Column Section */
.fpb-two-column {
    padding: 80px 0;
    background: var(--surface);
}

.fpb-section-heading {
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 48px;
}

.fpb-two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.fpb-column h3 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.fpb-column .fpb-content {
    font-size: 16px;
}

/* Feature Cards */
.fpb-features {
    padding: 80px 0;
}

.fpb-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.fpb-section-header h2 {
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.fpb-section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.fpb-features-grid {
    display: grid;
    gap: 32px;
}

.fpb-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.fpb-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.fpb-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.fpb-feature-card {
    background: var(--surface);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26, 61, 46, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 61, 46, 0.08);
}

.fpb-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 61, 46, 0.12);
    border-color: var(--accent);
}

.fpb-feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.fpb-feature-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.fpb-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* Image + Text Section */
.fpb-image-text {
    padding: 80px 0;
    background: var(--background);
}

.fpb-image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fpb-image-left {
    direction: rtl;
}

.fpb-image-left > * {
    direction: ltr;
}

.fpb-content-col h2 {
    font-family: 'Crimson Text', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.fpb-image-col img {
    width: 100%;
    border-radius: 12px;
}

/* CTA Section */
.fpb-cta {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fpb-cta-gradient {
    background: linear-gradient(135deg, #1a3d2e 0%, #5a7d6f 100%);
    color: white;
}

.fpb-cta-primary {
    background: var(--primary);
    color: white;
}

.fpb-cta-accent {
    background: var(--accent);
    color: white;
}

.fpb-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.fpb-cta h2 {
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.fpb-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.fpb-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials */
.fpb-testimonials {
    padding: 80px 0;
    background: var(--surface);
}

.fpb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.fpb-testimonial-card {
    background: var(--background);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26, 61, 46, 0.05);
}

.fpb-testimonial-card blockquote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    quotes: """ """ "'" "'";
}

.fpb-testimonial-card blockquote::before {
    content: open-quote;
    font-size: 32px;
    color: var(--accent);
    margin-right: 4px;
}

.fpb-testimonial-author {
    display: flex;
    flex-direction: column;
}

.fpb-testimonial-author strong {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.fpb-testimonial-author span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Spacer */
.fpb-spacer {
    width: 100%;
}

.fpb-spacer-small {
    height: 40px;
}

.fpb-spacer-medium {
    height: 80px;
}

.fpb-spacer-large {
    height: 120px;
}

/* Default Content */
.fpb-default-content {
    padding: 80px 0;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */

.flexible-page-wrapper .fpb-stats {
    padding: 80px 0;
    position: relative;
}

.flexible-page-wrapper .fpb-stats.fpb-stats-white {
    background: var(--off-white);
}

.flexible-page-wrapper .fpb-stats.fpb-stats-light {
    background: var(--cream);
}

.flexible-page-wrapper .fpb-stats.fpb-stats-primary {
    background: var(--forest-green);
    color: var(--off-white);
}

.flexible-page-wrapper .fpb-stats.fpb-stats-dark {
    background: var(--charcoal);
    color: var(--off-white);
}

.flexible-page-wrapper .fpb-stats .fpb-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.flexible-page-wrapper .fpb-stats .fpb-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.flexible-page-wrapper .fpb-stats .fpb-section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.flexible-page-wrapper .fpb-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flexible-page-wrapper .fpb-stat-item {
    padding: 20px;
}

.flexible-page-wrapper .fpb-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--forest-green);
    display: block;
}

.flexible-page-wrapper .fpb-stats-primary .fpb-stat-number,
.flexible-page-wrapper .fpb-stats-dark .fpb-stat-number {
    color: var(--leaf-accent);
}

.flexible-page-wrapper .fpb-stat-suffix {
    font-size: 2.5rem;
    margin-left: 5px;
    display: inline;
}

.flexible-page-wrapper .fpb-stat-label {
    font-size: 1.1rem;
    color: var(--sage-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.flexible-page-wrapper .fpb-stats-primary .fpb-stat-label,
.flexible-page-wrapper .fpb-stats-dark .fpb-stat-label {
    color: var(--cream);
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.flexible-page-wrapper .fpb-team {
    padding: 80px 0;
    background: var(--off-white);
}

.flexible-page-wrapper .fpb-team .fpb-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.flexible-page-wrapper .fpb-team .fpb-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--charcoal);
}

.flexible-page-wrapper .fpb-team .fpb-section-header p {
    font-size: 1.1rem;
    color: var(--sage-green);
}

.flexible-page-wrapper .fpb-team-grid {
    display: grid;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flexible-page-wrapper .fpb-team-grid.fpb-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.flexible-page-wrapper .fpb-team-grid.fpb-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.flexible-page-wrapper .fpb-team-grid.fpb-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.flexible-page-wrapper .fpb-team-member {
    text-align: center;
    background: var(--off-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(26, 61, 46, 0.08);
}

.flexible-page-wrapper .fpb-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 61, 46, 0.15);
}

.flexible-page-wrapper .fpb-member-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--soft-gray);
    position: relative;
}

.flexible-page-wrapper .fpb-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flexible-page-wrapper .fpb-member-info {
    padding: 30px 20px;
}

.flexible-page-wrapper .fpb-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--charcoal);
}

.flexible-page-wrapper .fpb-member-position {
    font-size: 0.95rem;
    color: var(--forest-green);
    font-weight: 600;
    margin: 0 0 15px 0;
}

.flexible-page-wrapper .fpb-member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--sage-green);
    margin: 0 0 20px 0;
}

.flexible-page-wrapper .fpb-member-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.flexible-page-wrapper .fpb-member-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    color: var(--sage-green);
    transition: all 0.3s ease;
    text-decoration: none;
}

.flexible-page-wrapper .fpb-member-link:hover {
    background: var(--forest-green);
    color: var(--off-white);
    transform: translateY(-3px);
}

.flexible-page-wrapper .fpb-member-link svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */

.flexible-page-wrapper .fpb-contact {
    padding: 80px 0;
}

.flexible-page-wrapper .fpb-contact.fpb-contact-white {
    background: var(--off-white);
}

.flexible-page-wrapper .fpb-contact.fpb-contact-light {
    background: var(--cream);
}

.flexible-page-wrapper .fpb-contact.fpb-contact-primary {
    background: var(--forest-green);
    color: var(--off-white);
}

.flexible-page-wrapper .fpb-contact .fpb-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.flexible-page-wrapper .fpb-contact .fpb-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.flexible-page-wrapper .fpb-contact .fpb-section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.flexible-page-wrapper .fpb-contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.flexible-page-wrapper .fpb-contact-wrapper.fpb-layout-full {
    max-width: 100%;
}

.flexible-page-wrapper .fpb-contact-wrapper.fpb-layout-narrow {
    max-width: 600px;
}

.flexible-page-wrapper .fpb-contact-wrapper.fpb-has-sidebar {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.flexible-page-wrapper .fpb-contact-info {
    background: var(--sage-green);
    color: var(--off-white);
    padding: 40px;
    border-radius: 8px;
}

.flexible-page-wrapper .fpb-contact-white .fpb-contact-info {
    background: var(--cream);
    color: var(--charcoal);
}

.flexible-page-wrapper .fpb-contact-light .fpb-contact-info {
    background: var(--off-white);
    color: var(--charcoal);
    box-shadow: 0 2px 10px rgba(26, 61, 46, 0.08);
}

.flexible-page-wrapper .fpb-contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.flexible-page-wrapper .fpb-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.flexible-page-wrapper .fpb-contact-item:last-child {
    margin-bottom: 0;
}

.flexible-page-wrapper .fpb-contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.8;
    width: 20px;
    height: 20px;
}

.flexible-page-wrapper .fpb-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.flexible-page-wrapper .fpb-contact-item a:hover {
    opacity: 0.7;
}

.flexible-page-wrapper .fpb-contact-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(26, 61, 46, 0.08);
}

.flexible-page-wrapper .fpb-contact-primary .fpb-contact-form {
    background: var(--off-white);
}

.flexible-page-wrapper .fpb-contact-form input[type="text"],
.flexible-page-wrapper .fpb-contact-form input[type="email"],
.flexible-page-wrapper .fpb-contact-form input[type="tel"],
.flexible-page-wrapper .fpb-contact-form input[type="url"],
.flexible-page-wrapper .fpb-contact-form textarea,
.flexible-page-wrapper .fpb-contact-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--soft-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    background: var(--off-white);
    color: var(--charcoal);
}

.flexible-page-wrapper .fpb-contact-form input[type="text"]:focus,
.flexible-page-wrapper .fpb-contact-form input[type="email"]:focus,
.flexible-page-wrapper .fpb-contact-form input[type="tel"]:focus,
.flexible-page-wrapper .fpb-contact-form input[type="url"]:focus,
.flexible-page-wrapper .fpb-contact-form textarea:focus,
.flexible-page-wrapper .fpb-contact-form select:focus {
    outline: none;
    border-color: var(--leaf-accent);
}

.flexible-page-wrapper .fpb-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.flexible-page-wrapper .fpb-contact-form input[type="submit"],
.flexible-page-wrapper .fpb-contact-form button[type="submit"] {
    background: var(--forest-green) !important;
    color: var(--off-white) !important;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.flexible-page-wrapper .fpb-contact-form input[type="submit"]:hover,
.flexible-page-wrapper .fpb-contact-form button[type="submit"]:hover {
    background: var(--sage-green) !important;
}

/* ==========================================================================
   ABOUT US PAGE
   ========================================================================== */

.about-intro {
    padding: 100px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 61, 46, 0.12);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.about-intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.about-values {
    padding: 100px 0;
    background: var(--surface);
}

.about-values .section-title {
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-values .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.value-card {
    background: var(--background);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 61, 46, 0.15);
    border-color: var(--accent);
    background: var(--surface);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(122, 168, 139, 0.4);
}

.value-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-team {
    padding: 100px 0;
    background: var(--background);
}

.about-team .section-title {
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-team .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
    font-family: 'Crimson Text', serif;
    box-shadow: 0 4px 20px rgba(26, 61, 46, 0.15);
    transition: all 0.3s ease;
}

.team-member:hover .team-member-photo {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(26, 61, 46, 0.25);
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h4 {
    font-family: 'Crimson Text', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stagger-animation > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--surface);
}

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */

.pricing-section {
    padding: 80px 0;
    background: var(--background);
}

.pricing-controls {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pricing-selector {
    display: flex;
    gap: 12px;
    background: white;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(26, 61, 46, 0.08);
}

.size-btn,
.currency-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.size-btn:hover,
.currency-btn:hover {
    background: var(--cream);
    color: var(--primary);
}

.size-btn.active,
.currency-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(26, 61, 46, 0.2);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 14px 28px;
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-button:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 61, 46, 0.1);
}

.tab-button.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(26, 61, 46, 0.2);
}

.tab-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
}

.pricing-tab-content {
    transition: opacity 0.3s ease;
}

.pricing-tab-content[style*="display: none"] {
    display: none !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(26, 61, 46, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 61, 46, 0.15);
    border-color: var(--accent);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(122, 168, 139, 0.2);
}

.pricing-card.featured::before {
    content: attr(data-badge);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(122, 168, 139, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 50px rgba(122, 168, 139, 0.25);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.pricing-name {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-tagline {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-amount-wrapper {
    text-align: center;
    margin-bottom: 32px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-amount .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

.pricing-amount .price {
    font-family: 'Crimson Text', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-data {
    display: none !important;
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(26, 61, 46, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-features p {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
}

.pricing-cta {
    margin-top: auto;
}

.pricing-card.featured .choose-plan-btn {
    background: linear-gradient(135deg, var(--accent), var(--secondary)) !important;
    box-shadow: 0 4px 12px rgba(122, 168, 139, 0.3);
}

.pricing-card.featured .choose-plan-btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent)) !important;
    box-shadow: 0 6px 20px rgba(122, 168, 139, 0.4);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(26, 61, 46, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(26, 61, 46, 0.12);
    transform: translateY(-2px);
}

.faq-item h4 {
    font-family: 'Crimson Text', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================================================
   BLOG ARCHIVE/LIST PAGE
   ========================================================================== */

.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.blog-hero-description {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-content-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.results-count {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 15px;
}

.blog-search-form {
    display: flex;
    gap: 8px;
    position: relative;
}

.blog-search-input {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    min-width: 250px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 178, 0.1);
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-card.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    margin-bottom: 50px;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.featured-post .blog-card-image {
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post .blog-card-image img {
    height: 100%;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 32px;
}

.featured-post .blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.featured-post .blog-card-title {
    font-size: 32px;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-card-author img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.blog-card-author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.author-role {
    font-size: 13px;
    color: var(--text-light);
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.no-posts-found {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--radius-md);
}

.no-posts-icon {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-posts-found h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.no-posts-found p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.blog-pagination {
    margin-top: 60px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    justify-content: center;
}

.blog-pagination .page-numbers li {
    list-style: none;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers a:hover,
.blog-pagination .page-numbers .current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================================================
   BLOG SIDEBAR
   ========================================================================== */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

.category-count {
    background: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.category-list a:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.popular-post-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.popular-post-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.popular-post-image {
    flex-shrink: 0;
}

.popular-post-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.popular-post-title a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-post-title a:hover {
    color: var(--primary-color);
}

.popular-post-date {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-top: 6px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.widget-newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.widget-newsletter .widget-title {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.widget-newsletter p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-size: 15px;
}

.newsletter-form button {
    width: 100%;
    padding: 14px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   SINGLE BLOG POST
   ========================================================================== */

.blog-breadcrumbs {
    padding: 20px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 12px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .active {
    color: var(--text-dark);
    font-weight: 500;
}

.article-header {
    padding: 60px 0 40px;
    background: white;
}

.article-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.article-category-badge:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.article-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-author-info img {
    border-radius: 50%;
}

.article-meta-secondary {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.article-meta-secondary span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.share-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.article-featured-image {
    padding: 0 0 60px;
    background: white;
}

.featured-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content-section {
    padding: 60px 0;
    background: white;
}

.article-layout {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 40px;
}

.floating-share-sidebar {
    position: relative;
}

.floating-share-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.floating-share-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.floating-share-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 24px;
    color: var(--text-dark);
}

.article-body h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-body a:hover {
    color: var(--primary-dark);
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--text-medium);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 32px 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 40px 0;
}

.tags-label {
    font-weight: 600;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-tags a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.article-tags a:hover {
    background: var(--primary-color);
    color: white;
}

.article-footer-share {
    text-align: center;
    padding: 48px 0;
}

.article-footer-share h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.share-buttons-large {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.share-btn-large {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: white;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn-large.share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.share-btn-large.share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.share-btn-large.share-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.share-btn-large.share-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.article-author-bio {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin: 40px 0;
}

.author-bio-avatar img {
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-sm);
}

.author-bio-name {
    font-size: 22px;
    margin-bottom: 8px;
}

.author-bio-name a {
    color: var(--text-dark);
    text-decoration: none;
}

.author-bio-name a:hover {
    color: var(--primary-color);
}

.author-bio-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.author-bio-social {
    display: flex;
    gap: 12px;
}

.author-bio-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-bio-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.related-posts-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.related-post-image {
    display: block;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 24px;
}

.related-post-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.related-post-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.related-post-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.related-post-title a:hover {
    color: var(--primary-color);
}

.related-post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.related-post-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-light);
}

.comments-section {
    padding: 60px 0;
    background: white;
}

.article-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.article-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.article-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.article-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1199px) {
    .blog-layout {
        grid-template-columns: 1fr 320px;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post .blog-card-image {
        height: 400px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .floating-share-sidebar {
        display: none;
    }
    
    .article-cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(26, 61, 46, 0.1);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(26, 61, 46, 0.1);
        padding: 10px 0;
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .main-nav li.menu-item-has-children.open > .sub-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        order: -1;
    }
    
    .header-cta {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .site-branding {
        flex: 1;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .testimonial-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero-title {
        font-size: 32px;
    }
    
    .blog-hero-description {
        font-size: 16px;
    }
    
    .blog-filters {
        flex-direction: column;
        gap: 16px;
    }
    
    .blog-search-input {
        min-width: 100%;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .article-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio-social {
        justify-content: center;
    }
    
    .share-buttons-large {
        flex-direction: column;
    }
    
    .share-btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-branding {
        max-width: 100%;
    }
    
    .site-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .fpb-hero {
        padding: 60px 0 50px;
    }
    
    .fpb-hero h1 {
        font-size: 36px;
    }
    
    .fpb-hero-subheading {
        font-size: 16px;
    }
    
    .fpb-text-section,
    .fpb-two-column,
    .fpb-features,
    .fpb-image-text,
    .fpb-cta,
    .fpb-testimonials,
    .fpb-default-content {
        padding: 60px 0;
    }
    
    .fpb-section-heading {
        font-size: 32px;
    }
    
    .fpb-text-content h2 {
        font-size: 32px;
    }
    
    .fpb-two-col-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fpb-column h3 {
        font-size: 24px;
    }
    
    .fpb-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .fpb-cols-2,
    .fpb-cols-3,
    .fpb-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .fpb-image-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fpb-image-left {
        direction: ltr;
    }
    
    .fpb-content-col h2 {
        font-size: 28px;
    }
    
    .fpb-cta h2 {
        font-size: 32px;
    }
    
    .fpb-cta p {
        font-size: 16px;
    }
    
    .fpb-cta-buttons {
        flex-direction: column;
    }
    
    .fpb-cta-buttons .btn {
        width: 100%;
    }
    
    .fpb-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .fpb-spacer-medium {
        height: 60px;
    }
    
    .fpb-spacer-large {
        height: 80px;
    }
    
    .flexible-page-wrapper .fpb-stats,
    .flexible-page-wrapper .fpb-team,
    .flexible-page-wrapper .fpb-contact {
        padding: 60px 0;
    }
    
    .flexible-page-wrapper .fpb-stats .fpb-section-header h2,
    .flexible-page-wrapper .fpb-team .fpb-section-header h2,
    .flexible-page-wrapper .fpb-contact .fpb-section-header h2 {
        font-size: 2rem;
    }
    
    .flexible-page-wrapper .fpb-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .flexible-page-wrapper .fpb-stat-number {
        font-size: 2.5rem;
    }
    
    .flexible-page-wrapper .fpb-stat-suffix {
        font-size: 2rem;
    }
    
    .flexible-page-wrapper .fpb-team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flexible-page-wrapper .fpb-team-grid.fpb-cols-2,
    .flexible-page-wrapper .fpb-team-grid.fpb-cols-3,
    .flexible-page-wrapper .fpb-team-grid.fpb-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .flexible-page-wrapper .fpb-contact-wrapper.fpb-has-sidebar {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .flexible-page-wrapper .fpb-contact-form,
    .flexible-page-wrapper .fpb-contact-info {
        padding: 30px 20px;
    }
    
    .about-intro {
        padding: 60px 0;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-content h2 {
        font-size: 32px;
    }
    
    .about-intro-content p {
        font-size: 16px;
    }
    
    .about-values {
        padding: 60px 0;
    }
    
    .about-values .section-title {
        font-size: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-card {
        padding: 32px 24px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .value-card h3 {
        font-size: 22px;
    }
    
    .about-team {
        padding: 60px 0;
    }
    
    .about-team .section-title {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 32px;
    }
    
    .team-member-photo {
        width: 150px;
        height: 150px;
        font-size: 40px;
    }
    
    .team-member h4 {
        font-size: 20px;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-controls {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .pricing-selector {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .size-btn,
    .currency-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .pricing-tabs {
        margin-bottom: 32px;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-name {
        font-size: 24px;
    }
    
    .pricing-amount .price {
        font-size: 42px;
    }
    
    .pricing-features li {
        font-size: 14px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .faq-item h4 {
        font-size: 20px;
    }
    
    .faq-item p {
        font-size: 15px;
    }
    
    .cta h2,
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta p,
    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .article-body {
        font-size: 16px;
    }
    
    .article-body h2 {
        font-size: 24px;
    }
    
    .article-body h3 {
        font-size: 20px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .fpb-hero h1 {
        font-size: 28px;
    }
    
    .fpb-section-heading {
        font-size: 28px;
    }
    
    .fpb-text-content h2 {
        font-size: 28px;
    }
    
    .fpb-feature-card {
        padding: 24px;
    }
    
    .fpb-testimonial-card {
        padding: 24px;
    }
    
    .flexible-page-wrapper .fpb-stats,
    .flexible-page-wrapper .fpb-team,
    .flexible-page-wrapper .fpb-contact {
        padding: 40px 0;
    }
    
    .flexible-page-wrapper .fpb-stat-number {
        font-size: 2rem;
    }
    
    .flexible-page-wrapper .fpb-member-info {
        padding: 20px 15px;
    }
    
    .about-intro-content h2 {
        font-size: 28px;
    }
    
    .about-values .section-title,
    .about-team .section-title {
        font-size: 28px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .site-title {
        font-size: 24px;
    }
    
    .site-logo {
        max-height: 50px;
    }
    
    .footer-logo {
        max-height: 40px;
    }
    
    .pricing-section {
        padding: 40px 0;
    }
    
    .size-btn,
    .currency-btn {
        padding: 10px 14px;
        font-size: 13px;
        flex: 1;
        min-width: calc(50% - 6px);
    }
    
    .tab-button {
        padding: 10px 16px;
        font-size: 13px;
        width: 100%;
    }
    
    .pricing-card {
        padding: 28px 20px;
    }
    
    .pricing-name {
        font-size: 22px;
    }
    
    .pricing-amount .price {
        font-size: 38px;
    }
    
    .pricing-amount .currency {
        font-size: 20px;
    }
    
    .pricing-amount .period {
        font-size: 14px;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card {
    animation: slideUp 0.5s ease-out;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .pricing-controls,
    .pricing-tabs,
    .choose-plan-btn {
        display: none;
    }
    
    .pricing-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}