/* ============================================================
   CINEMA.CSS — Cinematic Hero, 3D Image Wheel, Blog, Zoom Transition
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&display=swap');

/* ============================================================
   CINEMATIC HERO SECTION
   ============================================================ */

.hero-cinema {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--dark-bg);
    overflow: hidden;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Hero Background Layers */
.hero-bg-layers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 154, 91, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 177, 138, 0.5) 0%, transparent 70%);
    bottom: -150px;
    right: -50px;
    animation-delay: 3s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.3) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: 1.5s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* Particle grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Hero Main Layout */
.hero-cinema-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ============================================================
   LEFT SIDE — 3D CIRCULAR ROTATING IMAGE WHEEL
   ============================================================ */

.hero-wheel-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-wheel-container {
    position: relative;
    width: 400px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    overflow: hidden;
    /* Vertical gradient masking — only a "window" is visible */
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.05) 5%,
        rgba(0,0,0,0.3) 12%,
        rgba(0,0,0,0.7) 22%,
        black 35%,
        black 65%,
        rgba(0,0,0,0.7) 78%,
        rgba(0,0,0,0.3) 88%,
        rgba(0,0,0,0.05) 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.05) 5%,
        rgba(0,0,0,0.3) 12%,
        rgba(0,0,0,0.7) 22%,
        black 35%,
        black 65%,
        rgba(0,0,0,0.7) 78%,
        rgba(0,0,0,0.3) 88%,
        rgba(0,0,0,0.05) 95%,
        transparent 100%
    );
}

/* Top/bottom soft fades (extra layer on top of mask) */
.wheel-top-blur,
.wheel-bottom-blur {
    position: absolute;
    left: 0;
    right: 0;
    height: 140px;
    z-index: 10;
    pointer-events: none;
}

.wheel-top-blur {
    top: 0;
    background: linear-gradient(to bottom, var(--dark-bg), transparent);
}

.wheel-bottom-blur {
    bottom: 0;
    background: linear-gradient(to top, var(--dark-bg), transparent);
}

/* The wheel track — 3D cylinder container */
.wheel-track {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transform-style: preserve-3d;
    will-change: transform;
    /* Cards are positioned absolutely by JS on a circular path */
}

/* Individual wheel cards */
.wheel-card {
    width: 320px;
    height: 200px;
    border-radius: 22px;
    flex-shrink: 0;
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: box-shadow 0.5s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Card inner content — abstract shapes */
.wcard-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Gradient abstract backgrounds for each card */
.wcard-1 {
    background: linear-gradient(135deg, #1a0533 0%, #6d28d9 50%, #0891b2 100%);
}
.wcard-2 {
    background: linear-gradient(135deg, #052e16 0%, #059669 50%, #facc15 100%);
}
.wcard-3 {
    background: linear-gradient(135deg, #1e0a2e 0%, #9333ea 50%, #f43f5e 100%);
}
.wcard-4 {
    background: linear-gradient(135deg, #0c1a2e 0%, #2563eb 50%, #06b6d4 100%);
}
.wcard-5 {
    background: linear-gradient(135deg, #2d1000 0%, #ea580c 50%, #fbbf24 100%);
}
.wcard-6 {
    background: linear-gradient(135deg, #0f0f2e 0%, #4f46e5 40%, #ec4899 100%);
}
.wcard-7 {
    background: linear-gradient(135deg, #001a0e 0%, #10b981 50%, #a3e635 100%);
}

/* Floating shapes inside cards */
.wcard-shape {
    position: absolute;
    border-radius: 50%;
    animation: shapeFloat 4s ease-in-out infinite;
}

.wcard-shape-1 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.12);
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.wcard-shape-2 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    bottom: 10px;
    left: 20px;
    animation-delay: 1s;
}

.wcard-shape-3 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    rotate: 45deg;
    animation-delay: 0.5s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* Glow lines on cards */
.wcard-glow-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: glowLine 3s ease-in-out infinite;
}

@keyframes glowLine {
    0% {
        width: 0;
        left: 0;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        width: 100%;
        left: 0;
        opacity: 0;
    }
}

/* Card label */
.wcard-label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wcard-label span {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.wcard-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

/* Wheel glow ring around center */
.wheel-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 210px;
    border-radius: 26px;
    border: 1px solid rgba(138, 154, 91, 0.25);
    pointer-events: none;
    z-index: 8;
    box-shadow:
        0 0 40px rgba(138, 154, 91, 0.12),
        inset 0 0 40px rgba(138, 154, 91, 0.04);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow:
            0 0 40px rgba(138, 154, 91, 0.12),
            inset 0 0 40px rgba(138, 154, 91, 0.04);
        border-color: rgba(138, 154, 91, 0.25);
    }
    50% {
        box-shadow:
            0 0 60px rgba(138, 154, 91, 0.2),
            inset 0 0 50px rgba(138, 154, 91, 0.08);
        border-color: rgba(138, 154, 91, 0.4);
    }
}

/* ============================================================
   RIGHT SIDE — HERO CONTENT
   ============================================================ */

.hero-right-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 154, 91, 0.1);
    border: 1px solid rgba(138, 154, 91, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    width: fit-content;
}

.hero-eyebrow-pill span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-1);
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-1);
    animation: dotPulse 2s ease-in-out infinite;
}

.hero-cinema-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff;
    margin: 0;
}

.hero-cinema-headline .headline-accent {
    background: linear-gradient(135deg, var(--green-1) 0%, var(--green-2) 50%, var(--highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-cinema-para {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
}

/* CTA Buttons */
.hero-cinema-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cinema-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--green-1), var(--green-2));
    color: #000;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 24px rgba(138, 154, 91, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-cinema-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cinema-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(138, 154, 91, 0.55);
    color: #000;
}

.btn-cinema-primary:hover::before {
    opacity: 1;
}

.btn-cinema-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 100px;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.btn-cinema-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transform: translateY(-2px);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.trust-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   ENHANCED NAVBAR — Blog Link & Active States
   ============================================================ */

/* Active nav link */
.fnav-links li a.nav-active {
    color: #fff !important;
    background: rgba(138, 154, 91, 0.15) !important;
    border-radius: 30px;
}

/* Blog link hover color */
.fnav-links li a.fnav-blog:hover {
    color: #fff !important;
    background: rgba(138, 154, 91, 0.15) !important;
}

/* ============================================================
   CINEMATIC ZOOM TRANSITION — Section after Hero
   ============================================================ */

.zoom-transition-section {
    position: relative;
    z-index: 2;
}

.zoom-transition-inner {
    will-change: transform, opacity;
    transform: translateY(60px);
    opacity: 0;
    transition: none;
}

/* ============================================================
   BLOG SECTION — Homepage
   ============================================================ */

.blog-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(138, 154, 91, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 72px;
}

.blog-section-header .section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-1);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(138, 154, 91, 0.08);
    border: 1px solid var(--border);
    border-radius: 100px;
}

.blog-section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.blog-section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Blog Cards Grid */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Blog Card */
.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    position: relative;
    text-decoration: none;
    display: block;
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(138, 154, 91, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--green-1);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        var(--glow);
}

.blog-card:hover::before {
    opacity: 1;
}

/* Blog Card Thumbnail */
.blog-card-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-thumb-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.blog-card:hover .blog-card-thumb-inner {
    transform: scale(1.06);
}

/* Abstract thumbnail gradients */
.blog-thumb-1 {
    background: linear-gradient(135deg, #1b2412 0%, #2f401f 50%, var(--green-3) 100%);
}

.blog-thumb-2 {
    background: linear-gradient(135deg, #242e1a 0%, var(--green-1) 50%, var(--green-2) 100%);
}

.blog-thumb-3 {
    background: linear-gradient(135deg, #141c0d 0%, var(--green-1) 40%, var(--highlight) 100%);
}

.blog-thumb-decor {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumb-icon {
    font-size: 3.5rem;
    opacity: 0.4;
    filter: grayscale(0.3);
}

.blog-thumb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: ringPulse 3s ease-in-out infinite;
}

.blog-thumb-ring-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.blog-thumb-ring-2 {
    width: 140px;
    height: 140px;
    animation-delay: 0.5s;
}

.blog-thumb-ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Blog Card Body */
.blog-card-body {
    padding: 28px 24px;
    position: relative;
    z-index: 2;
}

.blog-card-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-1);
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-1);
    letter-spacing: 0.3px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
    color: var(--green-2);
}

.blog-read-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-arrow {
    transform: translateX(4px);
}

.blog-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Blog Section CTA */
.blog-section-cta {
    text-align: center;
    margin-top: 56px;
}

/* ============================================================
   LIGHT MODE OVERRIDES — Hero Cinema & Blog
   ============================================================ */

body.light #hero.hero-cinema {
    background: var(--dark-bg);
}

body.light .hero-orb-1 {
    background: radial-gradient(circle, rgba(138, 154, 91, 0.15) 0%, transparent 70%);
}

body.light .hero-orb-2 {
    background: radial-gradient(circle, rgba(163, 177, 138, 0.12) 0%, transparent 70%);
}

body.light .hero-orb-3 {
    background: radial-gradient(circle, rgba(200, 255, 0, 0.1) 0%, transparent 70%);
}

body.light .hero-cinema-headline {
    color: #0f0f1a;
}

body.light .hero-cinema-headline .headline-accent {
    background: linear-gradient(135deg, var(--green-3) 0%, var(--green-1) 50%, var(--green-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light .hero-cinema-para {
    color: rgba(0, 0, 0, 0.5);
}

body.light .trust-value {
    color: #0f0f1a;
}

body.light .trust-label {
    color: rgba(0, 0, 0, 0.35);
}

body.light .trust-divider {
    background: rgba(0, 0, 0, 0.1);
}

body.light .btn-cinema-secondary {
    border-color: rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.65);
}

body.light .btn-cinema-secondary:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #000;
    border-color: rgba(0, 0, 0, 0.3);
}

body.light .wheel-top-blur {
    background: linear-gradient(to bottom, var(--dark-bg), transparent);
}

body.light .wheel-bottom-blur {
    background: linear-gradient(to top, var(--dark-bg), transparent);
}

body.light .wheel-center-glow {
    border-color: rgba(138, 154, 91, 0.2);
    box-shadow:
        0 0 40px rgba(138, 154, 91, 0.08),
        inset 0 0 40px rgba(138, 154, 91, 0.03);
}

body.light .hero-grid-overlay {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

body.light .hero-eyebrow-pill {
    background: rgba(138, 154, 91, 0.08);
    border-color: rgba(138, 154, 91, 0.15);
}

body.light .blog-section {
    background: var(--dark-bg);
}

body.light .blog-section::before {
    background: radial-gradient(ellipse, rgba(138, 154, 91, 0.06) 0%, transparent 70%);
}

body.light .blog-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.07);
}

body.light .blog-card:hover {
    border-color: rgba(138, 154, 91, 0.2);
}

body.light .blog-card-title {
    color: #0f0f1a;
}

body.light .blog-card-excerpt {
    color: rgba(0, 0, 0, 0.45);
}

body.light .blog-card-meta {
    color: rgba(0, 0, 0, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .hero-cinema-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 32px;
        text-align: center;
    }

    .hero-wheel-side {
        order: -1;
    }

    .hero-wheel-container {
        width: 320px;
        height: 480px;
    }

    .wheel-card {
        width: 260px;
        height: 160px;
    }

    .wheel-center-glow {
        width: 280px;
        height: 170px;
    }

    .hero-right-side {
        align-items: center;
    }

    .hero-cinema-para {
        max-width: 100%;
    }

    .hero-cinema-ctas {
        justify-content: center;
    }

    .hero-trust-indicators {
        justify-content: center;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-cinema {
        padding: 100px 0 40px;
    }

    .hero-cinema-layout {
        padding: 0 24px;
        gap: 40px;
    }

    .hero-wheel-container {
        width: 280px;
        height: 420px;
    }

    .wheel-card {
        width: 230px;
        height: 140px;
    }

    .wheel-center-glow {
        width: 250px;
        height: 150px;
    }

    .blog-section .container {
        padding: 0 24px;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-trust-indicators {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-cinema-headline {
        font-size: 2rem;
    }

    .hero-wheel-container {
        width: 240px;
        height: 360px;
    }

    .wheel-card {
        width: 200px;
        height: 125px;
    }

    .wheel-center-glow {
        width: 220px;
        height: 135px;
    }

    .hero-cinema-ctas {
        flex-direction: column;
        align-items: center;
    }
}