/* Home Page Specific Styles */

:root{
  --brand:#4f77a3;
  --brand-2:#6a9cc9;
  --bg-soft:#f8fafc;
  --text:#2c3e50;
  --muted:#7f8c8d;
  --shadow:0 8px 30px rgba(0,0,0,0.08);
}

/* Slider Section */
.slider-container {
    position: relative;
    margin: 30px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    background: radial-gradient(1200px 500px at 80% 0%, rgba(79,119,163,0.15), transparent),
                linear-gradient(180deg, #0b1220, #111827);
}

.homeslider {
    display: flex;
    transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
    height: 520px;
    width: 300%; /* 3 slayt varsa */
}

.slide {
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .35;
    filter: saturate(1.1) contrast(1.05);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 48px;
    backdrop-filter: blur(2px);
    color: white;
    max-width: 720px;
    margin-left: 40px;
    border-radius: 14px;
}

.brand-kicker{
  display:inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #cbd5e1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.slide-content h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: white;
    line-height: 1.15;
}

.slide-subtitle {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.hero-highlights{
  display:grid; gap:8px; margin: 0 0 20px 0; padding:0; list-style:none;
}
.hero-highlights li{
  display:flex; align-items:center; gap:8px; color:#e2e8f0; font-size:15px;
}
.hero-highlights li::before{ content:'✔'; color:#86efac; font-weight:700; }

.slide-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.18);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.25s ease, transform .15s ease;
}

.prev-btn:hover, .next-btn:hover { background-color: rgba(255,255,255,0.22); transform: translateY(-1px); }

.slider-dots { display: flex; gap: 8px; }

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease, transform .15s ease;
}

.dot.active { background-color: white; transform: scale(1.1); }

/* Features Section */
.features-section { padding: 60px 20px; }

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--text);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    border-radius: 3px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    border-radius: 14px;
    padding: 26px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.12); }

.feature-icon { font-size: 40px; margin-bottom: 14px; }

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

.feature-card p { color: var(--muted); line-height: 1.65; }

/* How It Works Section */
.how-it-works-section { padding: 60px 20px; background-color: var(--bg-soft); }

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step { text-align: center; padding: 26px; position: relative; }

.step-number {
    width: 50px; height: 50px; background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700; margin: 0 auto 14px; box-shadow: var(--shadow);
}

.step h3 { font-size: 20px; color: var(--text); margin-bottom: 8px; }
.step p { color: var(--muted); line-height: 1.65; }

/* Pricing Section */
.pricing-section { padding: 60px 20px; }

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.12); }

.pricing-card.featured { border: 2px solid var(--brand); transform: scale(1.03); }
.pricing-card.featured:hover { transform: translateY(-6px) scale(1.03); }

.pricing-badge { position: absolute; top: 0; right: 0; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; padding: 8px 15px; font-size: 13px; font-weight: 700; border-bottom-left-radius: 12px; }

.pricing-title { font-size: 22px; color: var(--text); margin-bottom: 10px; }

.pricing-price { font-size: 34px; font-weight: 800; color: var(--brand); margin-bottom: 14px; }

.pricing-price span { font-size: 14px; font-weight: 500; color: var(--muted); }

.pricing-features { list-style-type: none; padding: 0; margin: 0 0 20px; text-align: left; }

.pricing-features li { padding: 10px 0; border-bottom: 1px solid #eef2f7; color: var(--muted); position: relative; padding-left: 22px; }

.pricing-features li::before { content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
}

.pricing-btn {
    width: 100%;
    padding: 12px;
}

/* Call to Action Section */
.cta-section {
    background-color: #4f77a3;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin: 60px 0 0;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: #4f77a3;
}

/* Trust/Benefits Bar */
.trust-bar{ background: #0f172a; color:#e2e8f0; }
.trust-inner{ max-width:1200px; margin:0 auto; padding:14px 16px; display:grid; grid-template-columns: repeat(4,1fr); gap:10px; }
.trust-item{ text-align:center; font-size:14px; padding:8px 10px; border:1px solid rgba(255,255,255,0.06); border-radius:10px; background: rgba(255,255,255,0.04); }
@media (max-width: 768px){ .trust-inner{ grid-template-columns: repeat(2,1fr);} }

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #4f77a3;
    color: white;
    border: 2px solid #4f77a3;
}

.btn-primary:hover {
    background-color: #3a5d85;
    border-color: #3a5d85;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: 2px solid #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .homeslider {
        height: 460px;
    }

    .slide-content {
        max-width: 540px;
        margin-left: 16px;
        padding: 36px 28px;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .slider {
        height: 400px;
    }

    .slide-content {
        max-width: 80%;
        margin: 0 auto;
        text-align: center;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .slide-buttons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .slider {
        height: 350px;
    }

    .slide-content {
        padding: 30px 20px;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .prev-btn, .next-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Layout helpers */
.container{ max-width:1200px; margin:0 auto; padding:0 16px; }

/* Logos Section */
.logos-section{ background:#0f172a; padding:22px 0; border-top:1px solid rgba(255,255,255,0.06); border-bottom:1px solid rgba(255,255,255,0.06); }
.logos-track{ display:flex; gap:28px; justify-content:center; align-items:center; flex-wrap:wrap; opacity:.9; }
.logo-svg{ filter: grayscale(1); opacity:.75; transition: opacity .2s ease; }
.logo-svg:hover{ opacity:1; }

/* Home logo usage enhancements */
.hero-brand{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.hero-brand-logo{ height: 40px; width: auto; }
.hero-visual{ position: relative; }
.hero-logo-overlay{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; pointer-events:none; }
.hero-logo-img{ height: 96px; width:auto; opacity: .08; filter: grayscale(1) contrast(1.1); }
.partner-logo{ height: 36px; width:auto; opacity:.9; filter: grayscale(.1); transition: transform .15s ease, opacity .2s ease; }
.provider-brand-logo{ height: 18px; width:auto; vertical-align: middle; margin-right: 6px; }
.partner-logo:hover{ transform: translateY(-2px) scale(1.02); opacity:1; }

/* CTA logo */
.cta-head{ display:flex; align-items:center; justify-content:center; gap:12px; margin-bottom: 10px; }
.cta-logo{ height: 36px; width:auto; }

@media (max-width: 768px){
  .hero-brand-logo{ height: 32px; }
  .hero-logo-img{ height: 90px; }
  .partner-logo{ height: 32px; }
  .cta-logo{ height: 30px; }
}

/* Stats Section */
.stats-section{ background: linear-gradient(180deg, #ffffff, #f8fafc); padding: 36px 0; }
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.stat{ background:#fff; border:1px solid #eef2f7; border-radius:14px; padding:18px; text-align:center; box-shadow: var(--shadow); }
.stat-value{ font-size:28px; font-weight:800; color: var(--text); }
.stat-value .accent{ color: #22c55e; }
.stat-label{ color:#64748b; margin-top:6px; font-size:14px; }
@media (max-width: 900px){ .stats-grid{ grid-template-columns: repeat(2,1fr);} }

/* Testimonials */
.testimonials-section{ padding: 60px 20px; background: #ffffff; }
.testimonials-header{ text-align:center; margin-bottom:20px; color: var(--text); }
.testimonials-slider{ position:relative; max-width: 900px; margin: 0 auto; overflow:hidden; }
.testimonials-track{ display:flex; transition: transform .5s ease; }
.testimonial{ flex: 0 0 100%; padding: 20px; }
.testimonial-card{ background:#fff; border:1px solid #eef2f7; border-radius: 16px; box-shadow: var(--shadow); padding: 24px; }
.testimonial-quote{ font-size:18px; color:#0f172a; line-height:1.7; }
.testimonial-author{ margin-top:12px; color:#64748b; font-weight:600; }
.testimonial-controls{ display:flex; justify-content:center; gap:8px; margin-top:14px; }
.testimonial-dot{ width:8px; height:8px; border-radius:50%; background:#cbd5e1; cursor:pointer; }
.testimonial-dot.active{ background:#4f77a3; }

/* FAQ */
.faq-section{ padding: 60px 20px; background: #f8fafc; }
.faq-grid{ max-width: 900px; margin:0 auto; }
.faq-item{ border:1px solid #e2e8f0; background:#fff; border-radius:12px; margin-bottom:10px; overflow:hidden; }
.faq-question{ width:100%; text-align:left; padding:14px 16px; background:#ffffff; color:#0f172a; font-weight:700; cursor:pointer; display:flex; justify-content:space-between; align-items:center; }
.faq-answer{ display:none; padding: 0 16px 16px 16px; color:#475569; }
.faq-item.open .faq-answer{ display:block; }
.faq-item.open .faq-question{ background:#f1f5f9; }

/* New Hero Section */
.hero{ position:relative; background: linear-gradient(180deg, #ffffff, #f3f6fb); }
.hero-inner{ max-width:1200px; margin:0 auto; padding:64px 16px; }
.hero-grid{ display:grid; grid-template-columns: 1.2fr 1fr; gap:36px; align-items:center; }
.hero-title{ font-size:44px; line-height:1.15; color:#0f172a; margin:0 0 12px 0; }
.hero-sub{ font-size:18px; color:#475569; line-height:1.6; margin-bottom:20px; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.hero-visual{ display:flex; justify-content:center; position: relative; padding-bottom: 80px; }
.hero-card{ position:relative; width: 360px; height: 220px; border-radius:16px; background:#0b1220; box-shadow: 0 20px 60px rgba(2,6,23,.22); overflow:hidden; }
.hero-doc{ position:absolute; inset:16px; border-radius:12px; background: linear-gradient(180deg, #1f2937, #111827); border:1px solid rgba(255,255,255,.08); }
.hero-badge{ position:absolute; top:14px; right:14px; background: linear-gradient(135deg, #4f77a3, #6a9cc9); color:#fff; padding:6px 10px; border-radius:999px; font-weight:700; font-size:12px; letter-spacing:.02em; box-shadow: 0 6px 16px rgba(79,119,163,.35); }
.hero-spark{ position:absolute; bottom:-40px; left:-40px; width:200px; height:200px; background: radial-gradient(closest-side, rgba(99, 179, 237, .35), transparent); filter: blur(6px); }
@media (max-width: 992px){ .hero-grid{ grid-template-columns: 1fr; } .hero-visual{ order:-1; padding-bottom: 0; } .hero-title{ font-size:36px; } }


/* ===== Revamp v2: Bold Dark Neon Theme Overrides (bambaşka) ===== */
/* This block intentionally overrides previous light theme to a fully new look
   without touching ERB dynamics. Focus: glass panels, neon accents, dark surfaces. */

/* Global surface */
body { background: radial-gradient(1200px 600px at 10% -10%, rgba(34,211,238,.06), transparent),
                 radial-gradient(900px 500px at 90% 10%, rgba(167,139,250,.06), transparent),
                 #0b1220; color: #e5e7eb; }

/* Unified container width */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography refresh */
h1, h2, h3, h4 { color: #f1f5f9; letter-spacing: .2px; }
p { color: #a3b2c7; }

/* Buttons: pill neon */
.btn { border-radius: 999px; font-weight: 700; letter-spacing: .2px; }
.btn-primary { background: linear-gradient(135deg, #22d3ee, #a78bfa); border-color: transparent; box-shadow: 0 8px 24px rgba(34,211,238,.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(167,139,250,.28); }
.btn-secondary { background: rgba(148,163,184,.12); border-color: rgba(148,163,184,.28); color: #e2e8f0; }
.btn-secondary:hover { background: rgba(148,163,184,.2); }
.btn-outline { border-radius: 999px; border-width: 2px; }

/* Hero: full dark with glass card */
.hero { background: radial-gradient(700px 300px at 20% 0%, rgba(34,211,238,.1), transparent),
                   radial-gradient(800px 400px at 90% 10%, rgba(167,139,250,.08), transparent),
                   #0b1220; }
.hero-inner { padding: 84px 20px 60px; }
.hero-grid { grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero-title { font-size: 56px; line-height: 1.05; background: linear-gradient(180deg,#fff,#cbd5e1); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.hero-sub { color: #9fb2c9; font-size: 18px; }
.hero-actions { margin-top: 18px; }
.hero-card { width: 420px; height: 260px; background: rgba(2,6,23,.8); border: 1px solid rgba(148,163,184,.18); box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(34,211,238,.08) inset; }
.hero-doc { background: linear-gradient(180deg, rgba(30,41,59,1), rgba(2,6,23,1)); border: 1px solid rgba(255,255,255,.06); }
.hero-badge { background: linear-gradient(135deg, rgba(34,211,238,.9), rgba(167,139,250,.9)); box-shadow: 0 8px 24px rgba(167,139,250,.35); }
.hero-spark { filter: blur(10px); opacity: .9; }

/* Trust bar: invert to transparent glass */
.trust-bar { background: rgba(2,6,23,.6); border-top: 1px solid rgba(148,163,184,.12); border-bottom: 1px solid rgba(148,163,184,.12); }
.trust-item { background: rgba(148,163,184,.06); border: 1px solid rgba(148,163,184,.14); color: #cbd5e1; }

/* Logos: brighten on hover */
.logos-section { background: transparent; border-top: 1px dashed rgba(148,163,184,.14); border-bottom: 1px dashed rgba(148,163,184,.14); }
.logo-svg { filter: none; opacity: .6; }
.logo-svg:hover { opacity: 1; }

/* Stats: glass tiles */
.stats-section { background: transparent; padding: 42px 0; }
.stat { background: rgba(2,6,23,.6); border: 1px solid rgba(148,163,184,.16); box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.stat-value { color: #e2e8f0; }
.stat-label { color: #8ea0b6; }

/* Features: switch cards to glass neon */
.features-section { padding: 80px 20px; }
.section-title { color: #e2e8f0; }
.section-title::after { background: linear-gradient(90deg, #22d3ee, #a78bfa); }
.feature-card { background: linear-gradient(180deg, rgba(2,6,23,.55), rgba(2,6,23,.75)); border: 1px solid rgba(148,163,184,.16); box-shadow: 0 10px 40px rgba(0,0,0,.35); }
.feature-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 18px 60px rgba(0,0,0,.5); }
.feature-card h3 { color: #f1f5f9; }
.feature-card p { color: #9fb2c9; }

/* Steps */
.how-it-works-section { background: linear-gradient(180deg, rgba(15,23,42,.6), rgba(2,6,23,.9)); }
.step-number { box-shadow: 0 10px 24px rgba(34,211,238,.25); }
.step h3 { color: #e2e8f0; }
.step p { color: #9fb2c9; }

/* Pricing: neon glass cards */
.pricing-section { padding: 80px 20px; }
.pricing-card { background: linear-gradient(180deg, rgba(2,6,23,.55), rgba(2,6,23,.85)); border: 1px solid rgba(148,163,184,.16); box-shadow: 0 18px 50px rgba(0,0,0,.5); }
.pricing-card.featured { border: 1px solid rgba(34,211,238,.35); box-shadow: 0 0 0 1px rgba(34,211,238,.25) inset, 0 18px 60px rgba(34,211,238,.18); }
.pricing-badge { background: linear-gradient(135deg, #22d3ee, #a78bfa); }
.pricing-title { color: #e2e8f0; }
.pricing-price { color: #22d3ee; }
.pricing-price span { color: #9fb2c9; }
.pricing-features li { border-bottom-color: rgba(148,163,184,.14); color: #a3b2c7; }
.pricing-btn { background: linear-gradient(135deg, #22d3ee, #a78bfa); color: #0b1220; font-weight: 800; border: none; }
.pricing-btn:hover { filter: brightness(1.05); transform: translateY(-2px); }

/* Billing toggle override */
.billing-toggle .billing-option { color: #8ea0b6; }
.billing-toggle .billing-option.active { color: #22d3ee; }
.switch .slider { background-color: rgba(148,163,184,.3); }
.switch input:checked + .slider { background: linear-gradient(135deg, #22d3ee, #a78bfa); }
.slider.round::before { box-shadow: 0 2px 10px rgba(0,0,0,.4); }
.yearly-savings { background: linear-gradient(135deg, #22d3ee, #a78bfa); color: #0b1220; }

/* Testimonials */
.testimonials-section { background: transparent; }
.testimonial-card { background: linear-gradient(180deg, rgba(2,6,23,.6), rgba(2,6,23,.9)); border: 1px solid rgba(148,163,184,.16); }
.testimonial-quote { color: #e2e8f0; }
.testimonial-author { color: #9fb2c9; }
.testimonial-dot { background: rgba(148,163,184,.3); }
.testimonial-dot.active { background: linear-gradient(135deg, #22d3ee, #a78bfa); }

/* FAQ */
.faq-section { background: radial-gradient(900px 400px at 10% 0%, rgba(34,211,238,.06), transparent), #0b1220; }
.faq-item { background: linear-gradient(180deg, rgba(2,6,23,.5), rgba(2,6,23,.85)); border: 1px solid rgba(148,163,184,.16); }
.faq-question { color: #e2e8f0; }
.faq-item.open .faq-question { background: rgba(148,163,184,.08); }
.faq-answer { color: #9fb2c9; }

/* CTA */
.cta-section { background: radial-gradient(900px 400px at 80% -10%, rgba(167,139,250,.18), transparent),
                           linear-gradient(135deg, #111827, #0b1220); border-top: 1px solid rgba(148,163,184,.14); }
.cta-section p { color: #cbd5e1; }

/* Header/footer adjustments for dark theme context in homepage only (safe overrides) */
.app-header { background: rgba(2,6,23,.72); backdrop-filter: blur(10px); border-bottom-color: rgba(148,163,184,.14); }
.brand-text { color: #e2e8f0; }
header .menu a { color: #d1d5db; }
header .menu a.active, header .menu a:hover { background: rgba(148,163,184,.12); color: #fff; }
.app-footer { background: rgba(2,6,23,.7); border-top-color: rgba(148,163,184,.16); }
.app-footer h3 { color: #e2e8f0; }
.app-footer p, .app-footer a { color: #9fb2c9; }
.app-footer a:hover { color: #22d3ee; }
.app-footer .footer-bottom { color: #93a4bb; border-top-color: rgba(148,163,184,.16); }

/* Responsivity */
@media (max-width: 992px) {
  .hero-title { font-size: 42px; }
  .hero-card { width: 100%; max-width: 420px; }
}
@media (max-width: 768px) {
  .hero-inner { padding-top: 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; max-width: 320px; margin: 0 auto; }
}


/* ===== Revamp v3: Vibrant Light Theme Overrides =====
   Goal: Make the homepage colorful, lively, and ensure the header is clearly visible.
   Note: These rules come AFTER the dark neon overrides to safely supersede them. */

/* Global surface: return to light with subtle colorful gradients */
body {
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(79,119,163,0.08), transparent),
    radial-gradient(900px 500px at 85% 0%, rgba(255,182,72,0.10), transparent),
    #f7fafc;
  color: #1f2937;
}

/* Typography */
.section-title, h1, h2, h3, h4 { color: #0f172a; }
p { color: #475569; }

/* Header: ensure visible and lively on homepage */
.app-header {
  background: #ffffff !important;
  border-bottom: 1px solid #e6ecf1 !important;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.06) !important;
}
.brand-text { color: #0f172a !important; }
header .menu a { color: #0f172a !important; }
header .menu a.active, header .menu a:hover { background: #eef2f7 !important; color: #0b1320 !important; }

/* Buttons: vibrant gradients */
.btn { border-radius: 10px; font-weight: 700; }
.btn-primary {
  background: linear-gradient(135deg, #4f77a3, #ff7a59) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(79, 119, 163, 0.25);
}
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn-secondary {
  background: #ffffff !important;
  border: 2px solid #e2e8f0 !important;
  color: #334155 !important;
}
.btn-secondary:hover { background: #f8fafc !important; }
.btn-outline { border-color: #ffffff; color: #ffffff; }

/* Hero: colorful and bright */
.hero {
  background:
    radial-gradient(700px 320px at 20% -10%, rgba(99,179,237,0.25), transparent),
    radial-gradient(800px 360px at 95% 10%, rgba(255,122,89,0.22), transparent),
    linear-gradient(180deg, #ffffff, #f3f6fb) !important;
}
.hero-title { color: #0f172a !important; background: none !important; }
.hero-sub { color: #475569 !important; }
.hero-card { background: #ffffff !important; border: 1px solid #e6ecf1 !important; box-shadow: 0 20px 40px rgba(2,6,23,.08) !important; }
.hero-doc { background: linear-gradient(180deg, #ffffff, #f3f6fb) !important; border-color: #eef2f7 !important; }
.hero-badge { background: linear-gradient(135deg, #4f77a3, #ff7a59) !important; box-shadow: 0 8px 22px rgba(255,122,89,.25) !important; }
.hero-spark { background: radial-gradient(closest-side, rgba(255, 200, 120, .35), transparent) !important; filter: blur(6px) !important; }

/* Trust bar: soft colorful chips on light bg */
.trust-bar { background: #ffffff !important; color: #334155 !important; border-top: 1px solid #e6ecf1; border-bottom: 1px solid #e6ecf1; }
.trust-item { background: #f8fafc !important; border: 1px solid #eef2f7 !important; color: #334155 !important; }

/* Logos: light strip */
.logos-section { background: #ffffff !important; border-top: 1px solid #e6ecf1 !important; border-bottom: 1px solid #e6ecf1 !important; }
.logo-svg { opacity: .85 !important; filter: grayscale(0.2) !important; }

/* Stats: white tiles */
.stats-section { background: linear-gradient(180deg, #ffffff, #f8fafc) !important; }
.stat { background: #ffffff !important; border-color: #eef2f7 !important; box-shadow: 0 10px 26px rgba(2,6,23,.06) !important; }
.stat-value { color: #0f172a !important; }
.stat-label { color: #64748b !important; }

/* Features */
.feature-card { background: #ffffff !important; border: 1px solid #eef2f7 !important; box-shadow: 0 10px 26px rgba(2,6,23,.06) !important; }
.feature-card h3 { color: #0f172a !important; }
.feature-card p { color: #475569 !important; }

/* Steps */
.how-it-works-section { background: #f7fafc !important; }
.step h3 { color: #0f172a !important; }
.step p { color: #475569 !important; }

/* Pricing */
.pricing-section { background: transparent; }
.pricing-card { background: #ffffff !important; border: 1px solid #eef2f7 !important; box-shadow: 0 18px 40px rgba(2,6,23,.08) !important; }
.pricing-card.featured { border: 2px solid #4f77a3 !important; box-shadow: 0 12px 30px rgba(79,119,163,.18) !important; }
.pricing-badge { background: linear-gradient(135deg, #4f77a3, #ff7a59) !important; }
.pricing-title { color: #0f172a !important; }
.pricing-price { color: #4f77a3 !important; }
.pricing-price span { color: #64748b !important; }
.pricing-features li { color: #475569 !important; border-bottom-color: #eef2f7 !important; }
.pricing-btn { background: linear-gradient(135deg, #4f77a3, #ff7a59) !important; color: #fff !important; }

/* Billing toggle */
.billing-toggle .billing-option { color: #475569 !important; }
.billing-toggle .billing-option.active { color: #ff7a59 !important; }
.switch .slider { background-color: #e2e8f0 !important; }
.switch input:checked + .slider { background: linear-gradient(135deg, #4f77a3, #ff7a59) !important; }
.yearly-savings { background: linear-gradient(135deg, #4f77a3, #ff7a59) !important; color: #ffffff !important; }

/* Testimonials */
.testimonials-section { background: #ffffff !important; }
.testimonial-card { background: #ffffff !important; border: 1px solid #eef2f7 !important; }
.testimonial-quote { color: #0f172a !important; }
.testimonial-author { color: #64748b !important; }
.testimonial-dot { background: #cbd5e1 !important; }
.testimonial-dot.active { background: linear-gradient(135deg, #4f77a3, #ff7a59) !important; }

/* FAQ */
.faq-section { background: #f8fafc !important; }
.faq-item { background: #ffffff !important; border: 1px solid #e2e8f0 !important; }
.faq-question { color: #0f172a !important; }
.faq-item.open .faq-question { background: #f1f5f9 !important; }
.faq-answer { color: #475569 !important; }

/* CTA */
.cta-section {
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(255,122,89,.25), transparent),
    linear-gradient(135deg, #4f77a3, #ff7a59) !important;
  color: #ffffff !important;
}
.cta-section p { color: #ffffff !important; }
.btn-outline { border-color: rgba(255,255,255,0.9) !important; color: #ffffff !important; }
.btn-outline:hover { background: #ffffff !important; color: #4f77a3 !important; }

/* Responsive tweaks for vibrant theme */
@media (max-width: 768px) {
  .hero-title { font-size: 36px !important; }
  .cta-buttons { flex-direction: column; max-width: 320px; margin: 0 auto; }
}


/* Promo: 3 Free Signatures for new users */
.signup-promo{ position:absolute; bottom:-14px; right:-10px; background: radial-gradient(120px 60px at 20% 20%, rgba(34,211,238,.25), transparent),
                           radial-gradient(160px 90px at 80% 30%, rgba(167,139,250,.18), transparent),
                           linear-gradient(135deg, rgba(15,23,42,.88), rgba(15,23,42,.78));
  border:1px solid rgba(148,163,184,.25); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(2,6,23,.45), inset 0 0 0 1px rgba(255,255,255,.03);
  border-radius: 16px; padding:14px 16px; color:#e2e8f0; width: 300px; overflow:hidden; }
.signup-promo .promo-content{ position:relative; z-index:2; }
.signup-promo .promo-kicker{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:#93c5fd; opacity:.9; margin-bottom:4px; }
.signup-promo .promo-title{ font-size:24px; font-weight:900; letter-spacing:.4px; line-height:1.1; color:#f8fafc; }
.signup-promo .promo-title strong{ font-size:28px; color:#22d3ee; text-shadow: 0 0 18px rgba(34,211,238,.35); }
.signup-promo .promo-sub{ font-size:13px; color:#a3b2c7; margin-top:4px; }
.signup-promo .promo-actions{ margin-top:10px; display:flex; gap:8px; align-items:center; }
.signup-promo .promo-cta{ display:inline-flex; align-items:center; justify-content:center; padding:8px 12px; border-radius:999px; font-weight:800; font-size:13px; color:#0b1220; text-decoration:none; background:linear-gradient(135deg,#22d3ee,#a78bfa); box-shadow: 0 8px 20px rgba(34,211,238,.25); }
.signup-promo .promo-cta:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(167,139,250,.28); }
.signup-promo .promo-link{ font-size:12px; color:#cbd5e1; text-decoration:none; opacity:.9; }
.signup-promo .promo-link:hover{ text-decoration:underline; }
.signup-promo .promo-pulse{ position:absolute; inset:-20%; background: radial-gradient(closest-side, rgba(34,211,238,.14), transparent 65%); filter: blur(8px); animation: promoPulse 3s ease-in-out infinite; z-index:1; }
.signup-promo .promo-shine{ position:absolute; top:0; left:-30%; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); transform: skewX(-20deg); animation: promoShine 5s linear infinite; z-index:1; }
@keyframes promoPulse{ 0%,100%{ opacity:.6; transform: scale(1);} 50%{ opacity:1; transform: scale(1.06);} }
@keyframes promoShine{ 0%{ left:-40%; } 100%{ left: 120%; } }

@media (max-width: 992px){
  .signup-promo{ position: relative; bottom: auto; right: auto; margin-top: 14px; width: 100%; }
}
