/* ═══════════════════════════════════════════════
   HOME — Landing page specific styles
   ═══════════════════════════════════════════════ */

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    padding: 140px 56px 80px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(180deg, #FAFAF8 0%, #FFFFFF 60%, var(--warm) 100%);
}
.hero-ambient { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 1200px; height: 1200px; background: radial-gradient(circle, rgba(0,191,179,0.06) 0%, rgba(0,191,179,0.02) 30%, transparent 60%); pointer-events: none; }
.hero-ambient-2 { position: absolute; top: 100px; right: -300px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(5,28,44,0.03) 0%, transparent 60%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 32px; position: relative; z-index: 1; box-shadow: var(--shadow-sm); }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px rgba(5,150,105,0.4); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(5,150,105,0.4); } 50% { opacity: 0.7; box-shadow: 0 0 12px rgba(5,150,105,0.6); } }
.hero-title { font-family: var(--serif); font-size: 68px; font-weight: 700; line-height: 1.08; letter-spacing: -0.03em; color: var(--navy); max-width: 820px; margin-bottom: 24px; position: relative; z-index: 1; }
.hero-title em { font-style: italic; background: linear-gradient(135deg, var(--teal), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 19px; line-height: 1.7; color: var(--ink-3); max-width: 560px; margin-bottom: 40px; position: relative; z-index: 1; }
.hero-ctas { display: flex; align-items: center; gap: 14px; margin-bottom: 64px; position: relative; z-index: 1; }
.hero-ctas .btn-lg { min-width: 220px; justify-content: center; }
.hero-note { font-size: 12px; color: var(--ink-4); position: relative; z-index: 1; margin-bottom: 60px; }

/* ═══ HERO SCREENSHOT ═══ */
.hero-screenshot-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
    perspective: 1200px;
}
.hero-screenshot {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 40px 100px rgba(5,28,44,0.12);
    transform: rotateX(3deg);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
    animation: heroFloat 7s ease-in-out infinite;
}
.hero-screenshot:hover {
    transform: rotateX(0deg);
    box-shadow: var(--shadow-xl), 0 50px 120px rgba(5,28,44,0.15);
}
@keyframes heroFloat {
    0%, 100% { transform: rotateX(3deg) translateY(0); }
    50% { transform: rotateX(3deg) translateY(-10px); }
}
.hero-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--warm);
    border-bottom: 1px solid var(--border);
}
.hero-browser-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
}
.hero-browser-dot:nth-child(1) { background: #FF5F57; }
.hero-browser-dot:nth-child(2) { background: #FFBD2E; }
.hero-browser-dot:nth-child(3) { background: #28CA41; }
.hero-browser-url {
    flex: 1;
    margin-left: 10px;
    padding: 4px 14px;
    background: var(--white);
    border-radius: 6px;
    font-size: 11px;
    color: var(--ink-4);
    font-weight: 500;
    border: 1px solid var(--border);
}
.hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* ═══ STRATEGIES BAR ═══ */
.strategies-bar { padding: 44px 0; background: var(--warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.strategies-inner { max-width: 1120px; margin: 0 auto; text-align: center; padding: 0 56px; }
.strategies-text { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-4); margin-bottom: 22px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.strategies-text::before, .strategies-text::after { content: ''; width: 32px; height: 1px; background: var(--border); }
.strategies-track-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.strategies-track { display: flex; gap: 14px; width: max-content; animation: scrollStrategies 40s linear infinite; }
.strategies-track:hover { animation-play-state: paused; }
@keyframes scrollStrategies {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.strategy-card {
    flex-shrink: 0;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    width: calc((100vw - 5 * 14px) / 6);
    min-width: 200px;
    max-width: 260px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.strategy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--teal), var(--green));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.strategy-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,191,179,0.15);
}
.strategy-card:hover::before { opacity: 1; }
.strategy-card.coming-soon { border-style: dashed; }
.strategy-card.coming-soon::before { display: none; }
.strategy-card-name { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; gap: 7px; }
.strategy-card-name::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; box-shadow: 0 0 6px rgba(0,191,179,0.3); }
.strategy-card.coming-soon .strategy-card-name::before { background: var(--ink-4); box-shadow: none; }
.strategy-card-desc { font-size: 11px; color: var(--ink-3); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ═══ STRATEGY MODAL ═══ */
.strat-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5,28,44,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease);
}
.strat-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.strat-modal {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-xl), 0 40px 80px rgba(5,28,44,0.18);
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s var(--ease);
    overflow: hidden;
}
.strat-modal-overlay.open .strat-modal {
    transform: translateY(0) scale(1);
}
.strat-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink-3);
    transition: all 0.2s;
    z-index: 1;
}
.strat-modal-close:hover {
    background: var(--warm);
    color: var(--ink);
    border-color: var(--ink-4);
}
.strat-modal-body {
    padding: 32px 28px 24px;
    overflow-y: auto;
}

/* Modal card — reuse docs-card design */
.strat-modal-body .sm-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.strat-modal-body .sm-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.strat-modal-body .sm-icon svg { width: 22px; height: 22px; }
.sm-icon--passive { background: var(--green-soft); color: var(--green); }
.sm-icon--active { background: var(--blue-soft); color: var(--blue); }
.sm-icon--technical { background: var(--amber-soft); color: var(--amber); }
.strat-modal-body .sm-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
}
.strat-modal-body .sm-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.sm-badge--passive { background: var(--green-soft); color: var(--green); }
.sm-badge--active { background: var(--blue-soft); color: var(--blue); }
.sm-badge--technical { background: var(--amber-soft); color: var(--amber); }
.strat-modal-body .sm-text {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.7;
    margin-bottom: 20px;
}
.strat-modal-body .sm-detail {
    padding: 10px 0;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
}
.strat-modal-body .sm-detail-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-4);
    flex-shrink: 0;
    min-width: 85px;
    padding-top: 1px;
}
.strat-modal-body .sm-detail-value {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.55;
}
.sm-formula {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--navy);
    font-weight: 600;
    background: var(--warm);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}

/* Modal footer */
.strat-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-top: 1px solid var(--border);
    background: var(--warm);
}
.strat-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s var(--ease);
}
.strat-modal-cta:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ═══ SECTION COMMON (home-specific overrides) ═══ */
.sec { padding: 120px 56px; }
.sec-inner { max-width: 1120px; margin: 0 auto; }
.sec .sec-label { justify-content: flex-start; }
.sec .sec-label::before { content: ''; width: 24px; height: 2px; background: var(--teal); }
.sec .sec-label.center { justify-content: center; }
.sec .sec-label.center::before { display: none; }
.sec .sec-title { font-size: 44px; letter-spacing: -0.01em; }
.sec .sec-text { max-width: 520px; }
.sec .sec-text.center { margin: 0 auto; text-align: center; }
.bg-white { background: var(--white); }
.bg-warm { background: var(--warm); }

/* ═══ PROBLEM SECTION ═══ */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.problem-card { padding: 36px; border-radius: 16px; background: var(--white); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.problem-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.problem-card-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.problem-card-text { font-size: 14px; color: var(--ink-3); line-height: 1.7; }
.problem-cards { display: flex; flex-direction: column; gap: 20px; }

/* ═══ HOW IT WORKS ═══ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.step { text-align: center; padding: 0 24px; position: relative; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 2; }
.step-connector { position: absolute; top: 26px; left: calc(50% + 30px); right: calc(-50% + 30px); height: 2px; background: var(--border); z-index: 1; }
.step:last-child .step-connector { display: none; }
.step-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step-text { font-size: 13px; color: var(--ink-3); line-height: 1.65; }

/* ═══ FEATURES ═══ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature-card { padding: 36px 32px; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-md); border: 1px solid transparent; transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--green)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0,191,179,0.1); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feature-text { font-size: 14px; color: var(--ink-3); line-height: 1.7; }

/* ═══ PRODUCT SHOWCASE ═══ */
.showcase-section { position: relative; }
.showcase-section .sec-inner { position: relative; }
.showcase-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
    perspective: 1000px;
    position: relative;
}
.showcase-row.reverse { direction: rtl; }
.showcase-row.reverse > * { direction: ltr; }

.showcase-connector {
    position: relative;
    height: 100px;
}
.showcase-connector svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.showcase-connector path {
    fill: none;
    stroke: var(--border);
    stroke-width: 1.5;
    vector-effect: non-scaling-stroke;
}
.connector-dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 3px rgba(0,191,179,0.10);
}
.showcase-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    position: relative;
    transform: rotateY(3deg) rotateX(1deg);
}
.showcase-row.reverse .showcase-img-wrap {
    transform: rotateY(-3deg) rotateX(1deg);
}
.showcase-img-wrap:hover,
.showcase-row.reverse .showcase-img-wrap:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-6px);
    box-shadow: var(--shadow-xl), 0 30px 80px rgba(5,28,44,0.1);
}
.showcase-img-wrap img { width: 100%; height: auto; display: block; }
.showcase-img-crop-top { position: relative; }
.showcase-img-label {
    position: absolute;
    top: 16px; right: 16px;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}
.showcase-content { display: flex; flex-direction: column; justify-content: center; }
.showcase-content .sec-title { font-size: 32px; }
.showcase-content .sec-text { font-size: 16px; }
.showcase-pill-row {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.showcase-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 16px; border-radius: 8px;
    font-size: 12px; font-weight: 600;
    background: var(--warm); color: var(--ink-3);
    border: 1px solid var(--border);
}
.showcase-pill svg { flex-shrink: 0; }

/* ═══ VERDICT CAROUSEL (DARK) ═══ */
.verdict-carousel-section {
    padding: 120px 56px;
    background: linear-gradient(170deg, #041828 0%, var(--navy) 40%, #0d3a5c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.verdict-carousel-ambient {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(0,191,179,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.verdict-carousel-inner {
    max-width: 1120px; margin: 0 auto;
    position: relative; z-index: 1;
}
.verdict-carousel-header { text-align: center; margin-bottom: 64px; }
.verdict-carousel-section .sec-title { color: #fff; }
.verdict-carousel-section .sec-title em { color: rgba(255,255,255,0.35); }
.verdict-carousel-section .sec-label::before { background: var(--teal); }

/* Connector bridging showcase → verdict (lives in showcase, overflows down) */
.verdict-connector {
    position: relative;
    height: 100px;
    z-index: 2;
}
.verdict-connector svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.verdict-connector path {
    fill: none;
    stroke: var(--teal);
    stroke-width: 1.5;
    opacity: 0.5;
    vector-effect: non-scaling-stroke;
}
.verdict-connector .connector-dot {
    background: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,191,179,0.15);
}
@media (max-width: 768px) {
    .verdict-connector { display: none; }
}

/* Slider — full width, no box around slides */
.verdict-slider { overflow: hidden; }
.verdict-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.verdict-slide { min-width: 100%; box-sizing: border-box; }
.verdict-slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Text side — same style as showcase-dark */
.verdict-q-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
    color: var(--teal); text-transform: uppercase;
    margin-bottom: 8px;
}
.verdict-q {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700; line-height: 1.25;
    color: #fff; margin: 0 0 12px;
}
.verdict-q em { color: rgba(255,255,255,0.35); font-style: italic; }
.verdict-a {
    font-size: 15px; line-height: 1.7;
    color: rgba(255,255,255,0.45); margin: 0 0 24px;
}
.verdict-feat-list {
    display: flex; flex-direction: column; gap: 16px;
}

/* Image side — same style as showcase-dark-img */
.verdict-slide-img {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 60px rgba(0,0,0,0.3), 0 0 80px rgba(0,191,179,0.08);
    transition: transform 0.5s var(--ease);
}
.verdict-slide-img:hover { transform: scale(1.02); }
.verdict-slide-img img { width: 100%; height: auto; display: block; }

/* Navigation: arrows + dots inline */
.verdict-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin-top: 48px;
}
.verdict-arrow {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.verdict-arrow:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}
.verdict-dots {
    display: flex; gap: 10px;
}
.verdict-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none; cursor: pointer;
    transition: all 0.3s ease;
}
.verdict-dot.active {
    background: var(--teal);
    box-shadow: 0 0 8px rgba(0,191,179,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .verdict-carousel-section { padding: 64px 20px; }
    .verdict-slide-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .verdict-q { font-size: 22px; }
    .verdict-arrow { width: 36px; height: 36px; }
}

/* ═══ ROBUSTNESS SHOWCASE (DARK) ═══ */
.showcase-dark {
    padding: 120px 56px;
    background: linear-gradient(170deg, #041828 0%, var(--navy) 40%, #0d3a5c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.showcase-dark-ambient { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(0,191,179,0.06) 0%, transparent 60%); pointer-events: none; }
.showcase-dark-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.showcase-dark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.showcase-dark .sec-label { color: var(--teal); }
.showcase-dark .sec-label::before { background: var(--teal); }
.showcase-dark .sec-title { color: #fff; }
.showcase-dark .sec-title em { color: rgba(255,255,255,0.35); }
.showcase-dark .sec-text { color: rgba(255,255,255,0.45); }
.showcase-dark-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.sd-feat { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s var(--ease); }
.sd-feat:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.sd-feat-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(0,191,179,0.1); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sd-feat-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.sd-feat-text { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.55; }
.showcase-dark-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 60px rgba(0,0,0,0.3), 0 0 80px rgba(0,191,179,0.08);
    transition: transform 0.5s var(--ease);
}
.showcase-dark-img:hover { transform: translateY(-6px); }
.showcase-dark-img img { width: 100%; height: auto; display: block; }

/* ═══ SHOWCASE ROW FULL-WIDTH ═══ */
.showcase-row-full {
    text-align: center;
    position: relative;
    perspective: 1000px;
}
.showcase-row-full .showcase-img-wrap {
    max-width: 920px;
    margin: 0 auto;
    transform: rotateX(2deg);
}
.showcase-row-full .showcase-img-wrap:hover {
    transform: rotateX(0deg) translateY(-6px);
}

/* ═══ PRICING ═══ */
.pricing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 36px; position: relative; }
.pricing-toggle-wrap .pricing-save-pill { position: absolute; left: calc(50% + 130px); top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
    .pricing-toggle-wrap .pricing-save-pill { position: static; transform: none; margin-top: 8px; }
    .pricing-toggle-wrap { flex-direction: column; }
}
.pricing-toggle { display: flex; align-items: center; background: var(--white); border-radius: 12px; padding: 4px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.pricing-toggle-btn { padding: 10px 24px; border-radius: 9px; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink-3); background: transparent; border: none; cursor: pointer; transition: all 0.25s var(--ease); position: relative; }
.pricing-toggle-btn.active { background: var(--navy); color: #fff; box-shadow: 0 2px 8px rgba(5,28,44,0.2); }
.pricing-toggle-btn:not(.active):hover { color: var(--ink); }
.pricing-save-pill { display: inline-flex; align-items: center; gap: 4px; padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; background: var(--green-soft); color: var(--green); white-space: nowrap; min-width: 80px; }
.pricing-save-pill svg { flex-shrink: 0; }
.pricing-price-wrap { position: relative; min-height: 60px; display: flex; flex-direction: column; align-items: center; }
.pricing-original { font-size: 18px; font-weight: 600; color: var(--ink-4); text-decoration: line-through; margin-bottom: 2px; display: none; }
.pricing-original.show { display: block; }
.pricing-billed { font-size: 12px; color: var(--ink-4); font-weight: 500; margin-top: 6px; display: none; }
.pricing-billed.show { display: block; }
.pricing-save-tag { display: none; align-items: center; gap: 5px; margin-top: 10px; padding: 5px 14px; border-radius: 8px; font-size: 12px; font-weight: 700; background: var(--green-soft); color: var(--green); }
.pricing-save-tag.show { display: inline-flex; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 32px; max-width: 840px; margin-left: auto; margin-right: auto; }
.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1080px; gap: 20px; }
.pricing-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); border: 1px solid var(--border); background: var(--white); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: rgba(0,191,179,0.3); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,191,179,0.1); position: relative; }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: 16px; right: 16px; padding: 4px 12px; border-radius: 12px; font-size: 10px; font-weight: 700; background: var(--teal); color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-header { padding: 36px 32px 24px; text-align: center; }
.pricing-name { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.pricing-desc { font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; justify-content: center; }
.pricing-amount { font-size: 48px; font-weight: 800; color: var(--navy); letter-spacing: -0.04em; line-height: 1; }
.pricing-period { font-size: 14px; color: var(--ink-4); font-weight: 500; }
.pricing-body { padding: 0 32px 32px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); font-weight: 500; }
.pricing-check { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pricing-check.green { background: var(--green-soft); color: var(--green); }
.pricing-check.grey { background: var(--warm); color: var(--ink-4); }
.pricing-cta { width: 100%; padding: 14px; border-radius: 10px; font-family: var(--sans); font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.25s var(--ease); text-align: center; display: block; text-decoration: none; }
.pricing-cta-outline { background: transparent; border: 1.5px solid var(--border); color: var(--ink-2); }
.pricing-cta-outline:hover { border-color: var(--ink-4); color: var(--ink); }
.pricing-cta-solid { background: var(--navy); border: none; color: #fff; }
.pricing-cta-solid:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(5,28,44,0.25); }

/* ═══ TESTIMONIALS ═══ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card { padding: 32px; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.tc-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.tc-stars svg { color: #F59E0B; }
.tc-text { font-size: 15px; line-height: 1.7; color: var(--ink-2); margin-bottom: 20px; font-weight: 500; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; }
.tc-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.tc-role { font-size: 12px; color: var(--ink-4); }

/* ═══ FAQ ═══ */
.faq-list { max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ink); background: none; border: none; cursor: pointer; text-align: left; transition: color 0.2s; }
.faq-q:hover { color: var(--teal); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s var(--ease); color: var(--ink-4); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a-text { font-size: 15px; color: var(--ink-3); line-height: 1.7; }

/* ═══ FINAL CTA ═══ */
.final-cta { padding: 120px 56px; background: linear-gradient(170deg, #041828 0%, var(--navy) 50%, #0d3a5c 100%); text-align: center; position: relative; overflow: hidden; }
.final-cta-ambient { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(0,191,179,0.08) 0%, transparent 60%); pointer-events: none; }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-title { font-family: var(--serif); font-size: 48px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: #fff; margin-bottom: 16px; }
.final-cta-title em { font-style: italic; color: var(--teal); }
.final-cta-sub { font-size: 17px; color: rgba(255,255,255,0.4); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.btn-glow { background: linear-gradient(135deg, var(--teal), #059669); color: #fff; box-shadow: 0 4px 16px rgba(0,191,179,0.3); padding: 16px 40px; border-radius: 12px; font-family: var(--sans); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s var(--ease); border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,191,179,0.4); }

/* ── Demo button (hero) ── */
.btn-demo {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--ink-2);
    padding: 15px 28px;
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-demo:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,191,179,0.1);
}
.btn-demo svg { transition: color 0.3s var(--ease); }
.btn-demo:hover svg { color: var(--teal); }

/* ── Demo link (final CTA) ── */
.btn-demo-final {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}
.btn-demo-final:hover {
    color: rgba(255,255,255,0.8);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .hero { padding: 120px 32px 60px; }
    .hero-title { font-size: 48px; }
    .sec { padding: 80px 32px; }
    .sec .sec-title { font-size: 36px; }
    .problem-grid { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .step-connector { display: none; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .showcase-dark { padding: 80px 32px; }
    .showcase-dark-grid { grid-template-columns: 1fr; gap: 48px; }
    .showcase-row { grid-template-columns: 1fr; gap: 40px; perspective: none; }
    .showcase-row.reverse { direction: ltr; }
    .showcase-img-wrap, .showcase-row.reverse .showcase-img-wrap { transform: none; }
    .showcase-img-wrap:hover, .showcase-row.reverse .showcase-img-wrap:hover { transform: translateY(-4px); }
    .showcase-connector { display: none; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid-3 { grid-template-columns: 1fr 1fr; }
    .pricing-grid-3 .pricing-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
    .final-cta { padding: 80px 32px; }
    .final-cta-title { font-size: 36px; }
    .strategies-inner { padding: 0 32px; }
    .showcase-row-full .showcase-img-wrap { transform: none; }
    .showcase-row-full .showcase-img-wrap:hover { transform: translateY(-4px); }
    .showcase-content .sec-title { font-size: 28px; }
}
@media (max-width: 640px) {
    .hero { padding: 100px 20px 48px; }
    .hero-title { font-size: 36px; }
    .hero-sub { font-size: 16px; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .btn-lg { width: 100%; justify-content: center; }
    .btn-demo { width: 100%; justify-content: center; }
    .strategies-inner { padding: 0 20px; }
    .sec { padding: 64px 20px; }
    .sec .sec-title { font-size: 28px; }
    .steps-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-grid-3 { grid-template-columns: 1fr; }
    .pricing-grid-3 .pricing-card:last-child { grid-column: auto; max-width: none; margin: 0; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .showcase-dark { padding: 64px 20px; }
    .final-cta { padding: 64px 20px; }
    .final-cta-title { font-size: 28px; }
    .hero-screenshot { animation: none; transform: none; }
    .hero-screenshot:hover { transform: none; }
    .showcase-row-full .showcase-img-wrap { max-width: 100%; }
    .strat-modal { max-width: 100%; border-radius: 16px; }
    .strat-modal-body { padding: 28px 20px 20px; }
    .strat-modal-footer { padding: 14px 20px; flex-direction: column; gap: 10px; }
    .strat-modal-cta { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .hero { padding: 100px 16px 40px; }
    .hero-title { font-size: 30px; }
    .hero-sub { font-size: 15px; }
    .sec { padding: 48px 16px; }
    .sec .sec-title { font-size: 24px; }
    .showcase-dark { padding: 48px 16px; }
    .final-cta { padding: 48px 16px; }
    .final-cta-title { font-size: 24px; }
    .strategies-inner { padding: 0 16px; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
    .hero-screenshot { animation: none; }
    .strategies-track { animation: none; }
    .hero-badge-dot { animation: none; }
    .rv, .fade-in, .fade-in-left { transition: none; animation: none; opacity: 1; transform: none; }
    .feature-card, .showcase-img-wrap, .pricing-card, .timeline-item, .strategy-card,
    .faq-q svg, .faq-a, .btn-glow, .showcase-dark-img, .sd-feat { transition: none; }
}
