/* ==========================================================================
   Create Your Reel - Static One Pager
   Colors: Primary #0a3e5b | Accent #71bcdc | Body #767676
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #767676;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #71bcdc; text-decoration: none; transition: color .2s; }
a:hover { color: #5aa8c8; }

.container {
    max-width: 1070px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #71bcdc;
    border-radius: 10px;
    background: #71bcdc;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, color .2s, box-shadow .2s;
    text-align: center;
}
.btn:hover {
    background: #fff;
    color: #71bcdc;
}
.btn-sm { padding: 9px 20px; font-size: 15px; }
.btn-accent { box-shadow: 0 0 30px rgba(113,188,220,.45); }

/* --- Header --- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #0a3e5b;
    height: 70px;
}
.header-inner {
    max-width: 1070px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo img { height: 45px; width: auto; }

/* Nav */
.nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
}
.nav a {
    display: block;
    padding: 8px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: background .2s, color .2s;
}
.nav a:hover,
.nav a.active {
    color: #71bcdc;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000 url('../img/sections/hero.jpg') center/cover no-repeat;
    margin-top: 70px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,.6);
    margin-bottom: 40px;
}

/* Hero play button */
.hero-play {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    border: 3px solid rgba(255,255,255,.9);
    border-radius: 50%;
    background: rgba(113,188,220,.25);
    cursor: pointer;
    transition: background .3s, transform .3s, box-shadow .3s;
}
.hero-play:hover {
    background: rgba(113,188,220,.5);
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(113,188,220,.4);
}
.hero-play-icon {
    width: 36px;
    height: 36px;
    fill: #fff;
    margin-left: 4px;          /* optical centering for play triangle */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}

/* Pulse ring animation */
.hero-play-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;
    animation: hero-pulse 2.4s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes hero-pulse {
    0%   { transform: scale(1);   opacity: .7; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    color: rgba(255,255,255,.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Stats Bar --- */
.stats-bar {
    background: #0a3e5b;
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #71bcdc;
    line-height: 1.2;
}
.stat-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- As Featured In --- */
.featured-bar {
    padding: 50px 0;
    background: #f9f9f9;
    text-align: center;
}
.featured-bar .featured-label {
    font-size: 14px;
    font-weight: 500;
    color: #767676;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.featured-logo-link {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    color: #0a3e5b;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color .2s;
}
.featured-logo-link:hover {
    color: #71bcdc;
}

/* --- How It Works --- */
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.how-step {
    text-align: center;
}
.how-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0a3e5b;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}
.how-step h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0a3e5b;
    margin-bottom: 10px;
}
.how-step p {
    font-size: 15px;
    color: #767676;
}

/* --- Mid-Page CTA --- */
.cta-banner {
    background: #0a3e5b;
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.cta-banner p {
    font-size: 17px;
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .btn {
    font-size: 17px;
    padding: 14px 36px;
}

/* --- Getting Started --- */
.getting-started-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}
.getting-started-copy p {
    margin-bottom: 16px;
}
.getting-started-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    padding: 36px 30px;
    text-align: center;
}
.getting-started-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
}
.getting-started-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a3e5b;
    margin-bottom: 14px;
}
.getting-started-card p {
    font-size: 15px;
    color: #767676;
    margin-bottom: 20px;
}

/* --- Demo Reel Tips --- */
.tips-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a3e5b;
    margin: 30px 0 12px;
}
.tips-section p {
    margin-bottom: 16px;
}
.tips-section .tips-cta {
    margin-top: 30px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}
.tips-section .tips-cta p {
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 500;
    color: #0a3e5b;
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}
.section-alt {
    background: #f9f9f9;
}

.section-heading {
    display: inline-block;
    background: #0a3e5b;
    color: #fff;
    padding: 8px 30px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

.section-description {
    font-size: 18px;
    font-weight: 500;
    color: #0a3e5b;
    margin-bottom: 20px;
}

.section-intro {
    margin-bottom: 40px;
}

.subsection-heading {
    font-size: 24px;
    font-weight: 600;
    color: #0a3e5b;
    margin: 50px 0 30px;
}

.big-text {
    font-size: 22px;
    font-weight: 600;
    color: #0a3e5b;
    margin-bottom: 16px;
}

/* --- About Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 20px;
}
.about-text p { margin-bottom: 16px; }

.video-thumb {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.video-thumb img {
    width: 100%;
    transition: transform .3s;
}
.video-thumb:hover img { transform: scale(1.03); }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 64px; height: 64px;
    background: rgba(113,188,220,.9);
    border-radius: 50%;
}
.play-btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 54%;
    transform: translate(-50%,-50%);
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent #fff;
}
.video-caption {
    text-align: center;
    margin-top: 12px;
    color: #0a3e5b;
}

/* --- Cards --- */
.cards {
    display: grid;
    gap: 30px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.card-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    object-fit: contain;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0a3e5b;
    margin-bottom: 12px;
}
.card p { font-size: 15px; margin-bottom: 10px; }

.service-card .btn { margin-top: 12px; }

/* --- Video Gallery --- */
.gallery-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.gallery-filter {
    padding: 8px 20px;
    border: 2px solid #0a3e5b;
    border-radius: 6px;
    background: #fff;
    color: #0a3e5b;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.gallery-filter:hover,
.gallery-filter.active {
    background: #0a3e5b;
    color: #fff;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.video-card {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.video-card[hidden] { display: none; }
.video-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity .2s;
}
.video-card:hover img { opacity: .85; }
.video-play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 52px; height: 52px;
    background: rgba(113,188,220,.9);
    border-radius: 50%;
    pointer-events: none;
    transition: transform .2s;
}
.video-card:hover .video-play-icon { transform: translate(-50%,-50%) scale(1.1); }
.video-play-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 54%;
    transform: translate(-50%,-50%);
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}
.video-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
}
.video-label strong { display: block; font-size: 15px; }
.video-label span { opacity: .85; }

/* Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.85);
    align-items: center;
    justify-content: center;
}
.video-lightbox.open { display: flex; }
.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}
.lightbox-close {
    position: absolute;
    top: -40px; right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}
.lightbox-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.lightbox-video iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* --- Pricing Cards --- */
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-1 { grid-template-columns: 1fr; }

.pricing-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pricing-header {
    background: #0a3e5b;
    color: #fff;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: #71bcdc;
    padding: 20px 24px 4px;
}
.pricing-desc {
    font-size: 14px;
    color: #767676;
    padding: 0 24px 16px;
}
.pricing-features {
    list-style: none;
    padding: 0 24px;
    margin: 0 0 20px;
    text-align: left;
    flex: 1;
}
.pricing-features li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-card .btn {
    margin: 0 24px 24px;
    align-self: center;
}
.pricing-featured {
    border: 2px solid #71bcdc;
    box-shadow: 0 4px 20px rgba(113,188,220,.25);
}

/* --- Team Section --- */
.section-team {
    background: #efefef url('../img/sections/film-reel-bg.jpg') left top repeat fixed;
    background-size: auto;
}

.section-team > .container > p {
    margin-bottom: 16px;
}

.team-member {
    text-align: left;
    padding: 0;
    overflow: hidden;
}
.member-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.member-info {
    padding: 20px 24px 24px;
}
.member-name {
    font-size: 18px;
    font-weight: 600;
    color: #0a3e5b;
    margin-bottom: 2px;
}
.member-role {
    font-size: 14px;
    font-weight: 500;
    color: #71bcdc;
    margin-bottom: 12px;
}
.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: #71bcdc;
    color: #fff;
    border-radius: 50%;
    transition: background .2s;
}
.social-links a:hover { background: #0a3e5b; }
.social-links svg { fill: #fff; }

.member-info p { font-size: 14px; margin-bottom: 10px; }

/* --- Contact --- */
.section-contact {
    background: #f3f1f6 url('../img/sections/map-bg.png') center bottom no-repeat;
    background-size: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-left {
    background: #0a3f5b;
    color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
}
.contact-left p { margin-bottom: 16px; }
.contact-left .btn { margin-bottom: 30px; }
.contact-left a { color: #fff; }
.contact-left a:hover { color: #71bcdc; }

.contact-details { margin-top: 10px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    fill: #71bcdc;
}
.contact-item p,
.contact-item a {
    margin: 0;
    font-size: 15px;
}

/* --- Form --- */
.contact-right {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.form-row {
    display: flex;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
    width: 100%;
}
.form-group.half { width: 50%; }

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #0a3e5b;
    margin-bottom: 5px;
}
.required { color: #d63637; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 3px;
    font-family: inherit;
    font-size: 16px;
    color: rgba(0,0,0,.7);
    background: #fff;
    transition: border-color .2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #71bcdc;
    box-shadow: 0 0 0 2px rgba(113,188,220,.2);
}
textarea { resize: vertical; }

.btn-submit { width: 100%; font-size: 17px; padding: 12px; }

.form-status {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
}
.form-status.success { color: #2e7d32; }
.form-status.error { color: #d63637; }

/* --- Testimonials Carousel --- */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}
.testimonial-track {
    display: flex;
    transition: transform .5s ease;
}
.testimonial-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}
.testimonial-slide-inner {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #71bcdc;
    margin-bottom: 16px;
    flex-shrink: 0;
}
.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px;
    flex: 1;
    border: none;
    padding: 0;
}
.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #0a3e5b;
    margin: 0;
}
.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 2px solid #0a3e5b;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .2s, color .2s;
}
.testimonial-btn:hover {
    background: #0a3e5b;
    color: #fff;
}
.testimonial-btn:hover svg { fill: #fff; }
.testimonial-btn svg { fill: #0a3e5b; transition: fill .2s; }
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}
.testimonial-dot.active {
    background: #0a3e5b;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
}
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}
.faq-question {
    padding: 20px 0;
    font-size: 17px;
    font-weight: 600;
    color: #0a3e5b;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #71bcdc;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .2s;
}
details[open] > .faq-question::after {
    content: '\2212';
}
.faq-answer {
    padding: 0 0 20px;
}
.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* --- Newsletter --- */
.section-newsletter {
    background: #0a3e5b;
    padding: 60px 0;
    text-align: center;
}
.newsletter-inner {
    max-width: 600px;
}
.newsletter-heading {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.newsletter-text {
    color: rgba(255,255,255,.8);
    margin-bottom: 24px;
    font-size: 16px;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
}
.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,.5);
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #71bcdc;
    background: rgba(255,255,255,.15);
}
.newsletter-form .btn {
    white-space: nowrap;
}

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

/* --- Footer --- */
.footer {
    background: #0a3e5b;
    padding: 30px 0;
    text-align: center;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.footer-social {
    display: flex;
    gap: 14px;
}
.footer-social a {
    color: #fff;
    transition: color .2s;
}
.footer-social a:hover { color: #71bcdc; }
.footer-social svg { fill: currentColor; }

.copyright {
    font-size: 13px;
    color: rgba(255,255,255,.7);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .cards-3 { grid-template-columns: 1fr 1fr; }
    .cards-2 { grid-template-columns: 1fr 1fr; }
    .video-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonial-slide { flex: 0 0 50%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .getting-started-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Mobile nav */
    .hamburger { display: flex; }
    .nav {
        position: fixed;
        top: 70px; right: -100%;
        width: 260px;
        height: calc(100vh - 70px);
        background: #0a3e5b;
        transition: right .3s;
        overflow-y: auto;
    }
    .nav.open { right: 0; }
    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    .nav a {
        padding: 12px 16px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .hero { min-height: 70vh; }
    .hero-title { font-size: 2rem; }

    .section { padding: 50px 0; }
    .cards-3 { grid-template-columns: 1fr; }
    .cards-2 { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .testimonial-slide { flex: 0 0 100%; }
    .testimonial-carousel { padding: 0 40px; }

    .team-member { max-width: 420px; margin: 0 auto; }

    .form-row { flex-direction: column; gap: 0; }
    .form-group.half { width: 100%; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .how-steps { grid-template-columns: 1fr 1fr; }
    .getting-started-grid { grid-template-columns: 1fr; }
    .cta-banner h2 { font-size: 24px; }
}

@media (max-width: 480px) {
    .nav { width: 100%; }
    .btn { padding: 10px 24px; font-size: 15px; }
    .section-heading { font-size: 18px; padding: 6px 20px; }
    .stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .stat-number { font-size: 30px; }
    .how-steps { grid-template-columns: 1fr; }
    .cta-banner h2 { font-size: 22px; }
    .cta-banner p { font-size: 15px; }
    .featured-logo-link { font-size: 24px; }
}
