:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #81C784;
    --accent: #43A047;
    --accent-light: #E8F5E9;
    --pain: #e17055;
    --pain-light: #fef0ed;
    --bg: #ffffff;
    --bg-alt: #f7f9f7;
    --bg-card: #ffffff;
    --text: #1a2e1a;
    --text-body: #3d4f3d;
    --text-muted: #6b7e6b;
    --border: #dce8dc;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.10);
    --radius: 16px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
main { flex: 1; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #43A047, #81C784, #69F0AE);
    z-index: 9999;
    transition: width 0.05s linear;
    box-shadow: 0 0 8px rgba(67, 160, 71, 0.5);
}

/* ===== HEADER ===== */
header {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}

header.scrolled {
    position: fixed;
    background: rgba(15, 15, 15, 0.92);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom-color: rgba(67, 160, 71, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.accent { color: var(--primary); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 200;
}

.burger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: transform 0.35s, opacity 0.25s, background 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #81C784;
}
.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #81C784;
}

/* Nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    position: relative;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 4px 0;
}

/* Animated underline */
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #43A047, #81C784);
    border-radius: 2px;
    transition: width 0.3s, left 0.3s;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
    left: 0;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: #43A047 !important;
    color: #fff !important;
    padding: 10px 28px !important;
    border-radius: 8px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(67,160,71,0.35);
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 2px 12px rgba(67,160,71,0.35); }
    50% { box-shadow: 0 4px 24px rgba(67,160,71,0.6), 0 0 40px rgba(67,160,71,0.25); }
}

.nav-cta:hover {
    background: #388E3C !important;
    box-shadow: 0 4px 18px rgba(67,160,71,0.5);
    transform: translateY(-2px);
}

/* Mobile nav */
@media (max-width: 768px) {
    .burger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: right 0.4s cubic-bezier(.25,.8,.25,1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 150;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s, transform 0.3s, color 0.3s;
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.open a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.open a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.open a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.open a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.open a:nth-child(5) { transition-delay: 0.3s; }
}

footer {
    position: relative;
    padding: 60px 0 0;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    overflow: hidden;
}

.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(67, 160, 71, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(67, 160, 71, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 14px;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-title {
    color: #f0e6c8;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-nav a:hover {
    color: #81C784;
    transform: translateX(4px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(67, 160, 71, 0.3), transparent);
    margin-bottom: 0;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

/* ===== HERO (fullscreen background) ===== */
.hero {
    position: relative;
    min-height: 620px;
    padding: 80px 0 40px;
    background: url('/static/images/hero-woman.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(30,35,40,0.15) 0%,
        rgba(30,35,40,0.5) 35%,
        rgba(30,35,40,0.82) 55%,
        rgba(30,35,40,0.92) 70%,
        rgba(30,35,40,0.95) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.hero-content {
    max-width: 520px;
    width: 50%;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 28px;
}

.gradient-text {
    background: linear-gradient(90deg, #66BB6A, #00E676, #69F0AE, #66BB6A);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

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

.hero-pain-list {
    list-style: none;
    margin-bottom: 24px;
}

.hero-pain-item {
    background: linear-gradient(90deg, rgba(129,199,132,0.2) 0%, transparent 100%);
    padding: 12px 22px;
    border-radius: 8px;
    margin-bottom: 7px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    cursor: default;
}

.hero-pain-item:hover {
    transform: translateX(8px);
    background: linear-gradient(90deg, rgba(129,199,132,0.35) 0%, transparent 100%);
    box-shadow: -3px 0 0 #43A047;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    line-height: 1.65;
    font-weight: 400;
}

.hero-cta {
    width: auto !important;
    padding: 16px 44px;
    font-size: 1.08rem;
    display: inline-flex !important;
    background: #43A047 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.hero-cta:hover {
    background: #388E3C !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    transition: transform 0.3s, color 0.3s;
    cursor: default;
}

.hero-feature:hover {
    transform: translateX(6px);
    color: rgba(255,255,255,0.95);
}

.hero-feature-check {
    width: 20px;
    height: 20px;
    background: #43A047;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.72rem;
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-feature:hover .hero-feature-check {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(67, 160, 71, 0.6);
}

/* Hero typing cursor */
#heroTyping {
    border-right: 2px solid #81C784;
    padding-right: 2px;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Hero scroll arrow */
.hero-scroll-arrow {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: opacity 0.4s;
}

.scroll-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: border-color 0.3s, color 0.3s;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
}

.hero-scroll-arrow:hover .scroll-arrow-icon {
    border-color: #81C784;
    color: #81C784;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== STATS ===== */
.stats-bar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    background: none;
}

.stats-row {
    display: inline-flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 24px 40px;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on stats */
.stats-row::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1.5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(67, 160, 71, 0.3) 25%,
        rgba(129, 199, 132, 0.45) 50%,
        rgba(67, 160, 71, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderSweep 3s linear infinite;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #69F0AE;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
}

/* ===== SECTIONS ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PAIN SECTION ===== */
.pain-section {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
    height: 110vh;
    display: flex;
    align-items: center;
    background: url('/static/images/pain-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.pain-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.pain-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.pain-title {
    color: #ffffff !important;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.pain-title .gradient-text {
    background: linear-gradient(135deg, #43A047, #81C784, #43A047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-cards, .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.pain-card {
    position: relative;
    background: rgba(20, 20, 20, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px 56px;
    box-shadow:
        0 4px 30px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.4s cubic-bezier(.25,.8,.25,1),
                border-color 0.4s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.pain-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(.25,.8,.25,1),
                transform 0.7s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.4s cubic-bezier(.25,.8,.25,1),
                border-color 0.4s;
}

.pain-card:nth-child(1) { transition-delay: 0.1s; }
.pain-card:nth-child(2) { transition-delay: 0.3s; }
.pain-card:nth-child(3) { transition-delay: 0.5s; }

/* Shimmer border effect — always visible */
.pain-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1.5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(67, 160, 71, 0.3) 25%,
        rgba(129, 199, 132, 0.45) 50%,
        rgba(67, 160, 71, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderSweep 3s linear infinite;
    opacity: 0.6;
    transition: opacity 0.4s;
}

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

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

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.5),
        0 0 30px rgba(67, 160, 71, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.1);
    border-color: rgba(67, 160, 71, 0.3);
}

/* Corner glow accents */
.pain-card .pain-image-wrap::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pain-image-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(67, 160, 71, 0.35);
    box-shadow:
        0 0 20px rgba(67, 160, 71, 0.15),
        0 0 40px rgba(67, 160, 71, 0.05);
    transition: box-shadow 0.4s, border-color 0.4s;
}

.pain-card:hover .pain-image-wrap {
    border-color: rgba(67, 160, 71, 0.6);
    box-shadow:
        0 0 25px rgba(67, 160, 71, 0.25),
        0 0 50px rgba(67, 160, 71, 0.1);
}

.pain-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.pain-card:hover .pain-photo {
    transform: scale(1.05);
}

.pain-card h3 {
    font-size: 1.3rem;
    color: #f0e6c8;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.pain-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.75;
    flex-grow: 1;
}

/* Green glow bar — pinned to bottom */
.pain-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    box-shadow: 0 0 14px var(--accent), 0 0 30px rgba(67, 160, 71, 0.2);
    transition: width 0.4s, box-shadow 0.4s;
}

.pain-card:hover::after {
    width: 90px;
    box-shadow: 0 0 20px var(--accent), 0 0 50px rgba(67, 160, 71, 0.3);
}

/* ===== SOLUTION ===== */
.solution-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    height: 110vh;
    display: flex;
    align-items: center;
    background: url('/static/images/solution-bg.png') center center / cover no-repeat;
    overflow: hidden;
}

.solution-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(15,12,8,0.5) 50%, rgba(10,10,10,0.6) 100%),
        radial-gradient(ellipse at 70% 60%, rgba(67, 160, 71, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.solution-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: 20%;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-section .solution-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
    max-width: 600px;
}

.solution-section .solution-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    text-align: left;
    max-width: 600px;
    margin: 0 0 50px;
    line-height: 1.7;
}

.solution-subtitle strong {
    color: #f0e6c8;
}

.solution-content-wrap {
    max-width: 550px;
}

.solution-points-box {
    position: relative;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(67, 160, 71, 0.15);
    border-radius: 20px;
    padding: 36px 32px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: border-color 0.4s;
}

.solution-points-box:hover {
    border-color: rgba(67, 160, 71, 0.4);
}

/* Shimmer sweep on points box */
.solution-points-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1.5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(67, 160, 71, 0.35) 25%,
        rgba(129, 199, 132, 0.5) 50%,
        rgba(67, 160, 71, 0.35) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderSweep 3s linear infinite;
}

@keyframes borderSweep {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.solution-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.solution-point.visible {
    opacity: 1;
    transform: translateX(0);
}

.solution-point:nth-child(1) { transition-delay: 0.1s; }
.solution-point:nth-child(2) { transition-delay: 0.3s; }
.solution-point:nth-child(3) { transition-delay: 0.5s; }

.solution-point + .solution-point {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.solution-check {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(67, 160, 71, 0.5);
    transition: transform 0.3s, text-shadow 0.3s;
}

.solution-point:hover .solution-check {
    transform: scale(1.3);
    text-shadow: 0 0 20px rgba(67, 160, 71, 0.8);
}

.solution-highlight {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(16px);
    border-left: 4px solid var(--accent);
    border-radius: 0 16px 16px 0;
    padding: 24px 28px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    box-shadow: 0 0 20px rgba(67, 160, 71, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

.solution-highlight.visible {
    opacity: 1;
    transform: translateY(0);
    animation: highlightPulse 3s ease-in-out infinite 1.5s;
}

@keyframes highlightPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(67, 160, 71, 0.08); }
    50% { box-shadow: 0 0 30px rgba(67, 160, 71, 0.2), 0 0 60px rgba(67, 160, 71, 0.06); }
}

.solution-highlight strong {
    color: #f0e6c8;
}



/* ===== SECTION IMAGE ===== */
.section-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    background: var(--bg-alt);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 60px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.image-placeholder .placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

/* ===== EXAMPLES ===== */
.examples-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    height: 110vh;
    display: flex;
    align-items: center;
    background: url('/static/images/examples-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.examples-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}

.examples-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.examples-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.examples-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.example-card {
    position: relative;
    background: rgba(20, 20, 20, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s, border-color 0.4s;
    opacity: 0;
    transform: translateY(40px);
}

.example-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(.25,.8,.25,1),
                transform 0.7s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.4s, border-color 0.4s;
}

.example-card:nth-child(1) { transition-delay: 0.1s; }
.example-card:nth-child(2) { transition-delay: 0.3s; }
.example-card:nth-child(3) { transition-delay: 0.5s; }

/* Shimmer border */
.example-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1.5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(67, 160, 71, 0.3) 25%,
        rgba(129, 199, 132, 0.45) 50%,
        rgba(67, 160, 71, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderSweep 3s linear infinite;
    opacity: 0.5;
    transition: opacity 0.4s;
    z-index: 0;
}

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

.example-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(67, 160, 71, 0.1);
    border-color: rgba(67, 160, 71, 0.3);
}

/* Green glow bar at bottom */
.example-card::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    box-shadow: 0 0 14px var(--accent), 0 0 30px rgba(67, 160, 71, 0.2);
    transition: width 0.4s, box-shadow 0.4s;
    z-index: 1;
}

.example-card:hover::after {
    width: 80px;
    box-shadow: 0 0 20px var(--accent), 0 0 50px rgba(67, 160, 71, 0.3);
}

.example-header {
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.25), rgba(67, 160, 71, 0.08));
    border-bottom: 1px solid rgba(67, 160, 71, 0.15);
    color: #fff;
    padding: 20px 24px;
    position: relative;
    z-index: 1;
}

.example-badge {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(67, 160, 71, 0.3);
    border: 1px solid rgba(67, 160, 71, 0.4);
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: #81C784;
}

.example-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f0e6c8;
}

.example-body, .example-content {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.example-body > p,
.example-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.65;
}

.example-recommendations {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 16px;
}

.example-recommendations p {
    margin-bottom: 4px;
    transition: transform 0.3s;
}

.example-recommendations p:hover {
    transform: translateX(4px);
}

.example-vacancies {
    background: rgba(67, 160, 71, 0.08);
    border: 1px solid rgba(67, 160, 71, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 12px;
}

.example-vacancies-title {
    font-size: 0.88rem;
    color: #81C784;
    font-weight: 600;
    margin-bottom: 12px;
}

.example-vacancy {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
}

.example-vacancy:last-child { border-bottom: none; }

.example-vacancy strong {
    color: #f0e6c8;
    display: block;
    margin-bottom: 4px;
}

.example-vacancy span {
    color: #81C784;
    font-size: 0.82rem;
    font-style: italic;
}

.example-fade {
    display: none;
}

/* ===== REVIEWS ===== */
.reviews-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    height: 110vh;
    display: flex;
    align-items: center;
    background: url('/static/images/examples-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.reviews-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(15,12,8,0.5) 50%, rgba(10,10,10,0.65) 100%),
        radial-gradient(ellipse at 30% 40%, rgba(67, 160, 71, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.reviews-title {
    color: #ffffff !important;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.reviews-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    position: relative;
    background: rgba(20, 20, 20, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px 32px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s, border-color 0.4s;
    opacity: 0;
    transform: translateY(40px);
    overflow: hidden;
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(.25,.8,.25,1),
                transform 0.7s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.4s, border-color 0.4s;
}

.review-card:nth-child(1) { transition-delay: 0.1s; }
.review-card:nth-child(2) { transition-delay: 0.3s; }
.review-card:nth-child(3) { transition-delay: 0.5s; }

/* Shimmer border */
.review-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1.5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(67, 160, 71, 0.3) 25%,
        rgba(129, 199, 132, 0.45) 50%,
        rgba(67, 160, 71, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderSweep 3s linear infinite;
    opacity: 0.5;
    transition: opacity 0.4s;
    z-index: 0;
}

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

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(67, 160, 71, 0.1);
    border-color: rgba(67, 160, 71, 0.3);
}

/* Green glow bar at bottom */
.review-card::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    box-shadow: 0 0 14px var(--accent), 0 0 30px rgba(67, 160, 71, 0.2);
    transition: width 0.4s, box-shadow 0.4s;
    z-index: 1;
}

.review-card:hover::after {
    width: 80px;
    box-shadow: 0 0 20px var(--accent), 0 0 50px rgba(67, 160, 71, 0.3);
}

.review-quote-icon {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 3rem;
    color: rgba(67, 160, 71, 0.15);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    transition: color 0.4s;
}

.review-card:hover .review-quote-icon {
    color: rgba(67, 160, 71, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.review-avatar-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid rgba(67, 160, 71, 0.4);
    box-shadow: 0 0 15px rgba(67, 160, 71, 0.15), 0 0 30px rgba(67, 160, 71, 0.05);
    flex-shrink: 0;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.review-card:hover .review-avatar-wrap {
    border-color: rgba(67, 160, 71, 0.7);
    box-shadow: 0 0 20px rgba(67, 160, 71, 0.3), 0 0 40px rgba(67, 160, 71, 0.1);
}

.review-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.review-card:hover .review-photo {
    transform: scale(1.1);
}

.review-name {
    font-weight: 700;
    color: #f0e6c8;
    font-size: 1rem;
}

.review-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.review-stars {
    color: #f9ca24;
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(249, 202, 36, 0.3);
    position: relative;
    z-index: 1;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.review-result {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(67, 160, 71, 0.1);
    border: 1px solid rgba(67, 160, 71, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.88rem;
    color: #81C784;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: background 0.3s, border-color 0.3s;
}

.review-card:hover .review-result {
    background: rgba(67, 160, 71, 0.18);
    border-color: rgba(67, 160, 71, 0.35);
}

.review-result-icon {
    font-size: 1.1rem;
}

/* Reviews CTA button */
.reviews-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.btn-pulse {
    animation: ctaPulse 2s ease-in-out infinite;
    font-size: 1.05rem;
    padding: 16px 44px !important;
}

/* ===== FAQ ===== */
.faq-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    height: 110vh;
    display: flex;
    align-items: center;
    background: url('/static/images/examples-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.faq-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(15,12,8,0.55) 50%, rgba(10,10,10,0.65) 100%),
        radial-gradient(ellipse at 40% 60%, rgba(67, 160, 71, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.faq-title {
    color: #ffffff !important;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.faq-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    position: relative;
    background: rgba(20, 20, 20, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.4s, box-shadow 0.4s;
}

.faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-item:nth-child(5) { transition-delay: 0.25s; }
.faq-item:nth-child(6) { transition-delay: 0.3s; }
.faq-item:nth-child(7) { transition-delay: 0.35s; }

.faq-item:hover {
    border-color: rgba(67, 160, 71, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.faq-item.active {
    border-color: rgba(67, 160, 71, 0.35);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4), 0 0 20px rgba(67, 160, 71, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #f0e6c8;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    font-family: inherit;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #ffffff;
}

.faq-icon {
    font-size: 1.5rem;
    color: #81C784;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.4s;
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.25,.8,.25,1), padding 0.4s;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PRICING + CTA ===== */
.pricing-cta-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    height: 110vh;
    display: flex;
    align-items: center;
    background: url('/static/images/examples-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.pricing-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(15,12,8,0.55) 50%, rgba(10,10,10,0.65) 100%),
        radial-gradient(ellipse at 60% 50%, rgba(67, 160, 71, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.pricing-cta-section .container {
    position: relative;
    z-index: 2;
}

.pricing-cta-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: rgba(20, 20, 20, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 44px 36px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s, border-color 0.4s;
    overflow: hidden;
}

/* Shimmer border */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1.5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(67, 160, 71, 0.3) 25%,
        rgba(129, 199, 132, 0.45) 50%,
        rgba(67, 160, 71, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderSweep 3s linear infinite;
    opacity: 0.5;
    transition: opacity 0.4s;
    z-index: 0;
}

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

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(67, 160, 71, 0.1);
    border-color: rgba(67, 160, 71, 0.3);
}

/* Green glow bar */
.pricing-card::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
    box-shadow: 0 0 14px var(--accent), 0 0 30px rgba(67, 160, 71, 0.2);
    transition: width 0.4s, box-shadow 0.4s;
    z-index: 1;
}

.pricing-card:hover::after {
    width: 80px;
    box-shadow: 0 0 20px var(--accent), 0 0 50px rgba(67, 160, 71, 0.3);
}

.pricing-label {
    font-size: 0.85rem;
    color: #81C784;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.pricing-price {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #81C784, #43A047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.pricing-per {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.75);
    transition: transform 0.3s;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    transform: translateX(4px);
}

.pricing-features li::before {
    content: '✓';
    color: #81C784;
    font-weight: 700;
    margin-right: 10px;
    text-shadow: 0 0 8px rgba(67, 160, 71, 0.4);
}

/* Pricing badge */
.pricing-badge-popular {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #43A047, #81C784);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.3);
    z-index: 2;
}

/* Payment icons */
.pricing-payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.payment-logo {
    height: 22px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
    border-radius: 4px;
}

.payment-logo-sberpay {
    height: 20px;
}

.pricing-card:hover .payment-logo {
    opacity: 0.9;
}

/* CTA block (right side) */
.cta-block {
    padding: 20px 0;
}

.cta-block h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.cta-block p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
}

.cta-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.cta-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.cta-highlight-icon {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    background: rgba(67, 160, 71, 0.15);
    border: 1px solid rgba(67, 160, 71, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.cta-highlight-item:hover .cta-highlight-icon {
    background: rgba(67, 160, 71, 0.3);
    border-color: rgba(67, 160, 71, 0.5);
    transform: scale(1.1);
}

.cta-block .btn {
    width: auto;
    padding: 16px 48px;
    font-size: 1.05rem;
}

/* ===== AUDIT PAGE ===== */
.audit-page-bg {
    background: url('/static/images/audit-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Dark header on audit page */
.audit-page-bg ~ script,
.audit-page-bg header {
    /* handled via body class */
}

body:has(.audit-page-bg) header {
    background: rgba(30, 35, 30, 0.92);
    border-bottom: 1px solid rgba(67, 160, 71, 0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.audit-page {
    padding: 80px 0 60px;
    max-width: 640px;
    margin: 0 auto;
}

.audit-page h1 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.audit-page > p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

/* Steps */
.audit-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.audit-step {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 28px 16px 22px;
    text-align: center;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.03),
        0 12px 32px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.audit-step:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.05),
        0 6px 16px rgba(0, 0, 0, 0.05),
        0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.audit-step-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 12px;
}

.audit-step h3 {
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 4px;
    font-weight: 600;
}

.audit-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Form card */
.audit-page form {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 40px 36px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 6px 16px rgba(0, 0, 0, 0.04),
        0 16px 48px rgba(0, 0, 0, 0.06);
}

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    letter-spacing: 0.2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    color: var(--text);
    font-size: 0.93rem;
    font-family: inherit;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(46, 125, 50, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b8b0;
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.file-upload {
    position: relative;
    border: 1.5px dashed #c8c8c8;
    border-radius: 14px;
    padding: 36px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    background: rgba(0, 0, 0, 0.015);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.file-upload:hover {
    border-color: var(--primary);
    background: rgba(237, 247, 238, 0.7);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03), 0 0 0 3px rgba(46, 125, 50, 0.06);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.file-icon {
    font-size: 1.8rem;
    opacity: 0.6;
}

.file-text {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.file-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    color: #b0b8b0;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(232, 245, 233, 0.7);
    border: 1px solid rgba(67, 160, 71, 0.12);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.price-label {
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.audit-page .btn-primary {
    border-radius: 12px;
    padding: 14px 30px;
    font-size: 1rem;
}

.form-error {
    margin-top: 16px;
    padding: 12px 16px;
    background: #fef0ed;
    border: 1px solid rgba(225, 112, 85, 0.2);
    border-radius: 10px;
    color: var(--pain);
    font-size: 0.88rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.3s, background 0.3s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #66BB6A);
    color: #fff;
    width: 100%;
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-alt);
}

.btn-download {
    background: linear-gradient(135deg, #43A047, #66BB6A);
    color: #fff;
}

.btn-download:hover {
    box-shadow: 0 6px 24px rgba(67, 160, 71, 0.3);
}

.form-error {
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--pain-light);
    border: 1px solid var(--pain);
    border-radius: var(--radius-sm);
    color: #c0392b;
    font-size: 0.93rem;
}

/* ===== STATUS PAGES ===== */
.status-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 55vh;
}

.status-card {
    text-align: center;
    max-width: 480px;
}

.status-card h2 { color: var(--text); margin-bottom: 14px; }
.status-card p { color: var(--text-muted); margin-bottom: 10px; }
.status-hint { font-size: 0.85rem; margin-bottom: 28px; }

.payment-icon, .error-icon { font-size: 3.5rem; margin-bottom: 20px; }

.spinner {
    width: 56px;
    height: 56px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 28px;
    animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 24px;
}

.progress-fill {
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ===== RESULT PAGE ===== */
.result-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 0;
}

.result-header {
    text-align: center;
    margin-bottom: 36px;
}

.result-header h1 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 10px;
}

.result-header p { color: var(--text-muted); }

.result-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    line-height: 1.9;
    font-size: 0.95rem;
    color: var(--text-body);
    white-space: pre-wrap;
    word-wrap: break-word;
}

.result-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

.result-actions .btn { width: auto; padding: 13px 28px; }

/* ===== DRAG & DROP ===== */
.file-upload.drag-active {
    border-color: var(--primary);
    background: #E8F5E9;
    transform: scale(1.02);
}

/* ===== SHARE BUTTON ===== */
.btn-share {
    background: linear-gradient(135deg, #2E7D32, #81C784);
    color: #fff;
}

.btn-share:hover {
    box-shadow: 0 6px 24px rgba(46, 125, 50, 0.3);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 50px 0 80px;
}

.legal-page h1 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 8px;
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 36px;
}

.legal-page h2 {
    font-size: 1.15rem;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-page p,
.legal-page li {
    color: var(--text-body);
    font-size: 0.93rem;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal-page li {
    margin-bottom: 6px;
}

/* (footer styles moved to top) */

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero { min-height: 500px; }
    .hero-overlay {
        background: rgba(30,35,40,0.7);
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .pain-grid, .reviews-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pain-section { min-height: auto; height: auto; padding: 60px 0; }
    .pain-title { font-size: 2rem; margin-bottom: 36px; }
    .pain-image-wrap { width: 120px; height: 120px; }
    .stats-row { gap: 28px; }
    .audit-steps { grid-template-columns: 1fr; }
    .solution-section { min-height: auto; height: auto; padding: 60px 0; }
    .solution-title { font-size: 2rem; }
    .solution-content-wrap { max-width: 100%; }
    .examples-section { min-height: auto; height: auto; padding: 60px 0; }
    .examples-title { font-size: 2rem; }
    .examples-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .reviews-section { min-height: auto; height: auto; padding: 60px 0; }
    .reviews-title { font-size: 2rem; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .faq-section { min-height: auto; height: auto; padding: 60px 0; }
    .faq-title { font-size: 2rem; }
    .pricing-cta-section { min-height: auto; height: auto; padding: 60px 0; }
    .pricing-cta-wrap { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .cta-block { text-align: center; }
    .cta-block p { margin-left: auto; margin-right: auto; }
    .cta-highlights { align-items: center; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-nav { align-items: center; }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 32px 20px 40px;
    }
    .hero-content h1 { font-size: 2.2rem; }
    .steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .examples-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .pricing-card { padding: 32px 24px; }
    .pricing-price { font-size: 2.5rem; }
    .result-content { padding: 24px; }
    .result-actions { flex-direction: column; }
    .result-actions .btn { width: 100%; }
    .stat-value { font-size: 1.5rem; }
    .cta-block .btn { width: 100%; }
    .cta-block h2 { font-size: 1.8rem; }
}

/* ===== PRINT ===== */
@media print {
    header, footer, .result-actions { display: none !important; }
    .result-content { border: 1px solid #ddd; padding: 20px; box-shadow: none; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .pain-section, .solution-section, .examples-section,
.reviews-section, .faq-section, .pricing-cta-section, .audit-page {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== PAIN SECTION PARTICLES ===== */
.pain-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* Card tilt 3D */
.pain-card.tilt-active {
    transform-style: preserve-3d;
    perspective: 800px;
}
