/* ============================================
   OZYXO — Home Page  (v2 – zero inline styles)
   Paletă: mov (#8b5cf6), albastru (#06b6d4),
           roz (#ec489a), auriu (#f59e0b)
   Font:   DM Sans + DM Mono
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── VARIABILE ── */
:root {
    --surface:        rgba(255, 255, 255, 0.9);
    --surface2:       rgba(139, 92, 246, 0.05);
    --surface3:       rgba(139, 92, 246, 0.08);
    --border:         rgba(139, 92, 246, 0.12);
    --border-hover:   rgba(139, 92, 246, 0.35);
    --text:           #0f172a;
    --text-muted:     #475569;
    --text-dim:       #94a3b8;
    --danger:         #ef4444;
    --danger-dim:     rgba(239, 68, 68, 0.08);
    --success:        #10b981;
    --success-dim:    rgba(16, 185, 129, 0.08);
    --warning:        #f59e0b;
    --warning-dim:    rgba(245, 158, 11, 0.08);
    --radius-sm:      8px;
    --radius-md:      14px;
    --radius-lg:      20px;
    --radius-xl:      28px;
    --transition:     all 0.25s ease;

    /* Dark section palette */
    --dark-bg-from:   #0f0f1a;
    --dark-bg-to:     #1a1a2e;
    --dark-card-bg:   rgba(30, 35, 55, 0.9);
    --dark-border:    rgba(139, 92, 246, 0.25);
    --dark-text:      #cbd5e1;
    --dark-text-dim:  #94a3b8;

    /* Compare card colours */
    --danger-card-bg: rgba(40, 30, 50, 0.9);
    --success-card-bg:rgba(30, 45, 35, 0.9);
}

/* ── OVERFLOW FIX GLOBAL ── */
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

* { box-sizing: border-box; }

body { overflow-x: hidden; }

ins.adsbygoogle,
.adsbygoogle,
.google-auto-placed,
iframe[src*="googleadservices"],
iframe[src*="doubleclick"],
img,
video {
    max-width: 100%;
}

ins.adsbygoogle,
.adsbygoogle,
.google-auto-placed,
amp-auto-ads,
iframe[src*="googleadservices"],
iframe[src*="doubleclick"] {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    display: block;
    width: 100%;
    margin: 0 auto;
}

img, iframe, ins, .adsbygoogle, [class*="ad"] {
    max-width: 100% !important;
    height: auto !important;
}

/* ── UTILITIES ── */
.w-100  { width: 100%; }
.mt-24  { margin-top: 24px; }

/* ── DARK SECTION BASE ── */
.dark-section {
    background: linear-gradient(135deg, var(--dark-bg-from) 0%, var(--dark-bg-to) 100%);
    padding: 80px 0;
}

.dark-title {
    color: #ffffff !important;
}

.dark-subtitle {
    color: var(--dark-text-dim) !important;
}

.dark-label {
    background: rgba(139, 92, 246, 0.15) !important;
    color: #a78bfa !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.dark-label::before {
    background: #a78bfa !important;
}

.dark-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 48px auto 0;
    padding: 0 24px;
}

/* ── SECTION LABELS ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.07);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8b5cf6;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-top: 14px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 14px auto 0;
    line-height: 1.65;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn:active { transform: scale(0.97); }

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.btn-submit {
    padding: 15px;
    font-size: 15px;
    justify-content: center;
}

/* ── BADGE / URGENCY ── */
.badge-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--danger-dim);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 14px;
}

.urgency-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--danger);
    animation: blink 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

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

/* ── HERO ── */
.hero {
    padding: 110px 0 80px;
    background: transparent;
    position: relative;
}

.hero-grid {
    display: flex;
    gap: 56px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content { flex: 1.3; }

.hero-title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 18px 0 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4, #ec489a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 20px;
}

.benefits-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.benefits-list div {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--text-muted);
    background: white;
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.benefits-list div i {
    color: var(--success);
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Hero Card */
.hero-card {
    flex: 0.75;
    background: white;
    border: 1px solid var(--border);
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4, #ec489a);
}

.hero-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hero-card-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-card-stat {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.hero-card-stat div { text-align: center; }

.hero-card-stat .num {
    font-family: 'DM Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero-card-stat .lbl {
    font-size: 11px;
    color: var(--text-dim);
    display: block;
    margin-top: 2px;
}

/* ── ANIMAȚII HERO ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeInUp 0.55s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3) { animation-delay: 0.19s; }
.hero-content > *:nth-child(4) { animation-delay: 0.26s; }
.hero-content > *:nth-child(5) { animation-delay: 0.33s; }
.hero-content > *:nth-child(6) { animation-delay: 0.40s; }

/* ── PROFILE SECTION ── */
.profile-section {
    padding: 0 0 80px;
}

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

.profile-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.08);
    transition: var(--transition);
}

.profile-card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.14);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #06b6d4, #ec489a);
}

.profile-icon {
    width: 72px;
    height: 72px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.profile-icon i {
    font-size: 34px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.profile-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 12px;
}

.profile-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.65;
}

.profile-description strong {
    color: #8b5cf6;
    font-weight: 600;
}

.profile-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.profile-features div {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid var(--border);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-muted);
}

.profile-features div i {
    color: var(--success);
    font-size: 14px;
}

.btn-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.btn-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.profile-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dim);
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: var(--radius-md);
}

.profile-note i {
    color: var(--text-muted);
    font-size: 14px;
}

/* ── COMPARE SECTION (DARK) ── */
.compare-section {
    padding: 80px 0;
}

/* Cards în dark */
.compare-card-dark {
    flex: 1;
    min-width: 280px;
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.ai-card-dark {
    background: var(--danger-card-bg);
    border-left: 4px solid #ef4444;
}

.ozyxo-card-dark {
    background: var(--success-card-bg);
    border-left: 4px solid #22c55e;
}

.compare-dark-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.danger-title  { color: #f87171; }
.success-title { color: #86efac; }

.compare-dark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-dark-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--dark-text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.compare-dark-list li.no-border {
    border-bottom: none;
}

.danger-icon  { color: #ef4444; }
.success-icon { color: #22c55e; }

/* ── INTEGRATION SECTION (DARK) ── */
.integration-section {
    padding: 80px 0;
}

/* Badge-uri dark */
.integration-badge.dark-badge {
    background: rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #c4b5fd;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: default;
}

.integration-badge.dark-badge:hover {
    border-color: #a78bfa;
    background: rgba(139, 92, 246, 0.25);
    color: #ede9fe;
    transform: translateY(-2px);
}

/* Badge-uri light (secțiunea normală) */
.integration-badge {
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.integration-badge:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.02);
}

/* ── PRICING SECTION ── */
.pricing-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    text-align: center;
}

.pricing-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1060px;
    margin: 48px auto 0;
    padding: 0 24px;
}

.pricing-notice {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, #1e1b4b, #2e1a3a);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    border-left: 5px solid #8b5cf6;
}

.pricing-notice p {
    margin: 0;
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.65;
}

.notice-accent {
    color: #f472b6;
}

/* ── CARD BASE ── */
.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.07);
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(139, 92, 246, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.12);
}

.card::before { display: none; }
.pricing-card::before,
.service-card::before,
.benefit-card::before { display: none; }

/* ── PRICING CARD ── */
.pricing-card {
    max-width: 310px;
    width: 100%;
    text-align: left;
}

.pricing-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price {
    font-family: 'DM Mono', monospace;
    font-size: 42px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.03em;
    margin: 12px 0 4px;
    line-height: 1;
}

.price-desc {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.card hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

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

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

/* Featured pricing card */
.featured {
    border-color: rgba(139, 92, 246, 0.35);
    position: relative;
    overflow: hidden;
}

.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.06), transparent 65%);
    pointer-events: none;
}

.featured:hover { border-color: rgba(139, 92, 246, 0.5); }

.featured .feature-list li i { color: #8b5cf6; }

.featured .price {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #8b5cf6;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* ── PROMO STRIP ── */
.promo-strip {
    padding: 64px 0;
    background: transparent;
    text-align: center;
}

.promo-strip h2 {
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    max-width: 680px;
    margin: 0 auto 12px;
    line-height: 1.25;
}

.promo-strip p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── SERVICES SECTION ── */
.services-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.services-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1060px;
    margin: 48px auto 0;
    padding: 0 24px;
}

.service-card {
    max-width: 240px;
    width: 100%;
    text-align: left;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.3);
}

.card-icon i {
    font-size: 22px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: none;
}

.service-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── BENEFITS SECTION ── */
.benefits-section {
    padding: 80px 0;
    background: transparent;
}

.benefits-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1060px;
    margin: 48px auto 0;
    padding: 0 24px;
}

.benefit-card {
    max-width: 320px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.benefit-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(139, 92, 246, 0.07);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrap {
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(139, 92, 246, 0.3);
}

.benefit-icon-wrap i {
    font-size: 20px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: none;
}

.benefit-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ── FAQ SECTION ── */
.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    text-align: center;
}

.faq-grid {
    max-width: 660px;
    margin: 48px auto 0;
    padding: 0 24px;
    text-align: left;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 6px rgba(139, 92, 246, 0.05);
}

.faq-item:has(.faq-answer.show) {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    background: transparent;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question span {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
    background: rgba(139, 92, 246, 0.04);
}

.faq-item:has(.faq-answer.show) .faq-question span {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.faq-answer.show {
    max-height: 300px;
    padding: 0 22px 20px;
}

/* ── ABOUT SECTION ── */
.about-section {
    padding: 80px 0;
    background: transparent;
}

.about-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.about-icon {
    width: 72px;
    height: 72px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-section h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.about-text {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 12px;
    line-height: 1.65;
}

.about-contact {
    font-size: 14px;
    color: var(--text-dim);
}

/* ── FOOTER CTA ── */
.footer-cta {
    padding: 80px 24px;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff 50%, #e0f2fe);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 0 24px 60px;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.footer-cta::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    max-width: 600px;
    margin: 0 auto 12px;
    line-height: 1.2;
}

.footer-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ── MODAL ── */
.quote-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.quote-modal.show { display: flex; }

.quote-modal-content {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(139, 92, 246, 0.2);
}

.quote-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    border-bottom: 1px solid var(--border);
}

.quote-modal-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
}

.quote-modal-close {
    background: rgba(139, 92, 246, 0.07);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    line-height: 1;
}

.quote-modal-close:hover {
    background: var(--danger-dim);
    color: var(--danger);
    border-color: rgba(239, 68, 68, 0.3);
}

.quote-modal-body { padding: 26px; }

.modal-intro {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 22px;
}

.form-group         { margin-bottom: 16px; }
.form-group-flex    { flex: 1; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    background: #fafafa;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s ease;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-row {
    display: flex;
    gap: 14px;
}

/* ── Z-INDEX NAVBAR FIX ── */
.navbar {
    position: relative !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

.navbar-toggler {
    position: relative !important;
    z-index: 1000000 !important;
    pointer-events: auto !important;
}

#mobileMenu,
.nav-links {
    z-index: 999999 !important;
    pointer-events: auto !important;
}

.color-bubble,
.floating-google {
    z-index: -1 !important;
    pointer-events: none !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-card        { width: 100%; max-width: 440px; }
    .hero-subtitle    { margin-left: auto; margin-right: auto; }
    .benefits-list    { justify-content: center; }
    .hero-buttons     { justify-content: center; }
    .dark-grid        { flex-direction: column; align-items: center; }
    .compare-card-dark { max-width: 500px; width: 100%; }
}

@media (max-width: 640px) {
    .hero            { padding: 80px 0 60px; }
    .hero-title      { font-size: 34px; }
    .form-row        { flex-direction: column; }
    .section-title   { font-size: 26px; }
    .profile-card    { padding: 32px 24px; }
    .profile-title   { font-size: 24px; }
    .pricing-grid,
    .services-grid,
    .benefits-grid   { gap: 12px; }
    .footer-cta      { margin: 0 16px 40px; padding: 60px 20px; }

    body, html       { overflow-x: hidden !important; width: 100% !important; }

    .adsbygoogle,
    ins.adsbygoogle,
    .google-auto-placed,
    amp-auto-ads,
    iframe[src*="googleadservices"],
    iframe[src*="doubleclick"] {
        max-width: calc(100vw - 20px) !important;
        width: 100% !important;
        display: block !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    ::-webkit-scrollbar { display: none; }
}

@media (max-width: 480px) {
    .profile-features   { flex-direction: column; align-items: stretch; }
    .profile-features div { justify-content: center; }
    .hero-card          { padding: 28px 24px; }
    .compare-card-dark  { padding: 24px 20px; }
    .compare-dark-title { font-size: 18px; }
}