/* ==========================================================================
   DESIGN SYSTEM – webentwickler-frankfurt.com
   Farbpalette: #091413 · #285A48 · #408A71 · #B0E4CC
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --c-bg:           #091413;
    --c-bg-alt:       #0d1f1c;
    --c-surface:      #122a25;
    --c-surface-alt:  #1a3830;
    --c-primary:      #408A71;
    --c-primary-dark: #285A48;
    --c-accent:       #B0E4CC;
    --c-text:         #e0f0ea;
    --c-text-muted:   #8aab9e;
    --c-text-dim:     #5a7e70;
    --c-border:       rgba(176, 228, 204, 0.12);
    --c-border-hover: rgba(176, 228, 204, 0.25);
    --c-glass:        rgba(9, 20, 19, 0.6);
    --c-glass-border: rgba(176, 228, 204, 0.08);
    --c-white:        #ffffff;

    /* Gradients */
    --g-primary: linear-gradient(135deg, #285A48 0%, #408A71 50%, #B0E4CC 100%);
    --g-hero:    linear-gradient(160deg, #091413 0%, #122a25 40%, #1a3830 100%);
    --g-card:    linear-gradient(145deg, rgba(40, 90, 72, 0.15) 0%, rgba(64, 138, 113, 0.05) 100%);
    --g-accent:  linear-gradient(90deg, #285A48, #408A71, #B0E4CC);

    /* Typography (Fluid) */
    --ff-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ff-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --fs-xs:   clamp(0.75rem, 0.8vw + 0.5rem, 0.875rem);
    --fs-sm:   clamp(0.875rem, 1vw + 0.6rem, 1rem);
    --fs-base: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    --fs-md:   clamp(1.125rem, 1.2vw + 1rem, 1.25rem);
    --fs-lg:   clamp(1.2rem, 1.5vw + 1rem, 1.5rem);
    --fs-xl:   clamp(1.4rem, 2vw + 1rem, 2rem);
    --fs-2xl:  clamp(1.6rem, 3vw + 1rem, 2.5rem);
    --fs-3xl:  clamp(1.8rem, 4vw + 1rem, 3.5rem);
    --fs-4xl:  clamp(2.2rem, 5vw + 1rem, 4.5rem);
    --fs-hero: clamp(2.5rem, 6vw + 1.2rem, 6rem);

    /* Spacing (Fluid) */
    --sp-xs:  clamp(0.25rem, 0.5vw + 0.1rem, 0.5rem);
    --sp-sm:  clamp(0.5rem, 1vw + 0.2rem, 0.75rem);
    --sp-md:  clamp(1rem, 2vw + 0.5rem, 1.5rem);
    --sp-lg:  clamp(1.5rem, 3vw + 0.5rem, 2rem);
    --sp-xl:  clamp(2rem, 4vw + 1rem, 3rem);
    --sp-2xl: clamp(3rem, 6vw + 1rem, 4rem);
    --sp-3xl: clamp(4rem, 8vw + 1rem, 6rem);
    --sp-4xl: clamp(6rem, 10vw + 2rem, 8rem);
    --sp-section: clamp(3rem, 5vw, 5rem);

    /* Layout */
    --max-width: 1200px;
    --header-h: 72px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.2);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg:  0 8px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(64, 138, 113, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.2s;
    --t-base: 0.35s;
    --t-slow: 0.5s;
}


/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-primary);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease-out);
}

a:hover {
    color: var(--c-primary);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-text);
}


/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.section {
    padding: var(--sp-section) 0;
}

.section--alt {
    background: var(--c-bg-alt);
}

.section__header {
    text-align: center;
    margin-bottom: var(--sp-3xl);
}

.section__title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--sp-md);
    background: var(--g-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__subtitle {
    font-size: var(--fs-md);
    color: var(--c-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-accent { color: var(--c-accent); }
.text-muted  { color: var(--c-text-muted); }


/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(9, 20, 19, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-glass-border);
    transition: background var(--t-base) var(--ease-out),
                box-shadow var(--t-base) var(--ease-out);
}

.site-header.scrolled {
    background: rgba(9, 20, 19, 0.95);
    box-shadow: var(--shadow-md);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-header__logo {
    text-decoration: none;
    z-index: 1001;
}

.logo-text {
    font-size: var(--fs-md);
    font-weight: 800;
    color: var(--c-text);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--c-accent);
}

/* Nav */
.site-nav__list {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
}

.site-nav__link {
    display: block;
    padding: var(--sp-xs) 0;
    margin: 0 var(--sp-md);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--c-text-muted);
    transition: color var(--t-base) var(--ease-out);
    position: relative;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--g-accent);
    transition: width var(--t-base) var(--ease-out);
}

.site-nav__link:hover {
    color: var(--c-text);
}

.site-nav__link:hover::after {
    width: 100%;
}

.site-nav__link.active {
    color: var(--c-accent);
}

.site-nav__link.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--sp-sm);
    z-index: 1001;
}

.hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--t-base) var(--ease-out);
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Section Spacing ---------- */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.generic-section {
    position: relative;
}



.comparison-section {
    position: relative;
}



/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background: var(--g-hero);
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        min-height: 550px;
        padding-bottom: 300px; /* room for stacked image */
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(64, 138, 113, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 228, 204, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* 30% dark overlay for text readability — behind text, canvas & portrait */
.hero__dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    pointer-events: none;
}

/* Canvas overlays — above dark overlay, below text & portrait */
.reveal-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

/* Background filter layer */
.hero__filter-layer {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* Text content — left side */
.hero__content {
    position: relative;
    z-index: 5;
    max-width: 550px;
    padding-top: 25px;
    padding-left: 15px; /* just a tiny bit to align safely */
}

/* Portrait image — right side, above dark overlay */
.hero__image-wrapper {
    position: absolute;
    bottom: 0;
    /* Align to container right edge: 50% - half of max-width */
    right: max(calc(50% - var(--max-width) / 2), var(--sp-lg));
    width: 380px;
    height: 85%;
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 991px) {
    .hero__image-wrapper {
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 280px;
        height: 300px;
    }
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 0 60px rgba(0,0,0,0.9)) drop-shadow(0 0 120px rgba(64,138,113,0.35));
    pointer-events: auto;
}

/* Tech Background Animations */
.hero__animated-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    z-index: 1;
    pointer-events: none;
}

.tech-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: pulseGlow 8s infinite alternate ease-in-out;
}

.tech-glow--1 {
    width: 350px;
    height: 350px;
    background: var(--c-primary);
    top: 0%;
    left: 5%;
}

.tech-glow--2 {
    width: 300px;
    height: 300px;
    background: var(--c-accent);
    bottom: 5%;
    right: 0%;
    animation-delay: -4s;
}

.tech-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(64,138,113,0.5), transparent);
    height: 2px;
    width: 150%;
    left: -25%;
    opacity: 0;
    animation: scanLine 8s infinite linear;
}

.tech-line--1 { top: 25%; animation-delay: 0s; }
.tech-line--2 { top: 50%; animation-delay: 2.5s; }
.tech-line--3 { top: 75%; animation-delay: 5s; }

@keyframes pulseGlow {
    0% { transform: scale(0.8) translate(0, 0); opacity: 0.15; }
    50% { opacity: 0.35; }
    100% { transform: scale(1.1) translate(15%, 15%); opacity: 0.2; }
}

@keyframes scanLine {
    0% { transform: translateY(-50px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(50px); opacity: 0; }
}

.hero__title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: var(--sp-sm);
    line-height: 1.12;
}

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

.hero__desc {
    font-size: var(--fs-base);
    color: var(--c-text-muted);
    margin-bottom: var(--sp-lg);
    max-width: 520px;
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
    margin-bottom: var(--sp-md); 
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); /* Creates a neat 2x2 or 4x1 grid naturally */
    gap: var(--sp-md);
    margin: 0;
    padding: var(--sp-md); 
    background: var(--c-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-md);
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-size: var(--fs-xl); /* Reduced from 2xl */
    font-weight: 800;
    color: var(--c-accent);
}

.hero__stat-label {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    margin-top: var(--sp-xs);
}


/* ---------- Subpage Hero ---------- */
.subpage-hero {
    padding: calc(var(--header-h) + var(--sp-3xl)) 0 var(--sp-3xl);
    background: var(--g-hero);
    position: relative;
    text-align: center;
}

.subpage-hero__title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--sp-lg);
}

.subpage-hero__desc {
    font-size: var(--fs-md);
    color: var(--c-text-muted);
    max-width: 640px;
    margin: 0 auto var(--sp-xl);
    line-height: 1.7;
}


/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-sm);
    padding: 14px 28px;
    font-size: var(--fs-sm);
    font-weight: 600;
    font-family: var(--ff-primary);
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--t-base) var(--ease-out);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--g-primary);
    color: var(--c-bg);
    box-shadow: 0 4px 15px rgba(64, 138, 113, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(64, 138, 113, 0.4);
    color: var(--c-bg);
}

.btn--outline {
    background: transparent;
    color: var(--c-accent);
    border: 1px solid var(--c-border-hover);
}

.btn--outline:hover {
    background: rgba(176, 228, 204, 0.08);
    border-color: var(--c-accent);
    color: var(--c-accent);
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 36px;
    font-size: var(--fs-base);
}


/* ---------- Glass Card ---------- */
.glass-card {
    background: var(--c-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-md);
    padding: var(--sp-2xl);
    transition: all var(--t-base) var(--ease-out);
}

/* Hover only on linked cards */
a.glass-card:hover,
.glass-card--clickable:hover {
    border-color: var(--c-border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}


/* ---------- Service Cards ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-xl);
}

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

.service-card {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.service-card__icon {
    margin-bottom: var(--sp-lg);
    display: flex;
    justify-content: center;
    color: var(--c-accent);
}

.service-card__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-md);
    color: var(--c-accent);
}

.service-card__desc {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    margin-bottom: var(--sp-xl);
    line-height: 1.7;
}

.card-badge {
    position: absolute;
    top: var(--sp-md);
    right: var(--sp-md);
    background: rgba(64, 138, 113, 0.2);
    color: var(--c-accent);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
}


/* ---------- Pricing Cards ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--sp-2xl);
    align-items: stretch;
    justify-content: center;
}

.pricing-card {
    text-align: left;
    position: relative;
    padding: var(--sp-2xl) var(--sp-xl);
    border-radius: var(--radius-xl);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(64, 138, 113, 0.12) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

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

.pricing-card--highlighted {
    border-color: rgba(64, 138, 113, 0.4);
    background: linear-gradient(180deg, rgba(64, 138, 113, 0.08) 0%, rgba(0,0,0,0) 100%), var(--c-surface);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: scale(1.03);
}

.pricing-card--highlighted::before {
    background: radial-gradient(circle, rgba(64, 138, 113, 0.25) 0%, rgba(0,0,0,0) 70%);
}

.pricing-card--highlighted:hover {
    transform: scale(1.05);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.pricing-card__header {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: var(--sp-md);
    margin-bottom: var(--sp-lg);
    display: flex;
    flex-direction: column;
}

.pricing-card__name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-xs);
}

.pricing-card__badge {
    background: var(--g-primary);
    color: var(--c-bg-dark);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 15px rgba(64, 138, 113, 0.3);
}

.pricing-card__name {
    font-size: var(--fs-xl);
    color: var(--c-text);
    margin: 0;
    font-weight: 700;
}

.pricing-card--highlighted .pricing-card__name {
    background: var(--g-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card__price-wrapper {
    display: flex;
    align-items: baseline;
    gap: var(--sp-md);
    margin-bottom: var(--sp-xs);
}

.pricing-card__price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--c-text);
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-card__period {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    font-weight: 500;
    margin: 0;
}

.pricing-card__desc {
    font-size: var(--fs-base);
    color: var(--c-text-muted);
    line-height: 1.6;
    margin: 0;
}

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

.pricing-card__features {
    text-align: left;
    margin-bottom: var(--sp-xl);
    list-style: none;
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
}

.pricing-card__feature {
    position: relative;
    padding: var(--sp-xs) 0;
    padding-left: 36px;
    font-size: var(--fs-sm);
    color: var(--c-text-dim);
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.pricing-card__feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23408a71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card:not(.pricing-card--highlighted) .btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--c-text);
}

.pricing-card:not(.pricing-card--highlighted) .btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

/* ---------- Pricing Tier Slider ---------- */
.tier-slider__nav {
    display: flex;
    justify-content: center;
    gap: var(--sp-md);
    margin-bottom: var(--sp-3xl);
    flex-wrap: wrap;
}

.tier-slider__tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--fs-base);
    cursor: pointer;
    transition: all var(--t-fast);
}

.tier-slider__tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--c-text);
}

.tier-slider__tab.is-active {
    background: var(--g-primary);
    color: var(--c-bg-dark);
    border-color: #408a71;
    box-shadow: 0 5px 15px rgba(64, 138, 113, 0.3);
    outline: none;
}

.tier-slider__slide {
    display: none;
    animation: slideFadeIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tier-slider__slide.is-active {
    display: block;
}

@keyframes slideFadeIn {
    from { opacity: 0; transform: translateY(15px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Make the card inside a slider compact but centered */
.tier-slider .pricing-card {
    max-width: 580px;
    margin: 0 auto;
}

/* Fall back to default mobile padding and flex-direction: column for single-column layout */

/* ---------- Process Steps ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-xl);
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: var(--sp-xl);
}

.process-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--g-card);
    border: 2px solid var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-lg);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--c-accent);
}

.process-step__title {
    font-size: var(--fs-lg);
    margin-bottom: var(--sp-md);
    color: var(--c-accent);
}

.process-step__desc {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    line-height: 1.7;
}


/* ---------- FAQ Accordion ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
}

.faq-item {
    background: var(--c-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item.is-open {
    background: rgba(176, 228, 204, 0.04);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-md);
    padding: var(--sp-md) var(--sp-lg);
    background: none;
    border: none;
    color: var(--c-text);
    font-size: var(--fs-base);
    font-weight: 600;
    font-family: var(--ff-primary);
    cursor: pointer;
    text-align: left;
    transition: color var(--t-fast) var(--ease-out);
}

.faq-item__question:hover {
    color: var(--c-accent);
}

.faq-item__icon {
    color: var(--c-primary);
    transition: transform var(--t-base) var(--ease-out),
                color var(--t-base) var(--ease-out);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(176, 228, 204, 0.08);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
    color: var(--c-accent);
    background: rgba(176, 228, 204, 0.15);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--t-slow) var(--ease-out),
                opacity var(--t-base) var(--ease-out),
                padding var(--t-slow) var(--ease-out);
}

.faq-item.is-open .faq-item__answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 var(--sp-lg) var(--sp-lg) var(--sp-lg);
}

.faq-item__answer p {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    line-height: 1.8;
}


/* ---------- Pricing Tabs ---------- */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-2xl);
    flex-wrap: wrap;
}

.pricing-tab {
    padding: var(--sp-sm) var(--sp-xl);
    background: transparent;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: var(--fs-sm);
    font-weight: 500;
    font-family: var(--ff-primary);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease-out);
}

.pricing-tab:hover {
    border-color: var(--c-primary);
    color: var(--c-text);
}

.pricing-tab.active {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-bg);
}

.pricing-panel {
    display: none;
}

.pricing-panel.active {
    display: block;
    animation: fadeInUp 0.4s var(--ease-out);
}


/* ---------- CTA Section ---------- */
.cta-section {
    text-align: center;
    padding: var(--sp-4xl) 0;
    background: var(--g-hero);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(64, 138, 113, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section__title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--sp-md);
    position: relative;
}

.cta-section__desc {
    font-size: var(--fs-md);
    color: var(--c-text-muted);
    margin-bottom: var(--sp-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}


/* ---------- Contact Form ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3xl);
    align-items: start;
}

.form-group {
    margin-bottom: var(--sp-lg);
}

.form-group label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--sp-sm);
}

.form-control {
    width: 100%;
    padding: 14px var(--sp-md);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-size: var(--fs-base);
    font-family: var(--ff-primary);
    transition: border-color var(--t-fast) var(--ease-out),
                box-shadow var(--t-fast) var(--ease-out);
}

.form-control:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(64, 138, 113, 0.15);
}

.form-control::placeholder {
    color: var(--c-text-dim);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238aab9e' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-message {
    padding: var(--sp-md);
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-lg);
}

.form-message--success {
    background: rgba(64, 138, 113, 0.15);
    border: 1px solid var(--c-primary);
    color: var(--c-accent);
}

.form-message--error {
    background: rgba(220, 60, 60, 0.15);
    border: 1px solid rgba(220, 60, 60, 0.4);
    color: #f0a0a0;
}


/* ---------- About Section ---------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--sp-3xl);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual__box {
    aspect-ratio: 4/5;
    background: var(--g-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual__initials {
    font-size: 5rem;
    font-weight: 800;
    background: var(--g-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text h2 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--sp-lg);
}

.about-text p {
    color: var(--c-text-muted);
    margin-bottom: var(--sp-md);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-md);
    margin-top: var(--sp-xl);
}

.about-highlight {
    padding: var(--sp-md);
    background: var(--c-surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
}

.about-highlight__value {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--c-accent);
}

.about-highlight__label {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
}


/* ---------- Feature List ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-xl);
}

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

.feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
    padding: var(--sp-xl);
    background: rgba(3, 8, 8, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--t-base) var(--ease-out);
}

.feature-item:hover {
    border-color: rgba(62, 186, 133, 0.3);
}

.feature-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(62, 186, 133, 0.1);
    border-radius: 12px;
    color: var(--c-accent);
}

.feature-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.feature-item__content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
}

.feature-item__content h3,
.feature-item__content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-text);
    margin: 0;
}

.feature-item__content p {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0;
}

.feature-item__content a {
    color: var(--c-primary);
    font-weight: 500;
    transition: color var(--t-fast) var(--ease-out);
    margin-top: auto;
}

.feature-item__content a:hover {
    color: var(--c-accent);
}

/* ---------- Bento Grid ---------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: var(--sp-lg);
    margin-top: var(--sp-xl);
}

.bento-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--sp-xl);
    background: rgba(3, 8, 8, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    transition: all var(--t-base) var(--ease-out);
    overflow: hidden;
}

.bento-item:hover {
    border-color: rgba(62, 186, 133, 0.4);
    transform: translateY(-2px);
}

.bento-item__icon {
    position: absolute;
    top: var(--sp-xl);
    right: var(--sp-xl);
    color: var(--c-accent);
    opacity: 0.8;
}

.bento-item__icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.bento-item__content {
    position: relative;
    z-index: 2;
    margin-top: calc(var(--sp-2xl) * 1.5);
}

.bento-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--sp-sm);
    line-height: 1.3;
}

.bento-item p {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Bento Variants */
.bento-item--large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(3, 8, 8, 0.7), rgba(9, 20, 19, 0.9));
}
.bento-item--large .bento-item__content {
    margin-top: calc(var(--sp-2xl) * 2.5);
}
.bento-item--large h3 {
    font-size: 1.75rem;
}

.bento-item--wide {
    grid-column: span 2;
}

.bento-item--tall {
    grid-row: span 2;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-item--large, .bento-item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item--large, .bento-item--wide, .bento-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .bento-item__content {
        margin-top: calc(var(--sp-2xl) * 1) !important;
    }
}

/* ---------- Process Timeline ---------- */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: var(--sp-2xl) auto 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--c-accent) 0%, rgba(62, 186, 133, 0.1) 100%);
    border-radius: 2px;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: var(--sp-2xl);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step__marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--c-bg);
    border: 2px solid var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--c-accent);
    z-index: 2;
    box-shadow: 0 0 20px rgba(62, 186, 133, 0.15);
}

.process-step__content {
    background: rgba(3, 8, 8, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-xl);
    transition: transform var(--t-base) var(--ease-out);
}

.process-step:hover .process-step__content {
    transform: translateX(5px);
    border-color: rgba(62, 186, 133, 0.3);
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: var(--sp-sm);
}

.process-step p {
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 600px) {
    .process-timeline::before {
        left: 20px;
    }
    .process-step {
        padding-left: 60px;
    }
    .process-step__marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ---------- Legal Pages ---------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: var(--fs-xl);
    margin-top: var(--sp-2xl);
    margin-bottom: var(--sp-md);
    color: var(--c-accent);
}

.legal-content h3 {
    font-size: var(--fs-lg);
    margin-top: var(--sp-xl);
    margin-bottom: var(--sp-md);
}

.legal-content p {
    color: var(--c-text-muted);
    margin-bottom: var(--sp-md);
    line-height: 1.8;
}

.legal-content a {
    color: var(--c-primary);
}

.legal-content a:hover {
    color: var(--c-accent);
}


/* ---------- USP Bar ---------- */
.usp-bar {
    display: flex;
    justify-content: center;
    gap: var(--sp-2xl);
    flex-wrap: wrap;
    padding: var(--sp-md) 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.usp-bar__item {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
}

.usp-bar__icon {
    color: var(--c-accent);
    font-size: var(--fs-lg);
}


.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
    align-items: center; /* allow asymmetric heights/scaling */
    margin-top: var(--sp-xl);
}

.comparison-card {
    padding: var(--sp-3xl) var(--sp-2xl);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    gap: var(--sp-xl);
    background: var(--c-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

/* Watermark background icon */
.comparison-card::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

.comparison-card--negative {
    border: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0.85;
    transform: scale(0.95);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
}

.comparison-card--negative::after {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.comparison-card--positive {
    border: 1px solid rgba(64, 138, 113, 0.2);
    background: linear-gradient(145deg, rgba(64, 138, 113, 0.1) 0%, rgba(64, 138, 113, 0.02) 100%), var(--c-glass);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(64, 138, 113, 0.1);
    z-index: 1;
}

.comparison-card--positive::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23408a71' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    opacity: 0.06;
}

.comparison-card__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-lg);
    padding-bottom: var(--sp-xl);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.comparison-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.comparison-card--negative .comparison-card__icon {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
}

.comparison-card--positive .comparison-card__icon {
    background: var(--g-accent);
    color: var(--c-bg-dark);
    box-shadow: 0 10px 20px rgba(64, 138, 113, 0.25);
}

.comparison-card--negative .comparison-card__icon svg,
.comparison-card--positive .comparison-card__icon svg {
    width: 28px;
    height: 28px;
}

.comparison-card__title {
    font-size: var(--fs-xl);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.comparison-card--negative .comparison-card__title {
    color: rgba(255, 255, 255, 0.6);
}

.comparison-card--positive .comparison-card__title {
    background: var(--g-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
    position: relative;
    z-index: 1;
}

.comparison-card li {
    position: relative;
    padding-left: 44px;
    font-size: var(--fs-base);
    color: var(--c-text-muted);
    line-height: 1.5;
}

.comparison-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.comparison-card--negative li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

.comparison-card--positive li {
    color: var(--c-text);
}

.comparison-card--positive li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23408a71' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}


/* ---------- Risk Card ---------- */
.risk-card {
    background: linear-gradient(180deg, rgba(220, 60, 60, 0.04) 0%, rgba(255,255,255,0.01) 100%), var(--c-glass);
    border: 1px solid rgba(220, 60, 60, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--sp-3xl) var(--sp-2xl);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.risk-card::after {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 280px;
    height: 280px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc3c3c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.risk-card__subtitle {
    font-size: var(--fs-lg);
    color: rgba(220, 60, 60, 0.9);
    margin-bottom: var(--sp-lg);
    font-weight: 700;
}

.risk-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

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

.risk-list li {
    position: relative;
    padding-left: 40px;
    font-size: var(--fs-base);
    color: var(--c-text-muted);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.risk-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc3c3c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}

.risk-card__cta {
    margin-top: var(--sp-2xl);
    padding-top: var(--sp-lg);
    border-top: 2px dashed rgba(255, 255, 255, 0.06);
    font-weight: 600;
    font-size: var(--fs-md);
    color: var(--c-text);
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    position: relative;
    z-index: 1;
}

.risk-card__cta svg {
    color: var(--c-primary);
    flex-shrink: 0;
}


/* ---------- Contact Info Card ---------- */
.contact-info {
    padding: var(--sp-2xl);
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    padding: var(--sp-lg) 0;
    border-bottom: 1px solid var(--c-border);
}

.contact-info__item:last-child {
    border-bottom: none;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 138, 113, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info__label {
    font-size: var(--fs-sm);
    color: var(--c-text-dim);
}

.contact-info__value {
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--c-text);
}

.contact-info__value a {
    color: var(--c-accent);
}


/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ---------- Footer ---------- */
.site-footer {
    background: var(--c-bg-alt);
    border-top: 1px solid var(--c-border);
    padding: var(--sp-3xl) 0 var(--sp-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--sp-3xl);
    margin-bottom: var(--sp-2xl);
}

.footer-logo {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--c-text);
}

.footer-tagline {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    margin-top: var(--sp-sm);
    line-height: 1.6;
}

.footer-location {
    font-size: var(--fs-sm);
    color: var(--c-text-dim);
    margin-top: var(--sp-sm);
}

.footer-col__title {
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text);
    margin-bottom: var(--sp-lg);
}

.footer-col__list li {
    margin-bottom: var(--sp-sm);
}

.footer-col__list a {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
    transition: color var(--t-fast) var(--ease-out);
}

.footer-col__list a:hover {
    color: var(--c-accent);
}

.footer-bottom {
    padding-top: var(--sp-xl);
    border-top: 1px solid var(--c-border);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--fs-sm);
    color: var(--c-text-dim);
}


/* ---------- Trust Stats Bar ---------- */
.trust-bar {
    padding: var(--sp-xl) 0;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-md);
}

.trust-bar__item {
    text-align: center;
    background: var(--c-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--c-glass-border);
    border-radius: var(--radius-md);
    padding: var(--sp-lg) var(--sp-md);
}

.trust-bar__value {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: var(--sp-xs);
}

.trust-bar__label {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
}



/* ---------- Content Block (Rich Text) ---------- */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h3 {
    font-size: var(--fs-xl);
    color: var(--c-accent);
    margin-bottom: var(--sp-md);
    margin-top: var(--sp-xl);
}

.content-block h3:first-child {
    margin-top: 0;
}

.content-block p {
    font-size: var(--fs-base);
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: var(--sp-md);
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block strong {
    color: var(--c-text);
    font-weight: 600;
}

.content-block ul {
    margin-bottom: var(--sp-md);
    padding-left: var(--sp-lg);
}

.content-block ul li {
    font-size: var(--fs-base);
    color: var(--c-text-muted);
    line-height: 1.8;
    padding: var(--sp-xs) 0;
    list-style: none;
    position: relative;
    padding-left: var(--sp-lg);
}

.content-block ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--c-primary);
    font-size: var(--fs-sm);
}


/* ---------- Subpage Hero Enhancement ---------- */
.subpage-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--g-accent);
    opacity: 0.6;
}


/* ---------- Stat Highlight Cards ---------- */
.stat-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-lg);
    margin-top: var(--sp-xl);
}

.stat-highlight {
    padding: var(--sp-xl);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-highlight__value {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: var(--sp-xs);
}

.stat-highlight__label {
    font-size: var(--fs-sm);
    color: var(--c-text-muted);
}


/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hamburger {
        display: flex;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        background: rgba(9, 20, 19, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--t-base) var(--ease-out);
        z-index: 999;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav__list {
        flex-direction: column;
        gap: var(--sp-md);
    }

    .site-nav__link {
        font-size: var(--fs-xl);
        padding: var(--sp-md) var(--sp-2xl);
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-h) + var(--sp-2xl)) 0 var(--sp-3xl);
    }

    .hero__stats {
        gap: var(--sp-xl);
    }

    .about-content,
    .contact-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-2xl);
    }
}

@media (max-width: 640px) {
    .hero__title {
        font-size: var(--fs-2xl);
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--sp-lg);
    }

    .section__title {
        font-size: var(--fs-2xl);
    }

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

    .pricing-card--highlighted {
        transform: none;
    }

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

    .hero__actions {
        flex-direction: column;
    }

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

    .usp-bar {
        flex-direction: column;
        align-items: center;
        gap: var(--sp-md);
    }

    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-highlights {
        grid-template-columns: 1fr 1fr;
    }
}


/* ========== Tech Stack Marquee ========== */
.techstack-marquee {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 420px;
    background: var(--c-bg-dark, #0a1a14);
}

.techstack-marquee__columns {
    display: flex;
    gap: clamp(16px, 3vw, 32px);
    justify-content: center;
    height: 100%;
    transform: rotate(8deg) scale(1.3);
    transform-origin: center center;
}

.techstack-col {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: clamp(60px, 8vw, 90px);
    flex-shrink: 0;
}

.techstack-col__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.techstack-col--up .techstack-col__inner {
    animation: marqueeUp 30s linear infinite;
}

.techstack-col--down .techstack-col__inner {
    animation: marqueeDown 30s linear infinite;
}

@keyframes marqueeUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes marqueeDown {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

.techstack-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    opacity: 0.12;
    user-select: none;
}

.techstack-logo img {
    width: 40px;
    height: 40px;
    display: block;
}

/* Center overlay with heading */
.techstack-marquee__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    background: radial-gradient(ellipse 50% 60% at center, rgba(10, 26, 20, 0.92) 0%, rgba(10, 26, 20, 0.55) 50%, transparent 100%);
    pointer-events: none;
}

.techstack-marquee__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--c-accent, #b0e4cc), #6bc4a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 var(--sp-sm);
    line-height: 1.1;
}

.techstack-marquee__subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--c-text-muted, #8ca89c);
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .techstack-marquee {
        height: 320px;
    }

    .techstack-marquee__columns {
        gap: 10px;
    }

    .techstack-col {
        width: 50px;
    }

    .techstack-logo {
        padding: 10px;
    }

    .techstack-logo img {
        width: 28px;
        height: 28px;
    }
}

