/* ============================================
   DigiMasterz Design System v2.0
   Palette: Navy + Electric Blue + Gold + White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Brand Colors */
    --navy: #0A1628;
    --navy-light: #0F1F3D;
    --navy-card: #111E35;
    --blue: #2563EB;
    --blue-light: #3B82F6;
    --blue-dark: #1D4ED8;
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --gold-dark: #D97706;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --success: #10B981;
    --danger: #EF4444;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-py: 6rem;
    --container: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.35);
    --shadow-gold: 0 8px 24px rgba(245, 158, 11, 0.3);

    /* Transitions */
    --t: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: all 0.15s ease;

    /* Border radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-pill: 999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

input,
textarea,
select {
    font-family: var(--font-body);
}

/* ── LAYOUT ─────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-py) 0;
}

.section-dark {
    background: var(--navy);
}

.section-card {
    background: var(--navy-light);
}

/* ── TYPOGRAPHY ─────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

p {
    color: var(--gray-400);
    line-height: 1.75;
}

.lead {
    font-size: 1.15rem;
    color: var(--gray-300);
}

.text-white {
    color: var(--white) !important;
}

.text-gold {
    color: var(--gold);
}

.text-blue {
    color: var(--blue-light);
}

.text-muted {
    color: var(--gray-400);
}

/* Gradient text */
.grad-blue {
    background: linear-gradient(90deg, var(--blue-light), #60A5FA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grad-gold {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grad-mixed {
    background: linear-gradient(90deg, var(--blue-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── SECTION HEADERS ─────────────────────── */
.section-label {
    display: inline-block;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--blue-light);
    padding: 0.35rem 1rem;
    border-radius: var(--r-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-label.gold {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--gold);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    margin-top: 1rem;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    border: none;
    transition: var(--t);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline-blue {
    background: transparent;
    color: var(--blue-light);
    border: 2px solid rgba(37, 99, 235, 0.4);
}

.btn-outline-blue:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--blue);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* ── CARDS ───────────────────────────────── */
.card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-lg);
    padding: 2.5rem;
    transition: var(--t);
}

.card:hover {
    border-color: rgba(37, 99, 235, 0.35);
    background: var(--navy-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-blue-glow:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.15);
}

/* ── ICON BOX ─────────────────────────────── */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-box-blue {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue-light);
}

.icon-box-gold {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold);
}

.icon-box-green {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

/* ── BADGE ────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: var(--r-pill);
}

.badge-blue {
    background: rgba(37, 99, 235, 0.15);
    color: var(--blue-light);
}

.badge-gold {
    background: rgba(245, 158, 11, 0.15);
    color: var(--gold);
}

.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.badge-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
}

/* ── DIVIDER GLOW ─────────────────────────── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
    margin: 0;
    border: none;
}

/* ── NAV ─────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--t);
}

#navbar.scrolled {
    padding: 0.9rem 0;
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-300);
    transition: var(--t-fast);
    padding: 0.3rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ── HERO ─────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(245, 158, 11, 0.07) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero .lead {
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-strip {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.trust-item strong {
    color: var(--white);
}

/* Floating card in hero */
.hero-visual {
    position: relative;
}

.hero-stat-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    position: absolute;
}

.hero-stat-card.top-right {
    top: -20px;
    right: -10px;
    animation: float 4s ease-in-out infinite;
}

.hero-stat-card.bottom-left {
    bottom: 40px;
    left: -30px;
    animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-main-card {
    background: var(--navy-card);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

/* ── CHECK LIST ─────────────────────────── */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-300);
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 2px;
}

/* ── FAQ ACCORDION ───────────────────────── */
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 0.75rem;
    transition: var(--t);
}

.faq-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.35rem 1.75rem;
    background: var(--navy-card);
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--t-fast);
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    color: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: var(--t);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--navy-card);
}

.faq-answer p {
    padding: 0 1.75rem 1.35rem;
    font-size: 0.95rem;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(37, 99, 235, 0.25);
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ── FORM ────────────────────────────────── */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--t-fast);
}

.form-control::placeholder {
    color: var(--gray-500);
}

.form-control:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.06);
}

.form-control.error {
    border-color: var(--danger);
}

.error-msg {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 0.35rem;
    display: none;
}

select.form-control option {
    background: var(--navy-card);
}

/* ── STARS ───────────────────────────────── */
.stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ── STAT NUMBER ─────────────────────────── */
.stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--blue-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── PROCESS STEP ────────────────────────── */
.process-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-blue);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    min-height: 40px;
}

/* ── PRICING CARD ────────────────────────── */
.pricing-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    position: relative;
    transition: var(--t);
}

.pricing-card.featured {
    border: 2px solid var(--blue);
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.2);
}

.pricing-card:hover:not(.featured) {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: var(--r-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.price {
    font-family: var(--font-heading);
    font-weight: 800;
}

.price-num {
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 400;
}

.price-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 1.75rem 0;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.pricing-feature::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-feature.miss {
    color: var(--gray-500);
}

.pricing-feature.miss::before {
    content: "✕";
    color: var(--gray-600);
}

/* ── TESTIMONIAL ─────────────────────────── */
.testimonial-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r-lg);
    padding: 2rem;
    transition: var(--t);
}

.testimonial-card:hover {
    border-color: rgba(245, 158, 11, 0.25);
    transform: translateY(-4px);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--white);
    font-size: 1.1rem;
}

.quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--blue);
    opacity: 0.4;
}

/* ── MOBILE STICKY CTA ───────────────────── */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1rem 1.5rem;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.mobile-sticky-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ── PAIN POINT ──────────────────────────── */
.pain-card {
    background: var(--navy-card);
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-left: 4px solid var(--danger);
    border-radius: var(--r-md);
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.pain-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── FOOTER ──────────────────────────────── */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--t-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--t-fast);
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(37, 99, 235, 0.2);
    color: var(--blue-light);
    border-color: rgba(37, 99, 235, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.trust-seal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.trust-seal svg {
    color: var(--success);
}

/* ── HAMBURGER / MOBILE NAV ──────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--t);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy);
    flex-direction: column;
    padding: 6rem 2rem 3rem;
    gap: 0.5rem;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--t-fast);
}

.mobile-menu a:hover {
    color: var(--gold);
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    cursor: pointer;
}

/* ── ANIMATIONS ─────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim {
    opacity: 0;
}

.anim.visible {
    animation: fadeInUp 0.65s ease forwards;
}

.anim-d1 {
    animation-delay: 0.1s;
}

.anim-d2 {
    animation-delay: 0.2s;
}

.anim-d3 {
    animation-delay: 0.3s;
}

.anim-d4 {
    animation-delay: 0.4s;
}

/* ── GRID HELPERS ────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ── TAG / URGENCY ───────────────────────── */
.urgency-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #FCA5A5;
    border-radius: var(--r-pill);
    padding: 0.3rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.urgency-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--danger);
    animation: pulse 1.5s infinite;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 4rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .trust-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}