/* =============================================================
   SEEN — mobile.css
   Responsive overrides loaded AFTER seen.css
   Breakpoints: 1280 · 1024 · 768 · 480 · 375
   ============================================================= */


/* ─────────────────────────────────────────────────────────────
   GLOBAL: stop overflow-x on every screen
   ───────────────────────────────────────────────────────────── */
   html, body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }
  
  
  /* =============================================================
     ██  THE HERO COLLAGE FIX
     Root cause: .hero-collage uses a fixed 560 × 590 px canvas
     with children at hard pixel offsets — fine on the designer's
     screen but brittle everywhere else.
  
     Fix: keep the canvas approach BUT scale it with a CSS custom
     property so it shrinks proportionally and NEVER overflows.
     ============================================================= */
  
  /* Default (≥ 1280 px) — canvas at full design size */
  :root { --collage-scale: 1; }
  
  @media (max-width: 1280px) { :root { --collage-scale: 0.88; } }
  @media (max-width: 1024px) { :root { --collage-scale: 0.74; } }
  @media (max-width: 900px)  { :root { --collage-scale: 0.62; } }
  
  .hero-collage {
    transform-origin: top left;
    transform: scale(var(--collage-scale));
    /* Keep the layout footprint correct so it doesn't collapse */
    width:  560px;
    height: 590px;
    margin-right: calc((1 - var(--collage-scale)) * -560px);
    margin-bottom: calc((1 - var(--collage-scale)) * -590px);
  }
  
  
  /* =============================================================
     ██  ≤ 1280 px  — Large laptop / small desktop
     ============================================================= */
  @media (max-width: 1280px) {
  
    .section-wrap { padding: 0 40px; }
  
    /* Hero */
    .hero-wrap    { padding: 50px 40px 60px; gap: 28px; }
    .hero-left    { flex: 0 0 480px; width: 480px; }
    .hero-h1      { font-size: 64px; }
  
    /* Brands right col */
    .brands-right { flex: 0 0 700px; }
  
    /* Footer */
    .footer-inner {
      grid-template-columns: 180px repeat(5, 1fr);
      padding: 0 40px;
    }
  }
  
  
  /* =============================================================
     ██  ≤ 1024 px  — Tablet landscape / small laptop
     ============================================================= */
  @media (max-width: 1024px) {
  
    /* Navbar */
    .nav-links { gap: 20px; }
    .nav-link  { font-size: 13px; }
  
    /* Section padding */
    .section-wrap { padding: 0 32px; }
  
    /* ── Hero ── */
    .hero-wrap {
      padding: 40px 32px 50px;
      gap: 20px;
      align-items: center;
    }
    .hero-left {
      flex: 0 0 420px;
      width: 420px;
    }
    .hero-h1 { font-size: 54px; letter-spacing: -1px; }
    .hero-tagline { font-size: 32px; }
    #create-freely { font-size: 32px !important; }
  
    .hero-body { font-size: 15px; }
    .hero-btns { gap: 12px; }
    .btn-gold, .btn-navy { padding: 14px 22px; font-size: 14px; }
  
    /* ── Creators (step carousel) ── */
    .s-creators .section-wrap { gap: 40px; }
    .creators-left { flex: 0 0 300px; }
    .section-h2 { font-size: 34px; }
  
    /* ── Brands ── */
    .s-brands__inner { gap: 40px; }
    .brands-right { flex: 0 0 520px; }
  
    /* ── Region ── */
    .s-region__inner { gap: 40px; }
    .region-left  { max-width: 55%; }
    #region-form-right { max-width: 45% !important; }
  
    /* ── Community ── */
    .s-community__inner { gap: 40px; }
    .community-cta-card { width: 100%; }
  
    /* ── Contact ── */
    .contact-section__body { gap: 16px; }
    .contact-form-card { margin-left: 0; }
  
    /* ── Footer ── */
    .site-footer { padding: 40px 32px 36px; }
    .footer-inner {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px 20px;
    }
  }
  
  
  /* =============================================================
     ██  ≤ 860 px  — Tablet portrait
     ============================================================= */
  @media (max-width: 860px) {
  
    /* Navbar: show hamburger, hide desktop links */
    .nav-links  { display: none; }
    .nav-cta    { display: none; }
    .hamburger  { display: flex; }
    .nav-logo {width: 80px; height: 80px; }

    /* Section wrapper */
    .section-wrap { padding: 0 24px; }
  
    /* ─── HERO: stack vertically ─── */
    .hero-wrap {
      flex-direction: column;
      padding: 40px 24px 0px !important;
      gap: 0;
      align-items: flex-start;
      height: auto;
      min-height: 100vh;
    }
    .hero-left {
      flex: none;
      width: 100%;
      max-width: 600px;
      padding-top: 8px;
    }

    .hero-h1-tablet{
       font-size: 55px !important; 
       margin-top: 5px !important;
     }

    #create-freely { font-size: 30px !important; }
    .hero-tagline  { font-size: 28px; }

    .hero-underline-svg{
        margin-top: -8px;
        margin-left: 155px;
        margin-bottom: 25px;
        width: 240px;
        /* animation: fadeUp .7s var(--ease) .28s both; */
    }
    /* .hero-underline-svg { display: none; }  */
    /* hide underline on mobile — covered by Figma design */
    .hero-body     { font-size: 15px; max-width: 100%; }
  
    /* Collage: render below the text, centered */
    .hero-right {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 32px;
      overflow: hidden;
      min-height: 500px;
    }
    :root { --collage-scale: 0.72; }
    .hero-collage {
      margin-right: auto;
      margin-left: 20%;
    }
  
    /* Trusted logos: show mobile version below collage */
    .hero-trusted { display: none; }
    .hero-trusted--mobile{
        display: block;
        margin: 0 20px 40px !important;
    }  
    /* ── Creators: stack ── */
    .s-creators .section-wrap {
      flex-direction: column;
      gap: 32px;
    }
    .creators-left  { flex: none; width: 100%; }

    .creators-left > p:last-of-type{
        font-size: 18px !important;
    }

    .section-h2-creators{
        margin-top: 32px !important;
        font-size: 38px;
    }

    #made-section { font-size: 22px; }
    #line-under-freedom { width: 160px; margin-top: -35px; margin-left: 225px; }


    .creators-right { width: 100%; }
    .steps-carousel { min-height: 400px; }
  
    /* ── Brands: stack ── */
    .s-brands__inner {
      flex-direction: column;
      gap: 32px;
    }
    .brands-left  { flex: none; width: 100%; }
    .brands-right { flex: none; width: 100%; }

    .brands-left > h2{
        font-size: 40px;
        margin-top: 25px !important;
    }

    .hero-card-idea-brands {
        max-width: 80px;
        top:-50px;
        left: 330px;
    }
    .hero-collage .hero-deco-curve { top: 280px;  right: -130px; }
    .hero-collage .badge-collab    { top: -45px;   right: -70px; }

    .card-title-special{
        font-size: 12px;
    }

    .card-creators {
        left: 0px;
        max-width: 50px;
        }


    /* ── Region: stack ── */
    .s-region__inner {
      flex-direction: column;
      gap: 32px;
    }
    .region-left  { max-width: 100%; flex: none; width: 100%; }
    .region-left > p{
        font-size: 10px;
    }
    #region-form-right { max-width: 100% !important; flex: none; width: 100%; }
  
    .region-right-wrapper{
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        padding: 0 0px 30px ;
    }
    .region-right-wrapper > div:first-child{
        max-width: 100% !important;
    }

    #region-h2{
        font-size: 42px;
        letter-spacing: 1.5px !important;
        /* padding-left: 15px; */
  
      }
      #region-verified{
          display: block;
          margin-top: 7px;
          padding-left: 0px;
          font-size: 35px;
      }
      .s-region { padding: 64px 0 64px 0; }

    /* ── Community: stack ── */
    #line-under-community { width: 110px; margin-top: -22px; margin-left: 80px; }

    .s-community__inner {
      flex-direction: column;
      gap: 32px;
    }
    .community-left  { max-width: 100% !important; flex: none; width: 100%; }
    .community-right { max-width: 100% !important; flex: none; width: 100%; }
    .community-cta-card { width: 100%; }
  
    /* ── Content grid: 2 cols ── */
    .content-grid {
      grid-template-columns: 1fr 1fr 1fr;
    }
    .photo-grid__item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        height: 515px !important;
        margin-top: 0;
    }
    .photo-grid__item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        height: 250px !important;
        /* margin-top: 20px; */
    }
    .photo-grid__item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        height: 250px !important;
        margin-top: 0px;
    }
    .photo-grid__item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
        height: 250px !important;
        margin-top: 0 !important;
        /* display: none; */

    }
    .photo-grid__item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
        height: 510px !important;
        margin-top: 0 !important;
        /* display: none; */

    }
    .photo-grid__item:nth-child(6) {
        grid-column: 1;
        grid-row: 4;
        height: 250px !important;
        margin-top: 0 !important;
        /* display: none; */

    }
    .photo-grid__item:nth-child(7) {
        grid-column: 1;
        grid-row: 5;
        height: 510px !important;
        margin-top: 0 !important;
        /* display: none; 7th cell hidden on mobile per screenshot */
    }
    .photo-grid__item:nth-child(8) {
        grid-column: 2;
        grid-row: 5;
        height: 250px !important;
        margin-top: 0 !important;
        /* display: none; 7th cell hidden on mobile per screenshot */
    }  
    .photo-grid__item:nth-child(9) {
        grid-column: 2 !important;
        grid-row: 6 !important;
        height: 250px !important;
        margin-top: -260px !important;
            /* display: none; 7th cell hidden on mobile per screenshot */
    }  
    .s-content { padding: 72px 0 30px !important; }
    .reveal{
        max-width: 100%;
    }

    .section-h2-content{
        letter-spacing: 1px !important;
        font-size: 40px !important;
    }

    .cg-item--tall { min-height: 360px; }
  
    /* region */
    .section-h2-manage { font-size: 38px !important; letter-spacing: 0.5px !important; }
    .section-h2-manage em { font-size: 35px !important; }
    #line-under-media { width: 135px; margin-top: -18px; }
    .section-body-manage  { max-width: 100%; font-size: 16px !important; }
    .managed-cta{
        max-width: 90%;
        margin-left: auto !important;
        margin-right: auto !important;
        align-items: flex-start;
    }
    .managed-cta-title{
        font-size: 18px;
    }
    .managed-cta-sub{
        font-size: 14px;
    }
    .managed-cta-btn {
        width: 30%;
        justify-content: center;
        padding: 13px 20px;
    }
    .managed-deco{width: 400px; height: 400px;}
    .managed-deco-inner  { width: 400px; height: 400px; top: -50px; right: -100px; }
    .s-managed { padding: 100px 0 !important; }


    /* ── Contact: single col ── */
    .contact-section__body {
      grid-template-columns: 1fr;
    }
    .contact-form-card { margin-left: 0; padding: 0;}
    .contact-card__description br {
        display: none;
    }
    .contact-card__description{
        font-size: 1.0em;
    }
    .contact-card__tagline-bold   { font-size: 1.7rem; }
    .contact-card__tagline-italic { font-size: 1.8rem; }
    .contact-section__title { font-size: 2.2rem; }
    .contact-section__subtitle { font-size: 0.97rem; }

    /* ── Footer: 2 cols ── */
    .site-footer{ padding-left: 0; padding-right: 0;}
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 28px 20px;
      max-width: 100% !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    .footer-col-title br,
    .footer-copyright br{
        display: none;
    }
  }
  
  
  /* =============================================================
     ██  ≤ 480 px  — Mobile (primary reference: Figma screenshots)
     ============================================================= */
  @media (max-width: 480px) {
  
    :root { --navbar-h: 72px; }
  
    /* ── Navbar ── */
    .navbar { padding: 0 20px; height: var(--navbar-h); }
    .nav-logo {width: 72px; height: 72px; };
    /* ── Section spacing ── */
    .section-wrap       { padding: 0 20px; }
    .s-creators,
    .s-brands,
    .s-region,
    .s-community,
    
    .s-contact          { padding: 64px 0; }
    .s-managed { padding: 64px 0; }
    
    .s-content{
        padding: 120px 0 100px !important ; 
    }
    /* ─────────────────────────────
       HERO  (screenshots 1, 2, 3)
       ───────────────────────────── */
    .hero-wrap { padding: 28px 20px 0; }
  
    /* Tagline */
    .hero-tagline-row   { margin-bottom: 2px; }
    #create-freely      { font-size: 34px !important; transform: none; }
    .hero-h1-together {background-color:  linear-gradient(273deg, #D9A441 21.23%, #34369D 106.99%);}
    .hero-underline-svg{
        margin-top: -12px;
        margin-left: 100px;
        margin-bottom: 25px;
        width: 170px;
        /* animation: fadeUp .7s var(--ease) .28s both; */
    }
    .hero-btns{
        max-width: 62%;
    }
    /* H1 */
    .hero-h1 {
      font-size: 38px;
      letter-spacing: -0.8px;
      margin-top: 12px;
      line-height: 1.08;
    }
  
    /* Subtitle */
    .hero-body { font-size: 16px; line-height: 1.65; margin-top: 14px; }
  
    /* Buttons — stack vertically */
    .hero-btns {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      margin-top: 24px;
    }
    .btn-gold, .btn-navy {
      width: 100%;
      justify-content: center;
      padding: 15px 20px;
      font-size: 14.5px;
    }
  
    /* Proof row */
    .hero-proof { margin-top: 24px; gap: 12px; }
    .proof-avatar { width: 36px; height: 36px; }
    .hero-proof-text { font-size: 12px; }
  
    /* Trusted logos */
    .hero-trusted-label { font-size: 10px; letter-spacing: 2px; }
    .hero-logos-row     { gap: 18px; flex-wrap: wrap; }
    .brand-logo         { height: 50px; width: 50px; }
    .brand-logo--circle { height: 24px; }
    .brand-logo--text   { height: 14px; }
  
    /* Collage */
    :root { --collage-scale: 0.58; }
    .hero-collage {
      padding-top: 20px;
      margin-left: 15px; /* nudge slightly left so it bleeds to edge */
    }
    .hero-collage .badge-match     { bottom: -20px; right: -200px; }
    .hero-collage .badge-collab    { top: -50px;   right: -150px; }
    .hero-collage .hero-deco-curve { top: 280px;  right: -230px; }
    .hero-right{
        min-height: 420px;
    }
    .hero-trusted--mobile{
        margin: 0 20px 40px;
    }
  
    /* ─────────────────────────────
       SECTION 2 — BUILT FOR CREATORS
       (screenshots 4, 5)
       ───────────────────────────── */
    .s-creators .section-wrap { gap: 24px; }
  
    .section-h2 { font-size: 26px; letter-spacing: -0.5px; margin-top: 16px; }
    #made-section { font-size: 22px; transform: none !important; }
    .section-h2-creators{
        margin-top: 10px !important;
        font-size: 27px;
    }
    #line-under-freedom { width: 110px; margin-top: -35px; margin-left: 165px; }
  
    .section-body { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
    .btn-blue-sm  { padding: 12px 22px; font-size: 14px; }
  
    /* Step carousel — accordion on mobile */
    .steps-carousel {
      flex-direction: column;
      min-height: unset;
      border-right: none;
      border: 0.8px solid #E5E7EB;
      border-radius: 12px;
    }
    .steps-track {
      flex-direction: column;
      width: 100%;
      /* background-color: #F5F5F5; */
      border: none;
    }
  
    /* All panels stack vertically */
    .step-panel,
    .step-panel.is-active,
    .step-panel.is-collapsed-label {
      width: 100% !important;
      min-width: 0 !important;
      flex: none !important;
      border-left: none !important;
      border-bottom: 0.8px solid #E5E7EB;
    }
    /* .step-panel{
        background-color: #F5F5F5;
        border: none;
    } */
    .step-panel.is-collapsed-label {
        margin: 7px 0 0;
        border-radius: 14px;
    }
    .step-panel.is-collapsed-label .step-panel-inner {
      flex-direction: row;
      align-items: center;
      padding: 14px 18px;
      width: 100%;
      min-width: unset;
      gap: 12px;
    }
  
    /* Horizontal label for collapsed on mobile */
    .step-panel.is-collapsed-label .step-num {
      writing-mode: horizontal-tb;
      transform: none;
      font-size: 10px;
      margin: 0;
    }
    .step-panel.is-collapsed-label .step-title {
      writing-mode: horizontal-tb;
      transform: none;
      font-size: 13px;
      height: auto;
      text-align: left;
    }
  
    /* Active panel: show mockup below text, centered */
    .step-panel.is-active .step-panel-inner {
      padding: 20px 18px 24px;

    }

    .mock-input::placeholder,.mock-textarea::placeholder { font-size: 11px; }
      
    .step-mockup {
      position: static;
      width: 100%;
      margin-top: 16px;
      justify-content: flex-start;
    }
    .step-mockup--earn { max-width: 100% !important; width: 100%; }
    .mock-card, .mock-card--browse { max-width: 100%; }
  
    /* ─────────────────────────────
       SECTION 3 — BRANDS & AGENCIES
       ───────────────────────────── */
    .s-brands { padding: 64px 0; }
    .s-brands .section-wrap { padding: 0 20px; }
  
    .s-brands__inner { flex-direction: column; gap: 28px; }
    .brands-right    { flex: none; width: 100%; margin-top: 50px !important; margin-bottom: 50px !important;}
    .reveal-left{
        max-width: 100%;
    }
    .reveal{
        max-width: 100%;
    }
    .reveal > p:first-child{
        font-size: 14px;
        margin-bottom: 20px;
    }
    #for-made-section { font-size: 28px; transform: none !important; }
    .text-white{
        margin-top: 5px !important;
    }
    .brands-left > h2{
      font-size: 42px;
      margin-top: 8px !important;
    }
    /* Big headline */
    .s-brands .section-h2 {
      font-size: 32px;
      line-height: 1.1;
    }
  
    .section-body-p { font-size: 14px !important; padding-top: 10px !important; }
    .brands-checklist li { font-size: 13.5px; }
  
    /* Creator card / cards on brands section */
    #creator-right {
      height: 350px;
      width: 100%;
      max-width: 100%;
      border-radius: 16px;
      padding-bottom: 100px;
    }
    .hero-card-idea-brands {
      max-width: 80px;
      top:-50px;
      left: 100px;
    }
    .card-creators {
      left: 0px;
      max-width: 50px;
    }

    .card-title-special{
        font-size: 12px;
    }
  
    /* ─────────────────────────────
       SECTION 4 — BUILT FOR REGION
       (screenshots 8, 9)
       ───────────────────────────── */
    .s-region { padding: 64px 0 64px 0; }
    .s-region .section-wrap { padding: 0 20px; }
  
    .s-region__inner  { flex-direction: column; gap: 28px; }
    .region-left      { max-width: 100%; }
    #region-form-right { max-width: 100% !important; }
  
    .region-features  { gap: 20px; margin-top: 24px; }
    .rf-title { font-size: 14.5px; }
    .rf-body  { font-size: 11.5px; }
  
    
    .s-region .section-h2 { font-size: 28px; margin-top: 12px; }
    #line-under-community { width: 110px; margin-top: -22px; margin-left: 70px; }
    .section-h2-content{
        letter-spacing: 1px !important;
        font-size: 26px !important;
    }
    /* Verif card */
    .verif-card   { border-radius: 12px; }
    .verif-row    { padding: 14px 18px; }
    .verif-footer { padding: 14px 18px 18px; }
  
    /* ─────────────────────────────
       SECTION 5 — COMMUNITY
       (screenshots 10, 11)
       ───────────────────────────── */
    .s-community__inner { flex-direction: column; gap: 28px; }
    .community-left, .community-right {
      max-width: 100% !important;
      width: 100%;
    }
  
    .more-than-platform { font-size: 40px; }
    .section-h2-community { font-size: 30px !important; }
    .section-body-community {
      max-width: 100%;
      font-size: 14px;
    }
  
    /* Polaroids — scale down */
    .polaroid-stage { width: 320px; height: 220px; }
    .polaroid--left, .polaroid--center, .polaroid--right { width: 140px; }
    .polaroid { padding: 7px 7px 36px 7px; }
    .polaroid-label { font-size: 11px; }
  
    /* CTA card */
    .community-cta-card {
      width: 100%;
      padding: 28px 28px;
    }
    .cta-card-h    { font-size: 26px; padding-left: 0; padding-top: 0; }
    .cta-card-body { font-size: 16px; padding: 0; }
    .cta-card-btns {
      flex-direction: column;
      gap: 10px;
      padding: 14px 0 10px;
    }
    .cta-card-btns .btn-join-creator-sm,
    .cta-card-btns .btn-outline-navy {
      width: 100%;
      justify-content: center;
      padding: 14px 20px;
      font-size: 14px;
    }
    .community-arrow {    
        bottom: 22px;
        right: 15px; 
    }
    
    
    #region-h2{
      font-size: 30px;
      letter-spacing: 1px !important;
      /* padding-left: 15px; */

    }
    #region-verified{
        display: block;
        margin-top: 6px;
        padding-left: 0px;
        font-size: 34px;
    }

    .region-right-wrapper{
        flex-direction: column;
        padding: 0 5px 30px;
    }
    .region-right-wrapper > div:first-child{
        max-width: 100% !important;
    }
    /* ─────────────────────────────
       SECTION 6 — CONTENT / PHOTO GRID
       (screenshot 12)
       ───────────────────────────── */
    .s-content { padding: 64px 0 100px; }
    .s-content .section-wrap { padding: 0 20px; }
  
    .section-h2-content { font-size: 26px; letter-spacing: 0.5px; margin-top: 8px; }
    .section-body-content { font-size: 13px; }
    .content-header { margin-bottom: 28px; }
  
    /* 2-column grid on mobile: col1 tall, col2 stacked */
    .photo-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
      gap: 8px;
      padding-bottom: 0;
    }
  
    /* Reset all nth-child overrides then re-set for mobile */
    .photo-grid__item:nth-child(1) {
      grid-column: 1;
      grid-row: 1 / 3;
      height: 630px !important;
      margin-top: 0;
    }
    .photo-grid__item:nth-child(2) {
      grid-column: 2;
      grid-row: 1;
      height: 280px !important;
      margin-top: 20px !important;
    }
    .photo-grid__item:nth-child(3) {
      grid-column: 2;
      grid-row: 2;
      height: 280px !important;
      margin-top: 0px !important;
    }
    .photo-grid__item:nth-child(4) {
        /* grid-column: 1;
        grid-row: 3;
        height: 140px;
        margin-top: 0; */
        display: none;

    }
    .photo-grid__item:nth-child(5) {
      /* grid-column: 2;
      grid-row: 3 / 5;
      height: 310px;
      margin-top: 0; */
      display: none;

    }
    .photo-grid__item:nth-child(6) {
      /* grid-column: 1;
      grid-row: 4;
      height: 140px; */
      display: none;

    }
    .photo-grid__item:nth-child(7) {
      display: none; /* 7th cell hidden on mobile per screenshot */
    }
    .photo-grid__item:nth-child(8) {
        display: none; /* 7th cell hidden on mobile per screenshot */
    }  
    .photo-grid__item:nth-child(9) {
        display: none; /* 7th cell hidden on mobile per screenshot */
    }  
    /* ─────────────────────────────
       SECTION 7 — MANAGED SERVICES
       (screenshot 13)
       ───────────────────────────── */
    .managed-section { padding: 60px 20px 52px; }
    .managed-content { max-width: 100%; }
    .managed-badge{ font-size: 12px !important;}
    .section-h2-manage { font-size: 28px !important; letter-spacing: 0.25px !important; }
    .section-h2-manage em { font-size: 28px !important; }
    .managed-title-script { font-size: 28px; }
    .section-body-manage  { max-width: 100%; font-size: 15px !important; }
  
    .managed-cta {
      flex-direction: column;
      align-items: flex-start;
      margin-left: 20px;
      margin-right: 20px;
      margin-top: 50px;
      margin-bottom: 100px;
      padding: 24px 24px;
    }
    .managed-cta-title{
        font-size: 17px;
    }
    .managed-cta-sub{
        font-size: 13px;
    }
    .managed-cta-btn {
      width: 50%;
      justify-content: center;
      padding: 13px 20px;
    }
    .managed-deco{width: 400px; height: 400px;}
    .managed-deco-inner  { width: 400px; height: 400px; top: -50px; right: -100px; }
  
    /* ─────────────────────────────
       SECTION 8 — CONTACT
       (screenshots 14, 15)
       ───────────────────────────── */
    .contact-section { padding: 56px 0 64px; }
    .contact-section__inner { padding: 0 20px; }
    .contact-section__eyebrow {
        margin-top: 100px;
    }
    .contact-section__title { font-size: 1.8rem; }
    .contact-section__subtitle { font-size: 1.0rem; }
  
    .contact-section__body { grid-template-columns: 1fr; gap: 16px; }
  
    .contact-card--dark { padding: 26px 20px 22px; gap: 22px; border-radius: 16px; }
    .contact-card__tagline-italic { font-size: 1.6rem; }
    .contact-card__tagline-bold   { font-size: 1.55rem; }
    .contact-card__follow { padding: 18px 20px 0; }
    .contact-card__follow-label { font-size: 15px; }
  
    .contact-form-card {padding: 0; margin-left: 0; }

    .role-selector{
        width: 100%;
    }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 16px; }
    .submit-btn { width: 100%; justify-content: center; }
    .form-submit-row { max-width: 70%; justify-content: start; }
    .contact-card__description{
        font-size: 0.95rem;
    }
    /* ─────────────────────────────
       FOOTER
       (screenshots 16, 17)
       ───────────────────────────── */
    .site-footer { padding: 36px 0px 32px; }
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      max-width: 100% !important;

    }
  
    /* Brand row on mobile: logo + copyright stacked */
    .footer-logo-name { font-size: 17px; }
    .footer-copyright { font-size: 11px; }
    .footer-col{
        max-width: 100%;
    }
    .footer-col-title { font-size: 13.5px; margin-bottom: 12px; }
    .footer-links a   { font-size: 13px; line-height: 2; }
    .footer-col-title br,
    .footer-copyright br{
        display: none;
    }
  }
  
  
  /* =============================================================
     ██  ≤ 375 px  — Small phones (iPhone SE, Galaxy A)
     ============================================================= */
  @media (max-width: 375px) {
  
    .hero-h1 { font-size: 32px; }
    #create-freely { font-size: 22px !important; }
    .hero-body { font-size: 13px; }
  
    :root { --collage-scale: 0.50; }
  
    .section-h2          { font-size: 24px; }
    .section-h2-content  { font-size: 22px !important; }
    .section-h2-manage   { font-size: 27px !important; }
  
    .community-cta-card  { padding: 22px 16px; }
    .cta-card-h          { font-size: 19px; }
  
    /* Polaroids even smaller */
    .polaroid-stage { width: 280px; height: 190px; }
    .polaroid--left, .polaroid--center, .polaroid--right { width: 120px; }
  }
  
  
  /* =============================================================
     ██  TABLET — 481 px → 768 px  (portrait tablet, large phone)
     ============================================================= */
  @media (min-width: 481px) and (max-width: 768px) {
  
    /* Section padding */
    .section-wrap { padding: 0 28px; }
  
    /* Hero stacks */
    .hero-wrap {
      flex-direction: column;
      padding: 36px 28px 44px;
      gap: 0;
    }
    .hero-left  { flex: none; width: 100%; }
    .hero-h1    { font-size: 44px; }
    #create-freely { font-size: 28px !important; }
  
    .hero-right {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 32px;
      overflow: hidden;
    }
    :root { --collage-scale: 0.68; }
  
    /* Sections stack */
    .s-creators .section-wrap,
    .s-brands__inner,
    .s-region__inner,
    .s-community__inner { flex-direction: column; gap: 36px; }
  
    .creators-left, .brands-left,
    .region-left, .community-left,
    .community-right { flex: none; width: 100%; max-width: 100% !important; }
    .brands-right, #region-form-right { flex: none; width: 100%; max-width: 100% !important; margin: 0;}
    
    /* Content grid 2 col */
    .photo-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .photo-grid__item:nth-child(1) { height: 320px; grid-row: 1 / 3; margin-top: 0; }
    .photo-grid__item:nth-child(2) { height: 150px; margin-top: 0; }
    .photo-grid__item:nth-child(3) { height: 150px; margin-top: 0; }
    .photo-grid__item:nth-child(4) { height: 160px; margin-top: 0; }
    .photo-grid__item:nth-child(5) { height: 340px; margin-top: 0; grid-row: 3 / 5; }
    .photo-grid__item:nth-child(6) { height: 160px; }
  
    /* Step carousel accordion on tablet */
    .steps-carousel  { flex-direction: column; min-height: unset; border-right: none; }
    .steps-track     { flex-direction: column; width: 100%; }
    .step-panel,
    .step-panel.is-active,
    .step-panel.is-collapsed-label {
      width: 100% !important;
      min-width: 0 !important;
      flex: none !important;
      border-left: none !important;
      border-bottom: 0.8px solid #E5E7EB;
    }
    .step-panel.is-collapsed-label .step-panel-inner {
      flex-direction: row;
      align-items: center;
      padding: 14px 20px;
      width: 100%;
      min-width: unset;
      gap: 12px;
    }
    .step-panel.is-collapsed-label .step-num   { writing-mode: horizontal-tb; transform: none; margin: 0; }
    .step-panel.is-collapsed-label .step-title { writing-mode: horizontal-tb; transform: none; height: auto; font-size: 14px; text-align: left; }
    .step-mockup {
      position: static;
      width: 100%;
      margin-top: 16px;
    }
    .step-mockup--earn { max-width: 100% !important; width: 100%; }
  
    /* Contact */
    .contact-section__body { grid-template-columns: 1fr; }
    .contact-form-card { margin-left: 0; }
  
    /* Managed */
    .managed-cta { flex-direction: column; margin-left: 0; margin-right: 0; }
  
    /* Footer 2 col */
    .site-footer { padding: 36px 28px 32px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  
    /* Polaroids */
    .polaroid-stage { width: 380px; height: 260px; }
    .polaroid--left, .polaroid--center, .polaroid--right { width: 170px; }
  
    /* Community CTA */
    .community-cta-card { width: 100%; }
    .cta-card-btns { flex-direction: column; padding: 14px 0; gap: 10px; }
    .cta-card-btns .btn-join-creator-sm,
    .cta-card-btns .btn-outline-navy { width: 100%; justify-content: center; }
  }
  
  
  /* =============================================================
     ██  TABLET — 769 px → 860 px  (small tablet landscape)
     ============================================================= */
  @media (min-width: 769px) and (max-width: 860px) {
  
    :root { --collage-scale: 0.64; }
  
    .section-wrap { padding: 0 32px; }
  
    /* Hero still stacks but collage is bigger */
    .hero-wrap { padding: 40px 32px 48px; }
    .hero-h1   { font-size: 48px; }
  
    /* 3-col grid restored for content */
    .photo-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .photo-grid__item:nth-child(1) { height: 400px; grid-row: 1 / 3; grid-column: 1; margin-top: 0; }
    .photo-grid__item:nth-child(2) { height: 260px; grid-column: 2; grid-row: 1; margin-top: 0; }
    .photo-grid__item:nth-child(3) { height: 260px; grid-column: 3; grid-row: 1; margin-top: 0; }
    .photo-grid__item:nth-child(4) { height: 260px; grid-column: 2; grid-row: 2; margin-top: 120px; }
    .photo-grid__item:nth-child(5) { height: 380px; grid-column: 3; grid-row: 2; margin-top: 90px; }
    .photo-grid__item:nth-child(6) { grid-column: 1; grid-row: 3; }
    .photo-grid__item:nth-child(7) { display: block; grid-column: 2; grid-row: 3; }
  
    /* Managed CTA */
    .managed-cta { margin-left: 0; margin-right: 0; }
  }
  
  
  /* =============================================================
     ██  Utility: prevent zoom on input focus (iOS)
     ============================================================= */
  @media (max-width: 860px) {
    input, textarea, select {
      font-size: 16px !important;
    }
  }