/* =============================================
   DESIGN SYSTEM — ROOT VARIABLES
   ============================================= */
:root {
    --bg-color: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #0A0F1E;
    --bg-dark-alt: #0D1226;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #94A3B8;
    --primary-color: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-glow: rgba(37, 99, 235, 0.25);
    --error-color: #EF4444;
    --error-light: rgba(239, 68, 68, 0.1);
    --success-color: #10B981;
    --success-light: rgba(16, 185, 129, 0.1);
    --warning-color: #F59E0B;
    --border-color: #E2E8F0;
    --border-dark: #1E293B;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 48px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark-alt { background-color: var(--bg-dark-alt); }

section {
    padding: 96px 0;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.white-title { color: #FFFFFF; }
.light-text { color: #94A3B8 !important; }

.pain-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    width: 100%;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}

.logo-dot { color: var(--primary-color); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 18px 44px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.35);
}

.pulse-btn {
    animation: pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
    50%       { box-shadow: 0 0 0 14px rgba(37, 99, 235, 0); }
}

.guarantee-text {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =============================================
   HERO
   ============================================= */
.hero-vsl {
    padding: 80px 0 72px;
    text-align: center;
    background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 100%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.attention-tag {
    color: var(--error-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    background: var(--error-light);
    padding: 8px 18px;
    border-radius: 100px;
    display: inline-block;
}

.main-headline {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    max-width: 950px;
    margin: 0 auto 28px;
    line-height: 1.1;
}

.main-headline .highlight {
    color: var(--error-color);
    position: relative;
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

/* =============================================
   DEMO PHONE WIDGET
   ============================================= */
.demo-phone-wrapper {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Ambient glow behind phone */
.demo-phone-wrapper::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse 70% 60% at 50% 50%,
        rgba(37, 99, 235, 0.18) 0%,
        rgba(99, 102, 241, 0.10) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.demo-phone {
    position: relative;
    width: 100%;
    background: linear-gradient(160deg, #1C1F2E 0%, #0D1020 100%);
    border-radius: 44px;
    border: 1.5px solid rgba(255,255,255,0.12);
    box-shadow:
        0 0 0 6px rgba(255,255,255,0.04),
        0 40px 80px rgba(0,0,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.1);
    overflow: hidden;
    padding: 0;
    z-index: 1;
    aspect-ratio: 9/19.5;
    display: flex;
    flex-direction: column;
}

/* Notch */
.phone-notch {
    width: 110px;
    height: 28px;
    background: #0D1020;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border-bottom: 1.5px solid rgba(255,255,255,0.06);
}

/* Screen */
.phone-screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0F1629;
}

/* Side hardware buttons */
.phone-btn {
    position: absolute;
    background: linear-gradient(180deg, #2A2D3E, #1C1F2E);
    border-radius: 3px;
}

.phone-vol-up {
    left: -4px;
    top: 80px;
    width: 4px;
    height: 36px;
}

.phone-vol-down {
    left: -4px;
    top: 126px;
    width: 4px;
    height: 36px;
}

.phone-power {
    right: -4px;
    top: 100px;
    width: 4px;
    height: 52px;
}

/* ── Chat Header ── */
.chat-header {
    background: linear-gradient(135deg, #1A1F35 0%, #141829 100%);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.chat-avatar {
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.avatar-ring {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #2563EB, #818CF8, #06B6D4, #2563EB);
    animation: spin-ring 3s linear infinite;
}

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

.avatar-inner {
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #1E40AF, #4F46E5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.avatar-inner svg {
    width: 18px;
    height: 18px;
}

.chat-header-info { flex: 1; min-width: 0; }

.chat-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #F1F5F9;
    letter-spacing: 0.1px;
}

.chat-status {
    font-size: 0.7rem;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #10B981;
    border-radius: 50%;
    animation: blink-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

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

.chat-badges { flex-shrink: 0; }

.powered-badge {
    font-size: 0.62rem;
    font-weight: 700;
    color: #818CF8;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.25);
    padding: 3px 7px;
    border-radius: 100px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* ── Messages ── */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: none;
}

.chat-messages::-webkit-scrollbar { display: none; }

.chat-timestamp {
    text-align: center;
    font-size: 0.65rem;
    color: #334155;
    background: rgba(255,255,255,0.04);
    border-radius: 100px;
    padding: 3px 10px;
    align-self: center;
}

/* Bubble base */
.bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 0.78rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(8px) scale(0.97);
    animation: bubble-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes bubble-in {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Lead (user) bubble — right aligned */
.bubble-user {
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* AI bubble — left aligned */
.bubble-ai {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    color: #CBD5E1;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* Typing indicator */
.bubble-typing {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    padding: 12px 16px;
}

.typing-dots {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 14px;
}

.typing-dots span {
    width: 7px;
    height: 7px;
    background: #64748B;
    border-radius: 50%;
    animation: typing-bounce 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); background: #64748B; }
    30%            { transform: translateY(-5px); background: #818CF8; }
}

/* Highlight in AI messages */
.bubble-ai strong { color: #60A5FA; }

/* Meta text under AI bubbles */
.bubble-meta {
    font-size: 0.6rem;
    color: #334155;
    margin-top: 3px;
    padding-left: 4px;
    align-self: flex-start;
    opacity: 0;
    animation: bubble-in 0.3s ease forwards;
}

.bubble-meta.right {
    align-self: flex-end;
    padding-right: 4px;
    padding-left: 0;
}

/* Booking confirmation card */
.bubble-booking {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(5,150,105,0.1));
    border: 1px solid rgba(16,185,129,0.35);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    padding: 14px 16px;
    color: #A7F3D0;
    font-size: 0.76rem;
    opacity: 0;
    transform: translateY(8px);
    animation: bubble-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    max-width: 88%;
    line-height: 1.6;
}

.booking-icon { font-size: 1.4rem; margin-bottom: 6px; }
.booking-title {
    font-weight: 700;
    color: #6EE7B7;
    font-size: 0.82rem;
    margin-bottom: 6px;
}
.booking-detail { display: flex; gap: 6px; align-items: center; color: #6EE7B7; }
.booking-detail span:first-child { opacity: 0.7; }

/* Response time badge */
.response-tag {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 700;
    color: #10B981;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    padding: 3px 9px;
    border-radius: 100px;
    opacity: 0;
    animation: bubble-in 0.3s ease forwards;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── Input Bar ── */
.chat-input-bar {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.chat-input-field {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 0.75rem;
    color: #94A3B8;
    min-height: 34px;
    word-break: break-all;
    display: flex;
    align-items: center;
}

.chat-send-btn {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.chat-send-btn:hover { transform: scale(1.1); }

.chat-send-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* ── Demo label ── */
.demo-label {
    font-size: 0.82rem;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-live-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink-dot 1.5s ease-in-out infinite;
}

/* =============================================
   PAIN / STATS SECTION
   ============================================= */
.pain-section {
    position: relative;
    overflow: hidden;
}

.pain-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.12), transparent);
    pointer-events: none;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #60A5FA;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.95rem;
    color: #CBD5E1;
    line-height: 1.55;
}

.stat-label strong {
    color: white;
}

.stat-source {
    margin-top: 14px;
    font-size: 0.78rem;
    color: #64748B;
    font-style: italic;
}

/* =============================================
   STORY SECTION (BEFORE / AFTER)
   ============================================= */
.story-section {
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.story-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 2px solid transparent;
}

.story-bad {
    background: #FFF5F5;
    border-color: #FECACA;
}

.story-good {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.story-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.badge-bad {
    background: var(--error-light);
    color: var(--error-color);
}

.badge-good {
    background: var(--success-light);
    color: var(--success-color);
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 28px;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.timeline-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.time-badge {
    background: white;
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    color: var(--text-primary);
}

.good-time {
    background: #DCFCE7;
    border-color: #86EFAC;
    color: #166534;
}

.badge-loss {
    background: var(--error-color);
    border-color: var(--error-color);
    color: white;
}

.badge-win {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.bad-outcome p { color: var(--error-color); font-weight: 600; }
.good-outcome p { color: #166534; font-weight: 600; }

.story-cost {
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid #FECACA;
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-top: 16px;
}

.story-gain {
    background: rgba(16, 185, 129, 0.07);
    border-color: #BBF7D0;
}

.cost-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cost-item:last-child { border-bottom: none; }

.cost-total {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

/* =============================================
   CASE STUDIES
   ============================================= */
.case-studies { }

.cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.case-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.case-industry {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.case-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.case-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.65;
}

.case-results {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 20px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.88rem;
}

.result-row:last-child { border-bottom: none; }

.result-label { color: var(--text-secondary); }

.result-change {
    font-weight: 700;
}

.result-change.positive { color: var(--success-color); }

.case-quote {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--primary-color);
    padding-left: 14px;
    line-height: 1.6;
}

/* =============================================
   CALCULATOR
   ============================================= */
.calculator-section {
    background: var(--bg-dark-alt);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(37,99,235,0.15), transparent);
    pointer-events: none;
}

.calculator-section .section-title { color: white; }
.calculator-section .section-subtitle { color: #94A3B8 !important; }
.calculator-section .pain-label {
    color: #60A5FA;
    background: rgba(37, 99, 235, 0.15);
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 36px;
}

.calc-field {
    margin-bottom: 28px;
}

.calc-field:last-child { margin-bottom: 0; }

.calc-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 12px;
}

.slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 100px;
    background: rgba(255,255,255,0.15);
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.3);
    cursor: grab;
    transition: box-shadow 0.2s;
}

input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
    box-shadow: 0 0 0 6px rgba(37,99,235,0.4);
}

.slider-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #60A5FA;
    min-width: 80px;
    text-align: right;
}

.calc-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-result-block {
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}

.loss-block {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239,68,68,0.25);
}

.revenue-block {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245,158,11,0.25);
}

.annual-block {
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239,68,68,0.35);
}

.calc-result-label {
    font-size: 0.82rem;
    color: #94A3B8;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.calc-result-number {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #F87171;
    letter-spacing: -1px;
    line-height: 1;
}

.revenue-block .calc-result-number { color: #FCD34D; }
.annual-block .calc-result-number { color: #F87171; }

.calc-result-sub {
    font-size: 0.78rem;
    color: #64748B;
    margin-top: 6px;
}

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

.calc-note {
    color: #64748B;
    font-size: 0.92rem;
    margin-bottom: 20px;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-section { }

.table-wrapper {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table thead th {
    background: var(--bg-light);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    padding: 20px 24px;
}

.col-bad {
    color: var(--text-secondary);
    background: #FAFAFA;
}

.col-good {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(37, 99, 235, 0.03);
}

thead .col-bad { color: var(--error-color); background: #FFF5F5; }
thead .col-good { color: var(--primary-color); background: rgba(37,99,235,0.06); }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: white; }

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.open {
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
    transition: background 0.2s ease;
}

.faq-question:hover { background: var(--bg-light); }

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 28px;
}

.faq-answer.open {
    max-height: 400px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* =============================================
   HOW IT WORKS (STEPS)
   ============================================= */
.mechanism-section { }

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

.step-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.step-time {
    font-size: 0.82rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(37,99,235,0.08);
    padding: 6px 12px;
    border-radius: 100px;
    display: inline-block;
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section { background: white; }

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.trust-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: border-color 0.3s ease;
}

.trust-card:hover {
    border-color: var(--primary-color);
}

.trust-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.trust-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
    background: var(--bg-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(37,99,235,0.25), transparent);
    pointer-events: none;
}

.urgency-badge {
    display: inline-block;
    background: var(--warning-color);
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.final-cta h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.final-cta p {
    color: #94A3B8;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 16px;
}

.cta-sub {
    font-size: 0.95rem !important;
    color: #64748B !important;
    margin-bottom: 48px !important;
}

.calendar-embed {
    max-width: 820px;
    margin: 0 auto 48px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.contact-options {
    margin-top: 8px;
}

.contact-label {
    font-size: 0.9rem !important;
    color: #64748B !important;
    margin-bottom: 16px !important;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.contact-link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.whatsapp-link {
    background: #25D366;
    color: white;
}

.whatsapp-link:hover { background: #1DAA52; transform: translateY(-2px); }

.email-link {
    background: var(--primary-color);
    color: white;
}

.email-link:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 40px 0;
    background: #060B18;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.footer-logo { color: white; }

.footer-copy {
    font-size: 0.85rem;
    color: #475569;
}

.footer-sources {
    font-size: 0.78rem;
    color: #334155;
    max-width: 700px;
    text-align: center;
    line-height: 1.6;
}

/* =============================================
   FLOATING WIDGETS
   ============================================= */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: bounceInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2.2s infinite;
}

.float-svg { width: 28px; height: 28px; display: block; }

.float-whatsapp { background: #25D366; }
.float-whatsapp::before { border: 3px solid #25D366; }

.float-email { background: #2563EB; }
.float-email::before { border: 3px solid #2563EB; }

.float-btn:hover { transform: scale(1.15); }

@keyframes bounceInUp {
    0%   { opacity: 0; transform: translateY(80px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.75; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Bento Box Services Section */
.services-section {
    padding: 80px 0;
    overflow: hidden;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    grid-auto-rows: minmax(280px, auto);
}

.bento-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
    text-align: left;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    top: -50px;
    right: -50px;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.bento-card:hover .bento-glow {
    opacity: 0.3;
}

.bg-blue { background: #0070f3; }
.bg-orange { background: #f5a623; }
.bg-green { background: #50e3c2; }
.bg-purple { background: #7928ca; }
.bg-yellow { background: #f8e71c; }

.bento-content {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.bento-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #F1F5F9;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-icon svg {
    width: 100%;
    height: 100%;
}

.bento-card h3 {
    color: #F8FAFC;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.bento-price {
    font-size: 0.85rem;
    color: #94A3B8;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-price strong {
    color: #10B981; /* Success Green */
    font-size: 1.05rem;
    font-weight: 800;
    margin-left: 4px;
}

.bento-desc {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Bento Visuals */
.bento-visual {
    margin-top: auto;
    width: 100%;
    height: 120px;
    position: relative;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mock-browser {
    width: 80%;
    height: 90%;
    background: rgba(255,255,255,0.03);
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
    display: flex;
    flex-direction: column;
}

.mock-browser-header {
    height: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 4px;
}

.mock-browser-header span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.mock-browser-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-hero {
    height: 30px;
    background: rgba(0, 112, 243, 0.2);
    border-radius: 4px;
}

.mock-text-lines {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    width: 100%;
}
.mock-text-lines.short { width: 60%; }

.mock-qr {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    position: relative;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    padding: 4px;
}
.qr-box { background: rgba(255,255,255,0.2); border-radius: 2px; }
.qr-grid { background: rgba(245, 166, 35, 0.3); border-radius: 2px; }

.mock-receipt {
    width: 60%;
    height: 90%;
    background: rgba(255,255,255,0.05);
    border-radius: 4px 4px 0 0;
    border: 1px dashed rgba(255,255,255,0.2);
    border-bottom: none;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.receipt-line { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.receipt-total { height: 8px; background: rgba(80, 227, 194, 0.4); border-radius: 4px; width: 50%; align-self: flex-end; margin-top: auto; }

.mock-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: 80%;
    width: 80%;
    margin-bottom: 10px;
}
.mock-chart .bar { width: 15px; background: rgba(121, 40, 202, 0.4); border-radius: 4px 4px 0 0; }
.bar-1 { height: 40%; }
.bar-2 { height: 60%; }
.bar-3 { height: 30%; }
.bar-4 { height: 80%; background: rgba(121, 40, 202, 0.8); }

.mock-stars {
    font-size: 2rem;
    color: rgba(248, 231, 28, 0.6);
    letter-spacing: 4px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card.span-2 { grid-column: span 1; }
    .bento-websites { grid-column: span 2; }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-websites, .bento-card.span-2 { grid-column: span 1; }
}

/* RTL Support Override */
[dir="rtl"] .bento-card {
    text-align: right;
}
[dir="rtl"] .bento-glow {
    right: auto;
    left: -50px;
}

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .calc-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    section { padding: 64px 0; }
    .stat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .main-headline { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .comparison-table th, .comparison-table td { padding: 14px 12px; font-size: 0.85rem; }
    .story-card { padding: 28px 20px; }
    .case-card { padding: 24px 20px; }
    .final-cta h2 { font-size: 1.9rem; }
    .floating-contact { bottom: 20px; right: 20px; gap: 12px; }
    .float-btn { width: 56px; height: 56px; }
    .float-svg { width: 24px; height: 24px; }
    .contact-links { flex-direction: column; align-items: center; }
    .faq-question { font-size: 0.92rem; padding: 18px 20px; }
    .faq-answer { padding: 0 20px; }
    .faq-answer.open { padding: 0 20px 20px; }
}
