:root {
    --bg-0: #070b14;
    --bg-1: #0b1220;
    --bg-2: #111a2f;
    --surface-0: rgba(15, 23, 42, 0.72);
    --surface-1: rgba(148, 163, 184, 0.1);
    --border-0: rgba(148, 163, 184, 0.24);
    --text-0: #e2e8f0;
    --text-1: #94a3b8;
    --primary: #3b82f6;
    --primary-strong: #2563eb;
    --primary-soft: rgba(59, 130, 246, 0.2);
    --radius-md: 0.95rem;
    --radius-lg: 1.1rem;
    --shadow-soft: 0 10px 26px rgba(2, 6, 23, 0.34);
    --shadow-hover: 0 16px 30px rgba(59, 130, 246, 0.2);
}

html,
body {
    font-family: "Manrope", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at 20% -10%, #1e293b 0%, var(--bg-1) 35%, var(--bg-0) 100%);
    color: var(--text-0);
    margin: 0;
    padding: 0;
}

* {
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

a,
.btn-link {
    color: #93c5fd;
    text-decoration: none;
}

a:hover,
.btn-link:hover {
    color: #bfdbfe;
}

h1,
h2,
h3,
h4,
h5 {
    color: #f8fafc;
    letter-spacing: 0.2px;
}

p,
li,
.lead {
    color: var(--text-1);
}

.content {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    transition: opacity 650ms cubic-bezier(.2, .75, .2, 1), transform 650ms cubic-bezier(.2, .75, .2, 1);
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-card {
    position: relative;
    background-image:
        linear-gradient(135deg, rgba(30, 27, 75, 0.72) 0%, rgba(29, 78, 216, 0.62) 52%, rgba(8, 145, 178, 0.58) 100%),
        url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 40px rgba(2, 6, 23, 0.48);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(130deg, transparent 30%, rgba(255, 255, 255, 0.1) 48%, transparent 66%);
    transform: translateX(-120%);
    animation: sheen 7s ease-in-out infinite;
    pointer-events: none;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.78rem;
    opacity: 0.95;
}

.info-card,
.pricing-card {
    background: var(--surface-0);
    border: 1px solid var(--border-0);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(4px);
    transition: transform 260ms cubic-bezier(.2, .75, .2, 1), border-color 220ms ease, box-shadow 260ms ease;
}

.reveal .info-card,
.reveal .pricing-card,
.reveal .content-image {
    opacity: 0;
    transform: translateY(18px);
}

.reveal.is-visible .info-card,
.reveal.is-visible .pricing-card,
.reveal.is-visible .content-image {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible .col-md-4:nth-child(1) .info-card,
.reveal.is-visible .col-md-6:nth-child(1) .info-card,
.reveal.is-visible .col-lg-4:nth-child(1) .pricing-card,
.reveal.is-visible .col-lg-4:nth-child(1) .content-image {
    transition-delay: 80ms;
}

.reveal.is-visible .col-md-4:nth-child(2) .info-card,
.reveal.is-visible .col-md-6:nth-child(2) .info-card,
.reveal.is-visible .col-lg-4:nth-child(2) .pricing-card,
.reveal.is-visible .col-lg-4:nth-child(2) .content-image {
    transition-delay: 150ms;
}

.reveal.is-visible .col-md-4:nth-child(3) .info-card,
.reveal.is-visible .col-md-6:nth-child(3) .info-card,
.reveal.is-visible .col-lg-4:nth-child(3) .pricing-card,
.reveal.is-visible .col-lg-4:nth-child(3) .content-image {
    transition-delay: 220ms;
}

.info-card:hover,
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow: var(--shadow-hover);
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dbeafe;
    margin-bottom: 0.75rem;
}

.pricing-card ul {
    margin: 0 0 1rem 1rem;
    padding: 0;
}

.pricing-card.featured {
    border-color: rgba(59, 130, 246, 0.62);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
}

.content-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.36);
    transition: transform 280ms ease, box-shadow 280ms ease, filter 280ms ease;
}

.content-image:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 34px rgba(6, 182, 212, 0.2);
    filter: saturate(1.08);
}

.btn {
    transition: transform 180ms ease, box-shadow 220ms ease, background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.btn-primary {
    color: #fff;
    background-color: var(--primary-strong);
    border-color: var(--primary-strong);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.32);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.44);
}

.btn-outline-primary {
    border-color: rgba(96, 165, 250, 0.65);
    color: #bfdbfe;
}

.btn-outline-primary:hover {
    background: var(--primary-soft);
    border-color: #60a5fa;
    color: #e0f2fe;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.68);
    color: #f8fafc;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateY(-2px);
}

.form-control,
.form-select,
textarea {
    background-color: rgba(15, 23, 42, 0.72);
    border-color: rgba(148, 163, 184, 0.3);
    color: #e2e8f0;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    background-color: rgba(15, 23, 42, 0.86);
    border-color: #60a5fa;
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
    color: #f8fafc;
}

.form-label {
    color: #cbd5e1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.stat-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.65) 0%, rgba(15, 23, 42, 0.82) 100%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: var(--radius-md);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: transform 240ms ease, border-color 220ms ease, box-shadow 240ms ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.58);
    box-shadow: var(--shadow-hover);
}

.stat-value {
    margin-bottom: 0.2rem;
    font-weight: 800;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    color: #f8fafc;
}

.stat-label {
    margin: 0;
    color: #a9b8cc;
    font-size: 0.9rem;
}

.section-head p {
    color: #a5b4c8;
}

.testimonial-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.testimonial-card {
    position: relative;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: var(--radius-md);
    padding: 1.1rem;
    box-shadow: var(--shadow-soft);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 220ms ease;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 0.25rem;
    right: 0.8rem;
    font-size: 2.2rem;
    color: rgba(148, 163, 184, 0.3);
    line-height: 1;
}

.testimonial-card p {
    margin-bottom: 0.75rem;
    color: #c4d0e0;
}

.testimonial-card h4 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-card small {
    color: #93a4bc;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: var(--shadow-hover);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.video-card {
    background: var(--surface-0);
    border: 1px solid var(--border-0);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.video-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1rem;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.72);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 55%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes sheen {
    0%,
    70%,
    100% {
        transform: translateX(-120%);
    }

    82% {
        transform: translateX(120%);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .reveal,
    .reveal.is-visible,
    .reveal .info-card,
    .reveal .pricing-card,
    .reveal .content-image {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 991.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-strip {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}