/* ==============================================
   PICKUP SPORTS — Video-Driven Landing Page
   Mobile-first, scroll-driven storytelling
   ============================================== */

/* --- FONT FACES (reuse from style.css if loaded, else fallback) --- */
@font-face {
    font-family: 'Urbane';
    src: url('../fonts/Urbane-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Urbane';
    src: url('../fonts/Urbane-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Urbane';
    src: url('../fonts/Urbane-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Urbane';
    src: url('../fonts/Urbane-Heavy.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

:root {
    --color-bg: #0a0a0a;
    --color-text: #ffffff;
    --color-teal: #00dfc4;
    --color-teal-glow: rgba(0, 223, 196, 0.4);
    --color-subtext: #a1a1aa;
    --color-card-bg: rgba(255, 255, 255, 0.04);
    --color-card-border: rgba(255, 255, 255, 0.08);
    --font-primary: 'Urbane', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    background: var(--color-bg);
}

body {
    font-family: var(--font-primary);
    background: transparent;
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Safari/WebKit on iOS: ignore safe-area insets — let the browser UI overlay */
@supports (-webkit-touch-callout: none) {
    body {
        padding-bottom: 0;
    }
    .footer {
        padding-bottom: 20px;
    }
}

/* Constellation background — fixed behind everything */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

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

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

/* --- NAVBAR --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    height: 28px;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-subtext);
}

.nav-lang a {
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s;
}

.nav-lang a.active {
    color: var(--color-teal);
}

.nav-lang a:not(.active):hover {
    color: var(--color-text);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(34px, 9vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    max-width: 720px;
    will-change: transform, opacity;
}

.hero p,
.hero-stats,
.hero-badges,
.scroll-hint {
    will-change: transform, opacity;
}

/* --- HERO STATS (count-up trust strip) --- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 460px;
    margin: 0 auto 28px;
}

.hero-stat {
    padding: 8px 6px;
    text-align: center;
}

.hero-stat-num {
    font-size: clamp(26px, 7vw, 36px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.hero-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-subtext);
    line-height: 1.3;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: clamp(15px, 4vw, 18px);
    color: var(--color-subtext);
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.hero-badges img {
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

/* Google Play badge has a transparent border, App Store SVG is tighter — different heights to align visually */
.hero-badges a:first-child img { height: 54px; }
.hero-badges a:last-child img { height: 37px; }

.hero-badges a:hover img {
    transform: scale(1.05);
}

.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-teal);
    animation: bounce 1.6s infinite;
    font-size: 56px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 223, 196, 0.4);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(14px); }
}

/* --- STORY (holds all video cards) --- */
/* One tall container with a sticky stage. All video cards are absolutely
   positioned inside the stage. JS computes global scroll progress and
   cross-fades cards in/out — zero gap between them. */
.story {
    position: relative;
    /* height set inline in HTML based on number of cards */
}

.story-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

.video-card {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    will-change: transform, opacity;
    opacity: 0;
    pointer-events: none;
}

/* Mobile: section-inner is constrained to the phone width so the
   absolutely-positioned overlay can match the video-wrap exactly.
   max-height keeps the phone fitting within the viewport on small screens.
   Width is 90% so there's a bit of breathing room on either side; desktop
   media query overrides this back to 100% / 1100px. */
.video-section-inner {
    position: relative;
    width: 90%;
    max-width: 324px;
    max-height: calc(100svh - 40px);
}

.video-card .video-wrap {
    position: relative;
}

/* Mobile overlay: positioned absolutely over the section-inner (= video-wrap area) */
.video-card .video-overlay {
    position: absolute;
    inset: 0;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0) 0%,
        rgba(10, 10, 10, 0.2) 45%,
        rgba(10, 10, 10, 0.7) 80%,
        rgba(10, 10, 10, 0.85) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px 28px;
    will-change: opacity, transform;
}

.video-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
    max-height: calc(100svh - 40px);
    aspect-ratio: 9 / 19.5;
    border-radius: 36px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 223, 196, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.08),
                0 4px 30px rgba(0, 0, 0, 0.4);
}

.video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fullscreen — videos are portrait (9:19.5); switch to contain so the
   browser letterboxes instead of cropping. Each pseudo-class needs its
   own rule because invalid selectors invalidate the entire list. */
.video-wrap video:fullscreen {
    object-fit: contain;
    width: 100%;
    height: 100%;
    background: #000;
}
.video-wrap video:-webkit-full-screen {
    object-fit: contain;
    width: 100%;
    height: 100%;
    background: #000;
}
.video-wrap video:-moz-full-screen {
    object-fit: contain;
    width: 100%;
    height: 100%;
    background: #000;
}

/* Badge / heading / paragraph — base text styles */
.video-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 5px 11px;
    background: rgba(0, 223, 196, 0.15);
    border: 1px solid rgba(0, 223, 196, 0.4);
    color: var(--color-teal);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    margin-bottom: 12px;
}

.video-overlay h2 {
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.video-overlay h2 .gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.video-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Fullscreen trigger — top-right of each video, opens the native player */
.video-fullscreen-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.video-fullscreen-btn:hover,
.video-fullscreen-btn:focus-visible {
    background: rgba(0, 223, 196, 0.22);
    border-color: rgba(0, 223, 196, 0.5);
    color: var(--color-teal);
    transform: scale(1.06);
    outline: none;
}

.video-fullscreen-btn:active {
    transform: scale(0.96);
}

.video-fullscreen-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* --- VIDEO GALLERY CARD (3-step swipeable slideshow) --- */
.video-card-gallery .video-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 324px;
    max-height: calc(100svh - 40px);
}

.gallery-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}
.gallery-viewport::-webkit-scrollbar { display: none; }

.gallery-track {
    display: flex;
    width: 100%;
}

.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.gallery-slide-inner {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone inside a gallery slide — leave room for the dots row below */
.video-card-gallery .video-wrap {
    max-height: calc(100svh - 80px);
}

.gallery-dots {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-shrink: 0;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.gallery-dot.active {
    background: var(--color-teal);
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(0, 223, 196, 0.5);
}

.gallery-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
}

/* --- PRICING PAGE --- */
.pricing-page {
    min-height: calc(100svh - 60px);
    padding: 110px 20px 60px;
    max-width: 880px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 36px;
}

.pricing-header h1 {
    font-size: clamp(34px, 9vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.pricing-header h1 .gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing-header p {
    font-size: clamp(14px, 4vw, 16px);
    color: var(--color-subtext);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.5;
}

.pricing-tabs-wrap {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-tabs {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.pricing-tab {
    background: transparent;
    border: none;
    color: var(--color-subtext);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.pricing-tab:not(.active):hover {
    color: var(--color-text);
}

.pricing-tab.active {
    background: linear-gradient(135deg, var(--color-teal) 0%, #00b89e 100%);
    color: #0a0a0a;
    box-shadow: 0 0 18px rgba(0, 223, 196, 0.35);
}

.pricing-block[hidden] {
    display: none !important;
}

.pricing-block-head {
    text-align: center;
    margin-bottom: 18px;
}

.pricing-block-head p {
    font-size: 14px;
    color: var(--color-subtext);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

.pricing-table-wrap {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
    padding: 14px 10px;
    text-align: center;
    vertical-align: middle;
}

.pricing-table thead th {
    padding: 22px 10px 18px;
    border-bottom: 1px solid var(--color-card-border);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-table .pt-feature-col {
    width: 44%;
}

.pricing-table .pt-plan {
    width: 28%;
    display: table-cell;
}

.pricing-table .pt-plan-pro {
    background: linear-gradient(180deg, rgba(0, 223, 196, 0.08) 0%, rgba(0, 223, 196, 0.03) 100%);
    border-left: 1px solid rgba(0, 223, 196, 0.2);
    border-right: 1px solid rgba(0, 223, 196, 0.2);
    position: relative;
}

.pt-plan-name {
    display: block;
    font-size: clamp(13px, 3.5vw, 16px);
    font-weight: 900;
    color: var(--color-text);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.pt-plan-pro .pt-plan-name {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pt-plan-price {
    display: block;
    font-size: clamp(15px, 4vw, 20px);
    font-weight: 700;
    color: var(--color-subtext);
    letter-spacing: -0.01em;
}

.pt-plan-pro .pt-plan-price {
    color: var(--color-text);
}

.pt-plan-per {
    font-size: 0.7em;
    font-weight: 500;
    color: var(--color-subtext);
}

.pt-plan-trial {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 600;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.pricing-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table tbody tr:first-child {
    border-top: none;
}

.pt-feature {
    text-align: left;
    font-size: clamp(12px, 3.4vw, 14px);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.35;
    padding-left: 16px;
}

.pt-cell {
    color: var(--color-subtext);
}

.pt-cell-pro {
    background: rgba(0, 223, 196, 0.04);
    border-left: 1px solid rgba(0, 223, 196, 0.15);
    border-right: 1px solid rgba(0, 223, 196, 0.15);
}

.pt-text {
    font-size: clamp(12px, 3.4vw, 14px);
    font-weight: 600;
    color: var(--color-text);
}

/* Custom check mark — teal circle with white tick */
.pt-check {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-teal) 0%, #00b89e 100%);
    box-shadow: 0 0 12px rgba(0, 223, 196, 0.35);
    position: relative;
}

.pt-check::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 47%;
    width: 4px;
    height: 9px;
    border: solid #0a0a0a;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -55%) rotate(45deg);
}

.pricing-note {
    margin-top: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--color-subtext);
    line-height: 1.5;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 700px) {
    .pricing-page {
        padding: 140px 40px 80px;
    }
    .pricing-header {
        margin-bottom: 40px;
    }
    .pricing-tabs-wrap {
        margin-bottom: 32px;
    }
    .pricing-block-head {
        margin-bottom: 24px;
    }
    .pricing-block-head p {
        font-size: 15px;
    }
    .pricing-table th,
    .pricing-table td {
        padding: 18px 16px;
    }
    .pricing-table thead th {
        padding: 28px 16px 22px;
    }
    .pt-feature {
        padding-left: 24px;
    }
    .pt-check {
        width: 26px;
        height: 26px;
    }
    .pt-check::after {
        width: 5px;
        height: 11px;
        border-width: 0 2.5px 2.5px 0;
    }
}

/* --- TEAM PRO BANNER --- */
.team-pro-banner {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 223, 196, 0.04) 50%, transparent 100%);
}

.team-pro-banner h2 {
    font-size: clamp(28px, 7vw, 44px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.team-pro-banner h2 .gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.team-pro-banner p {
    font-size: 15px;
    color: var(--color-subtext);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
}

.feature-pill {
    padding: 8px 14px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-subtext);
}

.team-pro-banner .team-pro-tagline {
    font-size: 14px;
    color: var(--color-subtext);
    max-width: 520px;
    margin: 28px auto 12px;
    line-height: 1.55;
}

.team-pro-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-teal);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.team-pro-cta:hover {
    color: #19e8d0;
    transform: translateX(2px);
}

/* --- CTA --- */
.cta {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 223, 196, 0.08) 0%, transparent 60%);
}

.cta h2 {
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.cta h2 .gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta p {
    font-size: 16px;
    color: var(--color-subtext);
    margin-bottom: 28px;
}

.cta-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cta-badges img {
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.cta-badges a:first-child img { height: 58px; }
.cta-badges a:last-child img { height: 40px; }

.cta-badges a:hover img {
    transform: scale(1.05);
}

/* --- FOOTER --- */
.footer {
    padding: 40px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--color-subtext);
}

.footer-links a {
    transition: color 0.2s;
}

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

.footer-links .dot {
    opacity: 0.4;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* --- DESKTOP LAYOUT --- */
@media (min-width: 900px) {
    .nav {
        padding: 18px 40px;
    }

    .nav-logo {
        height: 32px;
    }

    .hero {
        padding: 120px 40px 60px;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 760px;
        gap: 14px;
        margin-bottom: 36px;
    }

    .hero-stat {
        padding: 10px 8px;
    }

    .hero-stat-num {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .hero-stat-label {
        font-size: 12px;
    }

    .video-card {
        padding: 100px 40px;
    }

    /* Side-by-side layout for video cards on desktop */
    .video-card .video-section-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 80px;
        max-width: 1100px;
        width: 100%;
    }

    .video-card .video-wrap {
        flex-shrink: 0;
        width: 320px;
        max-width: 320px;
    }

    /* On desktop, the overlay is a flex sibling beside the video — not absolute */
    .video-card .video-overlay {
        position: static;
        background: none;
        border-radius: 0;
        overflow: visible;
        padding: 0;
        flex: 1;
        align-items: flex-start;
        text-align: left;
        max-width: 520px;
    }

    .video-overlay h2 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .video-overlay p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.75);
    }

    /* Desktop gallery — section-inner stacks viewport above dots;
       slide-inner becomes [phone | text] horizontally */
    .video-card-gallery .video-section-inner {
        flex-direction: column;
        max-width: 1100px;
        gap: 0;
    }

    .video-card-gallery .video-wrap {
        max-height: none;
    }

    .gallery-slide-inner {
        flex-direction: row;
        gap: 80px;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .gallery-slide-inner .video-wrap {
        flex-shrink: 0;
        width: 320px;
        max-width: 320px;
    }

    .gallery-dots {
        margin-top: 28px;
        gap: 12px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    .team-pro-banner,
    .cta {
        padding: 120px 40px;
    }
}

@media (min-width: 1200px) {
    .video-section .video-wrap {
        max-width: 360px;
    }

    .video-section-inner {
        gap: 120px;
    }
}
