/* =========================
   Global Styles
========================= */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.7;
}

/* =========================
   Hero Section
========================= */

.hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 40, 0.58);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.eyebrow {
    font-size: 18px;
    margin-bottom: 20px;
}

h1 {
    font-size: 58px;
    line-height: 1.1;
    margin: 0 0 30px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 30px;
    line-height: 1.25;
    margin: 0 0 25px;
    font-weight: 800;
}

h3 {
    font-size: 22px;
    margin: 0 0 10px;
}

.sub {
    font-size: 22px;
    margin: 12px 0;
}

.micro {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 50px;
}

.micro.dark {
    color: #444;
    text-align: center;
}

/* =========================
   Buttons
========================= */

.buttons {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 45px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background-color .18s ease,
        border-color .18s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(0);
}

.btn-blue {
    background: #287ee8;
    color: #fff;
    box-shadow: 0 6px 20px rgba(40,126,232,.35);
}

.btn-blue:hover {
    background: #3d8df0;
    box-shadow: 0 10px 28px rgba(40,126,232,.45);
}

.btn-orange {
    background: #ff7a00;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255,122,0,.40);

    animation: pulseGlow 3s infinite;
}

.btn-orange:hover {
    background: #ff8f24;
    box-shadow: 0 12px 30px rgba(255,122,0,.55);
}

.btn-dark {
    background: #06223d;
    color: #fff;
    border: 1px solid rgba(255,255,255,.40);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

.btn-dark:hover {
    background: #0a3157;
    border-color: rgba(255,255,255,.75);
    box-shadow: 0 10px 28px rgba(0,0,0,.45);
}

/* =========================
   Sections
========================= */

.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 85px 24px;
}

.alt {
    background: #fafafa;
    max-width: none;
    padding-left: calc((100% - 1120px) / 2 + 24px);
    padding-right: calc((100% - 1120px) / 2 + 24px);
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 45px;
}

.tutorial-card {
    background: #fff;
}

.tutorial-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.tutorial-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 800px) {
    .tutorial-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Feature Cards
========================= */

.feature-grid,
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 45px 0;
}

.feature {
    background: #f7f7f7;
    padding: 32px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: center;
}

.icon,
.big-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #287ee8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* =========================
   Audience Cards
========================= */

.audience {
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 44px;
    text-align: center;
}

.audience .big-icon {
    margin: 0 auto 24px;
}

/* =========================
   Steps
========================= */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 45px 0;
}

.step {
    background: #f1f1f1;
    padding: 28px;
    position: relative;
}

.step span {
    position: absolute;
    right: 12px;
    top: 12px;
    background: #fff;
    border: 8px solid #cfe5fa;
    color: #287ee8;
    font-weight: 800;
    padding: 8px 13px;
}

/* =========================
   Video Section
========================= */

.video-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 45px;
    align-items: center;
    margin-top: 35px;
}

.video-placeholder {
    height: 260px;
    background: #1f2937;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-placeholder.large {
    height: 420px;
    margin: 40px 0;
}

.play {
    background: #ff0000;
    width: 74px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.ticks {
    list-style: none;
    padding-left: 0;
}

.ticks li {
    margin: 6px 0;
}

/* =========================
   Comparison Section
========================= */

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 35px 0;
}

.compare > div {
    background: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.bad {
    border-top: 4px solid #ff4d4d;
}

.good {
    border-top: 4px solid #16b365;
    background: #eef6ff !important;
}

.compare li {
    margin: 12px 0;
}

.callout {
    background: #fff;
    border: 1px solid #ddd;
    padding: 28px;
    margin-top: 25px;
}

/* =========================
   Testimonials
========================= */

.testimonials {
    padding-top: 120px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.testimonial {
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    padding: 35px;
    text-align: left;
}

.testimonial img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: -85px auto 25px;
    border: 8px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial small {
    color: #287ee8;
    letter-spacing: 1px;
}

/* =========================
   FAQ Section
========================= */

.faq {
    background: #f2ffff;
    max-width: none;
    padding-left: calc((100% - 1120px) / 2 + 24px);
    padding-right: calc((100% - 1120px) / 2 + 24px);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    background: #d8fbff;
    padding: 18px;
    margin: 35px 0;
}

details {
    padding: 12px 0;
}

summary {
    font-size: 20px;
    cursor: pointer;
}

/* =========================
   How It Works Page
========================= */

.how-page {
    padding-top: 40px;
}

/* =========================
   Mobile
========================= */

@keyframes pulseGlow {
    0% {
        box-shadow: 0 8px 24px rgba(255,122,0,.40);
    }

    50% {
        box-shadow: 0 12px 35px rgba(255,122,0,.70);
    }

    100% {
        box-shadow: 0 8px 24px rgba(255,122,0,.40);
    }
}

@media (max-width: 800px) {
    h1 {
        font-size: 40px;
    }

    .hero {
        min-height: 620px;
    }

    .feature-grid,
    .audience-grid,
    .steps,
    .compare,
    .testimonial-grid,
    .video-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .icon {
        margin: auto;
    }

    .buttons {
        gap: 15px;
    }

    .btn {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .testimonial {
        margin-top: 70px;
    }
}