/* ===== SECTION STYLES ===== */
section { padding: 100px 0; }
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PAIN POINTS ===== */
.pain-points { background: var(--bg-secondary); }
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pain-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-accent), #FF6B81);
}
.pain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 77, 106, 0.2);
    box-shadow: 0 12px 40px rgba(255, 77, 106, 0.1);
}
.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.pain-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--red-accent);
}
.pain-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 170, 0.2);
    box-shadow: var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ===== DEMO SECTION ===== */
.demo-section {
    background: var(--bg-secondary);
    position: relative;
}
.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.category-tab {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Tajawal', sans-serif;
}
.category-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.category-tab.active {
    background: var(--gradient-accent);
    color: #0B0F1A;
    border-color: transparent;
}

/* Chat Widget */
.chat-widget {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(0, 212, 170, 0.08);
    position: relative;
}
.chat-header {
    background: linear-gradient(135deg, #0D2137 0%, #132D46 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--border);
}
.chat-header-avatar {
    width: 48px;
    height: 48px;
    background: rgb(0 0 0 / 43%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
    text-align: center;
}
.chat-header-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.chat-header-info span {
    font-size: 0.8rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}
.chat-header-info span::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.chat-messages {
    height: 420px;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 4px; }

.chat-bubble {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.7;
    animation: chatMsg 0.35s ease forwards;
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: right;
}
.chat-bubble.bot {
    background: var(--accent);
    color: #0B0F1A;
    align-self: flex-end;
    border-bottom-left-radius: 6px;
    font-weight: 500;
}
.chat-bubble.user {
    background: linear-gradient(135deg, #1A2A3F, #1F3350);
    align-self: flex-start;
    border-bottom-right-radius: 6px;
    border: 1px solid rgba(0, 212, 170, 0.1);
}
.chat-bubble.cta-bubble {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(9, 132, 227, 0.12));
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: #e0e0e0;
    text-align: center;
    max-width: 90%;
    align-self: center;
}
.chat-bubble.cta-bubble a {
    display: inline-block;
    margin-top: 10px;
    background: var(--gradient-accent);
    color: #0B0F1A;
    padding: 8px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 14px 20px;
    background: var(--accent);
    border-radius: 18px;
    border-bottom-left-radius: 6px;
    align-self: flex-end;
}
.typing-indicator span {
    width: 8px;
    height: 8px;
    background: rgba(11, 15, 26, 0.4);
    border-radius: 50%;
    animation: dotBounce 1.4s infinite ease-in-out;
}
.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.16s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.32s; }

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 24px 16px;
}
.suggestion-chip {
    background: var(--accent-dim);
    border: 1px solid rgba(0, 212, 170, 0.2);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Tajawal', sans-serif;
}
.suggestion-chip:hover {
    background: var(--accent);
    color: #0B0F1A;
}

.chat-input-area {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
}
.chat-input {
    flex: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Tajawal', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}
.chat-input::placeholder { color: var(--text-muted); }
.chat-input:focus { border-color: var(--accent); }
.chat-send {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: #0B0F1A;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: scaleX(-1);
}
.chat-send:hover {
    transform: scaleX(-1) scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 212, 170, 0.3);
}
.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    text-align: center;
    padding: 40px;
    gap: 12px;
}
.chat-placeholder-icon { font-size: 3rem; opacity: 0.5; }
.chat-placeholder p { font-size: 1rem; }

/* Light theme overrides for demo chat */
.demo-theme-toggle {
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
    width: 30px; height: 30px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; transition: all 0.2s; flex-shrink: 0; padding: 0;
}
.demo-theme-toggle:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.4); }
.demo-theme-toggle svg { width: 16px; height: 16px; fill: currentColor; }
.chat-widget.light-theme { background: #fff; border: 1px solid #e5e7eb; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.chat-widget.light-theme .chat-header { background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); border-bottom: 1px solid #e5e7eb; }
.chat-widget.light-theme .chat-header-info h4 { color: #1f2937; }
.chat-widget.light-theme .chat-header-info span { color: #059669; }
.chat-widget.light-theme .chat-header-info span::before { background: #059669; }
.chat-widget.light-theme .chat-header-avatar { background: #e5e7eb; }
.chat-widget.light-theme .demo-theme-toggle { color: #6b7280; }
.chat-widget.light-theme .demo-theme-toggle:hover { background: rgba(0,0,0,0.08); color: #1f2937; }
.chat-widget.light-theme .chat-messages { background: #f5f5f5; }
.chat-widget.light-theme .chat-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); }
.chat-widget.light-theme .chat-bubble.bot { background: #e8e8e8; color: #1f2937; }
.chat-widget.light-theme .chat-bubble.user { background: #e3f2fd; color: #1f2937; border: 1px solid #bbdefb; }
.chat-widget.light-theme .chat-bubble.cta-bubble { background: linear-gradient(135deg, rgba(0,212,170,0.1), rgba(9,132,227,0.08)); border: 1px solid rgba(0,212,170,0.25); }
.chat-widget.light-theme .chat-bubble.cta-bubble a { color: #fff; }
.chat-widget.light-theme .typing-indicator { background: #e8e8e8; }
.chat-widget.light-theme .typing-indicator span { background: rgba(0,0,0,0.3); }
.chat-widget.light-theme .chat-input-area { background: #fff; border-top: 1px solid #e5e7eb; }
.chat-widget.light-theme .chat-input { background: #f5f5f5; border: 1px solid #e5e7eb; color: #1f2937; }
.chat-widget.light-theme .chat-input::placeholder { color: #9ca3af; }
.chat-widget.light-theme .chat-input:focus { border-color: #00D4AA; }
.chat-widget.light-theme .suggestion-chip { background: #f3f4f6; border: 1px solid #e5e7eb; color: #374151; }
.chat-widget.light-theme .suggestion-chip:hover { background: #00D4AA; color: #0B0F1A; }
.chat-widget.light-theme .chat-placeholder { color: #9ca3af; }

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.06) 0%, var(--bg-card) 100%);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.15), 0 0 60px rgba(0, 212, 170, 0.08);
    animation: glowBorder 3s ease-in-out infinite;
}
@keyframes glowBorder {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 212, 170, 0.15), 0 0 60px rgba(0, 212, 170, 0.08); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 170, 0.25), 0 0 80px rgba(0, 212, 170, 0.12); }
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-6px); }
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #0B0F1A;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}
.pricing-name {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.pricing-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 2.7em;
}
.pricing-features li.moat-bullet {
    color: var(--text-primary);
    font-weight: 600;
}
.pricing-price-wrap {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pricing-price {
    font-family: 'Cairo', sans-serif;
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0;
    white-space: nowrap;
    transition: opacity 0.3s, transform 0.3s;
}
.pricing-price.flip {
    opacity: 0;
    transform: translateY(-10px);
}
.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.pricing-price .original {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
    opacity: 0.6;
}
.pricing-subtext {
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 6px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s, max-height 0.4s;
}
.pricing-subtext.show {
    opacity: 1;
    max-height: 40px;
}
.pricing-features {
    list-style: none;
    margin: 28px 0;
    text-align: right;
}
.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li:last-child { border: none; }
.pricing-features .check {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Tajawal', sans-serif;
    text-decoration: none;
    text-align: center;
}
.pricing-btn.outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}
.pricing-btn.outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.pricing-btn.filled {
    background: var(--gradient-accent);
    border: none;
    color: #0B0F1A;
}
.pricing-btn.filled:hover { box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3); }

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
}
.pricing-pill {
    display: flex;
    align-items: center;
    background: #161618;
    border: 1px solid #262626;
    border-radius: 50px;
    padding: 4px;
    position: relative;
    cursor: pointer;
}
.pricing-pill-option {
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    user-select: none;
}
.pricing-pill-option.active {
    color: #0B0F1A;
}
.pricing-pill-slider {
    position: absolute;
    top: 4px;
    inset-inline-start: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 2px);
    background: var(--gradient-accent);
    border-radius: 50px;
    transition: inset-inline-start 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.pricing-pill.yearly .pricing-pill-slider {
    inset-inline-start: calc(50% - 2px);
}
.pricing-save {
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}
.pricing-vat {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 32px;
}

/* Pricing strength strip — quantifies depth + signature differentiators */
.pricing-strength { max-width: 900px; margin: 32px auto 8px; text-align: center; padding: 0 16px; }
.pricing-strength h3 { font-size: 1.45rem; color: var(--text-primary); margin-bottom: 10px; font-family: 'Cairo', sans-serif; font-weight: 800; }
.pricing-strength h3 .count { background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; }
.pricing-strength p { color: var(--text-secondary); font-size: 0.96rem; line-height: 1.7; margin-bottom: 18px; max-width: 720px; margin-left: auto; margin-right: auto; }
.feat-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.feat-badges .feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.2s ease;
}
.feat-badges .feat-badge:hover { border-color: var(--accent); transform: translateY(-2px); }
.feat-badges .feat-badge.moat { border-color: rgba(255, 184, 77, 0.4); background: linear-gradient(135deg, rgba(255, 184, 77, 0.08), var(--bg-card)); }
.pricing-compare-link { display: inline-block; margin-top: 18px; color: var(--accent); font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: opacity 0.2s ease; }
.pricing-compare-link:hover { opacity: 0.8; }

/* ===== HUMAN VS MAZIJ ===== */
.vs-section { background: var(--bg-primary); }
.vs-section .section-header p { max-width: 650px; margin: 0 auto; }
.vs-table-wrap {
    max-width: 800px;
    margin: 0 auto 32px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.vs-table {
    width: 100%;
    border-collapse: collapse;
}
.vs-table thead th {
    padding: 20px 24px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
}
.vs-table thead th:first-child {
    background: transparent;
    width: 35%;
}
.vs-table thead .vs-human-head {
    background: var(--red-dim);
    color: var(--red-accent);
    width: 32.5%;
}
.vs-table thead .vs-mazij-head {
    background: var(--accent-dim);
    color: var(--accent);
    width: 32.5%;
}
.vs-table tbody tr {
    border-top: 1px solid var(--border);
}
.vs-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}
.vs-table td {
    padding: 16px 24px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    vertical-align: middle;
}
.vs-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}
.vs-table .vs-x {
    color: var(--red-accent);
    font-weight: 700;
    margin-left: 6px;
}
.vs-table .vs-check {
    color: var(--accent);
    font-weight: 700;
    margin-left: 6px;
}
.vs-table .vs-cost-row {
    background: rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--border-light);
}
.vs-table .vs-cost-row td {
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 700;
}
.vs-cost-row .vs-human-cost {
    color: var(--red-accent);
}
.vs-cost-row .vs-mazij-cost {
    color: var(--accent);
}
.vs-savings {
    text-align: center;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}
.vs-savings strong {
    color: var(--accent);
    font-size: 1.3rem;
}
.vs-hidden-costs {
    max-width: 600px;
    margin: 0 auto 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
}
.vs-hidden-costs h4 {
    color: var(--red-accent);
    font-size: 1rem;
    margin-bottom: 12px;
}
.vs-hidden-costs ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}
.vs-hidden-costs li {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.vs-hidden-costs li::before {
    content: '💸';
    margin-left: 8px;
}
.vs-edge-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.vs-edge-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
}
.vs-edge-card:hover {
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.vs-edge-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.vs-edge-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.vs-edge-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .vs-table thead th { font-size: 0.95rem; padding: 14px 12px; }
    .vs-table td { padding: 12px; font-size: 0.85rem; }
    .vs-table .vs-cost-row td { font-size: 0.95rem; }
    .vs-edge-cards { grid-template-columns: 1fr; }
    .vs-hidden-costs ul { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .vs-table thead th { font-size: 0.85rem; padding: 12px 8px; }
    .vs-table td { padding: 10px 8px; font-size: 0.8rem; }
}

/* ===== FAQ ===== */
.faq-section { background: var(--bg-secondary); }
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(0, 212, 170, 0.2); }
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Cairo', sans-serif;
    text-align: right;
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
    transition: transform 0.3s;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-right: 16px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0D2137 0%, #0B1929 50%, #0F1F33 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
}
.cta-content { position: relative; }
.cta-content h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 16px;
}
.cta-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 36px;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}
.cta-field {
    position: relative;
    width: 100%;
}
.cta-field-label {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    padding: 0 4px;
}
.cta-field[dir="ltr"] .cta-field-label {
    right: auto;
    left: 24px;
}
.cta-field.has-whatsapp-icon .cta-field-label {
    left: 48px;
}
.cta-field:focus-within .cta-field-label,
.cta-field.has-value .cta-field-label {
    top: 7px;
    transform: translateY(0);
    font-size: 0.68rem;
    color: var(--accent);
}
.cta-optional {
    font-size: 0.65rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    padding: 1px 6px;
    border-radius: 4px;
    margin-right: 4px;
}
.cta-whatsapp-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
}
.cta-chips-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
}
.cta-chips-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 6px;
    text-align: right;
    width: 100%;
}
.cta-chip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
}
.cta-chip:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}
.cta-chip.selected {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
}
.cta-other-input {
    margin-top: 4px;
}
.cta-chips-group.input-error {
    animation: ctaShake 0.4s ease;
}
.cta-chips-group.input-error .cta-chip {
    border-color: #ef4444;
}
@keyframes ctaShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}
.cta-phone-row {
    display: flex;
    gap: 8px;
    width: 100%;
    direction: ltr;
}
.cta-country-wrap {
    flex-shrink: 0;
    position: relative;
}
.cta-country-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 20px 14px 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Tajawal', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    direction: ltr;
    white-space: nowrap;
    min-width: 115px;
}
.cta-country-btn:hover, .cta-country-btn:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.cta-country-dd {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    z-index: 100;
    overflow: hidden;
}
.cta-country-dd.open { display: block; }
.cta-country-dd input {
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    font-family: 'Tajawal', sans-serif;
    background: transparent;
    color: var(--text-primary);
    outline: none;
    box-sizing: border-box;
}
.cta-country-dd .cta-c-list { max-height: 220px; overflow-y: auto; }
.cta-country-dd button.cta-c-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.15s;
    border: none;
    background: none;
    width: 100%;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
    color: var(--text-primary);
}
.cta-country-dd button.cta-c-item:hover { background: var(--accent-dim); }
.cta-phone-row .cta-field {
    flex: 1;
}
.cta-phone-row .cta-input {
    flex: 1;
    direction: ltr;
    text-align: right;
}
.cta-phone-row .cta-field .cta-field-label {
    right: 24px;
    left: auto;
}
.cta-input-ltr {
    direction: ltr;
    text-align: right;
}
.cta-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 24px 24px 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.cta-input.whatsapp-input {
    padding-left: 42px;
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.cta-submit {
    background: var(--gradient-accent);
    color: #0B0F1A;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s;
    width: 100%;
}
.cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
}
.cta-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.cta-msg {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
    animation: fadeUp 0.3s ease;
}
.cta-msg.error {
    display: block;
    background: var(--red-dim);
    border: 1px solid rgba(255, 77, 106, 0.3);
    color: var(--red-accent);
}
.cta-msg.success {
    display: block;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--accent);
}
.cta-input.input-error {
    border-color: var(--red-accent) !important;
    animation: shake 0.4s ease;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-4px); }
}

/* ===== BEFORE/AFTER COMPARISON ===== */
.compare-section { background: var(--bg-secondary); }
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.compare-col {
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
}
.compare-col.without {
    background: linear-gradient(180deg, rgba(255, 77, 106, 0.06) 0%, var(--bg-card) 100%);
    border-color: rgba(255, 77, 106, 0.15);
}
.compare-col.with {
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.06) 0%, var(--bg-card) 100%);
    border-color: rgba(0, 212, 170, 0.15);
}
.compare-col h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.compare-col.without h3 { color: var(--red-accent); }
.compare-col.with h3 { color: var(--accent); }
.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--text-secondary);
}
.compare-item:last-child { border-bottom: none; }
.compare-icon { flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.compare-col.without .compare-icon { color: var(--red-accent); }
.compare-col.with .compare-icon { color: var(--accent); }

/* ===== TWO CHOICES ===== */
.choices-section {
    background: linear-gradient(135deg, #0D2137 0%, #0B1929 50%, #0F1F33 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.choices-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.06) 0%, transparent 70%);
}
.choices-content { position: relative; }
.choices-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
}
.choices-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.choices-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 800px;
    margin: 0 auto 40px;
    align-items: center;
}
.choice-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    text-align: right;
}
.choice-card.bad {
    background: rgba(255, 77, 106, 0.06);
    border: 1px solid rgba(255, 77, 106, 0.15);
}
.choice-card.good {
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.15);
}
.choice-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}
.choice-card.bad h4 { color: var(--red-accent); }
.choice-card.good h4 { color: var(--accent); }
.choice-card li {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 4px;
    list-style: none;
}
.choices-divider {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-muted);
    padding: 0 16px;
}
.choices-cta { margin-top: 32px; }

/* ===== GUARANTEE ===== */
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.guarantee-badge span { color: var(--accent); font-weight: 700; }

/* ===== FOUNDER ===== */
.founder-section { background: var(--bg-primary); }
.founder-card {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}
.founder-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}
.founder-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.founder-info .founder-title {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.founder-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== MID CTA ===== */
.mid-cta {
    text-align: center;
    background: var(--bg-primary);
    padding: 60px 0;
}
.mid-cta p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; }
    .choices-grid { grid-template-columns: 1fr; }
    .choices-divider { padding: 8px 0; }
    .choices-content h2 { font-size: 1.6rem; }
    .founder-card { flex-direction: column; text-align: center; padding: 28px 20px; }
    .founder-avatar { width: 100px; height: 100px; font-size: 2.5rem; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about .nav-logo { margin-bottom: 16px; }
.footer-about p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin: 0;
}
.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pain-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { grid-column: span 2; max-width: 420px; justify-self: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero h1 { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }
    .pain-grid, .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { grid-column: auto; transform: none; max-width: none; justify-self: stretch; width: 100%; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    section { padding: 60px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 1.8rem; }
    .category-tabs { gap: 8px; }
    .category-tab { padding: 10px 18px; font-size: 0.9rem; }
    .chat-messages { height: 350px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .phone-mockup { width: 100%; max-width: 300px; }
    .hero-stats { gap: 20px; }
    .stat-value { font-size: 1.2rem; }
}

/* ===== CTA SPIN ===== */
@keyframes ctaSpin { to { transform: rotate(360deg); } }

/* ===== CTA POPUP ===== */
.cta-popup-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    animation: ctaPopupIn 0.4s ease;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.cta-popup-check { margin-bottom: 20px; }
.cta-popup-circle {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: ctaCircleDraw 0.6s ease forwards;
}
.cta-popup-tick {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: ctaTickDraw 0.4s 0.5s ease forwards;
}
.cta-popup-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
}
.cta-popup-subtitle {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0 0 28px;
    line-height: 1.6;
}
.cta-popup-btn {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 48px;
    cursor: pointer;
    transition: background 0.2s;
}
.cta-popup-btn:hover { background: #00E8BB; }
@keyframes ctaPopupIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes ctaCircleDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes ctaTickDraw {
    to { stroke-dashoffset: 0; }
}
