/* ================================================================
   COMEFIGURE - PREMIUM DESIGN SYSTEM v2.0
   ================================================================ */

/* 1. FONTS & IMPORTS
   ================================================================ */
/* Premium Typography: Manrope (display) + Figtree (body) */
/* Google Fonts loaded via <link> in HTML head for better performance */

/* 2. DESIGN TOKENS
   ================================================================ */
:root {
    /* Brand Colors - Moss Green & Gold */
    --color-primary: #4a7c59;
    /* Moss Green */
    --color-primary-dark: #3d6349;
    /* Darker Moss */
    --color-primary-light: #6b9b7a;
    /* Lighter Moss */
    --color-primary-glow: rgba(74, 124, 89, 0.5);

    --color-secondary: #f0c430;
    /* Vivid Gold */
    --color-secondary-dark: #d4af37;
    /* Rich Gold */
    --color-secondary-light: #ffd84a;
    /* Bright Gold */
    --color-secondary-glow: rgba(240, 196, 48, 0.6);

    --color-accent: #f0c430;
    /* Vivid Gold Accent */
    --color-accent-glow: rgba(240, 196, 48, 0.6);

    /* Neutral Scale - Clean Light */
    --color-bg-body: #fafbf9;
    /* Fresh Off-White with subtle green tint */
    --color-bg-surface: #ffffff;
    /* Pure White */
    --color-bg-surface-2: #f2f4f0;
    /* Light Sage */

    --color-text-main: #1a1a1a;
    /* Near Black */
    --color-text-muted: #4a4a4a;
    /* Medium Grey - WCAG AA compliant on light bg */
    --color-text-dark: #1a1a1a;
    /* For emphasis */

    /* Solid Card Backgrounds (Clean Surface) */
    --card-bg: #ffffff;
    --card-bg-hover: #ffffff;
    --card-border: rgba(0, 0, 0, 0.06);
    --card-border-hover: rgba(74, 124, 89, 0.4);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4a7c59 0%, #3d6349 100%);
    --gradient-dark: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    --gradient-surface: linear-gradient(145deg, rgba(74, 124, 89, 0.03) 0%, rgba(74, 124, 89, 0) 100%);
    --gradient-glow-text: linear-gradient(to right, #6b9b7a, #ffd84a);

    /* Typography - Premium Font Stack */
    --font-sans: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - Refined System */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 3rem;
    /* 48px */
    --space-xl: 6rem;
    /* 96px */
    --space-2xl: 8rem;
    /* 128px */

    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
    --container-pad: clamp(1.25rem, 4vw, 2rem);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 20px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 40px -8px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px var(--color-primary-glow);

    /* Transitions */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

/* 3. RESET & BASE
   ================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    background: var(--color-bg-body);
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-body);
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-bg-body);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Skip Link - Accessibility */
.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10001;
}

.skip-link:focus {
    position: fixed;
    top: var(--space-sm);
    left: var(--space-sm);
    width: auto;
    height: auto;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 10001;
}

/* Brand Selection */
::selection {
    background: var(--color-secondary);
    color: #1a1a1a;
}


img,
video,
iframe {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
}

button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

ul {
    list-style: none;
}

/* 4. TYPOGRAPHY
   ================================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--color-text-main);
    line-height: 1.05;
    margin-bottom: var(--space-sm);
    text-wrap: balance;
}

h1 {
    font-size: clamp(3.25rem, 6vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-shadow: none;
    line-height: 1;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    text-shadow: none;
}

h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0;
}

p {
    color: var(--color-text-muted);
    font-size: 1.0625rem;
    margin-bottom: var(--space-sm);
    max-width: 65ch;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Lead text for hero/intro paragraphs */
.lead, .hero-subtitle-pro {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--color-text-muted);
}

/* Small/meta text */
small, .text-sm {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

/* Section labels - uppercase accent text */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
    display: inline-block;
}

.text-gradient {
    background: var(--gradient-glow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold highlight text */
.highlight-gold {
    color: var(--color-secondary);
    position: relative;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* 5. LAYOUT UTILITIES
   ================================================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
}

.section+.section {
    margin-top: 0;
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

/* 6. COMPONENTS: BUTTONS
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow:
        0 4px 15px rgba(74, 124, 89, 0.4),
        0 0 0 0 rgba(74, 124, 89, 0);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect layer */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

/* Glow ring effect */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary), var(--color-primary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(74, 124, 89, 0.5),
        0 0 0 4px rgba(74, 124, 89, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    opacity: 0.6;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn-secondary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.25);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.875rem;
}

.btn.large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn.full-width {
    width: 100%;
}

/* 7. COMPONENTS: CARDS (Solid Dark Theme)
   ================================================================ */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-surface);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-4px);
    background: var(--card-bg-hover);
    border-color: var(--card-border-hover);
    box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.1), 0 0 16px rgba(74, 124, 89, 0.08);
}

.card:hover::before {
    opacity: 1;
}

/* 8. NAVIGATION
   ================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(74, 124, 89, 0.3));
    transition: transform 0.3s ease;
}

.logo a:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-text-main);
    letter-spacing: -0.03em;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 3px;
    margin-left: 1px;
    opacity: 0.95;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
    color: var(--color-primary);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

/* Nav Button Special Style */
.nav-links .btn-sm {
    background: var(--gradient-primary);
    border: 1px solid rgba(74, 124, 89, 0.2);
    color: white;
    box-shadow: 0 2px 10px rgba(74, 124, 89, 0.2);
}

.nav-links .btn-sm:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(74, 124, 89, 0.4);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--color-text-main);
    font-size: 1.25rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.mobile-menu-toggle:hover {
    background: rgba(74, 124, 89, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-bg-body);
        flex-direction: column;
        padding: var(--space-md);
        border-bottom: 1px solid var(--card-border);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: var(--space-lg) var(--space-md);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        animation: slideDown 0.35s var(--ease-out);
        gap: var(--space-xs);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        padding-bottom: var(--space-sm);
    }

    .nav-links li:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-top: var(--space-sm);
    }

    .nav-links a:not(.btn) {
        font-size: 1rem;
        padding: 0.75rem 0;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* 9. HERO SECTION (Overlaid on 3D Canvas)
   ================================================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(250, 251, 249, 0.78) 50%, rgba(255, 255, 255, 0.82) 100%),
        url('../images/BG.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 5;
}

/* Sleek overlay gradient for text readability */
.hero .container {
    position: relative;
    z-index: 10;
}

/* Gradient light spots (gold and moss green) - overlaid on 3D background */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: float 12s ease-in-out infinite;
    mix-blend-mode: multiply;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: float 15s ease-in-out infinite reverse;
    mix-blend-mode: multiply;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero::before,
    .hero::after {
        width: 300px;
        height: 300px;
        opacity: 0.7;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -40px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(5rem, 12vw, 10rem) 0;
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1;
}

.hero h1 {
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: var(--space-lg);
    color: var(--color-text-main);
    -webkit-text-fill-color: var(--color-text-main);
    line-height: 1.05;
}

.hero h1 .highlight-gold {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-pro {
    font-family: var(--font-sans);
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    line-height: 1.75;
    font-weight: 400;
    color: var(--color-text-muted);
    max-width: 620px;
    margin: 0 auto var(--space-lg);
    letter-spacing: 0.015em;
}

.hero-cta {
    margin-top: var(--space-lg);
    display: flex;
    justify-content: center;
}

.hero-cta .btn {
    min-width: 250px;
}

/* Value Props Grid */
.value-props {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 0 var(--space-md);
    position: relative;
}

.value-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: calc(var(--space-md) * -1);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.value-icon {
    font-size: 2rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.value-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.value-text strong {
    color: var(--color-text-main);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.value-text span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

@media (max-width: 968px) {
    .value-props {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: flex-start;
    }

    .value-item:not(:last-child)::after {
        display: none;
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.cta-guarantee {
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-indicators span i {
    color: var(--color-secondary);
}

/* Client Logos */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-lg);
    align-items: center;
    justify-items: center;
    margin-top: var(--space-xl);
    opacity: 0.8;
}

.client-logo {
    height: 32px;
    width: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* 10. INTERACTIVE ELEMENTS (Modals, Forms)
   ================================================================ */
.demo-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-modal.active {
    display: flex;
    opacity: 1;
}

.demo-modal-window {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    background: var(--color-bg-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.4s var(--ease-out);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.demo-modal-header {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
}

.demo-modal-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-main);
    letter-spacing: 0.02em;
}

.demo-modal-controls {
    display: flex;
    gap: var(--space-xs);
}

.modal-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: transparent;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.modal-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-main);
    border-color: rgba(0, 0, 0, 0.1);
}

.modal-btn.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}

.demo-modal-content {
    flex: 1;
    background: black;
}

.demo-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.sticky-cta-content {
    padding: var(--space-sm) var(--space-md);
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.sticky-text {
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--card-border);
    padding: var(--space-sm) 0;
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Form Elements */
input,
select,
textarea {
    width: 100%;
    padding: 1rem 1.125rem;
    background: var(--color-bg-surface);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    transition: all 0.25s var(--ease-out);
}

input::placeholder,
textarea::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.03);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-bg-surface-2);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
}

/* Select dropdown styling */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

select option {
    background: var(--color-bg-surface);
    color: var(--color-text-main);
    padding: 0.75rem 1rem;
}

select option:hover,
select option:focus,
select option:checked {
    background: var(--color-primary);
    color: white;
}

/* 11. FOOTER - Premium Redesign
   ================================================================ */
footer {
    background: linear-gradient(180deg, var(--color-bg-body) 0%, #e8ebe6 100%);
    border-top: 1px solid var(--card-border);
    padding: clamp(4rem, 8vw, 7rem) 0 var(--space-lg);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    opacity: 0.4;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(74, 124, 89, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Footer Brand Column */
.footer-col:first-child {
    padding-right: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.footer-logo .logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

.footer-logo .logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary-light);
    letter-spacing: 0.02em;
}

.footer-col > p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 0;
    max-width: 280px;
}

/* Footer Column Headers */
.footer-col h4 {
    font-family: var(--font-display);
    color: var(--color-text-main);
    font-size: 0.6875rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

/* Footer Links */
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col ul li {
    font-family: var(--font-sans);
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.25s var(--ease-out);
    position: relative;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.25s var(--ease-out);
}

.footer-col ul li a:hover {
    color: var(--color-primary-light);
    padding-left: 0;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-col ul li i {
    color: var(--color-primary);
    width: 18px;
    font-size: 0.8125rem;
    opacity: 0.8;
    flex-shrink: 0;
}

/* Contact Column - Special Styling */
.footer-col address {
    font-style: normal;
}

.footer-col.footer-contact ul li {
    align-items: flex-start;
}

.footer-col.footer-contact ul li i {
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    gap: var(--space-md);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    opacity: 0.7;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-bottom-links a {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.25s var(--ease-out);
}

.footer-bottom-links a:hover {
    color: var(--color-primary-light);
    opacity: 1;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all 0.25s var(--ease-out);
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl) var(--space-lg);
    }

    .footer-col:first-child {
        grid-column: span 2;
        padding-right: 0;
    }

    .footer-col > p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

@media (max-width: 640px) {
    footer {
        padding: var(--space-xl) 0 var(--space-md);
    }

    .footer-content {
        padding: 0 var(--space-md);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-col:first-child {
        grid-column: span 1;
    }

    .footer-col h4::after {
        display: none;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* 12. LOADING SCREEN
   ================================================================ */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.loader-logo {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    animation: loading 2s ease-in-out infinite;
    border-radius: var(--radius-full);
}

@keyframes loading {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

.loader-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.04);
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(74, 124, 89, 0.5);
}

/* 13. FEATURE SECTIONS
   ================================================================ */
/* Use Cases Text Style */
.use-cases-text {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.use-cases-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
    opacity: 0.4;
}

.use-cases-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
    opacity: 0.4;
}

.use-cases-list {
    max-width: 1100px;
    margin: var(--space-xl) auto var(--space-lg);
    text-align: center;
}

.use-case-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.use-case-item-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.04) 0%, rgba(74, 124, 89, 0.01) 100%);
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.use-case-item-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.use-case-item-compact:hover {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-color: var(--color-primary-light);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(74, 124, 89, 0.25);
}

.use-case-item-compact:hover::before {
    transform: scaleX(1);
}

.use-case-icon-inline {
    font-size: 2.5rem;
    color: var(--color-primary-light);
    filter: drop-shadow(0 0 10px var(--color-primary-glow));
    transition: all 0.4s ease;
}

.use-case-item-compact:hover .use-case-icon-inline {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px var(--color-primary-light));
    color: var(--color-secondary);
}

.use-case-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-main);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-align: center;
}

.use-case-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.5;
    margin-top: var(--space-xs);
}

.use-case-item-compact:hover .use-case-name {
    color: var(--color-primary-light);
    transform: scale(1.05);
}

.use-case-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .use-case-row-3 {
        grid-template-columns: 1fr;
    }
}

.use-cases-description {
    max-width: 750px;
    margin: var(--space-xl) auto 0;
    text-align: center;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-text-muted);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.06) 0%, rgba(74, 124, 89, 0.02) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(74, 124, 89, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.inline-link {
    color: var(--color-primary-light);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--color-primary-light);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.inline-link:hover {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
    filter: drop-shadow(0 0 6px var(--color-secondary));
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .use-case-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .use-case-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .use-case-item-compact {
        padding: var(--space-md);
    }

    .use-case-icon-inline {
        font-size: 2rem;
    }

    .use-case-name {
        font-size: 1rem;
    }

    .use-cases-description {
        font-size: 1rem;
        padding: var(--space-md);
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-md) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--card-border);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    padding-bottom: var(--space-md);
    position: relative;
}

.timeline-number {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 6px var(--color-bg-body);
}

.timeline-content {
    width: 45%;
    background: var(--card-bg);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
}

.timeline-content h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 0.5rem;
}

.timeline-deliverable {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.01em;
    opacity: 0.8;
}

.timeline-total {
    text-align: center;
    margin-top: var(--space-md);
    padding: var(--space-sm);
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
}

.timeline-total strong {
    font-size: 1rem;
    font-weight: 600;
}

.timeline-total p {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-number {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        text-align: left !important;
    }
}

/* Social Proof */
.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0.7;
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    padding: 1rem 2rem;
    border: 1px dashed var(--card-border);
    border-radius: var(--radius-md);
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info Cards - Premium Redesign */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.info-card {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.03) 0%, rgba(74, 124, 89, 0.01) 100%);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: default;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
    z-index: 0;
}

.info-card.clickable {
    cursor: pointer;
}

.info-card.clickable:hover {
    border-color: var(--color-primary);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(74, 124, 89, 0.15);
}

.info-card.clickable:hover::before {
    opacity: 0.08;
}

.info-card > * {
    position: relative;
    z-index: 1;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.15) 0%, rgba(74, 124, 89, 0.05) 100%);
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: 1.25rem;
    transition: all 0.3s var(--ease-out);
}

.info-card.clickable:hover .info-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-color: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin: 0;
}

.info-card p,
.info-card .info-value {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin: 0;
    line-height: 1.4;
}

.info-card .info-value {
    transition: color 0.3s var(--ease-out);
}

.info-card.clickable:hover .info-value {
    color: var(--color-primary-light);
}

.info-card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    transition: all 0.3s var(--ease-out);
    opacity: 0;
    transform: translateX(-8px);
}

.info-card.clickable:hover .info-card-action {
    opacity: 1;
    transform: translateX(0);
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Responstijd Card - Special Highlight Style */
.info-card.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-color: rgba(212, 175, 55, 0.25);
    grid-template-columns: 56px 1fr;
    padding: var(--space-lg);
    margin-top: var(--space-sm);
}

.info-card.highlight .info-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: rgba(240, 196, 48, 0.3);
    color: var(--color-secondary);
}

.info-card.highlight h3 {
    color: var(--color-secondary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card.highlight h3::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.info-card.highlight p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.info-card.highlight .response-time {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.info-card.highlight .response-time span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Location Card - Map Hint */
.info-card.location .info-value {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-card.location .city {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .info-card {
        grid-template-columns: 48px 1fr auto;
        padding: var(--space-md);
    }

    .info-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .info-card p,
    .info-card .info-value {
        font-size: 0.95rem;
    }

    .info-card.highlight {
        grid-template-columns: 48px 1fr;
    }

    .info-card.highlight .response-time {
        font-size: 1.5rem;
    }
}

/* 14. PRICING & FEATURES
   ================================================================ */
.pricing-section {
    padding: var(--space-xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(to bottom, rgba(74, 124, 89, 0.1), var(--color-bg-body));
    transform: scale(1.03);
    z-index: 2;
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 0 30px var(--color-primary-glow);
}

.pricing-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    background: rgba(74, 124, 89, 0.15);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card.featured .pricing-icon {
    background: rgba(74, 124, 89, 0.25);
    color: var(--color-secondary);
}

.pricing-header h3 {
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
    font-weight: 600;
}

.pricing-tagline {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.price {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1;
    margin-bottom: var(--space-xs);
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.price-subtitle {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.pricing-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features ul {
    margin: var(--space-md) 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    font-family: var(--font-sans);
    margin-bottom: var(--space-sm);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.pricing-features li i {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.pricing-result {
    background: rgba(74, 124, 89, 0.1);
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    margin-top: var(--space-md);
    text-align: center;
}

.pricing-result .result-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.pricing-result .result-value {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-weight: 600;
}

.pricing-footer {
    margin-top: var(--space-md);
}

/* Pricing Indicator */
.pricing-indicator {
    margin-top: var(--space-xl);
    text-align: center;
}

.pricing-indicator-content {
    display: inline-flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
}

.pricing-indicator-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: var(--space-lg);
    border-right: 1px solid var(--card-border);
}

.pricing-indicator-price .vanaf {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-indicator-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    font-family: var(--font-display);
    line-height: 1;
}

.pricing-indicator-info {
    text-align: left;
    max-width: 400px;
}

.pricing-indicator-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.pricing-indicator-info .pricing-indicator-note {
    color: var(--color-primary);
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-indicator-content {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md);
    }

    .pricing-indicator-price {
        padding-right: 0;
        padding-bottom: var(--space-md);
        border-right: none;
        border-bottom: 1px solid var(--card-border);
    }

    .pricing-indicator-info {
        text-align: center;
    }
}

/* Trust Builder under pricing */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.pricing-trust .trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.pricing-trust .trust-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .pricing-trust {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
}

/* Features Grid */
.features-grid-section {
    padding: var(--space-xl) 0;
    background: rgba(0, 0, 0, 0.2);
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-item {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05) 0%, transparent 50%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-xs);
}

.feature-item p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-icon {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    /* Glassmorphism effect */
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.2) 0%, rgba(74, 124, 89, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(74, 124, 89, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.4), transparent, rgba(212, 175, 55, 0.2));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 15px 40px rgba(74, 124, 89, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: rgba(74, 124, 89, 0.4);
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

/* Small Hero */
.hero.small-hero {
    min-height: 50vh;
    padding-top: calc(var(--header-height) + var(--space-lg));
    align-items: flex-start;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-md);
}

/* 15. CTA BOX & DEMOS
   ================================================================ */
.cta-box {
    background: var(--gradient-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    margin-top: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-main);
}

.cta-box p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* Demo Filters */
.demo-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--color-text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

/* Demo Cards */
.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.demo-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.demo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.demo-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(74, 124, 89, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.demo-card:hover::before {
    opacity: 1;
}

.demo-preview {
    height: 240px;
    background: rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.demo-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(250, 251, 249, 0.9) 100%);
    pointer-events: none;
}

.demo-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
}

.demo-card:hover .demo-thumbnail {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.demo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(74, 124, 89, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(242, 244, 240, 0.95) 0%, rgba(250, 251, 249, 0.95) 100%);
}

.placeholder-icon.large {
    font-size: 4rem;
    color: rgba(74, 124, 89, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 0 20px transparent);
}

.demo-card:hover .placeholder-icon.large {
    transform: scale(1.15) translateY(-5px);
    color: var(--color-primary);
    filter: drop-shadow(0 10px 30px rgba(74, 124, 89, 0.4));
}

.demo-play-indicator {
    position: absolute;
    font-size: 3rem;
    color: white;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: none;
}

.demo-card:hover .demo-play-indicator {
    opacity: 1;
    transform: scale(1);
}

.demo-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-md);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(74, 124, 89, 0.05);
    border: 1px solid rgba(74, 124, 89, 0.12);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.badge-icon {
    background: var(--color-secondary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 0 10px var(--color-secondary-glow);
    animation: pulse 2s infinite;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary-light);
    background: rgba(74, 124, 89, 0.08);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(74, 124, 89, 0.18);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--color-text-main);
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.section-title.text-white {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--color-text-main);
    background-clip: unset;
    color: var(--color-text-main);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.demo-header {
    margin-bottom: var(--space-md);
}

.demo-category-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.demo-card h3 {
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin: 0;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.demo-story {
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.story-section {
    margin-bottom: var(--space-md);
}

.story-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.story-section p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-main);
    line-height: 1.55;
}

.demo-actions {
    margin-top: auto;
}

.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* 16. FINAL CTA SECTION
   ================================================================ */
.cta-section {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-main);
}

.cta-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.cta-option {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.cta-option:hover::before {
    opacity: 1;
}

.option-icon {
    width: 70px;
    height: 70px;
    background: rgba(74, 124, 89, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary-light);
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.cta-option:hover .option-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
    border-color: var(--color-primary);
}

.cta-option h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text-main);
}

.cta-option p {
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    color: var(--color-text-muted);
}

.cta-option .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* 17. ABOUT PAGE STYLES
   ================================================================ */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.story-content .lead-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.quote-box {
    background: rgba(0, 0, 0, 0.02);
    border-left: 4px solid var(--color-primary);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.quote-box cite {
    display: block;
    margin-top: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-secondary);
    font-style: normal;
    font-weight: 600;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-md);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.valu.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.value-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    background: rgba(74, 124, 89, 0.1);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bg-glass {
    background: rgba(74, 124, 89, 0.03);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Contact Page Trust Icons */
.trust-icon {
    color: var(--color-secondary);
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(240, 196, 48, 0.12);
    border-radius: 50%;
    font-size: 0.8rem;
}

/* ================================================================
   WHY 3D SECTION - Premium Redesign
   ================================================================ */
.why-3d-section {
    background: linear-gradient(180deg, var(--color-bg-body) 0%, rgba(74, 124, 89, 0.03) 50%, var(--color-bg-body) 100%);
    position: relative;
    overflow: hidden;
}

.why-3d-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-3d-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Compact Why 3D */
.why-3d-compact {
    padding: var(--space-xl) 0;
}

.why-3d-compact::before,
.why-3d-compact::after {
    display: none;
}

.why-3d-flex {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.why-3d-text {
    flex: 1;
}

.why-3d-text .section-label {
    display: inline-block;
    margin-bottom: var(--space-sm);
}

.why-3d-text h2 {
    margin-bottom: var(--space-md);
}

.why-3d-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.why-3d-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    flex-shrink: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(74, 124, 89, 0.08);
    border: 1px solid rgba(74, 124, 89, 0.15);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(74, 124, 89, 0.15);
    border-color: rgba(74, 124, 89, 0.3);
}

.benefit-item i {
    color: var(--color-primary-light);
    font-size: 1.1rem;
}

.benefit-item span {
    color: var(--color-text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .why-3d-flex {
        flex-direction: column;
        text-align: center;
    }

    .why-3d-benefits {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .why-3d-benefits {
        grid-template-columns: 1fr;
    }
}

/* Value Cards Grid */
.why-3d-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.value-card-large {
    background: linear-gradient(145deg, rgba(74, 124, 89, 0.04) 0%, rgba(74, 124, 89, 0.01) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.value-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.value-card-large:hover {
    transform: translateY(-5px) translateX(5px);
    border-color: rgba(74, 124, 89, 0.25);
    box-shadow: 0 20px 40px -15px rgba(74, 124, 89, 0.15);
    background: linear-gradient(145deg, rgba(74, 124, 89, 0.06) 0%, rgba(74, 124, 89, 0.02) 100%);
}

.value-card-large:hover::before {
    opacity: 1;
}

.value-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.12) 0%, rgba(74, 124, 89, 0.04) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary-light);
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.value-card-large:hover .value-card-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.3);
    border-color: transparent;
}

.value-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

.value-card-large:hover .value-card-content h3 {
    color: var(--color-primary-light);
}

.value-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Comparison Grid */
.why-3d-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-md);
    align-items: stretch;
    margin-bottom: var(--space-2xl);
}

.comparison-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.4s var(--ease-out);
}

.comparison-card.comparison-old {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.03) 0%, rgba(0, 0, 0, 0.03) 100%);
    border-color: rgba(239, 68, 68, 0.15);
}

.comparison-card.comparison-new {
    background: linear-gradient(145deg, rgba(74, 124, 89, 0.08) 0%, rgba(0, 0, 0, 0.03) 100%);
    border-color: rgba(74, 124, 89, 0.25);
    box-shadow: 0 0 30px rgba(74, 124, 89, 0.1);
}

.comparison-card.comparison-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 124, 89, 0.15);
}

.comparison-header {
    margin-bottom: var(--space-lg);
}

.comparison-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.comparison-badge.old {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.comparison-badge.new {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border: 1px solid rgba(74, 124, 89, 0.5);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.comparison-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li:hover {
    color: var(--color-text-main);
    padding-left: var(--space-xs);
}

.comparison-old .comparison-list li i {
    color: #ef4444;
    font-size: 0.9rem;
    width: 20px;
    flex-shrink: 0;
}

.comparison-new .comparison-list li i {
    color: var(--color-primary-light);
    font-size: 0.9rem;
    width: 20px;
    flex-shrink: 0;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-bg-surface-2) 0%, var(--color-bg-surface) 100%);
    border: 2px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* Bottom CTA */
.why-3d-cta {
    margin-top: var(--space-lg);
}

.why-3d-cta .cta-inner {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    transition: all 0.4s var(--ease-out);
}

.why-3d-cta .cta-inner:hover {
    border-color: rgba(74, 124, 89, 0.4);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.15);
}

.why-3d-cta .cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.35);
}

.why-3d-cta .cta-text {
    flex: 1;
}

.why-3d-cta .cta-text h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: var(--space-xs);
}

.why-3d-cta .cta-text p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-3d-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .why-3d-values {
        gap: var(--space-md);
    }

    .value-card-large {
        padding: var(--space-lg);
        flex-direction: column;
        gap: var(--space-md);
    }

    .value-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .value-card-content h3 {
        font-size: 1.125rem;
    }

    .why-3d-comparison {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .comparison-divider {
        padding: var(--space-sm) 0;
    }

    .vs-badge {
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }

    .why-3d-cta .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }

    .why-3d-cta .cta-text h3 {
        font-size: 1.125rem;
    }
}

/* ========================================
   FAQ Accordion - Compact Design
   ======================================== */

.faq-section {
    background: var(--color-bg-body);
    position: relative;
}

.faq-accordion-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    max-width: 1100px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* Individual FAQ Item */
.faq-accordion-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(74, 124, 89, 0.3);
    background: rgba(74, 124, 89, 0.05);
}

.faq-accordion-item.active {
    border-color: rgba(74, 124, 89, 0.4);
    background: rgba(74, 124, 89, 0.08);
}

/* Trigger Button */
.faq-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-accordion-trigger:focus {
    outline: none;
}

.faq-accordion-trigger:focus-visible {
    box-shadow: inset 0 0 0 2px var(--color-primary);
}

/* Icon Wrapper */
.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    background: rgba(74, 124, 89, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon-wrapper i {
    font-size: 0.8rem;
    color: var(--color-primary-light);
    transition: all 0.3s ease;
}

.faq-accordion-item.active .faq-icon-wrapper {
    background: var(--color-primary);
}

.faq-accordion-item.active .faq-icon-wrapper i {
    color: white;
}

/* Question Text */
.faq-question {
    flex: 1;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 1.45;
    letter-spacing: 0.005em;
    transition: color 0.3s ease;
}

.faq-accordion-item:hover .faq-question,
.faq-accordion-item.active .faq-question {
    color: var(--color-text-main);
}

/* Toggle Icon (Plus/Minus) */
.faq-toggle-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle-icon span {
    position: absolute;
    background: var(--color-text-muted);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.faq-toggle-icon span:first-child {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle-icon span:last-child {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-accordion-item:hover .faq-toggle-icon span {
    background: var(--color-primary-light);
}

.faq-accordion-item.active .faq-toggle-icon span {
    background: var(--color-primary-light);
}

.faq-accordion-item.active .faq-toggle-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Content Area */
.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 200px;
}

.faq-answer-inner {
    padding: 0 1rem 1rem 1rem;
    padding-left: calc(32px + var(--space-sm) + 1rem);
}

.faq-answer-inner p {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.01em;
}

/* FAQ CTA */
.faq-cta {
    margin-top: var(--space-xl);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.faq-cta p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .faq-accordion-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .faq-accordion-trigger {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .faq-icon-wrapper {
        width: 28px;
        height: 28px;
    }

    .faq-icon-wrapper i {
        font-size: 0.7rem;
    }

    .faq-question {
        font-size: 0.85rem;
    }

    .faq-answer-inner {
        padding: 0 0.75rem 0.75rem 0.75rem;
        padding-left: calc(28px + 0.5rem + 0.75rem);
    }

    .faq-answer-inner p {
        font-size: 0.8rem;
    }

    .faq-cta {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ================================================================
   ABOUT MODAL - Immersive Profile Portal (Compact)
   ================================================================ */
.about-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    overflow: hidden;
}

.about-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated backdrop */
.about-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-modal.active .about-modal-backdrop {
    opacity: 1;
}

/* Modal Window */
.about-modal-window {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 1rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 249, 0.99) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.12);
}

.about-modal.active .about-modal-window {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Close Button */
.about-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.about-modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: var(--color-text-main);
    border-color: rgba(0, 0, 0, 0.15);
    transform: rotate(90deg);
}

.about-modal-close svg {
    width: 18px;
    height: 18px;
}

/* ================================
   Hero Section with Photo
   ================================ */
.about-hero {
    position: relative;
    padding: 2.5rem 2rem 1.5rem;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(74, 124, 89, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
}

.about-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 80%);
}

.about-hero-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Photo Frame with Effects */
.about-photo-frame {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.about-photo-glow {
    position: absolute;
    inset: -8px;
    background: conic-gradient(
        from 180deg at 50% 50%,
        var(--color-primary) 0deg,
        var(--color-secondary) 120deg,
        var(--color-primary-light) 240deg,
        var(--color-primary) 360deg
    );
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(16px);
    animation: about-glow-rotate 8s linear infinite;
}

@keyframes about-glow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-photo-frame img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.06);
    z-index: 2;
}

.about-photo-ring {
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    animation: about-ring-pulse 3s ease-in-out infinite;
}

@keyframes about-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.2; }
}

/* Intro Text */
.about-intro {
    flex: 1;
}

.about-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-secondary);
    background: rgba(240, 196, 48, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.about-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0 0 0.25rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-role {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    font-weight: 400;
}

/* ================================
   Modal Content (Compact)
   ================================ */
.about-modal-content {
    padding: 0 2rem 2rem;
}

/* Compact Story */
.about-story-compact {
    margin-bottom: 1.25rem;
}

.about-story-compact p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

.about-story-compact strong {
    color: var(--color-text-main);
    font-weight: 600;
}

.about-story-compact em {
    color: var(--color-secondary);
    font-style: normal;
    font-weight: 500;
}

/* Values Row - Horizontal Chips */
.about-values-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.about-value-chip {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: rgba(74, 124, 89, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-value-chip:hover {
    background: rgba(74, 124, 89, 0.08);
    border-color: rgba(74, 124, 89, 0.25);
    transform: translateY(-2px);
}

.about-value-num {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-primary-light);
    background: rgba(74, 124, 89, 0.15);
    padding: 0.3rem 0.45rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.about-value-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-main);
}

/* Footer CTA */
.about-modal-footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(74, 124, 89, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(74, 124, 89, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.about-cta-arrow {
    display: flex;
    transition: transform 0.3s ease;
}

.about-cta:hover .about-cta-arrow {
    transform: translateX(4px);
}

.about-cta-arrow svg {
    width: 16px;
    height: 16px;
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 600px) {
    .about-modal-window {
        margin: 0.75rem;
        max-width: calc(100% - 1.5rem);
        border-radius: 20px;
    }

    .about-hero {
        padding: 2rem 1.5rem 1.25rem;
    }

    .about-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .about-photo-frame {
        width: 80px;
        height: 80px;
    }

    .about-name {
        font-size: 1.4rem;
    }

    .about-modal-content {
        padding: 0 1.5rem 1.5rem;
    }

    .about-values-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-value-chip {
        padding: 0.6rem 0.85rem;
    }

    .about-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }

    .about-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ================================================================
   MICRO-INTERACTIONS & SCROLL ANIMATIONS
   ================================================================ */

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.6s; }

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Scale in animation */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Fade in from left/right */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Link hover underline animation */
a.animated-link {
    position: relative;
    display: inline-block;
}

a.animated-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

a.animated-link:hover::after {
    width: 100%;
}

/* Icon bounce on hover */
.icon-bounce:hover i,
.icon-bounce:hover .fa,
.icon-bounce:hover .fas {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-6px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-3px); }
}

/* Pulse animation for important elements */
.pulse-attention {
    animation: pulseAttention 2s infinite;
}

@keyframes pulseAttention {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(74, 124, 89, 0);
    }
}

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Smooth page transitions */
.page-transition {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card tilt effect on hover (subtle) */
.card-tilt {
    transition: transform 0.3s ease;
}

.card-tilt:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-5px);
}

/* Text highlight animation */
.text-highlight {
    background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(212, 175, 55, 0.2) 50%, rgba(212, 175, 55, 0.2) 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 0.4s ease;
}

.text-highlight:hover {
    background-position: 0 0;
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Gradient border animation */
.gradient-border {
    position: relative;
    background: var(--color-bg-surface);
    border-radius: var(--radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    border-radius: inherit;
    z-index: -1;
    background-size: 200% 200%;
    animation: gradientRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-border:hover::before {
    opacity: 1;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ================================================================
   ACCESSIBILITY: Reduced Motion
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero::before,
    .hero::after {
        animation: none;
    }

    .reveal,
    .reveal-scale,
    .reveal-left,
    .reveal-right,
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
}

/* ================================================================
   DESIGN POLISH: Enhanced section dividers
   ================================================================ */
.features-grid-section,
.demos-section,
.pricing-section,
.contact-section,
.faq-section,
.timeline-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

/* Subtle section separator */
.features-grid-section::after,
.demos-section::after,
.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 600px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 89, 0.2), transparent);
}

/* ================================================================
   DESIGN POLISH: Contact form label styling
   ================================================================ */
.contact-form-pro label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   DESIGN POLISH: Improved pricing card hover
   ================================================================ */
.pricing-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

/* ================================================================
   DESIGN POLISH: Better timeline dots
   ================================================================ */
.timeline-number {
    transition: all 0.3s var(--ease-out);
}

.timeline-item:hover .timeline-number {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 0 0 6px var(--color-bg-body), 0 0 20px rgba(74, 124, 89, 0.4);
}

.timeline-content {
    transition: all 0.3s var(--ease-out);
}

.timeline-item:hover .timeline-content {
    border-color: rgba(74, 124, 89, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ================================================================
   DESIGN POLISH: Smooth scroll progress bar
   ================================================================ */
.scroll-progress {
    height: 3px;
    background: transparent;
}

.progress-bar {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 0 8px rgba(74, 124, 89, 0.4);
}

/* ================================================================
   DESIGN POLISH: Better featured ribbon
   ================================================================ */
.demo-card.featured {
    border-color: rgba(74, 124, 89, 0.4);
}

/* ================================================================
   MOBILE POLISH: Better touch targets and spacing
   ================================================================ */
@media (max-width: 768px) {
    .hero-content {
        padding: clamp(4rem, 8vw, 6rem) 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: var(--space-md);
    }

    .hero-cta .btn {
        min-width: 220px;
        width: 100%;
        max-width: 320px;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }

    .cta-option {
        padding: var(--space-lg);
    }

    .section-header {
        margin-bottom: var(--space-lg);
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }

    .demos-grid {
        grid-template-columns: 1fr;
    }

    .demo-preview {
        height: 200px;
    }

    .demo-content {
        padding: var(--space-md);
    }
}

/* ================================================================
   DESIGN POLISH: Smooth navbar transition
   ================================================================ */
.navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
/* ================================================================
   CONVERSION OPTIMIZATION STYLES
   ================================================================ */

/* Hero Trust Bar */
.hero-trust-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    opacity: 0.7;
}

.hero-trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    font-weight: 500;
}

.hero-trust-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-logo-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: 0.05em;
}

.trust-logo-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-text-muted);
}

/* Results Stats Bar */
.results-stats-bar {
    padding: 3rem 0;
    background: var(--color-bg-surface);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .stat-number {
        font-size: 1.75rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--color-bg-body);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--color-secondary);
    font-size: 0.85rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-main);
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
    font-size: 2.5rem;
    color: var(--color-primary-light);
    line-height: 1;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.testimonial-result {
    padding-top: 0.75rem;
}

.result-metric {
    display: inline-block;
    background: rgba(74, 124, 89, 0.15);
    color: var(--color-primary-light);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Form Reassurance */
.form-reassurance {
    text-align: center;
    margin-top: 1rem;
}

.form-reassurance p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-reassurance i {
    color: var(--color-primary-light);
    font-size: 0.75rem;
}

/* Sticky Bottom CTA Bar */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.75rem 0;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.sticky-bottom-cta.visible {
    transform: translateY(0);
    display: block !important;
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.sticky-cta-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

@media (max-width: 640px) {
    .sticky-cta-text {
        display: none;
    }
    .sticky-cta-inner {
        justify-content: center;
    }
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(74, 124, 89, 0.4);
    transition: all 0.3s var(--ease-out);
    opacity: 0;
    transform: translateY(20px);
}

.floating-contact-btn.visible {
    opacity: 1;
    transform: translateY(0);
    display: flex !important;
}

.floating-contact-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(74, 124, 89, 0.5);
    color: white;
}

.floating-contact-btn i {
    font-size: 1.1rem;
}

/* Hide floating btn when sticky CTA is visible on mobile */
@media (max-width: 640px) {
    .floating-contact-btn {
        bottom: 5rem;
    }
}

/* Hero CTA dual button layout */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta .btn {
        text-align: center;
        justify-content: center;
    }
    .hero-trust-logos {
        gap: 1rem;
    }
    .trust-logo-name {
        font-size: 0.85rem;
    }
}
