/* ============================================
   DEZIGNITE — Desktop Responsive
   Strategy: NO vw in font sizes — fixed rem only.
   vw causes zoom-level inconsistency on Retina.

   Breakpoints:
   A) 1400–1919px  → MacBook 3024×1964 @ 100% (~1512px logical)
   B) 1920px+      → Full HD 16:9 (1920×1080)
   C) max-height   → Short viewports (16:9 landscape)
   D) 2560px+      → Ultra-wide
   ============================================ */

/* ══════════════════════════════════════════
   A) 1400–1919px
   MacBook Retina baseline — tuned for
   1512px logical width, 982px height
══════════════════════════════════════════ */
@media (min-width: 1400px) and (max-width: 1919px) {

    :root {
        --section-padding: 6rem 0;
    }

    .container {
        max-width: 1240px;
    }

    /* Navbar */
    .navbar {
        padding: 1.2rem 0;
    }

    .logo-img {
        height: 44px;
    }

    .nav-links {
        gap: 2rem;
    }

    .nav-links a {
        font-size: 0.92rem;
    }

    /* Index Hero */
    .hero-logo img {
        height: 95px;
    }

    .hero-badge {
        font-size: 0.88rem;
        padding: 0.65rem 1.3rem;
        margin-bottom: 1.6rem;
    }

    .hero-title {
        font-size: 3.8rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.08rem;
        margin-bottom: 2.2rem;
    }

    .hero-buttons .btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.8rem;
    }

    .hero-buttons .btn-large {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .hero-stats {
        margin-top: 3rem;
        gap: 3rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.84rem;
    }

    /* Sections */
    .section-header {
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.6rem;
    }

    .service-card {
        padding: 2.2rem;
    }

    .service-massive-text {
        font-size: 5rem;
    }

    .service-title {
        font-size: 1.35rem;
    }

    .service-description {
        font-size: 0.94rem;
    }

    /* Process */
    .process-timeline {
        gap: 2rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.94rem;
    }

    /* CTA */
    .cta-title {
        font-size: 2.6rem;
    }

    .cta-subtitle {
        font-size: 1.08rem;
    }

    /* Contact */
    .contact-wrapper {
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2.4rem;
    }

    /* Footer */
    .footer {
        padding: 4rem 0 1.8rem;
    }

    .footer-content {
        gap: 2.2rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-description,
    .footer-newsletter-text,
    .footer-links a {
        font-size: 0.92rem;
    }

    /* About Page */
    .about-hero-text {
        padding: 9rem 4rem 5rem;
    }

    .about-hero-title {
        font-size: 5rem;
        letter-spacing: -2px;
        line-height: 0.95;
    }

    .about-hero-lead {
        font-size: 1.05rem;
    }

    .about-story,
    .about-values,
    .about-team,
    .about-milestones,
    .about-cta {
        padding: 6rem 0;
    }

    .about-story-title {
        font-size: 2.6rem;
    }

    .about-section-title {
        font-size: 2.6rem;
    }

    .about-cta-title {
        font-size: 3.6rem;
    }

    .value-card {
        padding: 2.2rem;
    }

    .milestone-year {
        font-size: 2.2rem;
    }

    /* Video Page */
    .video-hero-content {
        padding: 6rem 2rem 2rem;
    }

    .video-hero-title {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .video-hero-subtitle {
        font-size: 1.15rem;
    }

    .video-services,
    .production-timeline,
    .video-portfolio,
    .video-cta {
        padding: 6rem 0;
    }

    .video-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .timeline-title {
        font-size: 2.6rem;
    }

    /* YouTube Page */
    .yt-hero-title {
        font-size: 4.2rem;
        letter-spacing: -2px;
    }

    .yt-section-title {
        font-size: 2.6rem;
    }

    .yt-services,
    .yt-work,
    .yt-process,
    .yt-pricing,
    .yt-cta {
        padding: 6rem 0;
    }

    /* Graphics Page */
    .graphics-title {
        font-size: 5.5rem;
        letter-spacing: -3px;
    }

    .graphics-subtitle {
        font-size: 1.1rem;
    }

    .gallery-section,
    .graphics-process,
    .graphics-pricing,
    .graphics-cta {
        padding: 6rem 0;
    }

    .section-header-g h2 {
        font-size: 2.8rem;
    }

    .pricing-title-g,
    .process-title-g {
        font-size: 2.6rem;
    }
}

/* ══════════════════════════════════════════
   B) 1920px+
   Full HD 16:9 — 1920×1080
══════════════════════════════════════════ */
@media (min-width: 1920px) {

    :root {
        --section-padding: 7rem 0;
    }

    .container {
        max-width: 1480px;
    }

    /* Navbar */
    .navbar {
        padding: 1.4rem 0;
    }

    .logo-img {
        height: 48px;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }

    /* Index Hero */
    .hero-logo img {
        height: 110px;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 0.7rem 1.4rem;
        margin-bottom: 1.8rem;
    }

    .hero-title {
        font-size: 4.2rem;
        line-height: 1.1;
        margin-bottom: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }

    .hero-buttons .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .hero-buttons .btn-large {
        font-size: 1.05rem;
        padding: 1.1rem 2.2rem;
    }

    .hero-stats {
        margin-top: 3.5rem;
        gap: 4rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 0.88rem;
    }

    /* Sections */
    .section-header {
        margin-bottom: 4.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .service-card {
        padding: 2.5rem;
    }

    .service-massive-text {
        font-size: 5.5rem;
    }

    .service-title {
        font-size: 1.45rem;
    }

    .service-description {
        font-size: 0.97rem;
    }

    /* Process */
    .process-timeline {
        gap: 2.5rem;
    }

    .step-content h3 {
        font-size: 1.4rem;
    }

    /* CTA */
    .cta-title {
        font-size: 2.8rem;
    }

    .cta-subtitle {
        font-size: 1.15rem;
    }

    /* Contact */
    .contact-wrapper {
        gap: 3.5rem;
    }

    .contact-form-container {
        padding: 2.8rem;
    }

    /* Footer */
    .footer {
        padding: 5rem 0 2rem;
    }

    .footer-content {
        gap: 2.5rem;
    }

    /* About Page */
    .about-hero-text {
        padding: 10rem 4.5rem 6rem;
    }

    .about-hero-title {
        font-size: 5.8rem;
        letter-spacing: -3px;
    }

    .about-hero-lead {
        font-size: 1.1rem;
    }

    .about-story,
    .about-values,
    .about-team,
    .about-milestones,
    .about-cta {
        padding: 7rem 0;
    }

    .about-story-title {
        font-size: 2.8rem;
    }

    .about-section-title {
        font-size: 2.8rem;
    }

    .about-cta-title {
        font-size: 4rem;
    }

    .milestone-year {
        font-size: 2.4rem;
    }

    /* Video Page */
    .video-hero-content {
        padding: 7rem 2rem 2rem;
    }

    .video-hero-title {
        font-size: 5.5rem;
        letter-spacing: -2px;
    }

    .video-hero-subtitle {
        font-size: 1.2rem;
    }

    .video-services,
    .production-timeline,
    .video-portfolio,
    .video-cta {
        padding: 7rem 0;
    }

    .video-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .timeline-title {
        font-size: 2.8rem;
    }

    /* YouTube Page */
    .yt-hero-title {
        font-size: 4.8rem;
        letter-spacing: -2px;
    }

    .yt-section-title {
        font-size: 2.8rem;
    }

    .yt-services,
    .yt-work,
    .yt-process,
    .yt-pricing,
    .yt-cta {
        padding: 7rem 0;
    }

    /* Graphics Page */
    .graphics-title {
        font-size: 6.5rem;
        letter-spacing: -3px;
    }

    .graphics-subtitle {
        font-size: 1.2rem;
    }

    .gallery-section,
    .graphics-process,
    .graphics-pricing,
    .graphics-cta {
        padding: 7rem 0;
    }

    .section-header-g h2 {
        font-size: 3rem;
    }

    .pricing-title-g,
    .process-title-g {
        font-size: 2.8rem;
    }
}

/* ══════════════════════════════════════════
   C) SHORT VIEWPORTS
   Catches 16:9 monitors where height is the
   constraint — 1920×1080 height = 1080px
══════════════════════════════════════════ */
@media (max-height: 1100px) and (min-width: 1400px) {

    .hero-content {
        padding: 1rem 0;
    }

    .hero-logo img {
        height: 80px;
        margin-bottom: 1.4rem;
    }

    .hero-badge {
        margin-bottom: 1.2rem;
        padding: 0.55rem 1.1rem;
        font-size: 0.84rem;
    }

    .hero-title {
        font-size: 3.4rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .hero-stats {
        margin-top: 2.2rem;
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    /* About hero */
    .about-hero-text {
        padding: 7.5rem 3.5rem 4rem;
    }

    .about-hero-title {
        font-size: 4.2rem;
    }

    /* Video hero */
    .video-hero-content {
        padding: 5rem 2rem 1.5rem;
    }

    .video-hero-title {
        font-size: 4rem;
    }

    .play-icon-large {
        margin-bottom: 1.2rem;
    }

    .play-icon-large svg {
        width: 60px;
        height: 60px;
    }

    /* YT hero */
    .yt-hero-inner {
        padding: 7rem 0 4rem;
    }

    .yt-hero-title {
        font-size: 3.6rem;
    }
}

/* Tighter still — exactly 1080px viewport height (FHD 16:9) */
@media (max-height: 1090px) and (min-width: 1400px) {

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-logo img {
        height: 72px;
    }

    .hero-stats {
        margin-top: 1.8rem;
    }
}

/* ══════════════════════════════════════════
   D) ULTRA-WIDE 2560px+
══════════════════════════════════════════ */
@media (min-width: 2560px) {

    :root {
        --section-padding: 8rem 0;
    }

    .container {
        max-width: 1800px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .about-hero-title {
        font-size: 7rem;
    }

    .video-hero-title {
        font-size: 6.5rem;
    }

    .yt-hero-title {
        font-size: 5.5rem;
    }

    .graphics-title {
        font-size: 8rem;
    }
}

/* ══════════════════════════════════════════
   HERO BUTTONS — service & about pages
══════════════════════════════════════════ */
@media (min-width: 1400px) and (max-width: 1919px) {

    /* Video page */
    .btn-video {
        font-size: 0.92rem;
        padding: 0.85rem 1.7rem;
    }

    /* Graphics page */
    .btn-graphics {
        font-size: 0.92rem;
        padding: 0.85rem 1.7rem;
    }

    /* YouTube page — uses base .btn */
    .yt-hero-actions .btn {
        font-size: 0.92rem;
        padding: 0.85rem 1.7rem;
    }

    /* About page */
    .about-cta-content .btn {
        font-size: 0.92rem;
        padding: 0.85rem 1.7rem;
    }
}

@media (min-width: 1920px) {

    .btn-video {
        font-size: 0.98rem;
        padding: 0.95rem 1.9rem;
    }

    .btn-graphics {
        font-size: 0.98rem;
        padding: 0.95rem 1.9rem;
    }

    .yt-hero-actions .btn {
        font-size: 0.98rem;
        padding: 0.95rem 1.9rem;
    }

    .about-cta-content .btn {
        font-size: 0.98rem;
        padding: 0.95rem 1.9rem;
    }
}