/* ============================================
   CRO Landing Page - Wathba Brand Identity
   ============================================ */

/* CSS Variables — Wathba Brand System */
:root {
    --primary: #1A8C78;
    --primary-light: #2BA88E;
    --primary-lighter: #4A9E8A;
    --accent: #76E8CD;
    --accent-light: #BAF3E6;
    --accent-lighter: #E8F8F4;
    --dark: #143D35;
    --text: #1A1A1A;
    --text-light: rgba(20, 61, 53, 0.55);
    --white: #ffffff;
    --bg: #E8F8F4;
    --bg-section: #E8F8F4;
    --amber: #F0A500;
    --ink: #143D35;
    --mint: #E8F8F4;
    --emerald: #1A8C78;
    --line: rgba(20, 61, 53, 0.12);
    --shadow-sm: 0 2px 8px rgba(20, 61, 53, 0.06);
    --shadow-md: 0 4px 20px rgba(20, 61, 53, 0.1);
    --shadow-lg: 0 8px 40px rgba(20, 61, 53, 0.12);
    --shadow-xl: 0 20px 60px rgba(20, 61, 53, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'IBM Plex Sans Arabic', sans-serif;
    --font-la: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -1px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    margin-top: 12px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
}

.btn-login:hover {
    color: var(--primary-light);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--ink);
    color: var(--mint);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn-primary:hover {
    background: var(--emerald);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid var(--line);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn-secondary:hover {
    background: var(--mint);
    color: var(--ink);
    border-color: var(--emerald);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #25D366;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--mint) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--emerald);
    margin-bottom: 24px;
}

.trust-badge i {
    color: var(--amber);
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--amber);
    -webkit-text-fill-color: var(--amber);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.hero-note .dot {
    color: var(--accent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-dashboard {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--line);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--mint);
    border-bottom: 1px solid var(--line);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-light);
}

.dashboard-dots span:first-child { background: #ff6b6b; }
.dashboard-dots span:nth-child(2) { background: #ffd93d; }
.dashboard-dots span:last-child { background: #6bcb77; }

.dashboard-title {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.dashboard-content {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-card {
    background: var(--mint);
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-light);
}

.metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.metric-change {
    font-size: 12px;
    font-weight: 600;
}

.metric-card.up .metric-change { color: #22c55e; }
.metric-card.down .metric-change { color: #22c55e; }

.chart-placeholder {
    grid-column: 1 / -1;
    padding: 16px 0;
}

.mini-chart {
    width: 100%;
    height: 80px;
}

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    left: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    bottom: -50px;
    right: -50px;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

/* ============ SECTION STYLES ============ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--mint);
    color: var(--emerald);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.4;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ PAIN SECTION ============ */
.pain-section {
    padding: 100px 0 40px;
    background: var(--white);
}

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

.pain-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--emerald);
}

.pain-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff0f0, #ffe0e0);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.pain-icon i {
    font-size: 24px;
    color: #e53e3e;
}

.pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ SOLUTION INTRO ============ */
.solution-intro {
    padding: 100px 0;
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.solution-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
    opacity: 0.15;
}

.solution-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.solution-content .section-tag {
    background: rgba(26, 140, 120, 0.2);
    color: var(--mint);
    border-color: rgba(255,255,255,0.15);
}

.solution-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    margin-top: 16px;
}

.solution-content > p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 48px;
}

.solution-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--amber);
    display: inline;
    font-family: var(--font-la);
}

.stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--amber);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* ============ FEATURES ============ */
.features {
    padding: 100px 0;
    background: var(--bg);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.feature-block.reverse {
    direction: ltr;
}

.feature-block.reverse .feature-info {
    direction: rtl;
}

.feature-block.reverse .feature-visual {
    direction: rtl;
}

.feature-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--mint);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 16px;
}

.feature-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.4;
}

.feature-info > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
}

.feature-list li i {
    color: var(--emerald);
    font-size: 14px;
    flex-shrink: 0;
}

/* Heatmap Mockup */
.heatmap-mockup {
    background: linear-gradient(180deg, #f7fafc, #edf2f7);
}

.heatmap-overlay {
    width: 100%;
    height: 200px;
    position: relative;
}

.heat-spot {
    position: absolute;
    border-radius: 50%;
    animation: pulse-heat 2s infinite;
}

.heat-spot.hot {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.8), rgba(229, 62, 62, 0) 70%);
}

.heat-spot.warm {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(237, 137, 54, 0.7), rgba(237, 137, 54, 0) 70%);
}

.heat-spot.cool {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.6), rgba(66, 153, 225, 0) 70%);
}

@keyframes pulse-heat {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Recording Mockup */
.recording-mockup {
    background: linear-gradient(180deg, #f7fafc, #edf2f7);
}

.recording-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #e53e3e;
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: #e53e3e;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.cursor-trail {
    width: 100%;
    height: 200px;
    position: relative;
}

.trail-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: trail-move 3s infinite ease-in-out;
}

.trail-dot:nth-child(1) { animation-delay: 0s; opacity: 0.3; }
.trail-dot:nth-child(2) { animation-delay: 0.3s; opacity: 0.5; }
.trail-dot:nth-child(3) { animation-delay: 0.6s; opacity: 0.7; }
.trail-dot:nth-child(4) { animation-delay: 0.9s; opacity: 1; width: 16px; height: 16px; }

@keyframes trail-move {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 5px); }
}

/* A/B Testing Mockup */
.ab-mockup {
    background: linear-gradient(180deg, #f7fafc, #edf2f7);
}

.ab-split {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    height: 200px;
    width: 100%;
    justify-content: center;
}

.ab-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ab-label {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.ab-bar {
    width: 60px;
    background: var(--accent-light);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: height 1s ease;
}

.ab-side.winner .ab-bar {
    background: linear-gradient(180deg, var(--accent), var(--primary-lighter));
}

.ab-percent {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.ab-winner-badge {
    color: #f6ad55;
    font-size: 20px;
}

.ab-divider {
    width: 2px;
    height: 180px;
    background: repeating-linear-gradient(180deg, var(--text-light) 0, var(--text-light) 4px, transparent 4px, transparent 8px);
    opacity: 0.3;
}

/* Personalization Mockup */
.personalization-mockup {
    background: linear-gradient(180deg, #f7fafc, #edf2f7);
}

.persona-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.persona-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    transition: var(--transition);
}

.persona-card.active {
    border-color: var(--emerald);
    background: var(--mint);
    transform: scale(1.02);
}

.persona-card i {
    font-size: 20px;
    color: var(--primary);
}

.persona-card span {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.persona-card small {
    margin-right: auto;
    font-size: 12px;
    color: var(--text-light);
    margin-left: auto;
}

/* Funnel Mockup */
.funnel-mockup {
    background: linear-gradient(180deg, #f7fafc, #edf2f7);
}

.funnel-visual {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.funnel-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(90deg, var(--ink), var(--emerald));
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    margin: 0 auto;
    transition: var(--transition);
}

.funnel-count {
    font-weight: 700;
}

/* AI Mockup */
.ai-mockup {
    background: linear-gradient(180deg, #f7fafc, #edf2f7);
    flex-direction: column;
    gap: 20px;
}

.ai-brain {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-brain i {
    font-size: 40px;
    color: var(--primary);
    z-index: 1;
}

.ai-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent-light);
    animation: ai-pulse 2s infinite;
}

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

.ai-suggestions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.ai-suggestion {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text);
    border: 1px solid var(--line);
}

.ai-suggestion i {
    color: #f6ad55;
    flex-shrink: 0;
}

/* ============ MINI FEATURES GRID ============ */
.features-grid {
    padding: 80px 0;
    background: var(--white);
}

.hesitation-group {
    margin-bottom: 40px;
}
.hesitation-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: var(--mint);
    border: 1px solid var(--line);
    border-radius: 999px;
    width: fit-content;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}
.hesitation-icon {
    width: 32px;
    height: 32px;
    background: rgba(26, 140, 120, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    font-size: 14px;
}

.mini-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.mini-feature {
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    transition: var(--transition);
    text-align: center;
}

.mini-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--emerald);
}

.mini-feature i {
    font-size: 28px;
    color: var(--emerald);
    margin-bottom: 16px;
}

.mini-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.mini-feature p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============ SOLUTIONS / STAKEHOLDERS ============ */
.solutions {
    padding: 100px 0;
    background: var(--bg-section);
}

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.tab-btn:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.tab-btn.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--mint);
}

.tab-btn i {
    font-size: 16px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.stakeholder-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stakeholder-pain, .stakeholder-gain {
    padding: 32px;
    border-radius: var(--radius-md);
}

.stakeholder-pain {
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.stakeholder-gain {
    background: var(--mint);
    border: 1px solid var(--emerald);
}

.stakeholder-pain h4, .stakeholder-gain h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 20px;
}

.stakeholder-pain h4 { color: #c53030; }
.stakeholder-gain h4 { color: var(--primary); }

.stakeholder-pain ul li, .stakeholder-gain ul li {
    padding: 8px 0;
    font-size: 15px;
    padding-right: 20px;
    position: relative;
    line-height: 1.6;
}

.stakeholder-pain ul li::before {
    content: '✗';
    position: absolute;
    right: 0;
    color: #e53e3e;
    font-weight: 700;
}

.stakeholder-gain ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============ CALCULATOR ============ */
.calculator-section {
    padding: 100px 0;
    background: var(--white);
}

.calculator-card {
    background: linear-gradient(135deg, var(--ink), #1a4d42);
    border-radius: var(--radius-xl);
    padding: 60px;
    color: var(--white);
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header .section-tag {
    background: rgba(26, 140, 120, 0.25);
    color: var(--mint);
    border-color: rgba(255,255,255,0.15);
}

.calculator-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-top: 16px;
    margin-bottom: 8px;
}

.calculator-header p {
    color: rgba(255, 255, 255, 0.7);
}

.calculator-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.calc-field input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font);
    transition: var(--transition);
    direction: ltr;
    text-align: right;
}

.calc-field input:focus {
    outline: none;
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.15);
}

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

.calc-results {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.calc-result {
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.calc-result.current {
    background: rgba(255, 255, 255, 0.1);
}

.calc-result.improved {
    background: rgba(240, 165, 0, 0.15);
    border: 2px solid var(--amber);
}

.calc-result-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.calc-result-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.calc-result-sub {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.calc-arrow {
    font-size: 24px;
    color: var(--amber);
}

.calc-difference {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.calc-difference strong {
    color: var(--amber);
    font-size: 20px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--line);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--mint), var(--white));
    border-color: var(--emerald);
}

.testimonial-metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.metric-big {
    font-size: 36px;
    font-weight: 700;
    color: var(--emerald);
}

.testimonial-metric span:last-child {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ============ LOGOS ============ */
.logos-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.salla-trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.salla-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--accent-lighter);
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-light);
    transition: var(--transition);
}

.salla-trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.salla-trust-item > i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.salla-trust-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.salla-trust-item span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============ AUTHORITY ============ */
.authority-section {
    padding: 100px 0;
    background: var(--bg);
}

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

.authority-card {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    transition: var(--transition);
}

.authority-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.authority-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-lighter);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.authority-icon i {
    font-size: 24px;
    color: var(--primary);
}

.authority-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.authority-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    padding: 32px;
    flex: 1;
    max-width: 300px;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-lighter);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 28px;
    color: var(--primary);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 12px);
}

/* ============ PRICING ============ */
.pricing {
    padding: 100px 0;
    background: var(--bg-section);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--emerald);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    padding: 4px 16px;
    background: var(--amber);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-price {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    font-family: var(--font-la);
}

.price-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.pricing-features li i {
    color: var(--emerald);
    font-size: 14px;
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* ============ RECOMMENDATIONS ============ */
.recommendations {
    padding: 100px 0;
    background: var(--white);
}

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

.rec-card {
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.rec-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--emerald);
}

.rec-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(26, 140, 120, 0.2);
    line-height: 1;
    margin-bottom: 12px;
    font-family: var(--font-la);
}

.rec-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.rec-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ FAQ ============ */
.faq {
    padding: 100px 0;
    background: var(--bg-section);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--emerald);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--font);
    text-align: right;
}

.faq-question i {
    transition: var(--transition);
    color: var(--text-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============ FINAL CTA ============ */
.final-cta {
    padding: 100px 0;
    background: var(--white);
}

.cta-card {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--mint), #f0faf7);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
}

.trust-item i {
    color: var(--emerald);
}

/* ============ FOOTER ============ */
.footer {
    padding: 80px 0 32px;
    background: var(--ink);
    color: var(--mint);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-dot {
    background: var(--amber);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--amber);
    color: var(--ink);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--amber);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ============ PRICING ============ */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(20, 61, 53, 0.1);
}
.pricing-card.popular {
    border: 2px solid var(--emerald);
    box-shadow: 0 8px 32px rgba(26, 140, 120, 0.15);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 999px;
    white-space: nowrap;
}
.pricing-card-header {
    margin-bottom: 24px;
}
.pricing-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    font-family: var(--font-la);
}
.pricing-desc {
    font-size: 14px;
    color: var(--text-light);
}
.pricing-price {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.price-old {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-la);
}
.price-current {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--ink);
    font-family: var(--font-la);
    line-height: 1;
}
.price-amount.custom-label {
    font-size: 24px;
    color: var(--emerald);
}
.price-currency {
    font-size: 15px;
    color: var(--text-light);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}
.pricing-features li.included i {
    color: var(--emerald);
    font-size: 13px;
}
.pricing-features li.excluded {
    color: var(--text-light);
}
.pricing-features li.excluded i {
    color: rgba(20, 61, 53, 0.25);
    font-size: 13px;
}
.btn-pricing {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: var(--mint);
    color: var(--ink);
    border: 1px solid var(--line);
    transition: all 0.3s ease;
}
.btn-pricing:hover {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
}
.btn-pricing-primary {
    background: var(--ink);
    color: var(--mint);
    border-color: var(--ink);
}
.btn-pricing-primary:hover {
    background: var(--emerald);
    border-color: var(--emerald);
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ============ STORE INTELLIGENCE ============ */
.intelligence-section {
    padding: 100px 0;
    background: var(--ink);
    color: #fff;
}

.intelligence-section .section-tag {
    background: rgba(232, 248, 244, 0.15);
    color: var(--mint);
}

.intelligence-section .section-header h2 {
    color: #fff;
}

.intelligence-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.intelligence-section .section-header p strong {
    color: var(--amber);
}

.intel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.intel-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.intel-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.intel-card.intel-featured {
    grid-column: span 2;
    background: rgba(26, 140, 120, 0.2);
    border-color: rgba(26, 140, 120, 0.3);
}

.intel-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 248, 244, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--mint);
    margin-bottom: 16px;
}

.intel-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.intel-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.intel-highlight {
    font-size: 12px;
    font-weight: 600;
    color: var(--amber);
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: 999px;
    padding: 6px 14px;
    display: inline-block;
}

.intel-bottom {
    margin-top: 40px;
}

.intel-bottom-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: 16px;
    padding: 24px 32px;
}

.intel-bottom-inner > i {
    font-size: 24px;
    color: var(--amber);
    margin-top: 2px;
}

.intel-bottom-inner strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 4px;
}

.intel-bottom-inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.coming-soon-tag {
    display: inline-block;
    background: rgba(240, 165, 0, 0.15);
    color: var(--amber);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 999px;
    margin-right: 6px;
}

@media (max-width: 1024px) {
    .intel-grid { grid-template-columns: repeat(2, 1fr); }
    .intel-card.intel-featured { grid-column: span 2; }
}
@media (max-width: 640px) {
    .intel-grid { grid-template-columns: 1fr; }
    .intel-card.intel-featured { grid-column: span 1; }
    .intel-bottom-inner { flex-direction: column; }
}

/* ============ ANIMATIONS ============ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-down"] {
    transform: translateY(-20px);
}

[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

.hero [data-animate] {
    opacity: 1;
    transform: translate(0, 0);
    animation: heroFadeIn 0.8s ease both;
}

.hero [data-animate][data-delay="100"] { animation-delay: 0.1s; }
.hero [data-animate][data-delay="200"] { animation-delay: 0.2s; }
.hero [data-animate][data-delay="300"] { animation-delay: 0.3s; }

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

/* ============ NEW FEATURE MOCKUPS ============ */

/* Cart Recovery Mockup */
.cart-recovery-mockup { background: linear-gradient(180deg, #f7fafc, #edf2f7); flex-direction: column; gap: 16px; padding: 24px; }
.mockup-notification { background: var(--white); border-radius: var(--radius-sm); padding: 16px; display: flex; gap: 12px; align-items: flex-start; border: 1px solid var(--accent-light); width: 100%; }
.notif-icon { width: 40px; height: 40px; background: var(--accent-lighter); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notif-icon i { color: var(--primary); font-size: 16px; }
.notif-content strong { display: block; font-size: 14px; color: var(--primary); margin-bottom: 4px; }
.notif-content p { font-size: 12px; color: var(--text-light); line-height: 1.5; margin: 0; }
.notif-code { background: var(--accent-lighter); padding: 2px 6px; border-radius: 4px; font-weight: 700; color: var(--primary); }
.mockup-mini-cart { background: var(--white); border-radius: var(--radius-sm); padding: 16px; width: 100%; border: 1px solid rgba(0,73,86,0.06); }
.mini-cart-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(0,73,86,0.06); }
.item-placeholder { width: 40px; height: 40px; background: var(--accent-lighter); border-radius: 6px; flex-shrink: 0; }
.item-name { font-size: 13px; font-weight: 600; color: var(--text); }
.item-price { font-size: 12px; color: var(--primary); font-weight: 700; }
.mini-cart-total { display: flex; justify-content: space-between; padding: 10px 0 8px; font-size: 14px; font-weight: 700; color: var(--primary); }
.mini-cart-btn { background: var(--primary); color: var(--white); text-align: center; padding: 10px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; }

/* Bundle Mockup */
.bundle-mockup { background: linear-gradient(180deg, #f7fafc, #edf2f7); padding: 24px; }
.bundle-card { background: var(--white); border-radius: var(--radius-md); padding: 24px; width: 100%; border: 1px solid rgba(0,73,86,0.06); text-align: center; }
.bundle-header-tag { display: inline-block; background: #e53e3e; color: var(--white); padding: 4px 14px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.bundle-items { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.bundle-item { text-align: center; }
.bundle-item-img { width: 60px; height: 60px; background: var(--accent-lighter); border-radius: 8px; margin: 0 auto 6px; }
.bundle-item span { font-size: 11px; color: var(--text); font-weight: 500; }
.bundle-plus { font-size: 20px; color: var(--text-light); font-weight: 700; }
.bundle-pricing { margin-bottom: 12px; }
.bundle-old { font-size: 16px; color: var(--text-light); text-decoration: line-through; margin-left: 8px; }
.bundle-new { font-size: 22px; font-weight: 700; color: var(--primary); }
.bundle-btn { background: var(--primary); color: var(--white); padding: 10px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; }

/* Drawer Mockup */
.drawer-mockup { background: linear-gradient(180deg, #f7fafc, #edf2f7); padding: 20px; }
.drawer-panel { background: var(--white); border-radius: var(--radius-md); width: 100%; overflow: hidden; border: 1px solid rgba(0,73,86,0.06); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: var(--primary); color: var(--white); font-size: 14px; font-weight: 700; }
.drawer-head i { cursor: pointer; }
.drawer-progress { padding: 12px 16px; }
.progress-bar { height: 6px; background: #edf2f7; border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--primary-lighter)); border-radius: 3px; }
.progress-text { font-size: 11px; color: var(--primary); font-weight: 600; display: block; margin-top: 4px; }
.drawer-items { padding: 0 16px; }
.drawer-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(0,73,86,0.06); }
.drawer-item-img { width: 36px; height: 36px; background: var(--accent-lighter); border-radius: 6px; flex-shrink: 0; }
.drawer-item-img.small { width: 28px; height: 28px; }
.drawer-item span { font-size: 13px; font-weight: 600; color: var(--text); }
.drawer-item small { font-size: 12px; color: var(--primary); font-weight: 600; }
.drawer-upsell { padding: 12px 16px; background: var(--accent-lighter); margin: 8px; border-radius: var(--radius-sm); }
.drawer-upsell small { font-size: 11px; color: var(--primary); font-weight: 600; display: block; margin-bottom: 8px; }
.drawer-upsell-item { display: flex; align-items: center; gap: 8px; }
.drawer-upsell-item span { font-size: 12px; color: var(--text); flex: 1; }
.drawer-upsell-item button { background: var(--primary); color: var(--white); border: none; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; cursor: pointer; font-family: var(--font); }

/* Trust Mockup */
.trust-mockup { background: linear-gradient(180deg, #f7fafc, #edf2f7); padding: 24px; }
.trust-notifications { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.trust-notif { display: flex; align-items: center; gap: 12px; background: var(--white); padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(0,73,86,0.06); animation: slideInNotif 0.5s ease; }
.trust-notif-icon { width: 36px; height: 36px; background: var(--accent-lighter); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-notif-icon i { color: var(--primary); font-size: 14px; }
.trust-notif-text strong { display: block; font-size: 13px; color: var(--primary); }
.trust-notif-text span { font-size: 12px; color: var(--text-light); }
@keyframes slideInNotif { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Urgency Mockup */
.urgency-mockup { background: linear-gradient(180deg, #f7fafc, #edf2f7); padding: 24px; }
.urgency-examples { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.urgency-badge-ex { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--white); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--primary); border: 1px solid rgba(0,73,86,0.06); flex-wrap: wrap; }
.urgency-badge-ex i { color: #e53e3e; }
.urgency-badge-ex.timer i { color: var(--primary); }
.timer-display { display: flex; gap: 2px; font-size: 20px; font-weight: 700; color: #e53e3e; margin-right: auto; direction: ltr; }
.stock-bar { flex: 1; min-width: 100px; height: 6px; background: #fed7d7; border-radius: 3px; overflow: hidden; }
.stock-fill { width: 20%; height: 100%; background: #e53e3e; border-radius: 3px; }

/* Recommendations Mockup */
.recommendations-mockup { background: linear-gradient(180deg, #f7fafc, #edf2f7); padding: 24px; flex-direction: column; gap: 12px; }
.rec-header-bar { font-size: 14px; font-weight: 700; color: var(--primary); width: 100%; padding-bottom: 8px; border-bottom: 1px solid rgba(0,73,86,0.08); }
.rec-products { display: flex; gap: 12px; width: 100%; }
.rec-product { flex: 1; background: var(--white); border-radius: var(--radius-sm); padding: 12px; text-align: center; border: 1px solid rgba(0,73,86,0.06); }
.rec-product-img { width: 100%; height: 60px; background: var(--accent-lighter); border-radius: 6px; margin-bottom: 8px; }
.rec-product-name { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.rec-product-price { font-size: 13px; font-weight: 700; color: var(--primary); }

/* Mini Feature Benefit */
.mini-feature-benefit { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(0,73,86,0.06); font-size: 12px; color: var(--text-light); line-height: 1.5; }
.mini-feature-benefit span { font-weight: 700; color: var(--emerald); }

/* ============ FOUNDER STORY ============ */
.founder-story {
    padding: 0 0 60px;
    background: var(--white);
    position: relative;
}
.founder-content {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}
.founder-quote-mark {
    margin-bottom: 32px;
}
.founder-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 32px;
}
.founder-paragraphs p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 20px;
}
.founder-paragraphs p strong {
    color: var(--ink);
    font-weight: 700;
}
.founder-paragraphs p:last-child {
    margin-bottom: 0;
}
.founder-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: var(--mint);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}
.founder-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.value-icon {
    width: 44px;
    height: 44px;
    background: rgba(26, 140, 120, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.value-icon i {
    font-size: 18px;
    color: var(--emerald);
}
.founder-value strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.founder-value span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
.founder-signature {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 16px;
}
.signature-mark {
    width: 56px;
    height: 56px;
    background: var(--mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.founder-signature strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}
.founder-signature > div > span {
    font-size: 14px;
    color: var(--text-light);
}

/* ============ FUNNEL JOURNEY ============ */
.funnel-section { padding: 100px 0; background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.funnel-section::before { content: ''; position: absolute; top: -30%; right: -15%; width: 500px; height: 500px; background: radial-gradient(circle, var(--emerald) 0%, transparent 70%); opacity: 0.12; }
.funnel-section .section-tag { background: rgba(26, 140, 120, 0.25); color: var(--mint); border-color: rgba(255,255,255,0.15); }
.funnel-section .section-header h2 { color: var(--white); }
.funnel-section .section-header p { color: rgba(255,255,255,0.7); }
.funnel-journey { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.funnel-stage { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 28px 28px 20px; }
.funnel-stage.final { background: rgba(240, 165, 0, 0.12); border-color: var(--amber); }
.stage-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.stage-number { width: 36px; height: 36px; background: var(--amber); color: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.stage-number i { font-size: 14px; color: var(--ink); }
.stage-meta { flex: 1; }
.stage-label { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.4; }
.stage-problem { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.stage-tools { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.stage-tool-card { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); transition: var(--transition); }
.stage-tool-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(240, 165, 0, 0.3); }
.stage-tool-card i { font-size: 18px; color: var(--amber); margin-top: 2px; flex-shrink: 0; }
.stage-tool-card div { flex: 1; }
.stage-tool-card strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.stage-tool-card span { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.stage-result { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(240, 165, 0, 0.1); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--amber); }
.stage-result i { font-size: 12px; }
.stage-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.funnel-arrow { text-align: center; padding: 8px 0; color: var(--amber); font-size: 20px; opacity: 0.5; }
.tool-tag { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; background: rgba(240, 165, 0, 0.15); border: 1px solid rgba(240, 165, 0, 0.3); border-radius: 100px; font-size: 12px; font-weight: 500; color: var(--amber); }
.tool-tag i { font-size: 10px; }

/* Journey Source Tabs */
.journey-sources { margin-bottom: 40px; position: relative; z-index: 1; }
.journey-source-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.source-tab { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); cursor: pointer; transition: var(--transition); font-family: var(--font); }
.source-tab:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.source-tab.active { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.source-tab i { font-size: 16px; }

/* Source Journey Toggle */
.source-journey { display: none; }
.source-journey.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Journey Source Label */
.journey-source-label { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: rgba(240, 165, 0, 0.08); border: 1px solid rgba(240, 165, 0, 0.25); border-radius: var(--radius-md); margin-bottom: 20px; position: relative; z-index: 1; }
.source-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #E1306C, #F77737); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.source-icon i { font-size: 22px; color: var(--white); }
.journey-source-label strong { display: block; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.journey-source-label > div > span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* Journey Customization Section */
.journey-customize { margin-top: 48px; position: relative; z-index: 1; }
.journey-customize-header { text-align: center; margin-bottom: 24px; }
.journey-customize-header h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.journey-customize-header h3 i { color: var(--amber); margin-left: 8px; }
.journey-customize-header p { font-size: 15px; color: rgba(255,255,255,0.7); }
.journey-customize-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.customize-item { text-align: center; padding: 24px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); transition: var(--transition); }
.customize-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(240, 165, 0, 0.3); }
.customize-item i { font-size: 24px; color: var(--amber); margin-bottom: 12px; display: block; }
.customize-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.customize-item span { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Journey Other Sources */
.journey-other-sources { margin-top: 48px; position: relative; z-index: 1; }
.journey-other-sources h3 { text-align: center; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.source-examples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.source-example { padding: 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); transition: var(--transition); }
.source-example:hover { background: rgba(255,255,255,0.1); border-color: rgba(240, 165, 0, 0.3); transform: translateY(-4px); }
.source-example-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.source-example-icon i { font-size: 22px; color: var(--white); }
.source-example:nth-child(1) .source-example-icon { background: linear-gradient(135deg, #4285F4, #34A853); }
.source-example:nth-child(2) .source-example-icon { background: #FFFC00; }
.source-example:nth-child(2) .source-example-icon i { color: var(--primary); }
.source-example:nth-child(3) .source-example-icon { background: var(--primary-light); }
.source-example:nth-child(4) .source-example-icon { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.source-example h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.source-example p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* Journey Summary */
.journey-summary { margin-top: 48px; position: relative; z-index: 1; }
.journey-summary-inner { text-align: center; padding: 32px 40px; background: rgba(240, 165, 0, 0.1); border: 1px solid rgba(240, 165, 0, 0.3); border-radius: var(--radius-lg); }
.journey-summary-inner h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.5; }
.journey-summary-inner p { font-size: 15px; color: rgba(255,255,255,0.7); }

/* ============ COMPARISON TABLE ============ */
.comparison-section { padding: 100px 0; background: var(--bg-section); }
.comparison-table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--white); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comparison-table thead { background: var(--ink); }
.comparison-table th { padding: 20px 24px; text-align: center; color: var(--white); font-size: 15px; font-weight: 600; }
.comparison-table th.feature-col { text-align: right; width: 35%; font-size: 16px; }
.comparison-table th.convertx-col { width: 35%; }
.comparison-table th.others-col { width: 30%; }
.col-brand { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.col-brand.winner { position: relative; }
.col-brand.winner::before { content: '⭐'; position: absolute; top: -8px; right: -8px; font-size: 16px; }
.brand-name { font-size: 18px; font-weight: 700; }
.brand-sub { font-size: 12px; opacity: 0.7; font-weight: 400; }
.comparison-table tbody tr { border-bottom: 1px solid var(--line); transition: var(--transition); }
.comparison-table tbody tr:hover { background: var(--mint); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table td { padding: 18px 24px; font-size: 14px; line-height: 1.6; vertical-align: middle; }
.comparison-table td:first-child { text-align: right; }
.comparison-table td:first-child strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 2px; }
.comparison-table td:first-child small { font-size: 12px; color: var(--text-light); }
.comparison-table td.cx { text-align: center; color: var(--ink); font-weight: 600; font-size: 14px; background: rgba(232, 248, 244, 0.5); }
.comparison-table td.cx i { color: #22c55e; margin-left: 6px; font-size: 16px; }
.comparison-table td.ot { text-align: center; color: var(--text-light); font-size: 14px; }
.comparison-table td.ot i { color: #e53e3e; margin-left: 6px; font-size: 16px; }

.comparison-cta { text-align: center; margin-top: 40px; }
.comparison-cta p { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }

/* ============ A/B TESTING SECTION ============ */
.ab-section { padding: 100px 0; background: var(--white); }
.ab-showcase { max-width: 800px; margin: 0 auto 60px; }
.ab-demo { display: flex; align-items: stretch; gap: 0; background: var(--mint); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.ab-variant { flex: 1; display: flex; flex-direction: column; }
.ab-variant-header { display: flex; align-items: center; gap: 10px; padding: 16px 20px; font-size: 14px; font-weight: 600; color: var(--text); }
.ab-variant-header.a { background: rgba(20, 61, 53, 0.06); }
.ab-variant-header.b { background: rgba(26, 140, 120, 0.12); }
.ab-letter { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.ab-variant-header.a .ab-letter { background: var(--text-light); }
.ab-variant-header.b .ab-letter { background: var(--emerald); }
.ab-winner-tag { display: inline-flex; align-items: center; gap: 4px; margin-right: auto; margin-left: 0; padding: 3px 10px; background: #fef3c7; border-radius: 100px; font-size: 12px; font-weight: 700; color: #d97706; }
.ab-winner-tag i { font-size: 11px; }
.ab-variant-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.ab-mockup-bar { padding: 12px 16px; background: var(--white); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--text); text-align: center; border: 1px solid var(--line); }
.ab-mockup-bar.winner { background: var(--ink); color: var(--mint); border-color: var(--ink); }
.ab-metric-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: var(--white); border-radius: var(--radius-sm); font-size: 13px; color: var(--text-light); }
.ab-rate { font-size: 20px; font-weight: 700; color: var(--text); }
.ab-rate.winner { color: #22c55e; font-size: 24px; }
.ab-vs { display: flex; align-items: center; justify-content: center; padding: 0 16px; font-size: 18px; font-weight: 800; color: var(--text-light); background: rgba(20, 61, 53, 0.04); min-width: 56px; }

.ab-examples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.ab-example { text-align: center; padding: 28px 20px; background: var(--mint); border-radius: var(--radius-md); border: 1px solid var(--line); transition: var(--transition); }
.ab-example:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--emerald); }
.ab-example-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(26, 140, 120, 0.12); border-radius: 50%; margin: 0 auto 16px; }
.ab-example-icon i { font-size: 22px; color: var(--emerald); }
.ab-example h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ab-example p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.ab-bottom-message { max-width: 700px; margin: 0 auto; }
.ab-bottom-inner { display: flex; align-items: flex-start; gap: 16px; padding: 24px 28px; background: linear-gradient(135deg, var(--mint), #f0faf7); border: 1px solid var(--line); border-radius: var(--radius-md); }
.ab-bottom-inner > i { font-size: 28px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.ab-bottom-inner strong { display: block; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.ab-bottom-inner p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pain-grid,
    .authority-grid,
    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .calculator-body {
        grid-template-columns: 1fr;
    }

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

    .ab-demo {
        flex-direction: column;
    }

    .ab-vs {
        min-width: unset;
        padding: 12px 0;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .funnel-journey { padding: 0 8px; }
    .funnel-stage { padding: 18px 16px 16px; }
    .stage-header { gap: 12px; }
    .stage-label { font-size: 16px; }
    .stage-tool-card { padding: 10px 12px; }
    .stage-tool-card strong { font-size: 14px; }
    .stage-tool-card span { font-size: 12px; }
    .journey-summary-inner { padding: 24px 20px; }
    .journey-summary-inner h3 { font-size: 18px; }
    .journey-customize-grid { grid-template-columns: repeat(2, 1fr); }
    .source-examples-grid { grid-template-columns: 1fr; }
    .source-tab { padding: 8px 14px; font-size: 13px; }
    .journey-source-label { padding: 16px; gap: 12px; }
    .comparison-table { min-width: 500px; }
    .comparison-table th, .comparison-table td { padding: 14px 12px; font-size: 13px; }
    .ab-showcase { margin-bottom: 40px; }
    .rec-products { flex-direction: column; }

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

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .pain-grid,
    .mini-features-grid,
    .testimonials-grid,
    .authority-grid,
    .recommendations-grid,
    .ab-examples-grid,
    .salla-trust-bar {
        grid-template-columns: 1fr;
    }

    .stakeholder-card {
        grid-template-columns: 1fr;
    }

    .solution-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-note {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .calculator-card {
        padding: 32px 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .tab-nav {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .tab-btn span {
        display: none;
    }

    .tab-btn i {
        font-size: 20px;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .feature-info h3 {
        font-size: 22px;
    }

    .calc-results {
        flex-direction: column;
    }

    .calc-arrow {
        transform: rotate(-90deg);
    }
}

/* Calculator methodology note */
.calc-methodology {
    margin-top: 16px;
    text-align: center;
}
.calc-methodology small {
    color: var(--text-muted, #888);
    font-size: 12px;
    line-height: 1.6;
}

/* Pricing yearly line */
.price-yearly {
    font-size: 14px;
    color: var(--text-muted, #888);
    margin-top: 4px;
}

/* Pricing note */
.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted, #888);
}
