/* ==========================================================================
   HOME PAGE — Magi SAF-T Landing Page
   Visual arc: dark navy hero → dark-to-light steps → white middle →
               light-blue testimonials/faq → dark navy CTA
   Tokens: #0a2540 | #0f3d5c | #1a5a8e | #2d7aaf | #408fc4 | #5ba3d0
   ========================================================================== */

/* ── SHARED ANIMATIONS ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes logo-breathe {
    0%,100% { transform: scale(1);    opacity: 1; }
    50%      { transform: scale(1.12); opacity: 0.88; }
}

/* ────────────────────────────────────────────────
   HERO SECTION
   ──────────────────────────────────────────────── */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 3rem;
    background: linear-gradient(to bottom,
        #071828  0%,
        #0a2540 12%,
        #0f3d5c 28%,
        #1a5a8e 45%,
        #408fc4 62%,
        #57a9d8 72%,
        #3da8c0 80%,
        #2d7aaf 87%,
        #1a5a8e 92%,
        #0f3d5c 96%,
        #0a2540 100%);
}

/* Scan lines */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 4px,
        rgba(255,255,255,0.025) 4px,
        rgba(255,255,255,0.025) 5px
    );
    z-index: 0;
    pointer-events: none;
}

/* Concentric ring spirals — top anchors white centre at logo centre:
   white_centre = top - 240px  →  23rem (368px) - 240px = 128px ≈ logo centre */
.hero-section::after {
    content: '';
    position: absolute;
    top: 23rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 1600px;
    min-height: 1600px;
    background:
        radial-gradient(ellipse 80px 75px at 50% 35%,
            rgba(255,255,255,0.95) 0%, rgba(220,240,255,0.88) 70%,
            rgba(120,200,220,0.75) 88%, transparent 95%),
        radial-gradient(ellipse 160px 145px at 49% 36%,
            transparent 78%, rgba(120,200,220,0.8) 83%,
            rgba(120,200,220,0.45) 89%, transparent 94%),
        radial-gradient(ellipse 245px 220px at 51% 34%,
            transparent 75%, rgba(93,188,210,0.75) 80%,
            rgba(93,188,210,0.4) 87%, transparent 94%),
        radial-gradient(ellipse 340px 305px at 48% 37%,
            transparent 72%, rgba(60,180,200,0.7) 77%,
            rgba(60,180,200,0.35) 87%, transparent 95%),
        radial-gradient(ellipse 440px 395px at 52% 33%,
            transparent 68%, rgba(50,140,200,0.68) 74%,
            rgba(50,140,200,0.3) 86%, transparent 96%),
        radial-gradient(ellipse 560px 500px at 47% 38%,
            transparent 64%, rgba(20,180,180,0.7) 71%,
            rgba(20,180,180,0.3) 85%, transparent 96%),
        radial-gradient(ellipse 700px 630px at 53% 32%,
            transparent 60%, rgba(26,90,142,0.72) 67%,
            rgba(26,90,142,0.35) 83%, transparent 97%),
        radial-gradient(ellipse 870px 780px at 50% 34%,
            transparent 55%, rgba(10,37,64,0.8) 63%,
            rgba(10,37,64,0.4) 82%, transparent 98%),
        radial-gradient(ellipse 1080px 970px at 50% 34%,
            transparent 50%, rgba(10,37,64,0.65) 61%,
            rgba(10,37,64,0.25) 84%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
}

/* ── LOGO ── */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.75rem;
    margin-top: -0.80rem;
}

.logo-wrapper {
    display: inline-block;
    padding: 1.6rem;
    background: radial-gradient(circle, rgba(255,255,255,0.98) 0%, rgba(245,250,255,0.95) 100%);
    border-radius: 50%;
    box-shadow:
        0 0 0 2px rgba(120,200,220,0.4),        /* thin teal ring — echoes first gradient */
        0 0 40px 14px rgba(255,255,255,0.45),   /* white core glow */
        0 0 80px 28px rgba(120,200,220,0.38),   /* teal mid-glow matching ring palette */
        0 0 140px 50px rgba(93,188,210,0.22);   /* broad halo bleeding into outer rings */
    position: relative;
    transition: all 0.4s ease;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    /* gradient bleeds into the ring colour palette instead of fading to transparent */
    background: radial-gradient(circle,
        rgba(255,255,255,0.70) 0%,
        rgba(200,235,255,0.50) 30%,
        rgba(120,200,220,0.32) 55%,
        rgba(93,188,210,0.18) 72%,
        transparent 88%);
    z-index: -1;
    filter: blur(16px);
    animation: logo-breathe 4s ease-in-out infinite;
}

.logo-wrapper:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow:
        0 0 0 2px rgba(120,200,220,0.6),
        0 0 70px 26px rgba(255,255,255,0.55),
        0 0 110px 40px rgba(120,200,220,0.5),
        0 0 180px 65px rgba(93,188,210,0.3);
}

.logo { width: 75px; height: auto; display: block; }

/* ── DEADLINE BADGE ── */
.hero-deadline {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10,37,64,0.88), rgba(26,90,142,0.88));
    color: white;
    padding: 0.5rem 1.6rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    transition: transform 0.2s ease;
}

.hero-deadline:hover { transform: translateY(-2px); }
.hero-deadline i { color: white; margin-right: 0.5rem; }

/* ── HERO TITLE ── */
.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    background: linear-gradient(180deg,
        #ffffff  0%,
        #e8f5ff 38%,
        #6fd8f0 68%,
        #5ce0f0 92%,
        #8cd0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter:
        drop-shadow(0 3px 6px rgba(0,0,0,0.8))
        drop-shadow(0 0 40px rgba(255,255,255,0.85));
}

/* ── HERO SUBTITLE ── */
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 2rem;
    background: linear-gradient(180deg,
        #ffffff  0%,
        #f0faff 42%,
        #80e0ff 78%,
        #6ce8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter:
        drop-shadow(0 2px 5px rgba(0,0,0,0.85))
        drop-shadow(0 0 24px rgba(255,255,255,0.75));
}

/* ── SOFTWARE BADGES ── */
.software-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.software-badge {
    background: linear-gradient(135deg, rgba(10,37,64,0.82), rgba(26,90,142,0.82));
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    position: relative;
}

.software-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(20,180,180,0.3));
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.software-badge:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5), 0 0 40px rgba(20,180,180,0.3);
}

.software-badge:hover::before { opacity: 1; }
.software-badge i { margin-right: 0.4rem; color: white; }

/* ── TRUST INDICATORS ── */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: white;
    background: linear-gradient(135deg, rgba(10,37,64,0.82), rgba(26,90,142,0.82));
    padding: 0.6rem 1.1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.82rem;
    border: 1.5px solid rgba(255,255,255,0.18);
    box-shadow: 0 3px 12px rgba(0,0,0,0.4);
    transition: all 0.25s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 5px 18px rgba(0,0,0,0.5), 0 0 24px rgba(20,180,180,0.25);
}

.trust-item i {
    color: #14b4b4;
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.trust-item:hover i { transform: scale(1.15); }

/* ── HERO BUTTON ── */
.hero-section .btn-primary {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, #1a5a8e, #2d7aaf, #5ba3d0);
    color: white;
    border: 2px solid rgba(91,163,208,0.45);
    box-shadow: 0 5px 22px rgba(0,0,0,0.38), 0 0 32px rgba(91,163,208,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-section .btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.4s ease;
}

.hero-section .btn-primary:hover::after { left: 100%; }

.hero-section .btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0f3d5c, #1a5a8e, #2d7aaf);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 50px rgba(91,163,208,0.45);
    color: white;
}

.hero-section .btn-primary i { transition: transform 0.25s ease; }
.hero-section .btn-primary:hover i { transform: translateX(4px); }

/* ────────────────────────────────────────────────
   STEPS SECTION — Stripe-style tab carousel
   ──────────────────────────────────────────────── */
.steps-section {
    background: linear-gradient(to bottom,
        #0a2540  0%,
        #0f3d5c 12%,
        #1a5a8e 28%,
        #2d7aaf 45%,
        #408fc4 62%,
        #5ba3d0 76%,
        #a8d4ed 90%,
        #d4ebf7 100%);
    padding: 5rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 4px,
        rgba(255,255,255,0.018) 4px, rgba(255,255,255,0.018) 5px);
    z-index: 0; pointer-events: none;
}

.steps-section .container { position: relative; z-index: 1; }

/* ── Section header ── */
.steps-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.steps-title {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 0%, #e8f4fa 40%, #b8ddf0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.28));
}

.steps-subtitle {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    font-weight: 500;
}

/* ── Carousel shell ── */
.stripe-carousel {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.22),
        0 4px 16px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.6);
}

/* ── Tab strip ── */
.stripe-tab-strip {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    scrollbar-width: none;
    background: white;
}

.stripe-tab-strip::-webkit-scrollbar { display: none; }

.stripe-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 1rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #6b7280;
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.stripe-tab:hover:not(.active) { color: #374151; }

.stripe-tab.active {
    color: #1a5a8e;
    border-bottom-color: #1a5a8e;
}

.stripe-tab.done {
    color: #10b981;
    border-bottom-color: transparent;
}

.stripe-tab-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 0.72rem;
    font-weight: 700;
    transition: all 0.18s ease;
    flex-shrink: 0;
}

.stripe-tab.active   .stripe-tab-num { background: #1a5a8e; color: white; }
.stripe-tab.done     .stripe-tab-num { background: #10b981; color: white; }

/* ── Stage: two columns ── */
.stripe-stage {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: 420px;
}

/* ── Left info panel ── */
.stripe-info {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #f3f4f6;
}

.stripe-step-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #5ba3d0;
    margin-bottom: 0.6rem;
}

.stripe-step-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 0.875rem;
    line-height: 1.25;
}

.stripe-step-desc {
    font-size: 0.9rem;
    color: #4a7a9a;
    line-height: 1.68;
    margin-bottom: 1.25rem;
}

/* Feature bullets */
.stripe-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stripe-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
}

.stripe-feat-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #e8f4fa;
    border: 1.5px solid #5ba3d0;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.stripe-feat-dot::after {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #1a5a8e;
}

/* Tag */
.stripe-step-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.22);
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.stripe-step-tag i { font-size: 0.75rem; }

/* Nav buttons */
.stripe-nav {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.stripe-nav-prev {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: white;
    color: #374151;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.18s ease;
    flex-shrink: 0;
}

.stripe-nav-prev:hover:not(:disabled) {
    border-color: #1a5a8e;
    color: #1a5a8e;
}

.stripe-nav-prev:disabled { opacity: 0.3; cursor: not-allowed; }

.stripe-nav-next {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.25rem;
    background: #1a5a8e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s ease;
}

.stripe-nav-next:hover:not(:disabled) {
    background: #0f3d5c;
    transform: translateX(2px);
}

.stripe-nav-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.stripe-nav-next i { font-size: 0.75rem; }

/* ── Step 6 inline CTA ── */
.stripe-step-cta {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0.1rem;
}

.stripe-step-cta.visible {
    display: flex;
    animation: stripeCtaIn 0.28s ease;
}

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

.stripe-cta-divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 0.4rem;
}

.stripe-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    background: #1a5a8e;
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}

.stripe-cta-btn:hover {
    background: #0f3d5c;
    transform: translateY(-1px);
    color: #fff;
}

.stripe-cta-btn i { font-size: 0.85rem; }

.stripe-cta-btn--returning { background: #0f766e; }
.stripe-cta-btn--returning:hover { background: #0a5c55; }

.stripe-cta-note {
    font-size: 0.775rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* ── Right image panel ── */
.stripe-image-panel {
    position: relative;
    background: #f0f4f8;
    overflow: hidden;
    min-height: 380px;
}

.stripe-image-frame {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.stripe-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: top left;
    display: block;
    transition: opacity 0.25s ease;
}

.stripe-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    background: linear-gradient(135deg, #e8f4fa, #d4ebf7);
    color: #4a7a9a;
}

.stripe-image-placeholder i {
    font-size: 2.5rem;
    color: #5ba3d0;
    opacity: 0.6;
}

.stripe-image-placeholder span {
    font-size: 0.875rem;
    font-weight: 600;
    font-style: italic;
}

.stripe-image-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(10,37,64,0.72);
    color: rgba(255,255,255,0.92);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
}

/* ── Bottom progress trail ── */
.stripe-progress-trail {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}

.stripe-progress-trail::-webkit-scrollbar { display: none; }

.spt-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.18s ease;
    padding: 2px 0;
}

.spt-item:hover { color: #374151; }
.spt-item.active { color: #1a5a8e; }
.spt-item.done   { color: #10b981; }

.spt-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
    transition: background 0.18s ease;
}

.spt-item.active .spt-dot { background: #1a5a8e; }
.spt-item.done   .spt-dot { background: #10b981; }

.spt-line {
    flex: 1;
    height: 1.5px;
    background: #e5e7eb;
    margin: 0 8px;
    min-width: 20px;
    transition: background 0.18s ease;
}

.spt-line.done { background: rgba(16,185,129,0.45); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .stripe-stage {
        grid-template-columns: 1fr;
    }
    .stripe-image-panel {
        min-height: 260px;
        border-top: 1px solid #e5e7eb;
    }
    .stripe-image-frame,
    .stripe-image-frame img,
    .stripe-image-placeholder { min-height: 260px; }
    .stripe-info { padding: 1.75rem 1.5rem; }
}

@media (max-width: 600px) {
    .stripe-tab { padding: 0.875rem 0.875rem; font-size: 0.75rem; }
    .stripe-tab-strip { gap: 0; }
    .steps-title { font-size: 1.65rem; }
    .stripe-step-title { font-size: 1.2rem; }
    .spt-label { display: none; }
}

/* ────────────────────────────────────────────────
   WHY MAGI SECTION
   ──────────────────────────────────────────────── */
.why-magi-section {
    background: linear-gradient(to bottom,
        #d4ebf7  0%,
        #ebf5fc 28%,
        #f4f9fd 55%,
        #f9fcfe 78%,
        #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.why-magi-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 4px,
        rgba(30,127,207,0.012) 4px, rgba(30,127,207,0.012) 5px);
    z-index: 0; pointer-events: none;
}

.why-magi-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 1000px 550px at 50% 0%, rgba(125,190,224,0.12) 0%, transparent 68%),
        radial-gradient(ellipse 1100px 350px at 50% 100%, rgba(10,37,64,0.025) 0%, transparent 55%);
    z-index: 0; pointer-events: none;
}

.why-magi-section .container { position: relative; z-index: 1; }

.why-magi-section .section-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 0.5rem;
}

.why-magi-section .section-title {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(180deg, #0a2540 0%, #1a5a8e 50%, #2d7aaf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.why-magi-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -7px; left: 0;
    width: 64px; height: 3px;
    background: linear-gradient(90deg, #2d7aaf, #5ba3d0);
    border-radius: 2px;
}

.why-magi-section .section-subtitle {
    color: #1a5a8e;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Feature cards */
.feature-card {
    background: rgba(255,255,255,0.96);
    padding: 2rem 1.75rem;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 3px 18px rgba(26,90,142,0.07), 0 1px 6px rgba(26,90,142,0.04),
                inset 0 1px 0 white;
    border: 1px solid rgba(168,212,237,0.4);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.55s ease-out backwards;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 0%; height: 3px;
    background: linear-gradient(90deg, transparent, #5ba3d0, #7dbee0, transparent);
    transition: width 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 36px rgba(26,90,142,0.13), 0 4px 16px rgba(26,90,142,0.08);
    border-color: rgba(125,190,224,0.55);
}

.feature-card:hover::after { width: 82%; }

.feature-card:nth-child(1) { animation-delay: 0.08s; }
.feature-card:nth-child(2) { animation-delay: 0.16s; }
.feature-card:nth-child(3) { animation-delay: 0.24s; }
.feature-card:nth-child(4) { animation-delay: 0.32s; }
.feature-card:nth-child(5) { animation-delay: 0.40s; }
.feature-card:nth-child(6) { animation-delay: 0.48s; }

.feature-icon {
    font-size: 2rem;
    color: #2d7aaf;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px; height: 68px;
    background: linear-gradient(135deg, rgba(45,122,175,0.07), rgba(91,163,208,0.07));
    border-radius: 50%;
    transition: transform 0.25s ease, background 0.25s ease;
    box-shadow: 0 2px 10px rgba(45,122,175,0.08);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(45,122,175,0.11), rgba(91,163,208,0.11));
}

.feature-icon i {
    background: linear-gradient(135deg, #2d7aaf, #5ba3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 0.75rem;
    transition: color 0.25s ease;
}

.feature-card:hover .feature-title { color: #1a5a8e; }

.feature-description {
    color: #2d5570;
    line-height: 1.68;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ────────────────────────────────────────────────
   PRICING SECTION
   ──────────────────────────────────────────────── */
.pricing-section {
    background: linear-gradient(to bottom,
        #ffffff  0%,
        #f4f9fd 35%,
        #ebf5fc 70%,
        #e0f0fa 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 550px;
    background: radial-gradient(ellipse at center, rgba(45,122,175,0.05) 0%, transparent 68%);
    z-index: 0; pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 4px,
        rgba(45,122,175,0.008) 4px, rgba(45,122,175,0.008) 5px);
    z-index: 0; pointer-events: none;
}

.pricing-section .container { position: relative; z-index: 1; }

.pricing-section .section-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 0.5rem;
}

.pricing-section .section-title {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(180deg, #0a2540 0%, #1a5a8e 50%, #2d7aaf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.pricing-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -7px; left: 0;
    width: 64px; height: 3px;
    background: linear-gradient(90deg, #2d7aaf, #5ba3d0);
    border-radius: 2px;
}

.pricing-section .section-subtitle {
    color: #1a5a8e;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Comparison table */
.comparison-table {
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(26,90,142,0.1), 0 2px 12px rgba(26,90,142,0.06);
    border: 1px solid rgba(168,212,237,0.45);
    animation: fadeInUp 0.55s ease-out backwards;
    animation-delay: 0.15s;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(168,212,237,0.28);
}

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

.comparison-row:not(.comparison-header):hover {
    background: rgba(91,163,208,0.035);
}

.comparison-header {
    background: linear-gradient(135deg, #2d7aaf, #408fc4, #5ba3d0);
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.comparison-cell {
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    font-size: 0.925rem;
    color: #2d5570;
}

.comparison-header .comparison-cell { color: white; }

.comparison-cell:not(:last-child) {
    border-right: 1px solid rgba(168,212,237,0.28);
}

.comparison-row .comparison-cell:last-child {
    background: linear-gradient(180deg, rgba(91,163,208,0.025) 0%, transparent 100%);
}

.comparison-header .comparison-cell:last-child {
    background: rgba(255,255,255,0.12);
    position: relative;
}

.comparison-header .comparison-cell:last-child::after {
    content: '⭐ Recommended';
    position: absolute;
    top: 0; right: 0;
    background: linear-gradient(135deg, #5ba3d0, #2d7aaf);
    color: white;
    padding: 0.22rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.price-highlight {
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-old {
    text-decoration: line-through;
    color: #ef4444;
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.7;
}

.pricing-comparison .text-muted {
    color: #2d5570;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.85;
    background: rgba(255,255,255,0.9);
    padding: 1.25rem 1.75rem;
    border-radius: 10px;
    border: 1px solid rgba(168,212,237,0.38);
    box-shadow: 0 2px 12px rgba(26,90,142,0.06);
}

.pricing-comparison .mt-3 strong {
    color: #2d7aaf;
    font-size: 1rem;
    padding: 0.65rem 1.75rem;
    background: rgba(91,163,208,0.07);
    border-radius: 30px;
    border: 1.5px solid rgba(91,163,208,0.22);
    display: inline-block;
}

/* ────────────────────────────────────────────────
   TESTIMONIALS SECTION
   ──────────────────────────────────────────────── */
.testimonials-section {
    background: linear-gradient(to bottom,
        #e0f0fa  0%,
        #d4ebf7 25%,
        #c8e6f4 50%,
        #bce1f1 75%,
        #a8d4ed 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 850px; height: 450px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.35) 0%, transparent 65%);
    z-index: 0; pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 4px,
        rgba(45,122,175,0.012) 4px, rgba(45,122,175,0.012) 5px);
    z-index: 0; pointer-events: none;
}

.testimonials-section .container { position: relative; z-index: 1; }

.testimonials-section .section-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 0.5rem;
}

.testimonials-section .section-title {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(180deg, #0a2540 0%, #1a5a8e 50%, #2d7aaf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -7px; left: 0;
    width: 64px; height: 3px;
    background: linear-gradient(90deg, #2d7aaf, #5ba3d0);
    border-radius: 2px;
}

.testimonials-section .section-subtitle {
    color: #1a5a8e;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Testimonial cards */
.testimonial-card {
    background: rgba(255,255,255,0.94);
    padding: 2rem 1.875rem;
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(26,90,142,0.09), 0 2px 10px rgba(26,90,142,0.05),
                inset 0 1px 0 rgba(255,255,255,0.9);
    border: 1px solid rgba(168,212,237,0.45);
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    position: relative;
    overflow: visible;
    animation: fadeInUp 0.55s ease-out backwards;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px; left: 16px;
    font-size: 4.5rem;
    font-family: Georgia, serif;
    font-weight: 900;
    color: rgba(45,122,175,0.07);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(26,90,142,0.13), 0 4px 16px rgba(26,90,142,0.08);
    border-color: rgba(125,190,224,0.55);
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-text {
    color: #2d5570;
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 1.75rem;
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(168,212,237,0.28);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d7aaf, #5ba3d0);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 3px 12px rgba(45,122,175,0.28);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.testimonial-card:hover .author-avatar { transform: scale(1.08); }

.author-name { font-weight: 700; font-size: 0.975rem; color: #0a2540; margin-bottom: 0.2rem; }
.author-title { font-size: 0.85rem; color: #4a7a9a; font-weight: 500; }

/* ────────────────────────────────────────────────
   FAQ SECTION
   ──────────────────────────────────────────────── */
.faq-section {
    background: linear-gradient(to bottom,
        #a8d4ed  0%,
        #8bbfe3 28%,
        #6faad9 55%,
        #408fc4 82%,
        #2d7aaf 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 4px,
        rgba(10,37,64,0.018) 4px, rgba(10,37,64,0.018) 5px);
    z-index: 0; pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, rgba(10,37,64,0.08));
    z-index: 0; pointer-events: none;
}

.faq-section .container { position: relative; z-index: 1; }

.faq-section .section-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 0.5rem;
}

.faq-section .section-title {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(180deg, #0a2540 0%, #1a5a8e 50%, #2d7aaf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    filter: drop-shadow(0 1px 3px rgba(255,255,255,0.25));
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -7px; left: 0;
    width: 64px; height: 3px;
    background: linear-gradient(90deg, #0a2540, #2d7aaf);
    border-radius: 2px;
}

.faq-section .section-subtitle {
    color: #0a2540;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(255,255,255,0.4);
}

.faq-container {
    max-width: 100%;
    margin: 0;
    padding-left: 0.5rem;
    counter-reset: faq-counter;
}

.faq-item {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: 0 3px 16px rgba(10,37,64,0.1), 0 1px 6px rgba(10,37,64,0.06);
    border: 1px solid rgba(168,212,237,0.38);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    animation: fadeInUp 0.55s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.08s; }
.faq-item:nth-child(2) { animation-delay: 0.16s; }
.faq-item:nth-child(3) { animation-delay: 0.24s; }
.faq-item:nth-child(4) { animation-delay: 0.32s; }
.faq-item:nth-child(5) { animation-delay: 0.40s; }
.faq-item:nth-child(6) { animation-delay: 0.48s; }
.faq-item:nth-child(7) { animation-delay: 0.56s; }
.faq-item:nth-child(8) { animation-delay: 0.64s; }

.faq-item:hover {
    border-color: rgba(91,163,208,0.55);
    box-shadow: 0 5px 20px rgba(10,37,64,0.12), 0 2px 8px rgba(10,37,64,0.08);
}

.faq-item.active {
    background: rgba(255,255,255,0.97);
    border-color: #2d7aaf;
    box-shadow: 0 6px 26px rgba(45,122,175,0.16), 0 3px 12px rgba(45,122,175,0.1);
}

.faq-question {
    padding: 1.5rem 4.5rem 1.5rem 1.25rem;
    font-weight: 700;
    font-size: 0.975rem;
    color: #0a2540;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.875rem;
    transition: color 0.18s ease, padding-left 0.18s ease, background 0.18s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2d7aaf, #408fc4, #5ba3d0);
    transform: scaleY(0);
    transition: transform 0.2s ease;
    border-radius: 12px 0 0 12px;
}

.faq-question:hover::before,
.faq-item.active .faq-question::before { transform: scaleY(1); }

.faq-question:hover { color: #2d7aaf; padding-left: 1.875rem; background: rgba(45,122,175,0.03); }

.faq-item.active .faq-question {
    color: #2d7aaf;
    padding-left: 1.875rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(91,163,208,0.18);
    background: rgba(45,122,175,0.04);
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(45,122,175,0.08);
    color: #2d7aaf;
}

.faq-question:hover i,
.faq-item.active .faq-question i { background: rgba(45,122,175,0.14); }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-item::before {
    content: counter(faq-counter);
    counter-increment: faq-counter;
    position: absolute;
    top: 1.5rem; right: 1.25rem;
    width: 28px; height: 28px;
    background: rgba(45,122,175,0.08);
    color: #2d7aaf;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(91,163,208,0.28);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    z-index: 1;
}

.faq-item:hover::before {
    background: rgba(45,122,175,0.13);
    transform: scale(1.07);
    border-color: #5ba3d0;
}

.faq-answer {
    padding: 0 1.75rem;
    color: #2d5570;
    line-height: 1.78;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    padding-top: 1.25rem;
    padding-bottom: 1.75rem;
}

.faq-answer strong { color: #2d7aaf; font-weight: 600; }

/* ────────────────────────────────────────────────
   CTA SECTION
   ──────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(to bottom,
        #2d7aaf  0%,
        #1a5a8e 14%,
        #0f3d5c 28%,
        #0a2540 48%,
        #071828 100%);
    color: white;
    padding: 5.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Scan lines */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 4px,
        rgba(255,255,255,0.025) 4px, rgba(255,255,255,0.025) 5px);
    z-index: 0; pointer-events: none;
}

/* Concentric spirals — same as hero */
.cta-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    min-width: 1600px; min-height: 1600px;
    background:
        radial-gradient(ellipse 80px 75px at 50% 50%,
            rgba(255,255,255,0.95) 0%, rgba(220,240,255,0.88) 70%,
            rgba(120,200,220,0.75) 88%, transparent 95%),
        radial-gradient(ellipse 160px 145px at 50% 50%,
            transparent 78%, rgba(120,200,220,0.78) 83%,
            rgba(120,200,220,0.42) 89%, transparent 94%),
        radial-gradient(ellipse 245px 220px at 50% 50%,
            transparent 75%, rgba(93,188,210,0.72) 80%,
            rgba(93,188,210,0.38) 87%, transparent 94%),
        radial-gradient(ellipse 340px 305px at 50% 50%,
            transparent 72%, rgba(60,180,200,0.68) 77%,
            rgba(60,180,200,0.32) 87%, transparent 95%),
        radial-gradient(ellipse 440px 395px at 50% 50%,
            transparent 68%, rgba(50,140,200,0.65) 74%,
            rgba(50,140,200,0.28) 86%, transparent 96%),
        radial-gradient(ellipse 560px 500px at 50% 50%,
            transparent 64%, rgba(20,180,180,0.68) 71%,
            rgba(20,180,180,0.28) 85%, transparent 96%),
        radial-gradient(ellipse 700px 630px at 50% 50%,
            transparent 60%, rgba(26,90,142,0.7) 67%,
            rgba(26,90,142,0.32) 83%, transparent 97%),
        radial-gradient(ellipse 870px 780px at 50% 50%,
            transparent 55%, rgba(10,37,64,0.78) 63%,
            rgba(10,37,64,0.38) 82%, transparent 98%),
        radial-gradient(ellipse 1080px 970px at 50% 50%,
            transparent 50%, rgba(10,37,64,0.62) 61%,
            rgba(10,37,64,0.22) 84%, transparent 100%);
    z-index: 1; pointer-events: none;
}

/* Logo in spiral center */
.cta-logo-wrapper {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-block;
    padding: 1.6rem;
    background: radial-gradient(circle, rgba(255,255,255,0.98), rgba(245,250,255,0.95));
    border-radius: 50%;
    box-shadow: 0 0 55px 18px rgba(255,255,255,0.38), 0 0 110px 38px rgba(180,220,255,0.25);
}

.cta-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255,255,255,0.65) 0%, rgba(180,220,255,0.45) 35%,
        rgba(120,200,220,0.25) 60%, transparent 80%);
    z-index: -1;
    filter: blur(18px);
    animation: logo-breathe 4s ease-in-out infinite;
}

.cta-logo-img { width: 68px; height: auto; display: block; }

.cta-section .container { position: relative; z-index: 3; }

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55), 0 0 24px rgba(255,255,255,0.25);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0,0,0,0.45);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    background: rgba(255,255,255,0.97);
    color: #2d7aaf;
    text-decoration: none;
    transition: all 0.28s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 3px 16px rgba(255,255,255,0.18),
                inset 0 2px 0 white;
    border: 2px solid rgba(255,255,255,0.28);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transition: left 0.38s ease;
}

.cta-button:hover::after { left: 100%; }

.cta-button:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 12px 42px rgba(0,0,0,0.55), 0 5px 20px rgba(255,255,255,0.25),
                0 0 50px rgba(180,220,255,0.25);
    border-color: rgba(255,255,255,0.55);
    color: #1a5a8e;
}

.cta-button i { transition: transform 0.25s ease; }
.cta-button:hover i { transform: translateX(4px); }

.cta-info {
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 1.1rem 2rem;
    border-radius: 30px;
    border: 1.5px solid rgba(255,255,255,0.22);
    box-shadow: 0 3px 16px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
    font-weight: 500;
    white-space: nowrap;
}

/* ────────────────────────────────────────────────
   CTA BACKGROUND SCREENSHOT
   ──────────────────────────────────────────────── */
.cta-bg-screenshot {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-bg-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.055;
    filter: saturate(0.4);
}


.btn-primary {
    background: linear-gradient(135deg, #2d7aaf, #5ba3d0);
    color: white;
    border: 1.5px solid rgba(91,163,208,0.45);
    box-shadow: 0 5px 20px rgba(45,122,175,0.3), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transition: left 0.38s ease;
}

.btn-primary:hover::after { left: 100%; }

.btn-primary:hover {
    background: linear-gradient(135deg, #5ba3d0, #2d7aaf);
    border-color: #7dbee0;
    box-shadow: 0 8px 28px rgba(45,122,175,0.42), inset 0 1px 0 rgba(255,255,255,0.25);
    color: white;
    transform: translateY(-2px) scale(1.015);
}

/* ────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-section     { padding: 4rem 0 2.5rem; }
    /* Mobile: 4rem top padding → logo centre ≈ 115px → top = 115 + 240 = 355px ≈ 22rem */
    .hero-section::after { top: 22rem; }
    .hero-title       { font-size: 2rem; }
    .hero-subtitle    { font-size: 1.05rem; }
    .software-badges  { gap: 0.65rem; }
    .software-badge   { padding: 0.6rem 0.9rem; font-size: 0.82rem; }
    .trust-indicators { gap: 0.75rem; }
    .trust-item       { font-size: 0.78rem; padding: 0.5rem 0.875rem; }

    .steps-section        { padding: 4rem 0 3.5rem; }
    .steps-title          { font-size: 1.65rem; }
    .stripe-step-title    { font-size: 1.2rem; }
    .stripe-info          { padding: 1.5rem; }

    .why-magi-section      { padding: 4rem 0; }
    .why-magi-section .section-header { text-align: center; padding-left: 0; }
    .why-magi-section .section-title  { font-size: 1.75rem; }
    .feature-card { padding: 1.75rem 1.5rem; }

    .pricing-section { padding: 4rem 0; }
    .pricing-section .section-header { text-align: center; padding-left: 0; }
    .pricing-section .section-title  { font-size: 1.75rem; }
    .comparison-row { grid-template-columns: 1fr; }
    .comparison-cell:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(168,212,237,0.28); }
    .comparison-header .comparison-cell:last-child::after { right: 50%; transform: translateX(50%); }

    .testimonials-section { padding: 4rem 0; }
    .testimonials-section .section-header { text-align: center; padding-left: 0; }
    .testimonials-section .section-title  { font-size: 1.75rem; }
    .testimonial-card { padding: 1.75rem 1.5rem; }

    .faq-section { padding: 4rem 0; }
    .faq-section .section-header { text-align: center; padding-left: 0; }
    .faq-section .section-title  { font-size: 1.75rem; }
    .faq-container { padding-left: 0; }

    /* Keep space for both the chevron and the number badge (absolute right) */
    .faq-question {
        padding-right: 4.5rem;
        align-items: flex-start; /* anchor chevron to text-top on multi-line questions */
    }
    /* Slight optical offset so chevron sits level with the first text line */
    .faq-question i { margin-bottom: 1rem; flex-shrink: 0; }
    /* Align number badge with the top of the question (same as chevron with flex-start) */
    .faq-item::before { top: 1.375rem; transform: none; }

    .cta-section   { padding: 4.5rem 0; }
    .cta-title     { font-size: 1.85rem; }
    .cta-subtitle  { font-size: 1rem; }
    .cta-button    { padding: 1rem 2.25rem; font-size: 1rem; }
    .cta-button-wrapper { flex-direction: column; gap: 1.25rem; }
    .cta-info      { white-space: normal; font-size: 0.85rem; text-align: center; padding: 0.875rem 1.25rem; }
}