/* ======================================================
   SHADOW WORK GUIDE — Design System
   Midnight Mystic Theme (Purple/Silver)
   ====================================================== */

/* ===== diviem.lv Original Logo Styles ===== */
.dv-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}
.dv-logo-icon {
    width: 36px;
    height: 36px;
    background-image: url('https://diviem.lv/favicon-32x32.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.dv-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: -0.5px;
}
.dv-logo-dot { color: #6c5ce7; }
.dv-badge {
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 2px;
}
.footer-logo-link { text-decoration: none; margin-bottom: 12px; display: inline-flex; }

/* ===== GDPR Notice ===== */
.gdpr-notice {
    background: rgba(108, 92, 231, 0.06);
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}
.gdpr-notice strong { color: #a29bfe; }
.gdpr-notice a { color: #a29bfe; text-decoration: underline; }

/* ===== Consent checkbox ===== */
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 16px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.consent-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--teal);
    margin-top: 2px;
    cursor: pointer;
    border-radius: 4px;
}
.consent-check a { color: var(--teal); text-decoration: underline; }

/* ===== Footer disclaimer ===== */
.footer-disclaimer {
    font-size: 0.72rem;
    opacity: 0.35;
    margin-top: 6px;
    line-height: 1.5;
}

:root {
    --teal:      #6c5ce7; /* Midnight Purple */
    --teal-dark: #4834d4;
    --blue:      #dfe6e9; /* Metallic Silver */
    --blue-glow: rgba(108, 92, 231, 0.3);
    --teal-glow: rgba(108, 92, 231, 0.25);
    --amber:     #fdcb6e;
    --red:       #ff7675;
    --green:     #55efc4;

    --bg-base:   #0d0d1a; /* Deep Nebula Black */
    --bg-card:   rgba(255,255,255,0.03);
    --bg-card-hover: rgba(255,255,255,0.06);
    --border:    rgba(255,255,255,0.08);
    --border-teal: rgba(108, 92, 231, 0.3);

    --text:      #fdfbfb;
    --text-muted:#8395a7;
    --text-dim:  rgba(255,255,255,0.3);

    --radius:    16px;
    --radius-sm: 10px;
    --shadow:    0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 50px rgba(108, 92, 231, 0.1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-base);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================== URGENCY BAR ===================== */
.urgency-bar {
    background: linear-gradient(90deg, #0a3d62, #1e3799);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0,206,201,0.3);
}
.urgency-icon { font-size: 1rem; }
.urgency-cta {
    background: var(--teal);
    color: #000;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.urgency-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--teal-glow);
}

/* ===================== HEADER ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6,10,16,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}
.logo-mark {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; color: #fff;
}
.logo-text { font-weight: 700; font-size: 1.1rem; }
.logo-dot { color: var(--teal); }
.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.header-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.header-nav a:hover { color: var(--teal); }
.btn-header-cta {
    background: var(--teal);
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}
.btn-header-cta:hover {
    box-shadow: 0 0 20px var(--teal-glow);
    transform: translateY(-1px);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    pointer-events: none;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.orb-1 {
    width: 600px; height: 600px;
    background: var(--teal);
    top: -200px; left: -150px;
    animation: float 8s ease-in-out infinite;
}
.orb-2 {
    width: 400px; height: 400px;
    background: var(--blue);
    bottom: -100px; right: -100px;
    animation: float 10s ease-in-out infinite reverse;
}
.orb-3 {
    width: 300px; height: 300px;
    background: var(--teal);
    top: 50%; right: 20%;
    animation: float 12s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}
.grid-overlay {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(0,206,201,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,206,201,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-content {
    position: relative; z-index: 1;
    text-align: center;
    padding-top: 20px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,206,201,0.1);
    border: 1px solid rgba(0,206,201,0.3);
    color: var(--teal);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.8;
}
.hero-subtitle strong { color: var(--text); }
.hero-subtitle em { color: var(--teal); font-style: normal; font-weight: 600; }

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin: 0 auto 40px;
    max-width: 760px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; flex: 1; min-width: 160px; padding: 8px; }
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.stat-divider {
    width: 1px; height: 60px;
    background: var(--border);
    margin: 0 8px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--teal-glow);
}
.btn-primary span, .btn-arrow { position: relative; z-index: 1; }
.btn-arrow { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }
.btn-xl { padding: 20px 56px; font-size: 1.2rem; }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.btn-ghost:hover {
    color: var(--teal);
    border-color: var(--border-teal);
    background: rgba(0,206,201,0.05);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: rgba(0,206,201,0.1);
    box-shadow: 0 0 20px var(--teal-glow);
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.5;
    font-size: 0.8rem;
}
.trust-label { color: var(--text-muted); }

/* ===================== SECTIONS BASE ===================== */
section { padding: 100px 0; }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-badge {
    display: inline-block;
    background: rgba(0,206,201,0.1);
    border: 1px solid rgba(0,206,201,0.3);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===================== PROBLEM SECTION ===================== */
.problem-section {
    background: rgba(255,255,255,0.01);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.problem-text .section-badge { margin-bottom: 20px; }
.problem-text h2 { margin-bottom: 20px; }
.text-red { color: var(--red); -webkit-text-fill-color: unset; background: none; }
.text-amber { color: var(--amber); }
.text-teal { color: var(--teal); }
.problem-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}
.problem-facts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.fact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: all 0.3s;
}
.fact-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0,206,201,0.2);
}
.fact-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}
.fact-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.fact-text em { font-style: normal; opacity: 0.6; font-size: 0.85em; }

/* CONFLICT DIAGRAM */
.problem-visual { display: flex; align-items: center; justify-content: center; }
.conflict-diagram {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    width: 100%;
    max-width: 360px;
}
.person-node {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    margin-bottom: 16px;
    transition: all 0.3s;
}
.person-node:last-of-type { margin-bottom: 24px; }
.person-node.manager { border-color: rgba(0,206,201,0.3); }
.person-node.candidate { border-color: rgba(9,132,227,0.3); }
.node-icon { font-size: 2rem; }
.node-label { font-weight: 700; font-size: 0.95rem; }
.node-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.conflict-arrows { padding: 8px 0; }
.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s;
}
.arrow-conflict {
    background: rgba(225,112,85,0.1);
    border: 1px solid rgba(225,112,85,0.4);
    color: var(--red);
}
.arrow-synergy {
    background: rgba(0,184,148,0.1);
    border: 1px solid rgba(0,184,148,0.4);
    color: var(--green);
}
.arrow.hidden { display: none; }
.diagram-toggle {
    background: rgba(0,206,201,0.1);
    color: var(--teal);
    border: 1px solid var(--border-teal);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}
.diagram-toggle:hover { background: rgba(0,206,201,0.2); }

/* ===================== HOW IT WORKS ===================== */
.how-section { background: transparent; }
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.step-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.step-num {
    position: absolute;
    top: -14px; left: -14px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: #fff;
}
.step-icon-wrap {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}
.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.step-time {
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 600;
    background: rgba(0,206,201,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 16px;
}
.connector-line {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    opacity: 0.4;
}
.connector-dot {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    margin-top: -5px;
    opacity: 0.6;
}

/* ===================== BENEFITS ===================== */
.benefits-section {
    background: rgba(0,206,201,0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
}
.benefit-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0,206,201,0.2);
    transform: translateY(-3px);
}
.benefit-card.featured {
    border-color: rgba(0,206,201,0.4);
    background: rgba(0,206,201,0.05);
    box-shadow: 0 0 30px rgba(0,206,201,0.08);
}
.benefit-card.featured-green {
    border-color: rgba(0,184,148,0.4);
    background: rgba(0,184,148,0.05);
}
.benefit-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.benefit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}
.benefit-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.benefit-tag {
    display: inline-block;
    margin-top: 12px;
    background: rgba(0,206,201,0.15);
    color: var(--teal);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.tag-green { background: rgba(0,184,148,0.15); color: var(--green); }

/* ===================== PREVIEW ===================== */
.preview-section { background: transparent; }
.preview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.preview-text .section-badge { margin-bottom: 20px; }
.preview-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.preview-list {
    list-style: none;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.preview-list li { font-size: 0.95rem; color: var(--text-muted); }
.preview-list li::before { color: var(--teal); }

/* MOCK REPORT */
.mock-report {
    background: #0d1825;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.mock-report::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
}
.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
.report-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--teal);
    letter-spacing: 2px;
}
.report-meta { font-size: 0.75rem; color: var(--text-dim); }

.report-score-circle {
    width: 120px; height: 120px;
    position: relative;
    margin: 0 auto 28px;
    display: flex; align-items: center; justify-content: center;
}
.circle-bg, .circle-fill {
    position: absolute; inset: 0;
    border-radius: 50%;
}
.circle-bg {
    border: 8px solid rgba(255,255,255,0.07);
}
.circle-fill {
    border: 8px solid transparent;
    border-top-color: var(--teal);
    border-right-color: var(--teal);
    border-bottom-color: var(--blue);
    transform: rotate(-45deg);
    animation: scoreReveal 1.5s ease-out forwards;
}
@keyframes scoreReveal {
    from { transform: rotate(-45deg) scale(0); }
    to { transform: rotate(-45deg) scale(1); }
}
.circle-text { text-align: center; position: relative; z-index: 1; }
.score-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}
.score-label { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 1px; }

.report-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.bar-item {
    display: grid;
    grid-template-columns: 110px 1fr 40px;
    align-items: center;
    gap: 12px;
}
.bar-label { font-size: 0.8rem; color: var(--text-muted); }
.bar-track {
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    height: 6px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    border-radius: 100px;
    width: 0;
    animation: barGrow 1.5s 0.5s ease-out forwards;
}
.bar-fill.bar-red { background: linear-gradient(90deg, #e17055, #d63031); }
.bar-fill.bar-green { background: linear-gradient(90deg, #00b894, #00cec9); }
@keyframes barGrow {
    from { width: 0 !important; }
}
.bar-val { font-size: 0.75rem; font-weight: 700; color: var(--teal); }
.bar-val.bar-val-red { color: var(--red); }
.bar-val.bar-val-green { color: var(--green); }

.report-snippet {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.02);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}
.testimonial-card:hover {
    border-color: rgba(0,206,201,0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.stars { font-size: 1rem; margin-bottom: 16px; }
blockquote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    border: none;
    padding: 0;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; }

/* ===================== PRICING + FORM ===================== */
.pricing-section {
    background: rgba(0,206,201,0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.pricing-card {
    background: rgba(0,206,201,0.05);
    border: 2px solid rgba(0,206,201,0.4);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    box-shadow: 0 0 40px rgba(0,206,201,0.08);
}
.pricing-badge-top {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}
.pricing-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}
.pricing-price {
    text-align: center;
    margin-bottom: 8px;
}
.price-old {
    font-size: 1.2rem;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-right: 8px;
}
.price-now {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--teal);
}
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 28px; }
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li.bonus {
    color: var(--teal);
    font-weight: 700;
    border-bottom: none;
    font-size: 0.95rem;
}
.pricing-guarantee {
    background: rgba(0,184,148,0.08);
    border: 1px solid rgba(0,184,148,0.3);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.pricing-guarantee strong { color: var(--green); }

/* THE FORM */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}
.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: var(--text);
}
.form-group-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(0,206,201,0.06);
    border: 1px solid rgba(0,206,201,0.2);
    border-radius: var(--radius-sm);
}
.group-icon { font-size: 1.5rem; }
.group-title { font-weight: 700; font-size: 0.95rem; }
.group-hint { font-size: 0.8rem; color: var(--text-muted); }

.input-row { margin-bottom: 14px; }
.input-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.input-group { display: flex; flex-direction: column; gap: 6px; }
label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}
label .optional { opacity: 0.5; font-weight: 400; }
label .required { color: var(--red); }
input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"] {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.2s;
    outline: none;
    -webkit-appearance: none;
    color-scheme: dark;
}
input:focus {
    border-color: var(--teal);
    background: rgba(0,206,201,0.05);
    box-shadow: 0 0 0 3px rgba(0,206,201,0.1);
}
input::placeholder { color: rgba(255,255,255,0.25); }
.input-hint { font-size: 0.78rem; color: var(--text-dim); }

.form-divider-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}
.form-divider-line::before,
.form-divider-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.form-divider-line span {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.btn-submit::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 40%; height: 200%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-20deg);
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0% { left: -60%; }
    100% { left: 120%; }
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--teal-glow);
}
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.form-footer-notes {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.note-item { font-size: 0.78rem; color: var(--text-dim); }

/* ===================== FAQ ===================== */
.faq-section { background: transparent; }
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
}
.faq-item:hover { border-color: rgba(0,206,201,0.3); }
.faq-item.open { border-color: rgba(0,206,201,0.4); }
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    gap: 16px;
}
.faq-icon {
    color: var(--teal);
    font-size: 1.3rem;
    flex-shrink: 0;
    font-weight: 300;
    transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 0 24px;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
    background: rgba(0,206,201,0.03);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 {
    width: 500px; height: 500px;
    background: var(--teal);
    top: -250px; left: -200px;
    animation: float 10s linear infinite;
}
.orb-cta-2 {
    width: 400px; height: 400px;
    background: var(--blue);
    bottom: -200px; right: -150px;
    animation: float 8s linear infinite reverse;
}
.final-cta .container { position: relative; z-index: 1; padding: 100px 24px; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.8; }
.cta-guarantees {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border);
    padding: 48px 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1rem;
}
.footer-left p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-right p { font-size: 0.85rem; color: var(--text-muted); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .header-nav a { display: none; }
    .problem-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .step-connector { transform: rotate(90deg); padding: 8px 0; }
    .preview-inner { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-layout { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .stat-divider { display: none; }
    .hero-stats { flex-direction: column; }
}

@media (max-width: 600px) {
    section { padding: 64px 0; }
    .hero { padding: 60px 0 48px; }
    .hero-title { font-size: 2rem; }
    .input-row.two-col { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .form-footer-notes { flex-direction: column; align-items: center; }
}

/* ====== Scroll animation ====== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.7s ease forwards;
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
