/* =============================================================
   SEEN — Complete Design System
   Fonts: Inter, Caveat, Noto Sans
   Colors: Navy #1A1B4E · Gold #D9A441 · Muted #5C6672
   ============================================================= */

/* ----------------------------------------------------------
   TOKENS
   ---------------------------------------------------------- */
   :root {
    --navy:        #1A1B4E;
    --navy-deep:   #141540;
    --navy-mid:    #22246a;
    --gold:        #D9A441;
    --gold-lt:     #D0B889;
    --gold-grad:   linear-gradient(90deg, #D9A441 0%, #D0B889 87%);
    --navy-grad:   linear-gradient(90deg, #1A1B4E 0%, #3C3EB4 100%);
    --text-muted:  #5C6672;
    --text-white70: rgba(255,255,255,0.70);
    --text-white50: rgba(255,255,255,0.50);
    --white:       #FFFFFF;
    --off-white:   #F8F8FB;
    --border:      rgba(26,27,78,0.10);
  
    --font-inter:  'Inter', sans-serif;
    --font-caveat: 'Caveat', cursive;
    --font-noto:   'Noto Sans', sans-serif;
  
    --navbar-h: 96px;
    --ease:        cubic-bezier(.22,1,.36,1);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
  
    --r-pill: 40300232px;
    --r-xl:   24px;
    --r-lg:   16px;
    --r-md:   12px;

  }
  
  /* ----------------------------------------------------------
     RESET
     ---------------------------------------------------------- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: var(--font-inter);
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
    /* opacity: 0; */
    transition: opacity 0.3s ease;
  }

  body.loaded {
    opacity: 1;
  }

  .preloader {
    position: fixed;
    inset: 0;
    background: var(--white, #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    gap: 28px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: var(--navy, #0f172a);
    animation: preloader-spin 1.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.preloader__ring--2 {
    inset: 10px;
    border-top-color: transparent;
    border-right-color: var(--navy, #0f172a);
    opacity: 0.5;
    animation-duration: 0.9s;
    animation-direction: reverse;
}

.preloader__ring--3 {
    inset: 20px;
    border-top-color: var(--navy, #0f172a);
    opacity: 0.25;
    animation-duration: 1.4s;
}

.preloader__logo {
    width: 22px;
    height: 22px;
    color: var(--navy, #0f172a);
    animation: preloader-pulse 1.8s ease-in-out infinite;
}

.preloader__logo svg {
    width: 100%;
    height: 100%;
}

.preloader__label {
    font-family: var(--font-inter, sans-serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy, #0f172a);
    opacity: 0.4;
    margin: 0;
}

.preloader__dots::after {
    content: '';
    animation: preloader-dots 1.5s steps(4, end) infinite;
}

@keyframes preloader-spin {
    to { transform: rotate(360deg); }
}

@keyframes preloader-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.85); }
}

@keyframes preloader-dots {
    0%   { content: ''; }
    25%  { content: '.'; }
    50%  { content: '..'; }
    75%  { content: '...'; }
    100% { content: ''; }
}

  img  { max-width: 100%; display: block; height: auto; }
  a    { text-decoration: none; color: inherit; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; }
  ul,ol { list-style: none; }
  input,textarea { font-family: var(--font-inter); }
  
  /* ----------------------------------------------------------
     UTILITY
     ---------------------------------------------------------- */
  .text-white     { color: var(--white) !important; margin-top: 20px !important;}
  .text-white-70  { color: rgba(239, 234, 213, 0.70) !important; }
  .text-white-50  { color: var(--text-white50) !important; }
  .text-gold      { color: var(--gold) !important; }
  .text-gold-grad {
    color: #D9A441;
  }
  .mt-24 { margin-top: 24px; }
  
  .section-body-p{
    color: #5C6672;
    padding-top: 35px;
    font-family: "Poppins";
    font-size: 15px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 170% */
  }
  
  /* Caveat italic helper */
  .caveat-italic {
    font-family: var(--font-caveat);
    font-style: italic;
    font-weight: 500;
  }
  .inline-svg { display: inline; vertical-align: middle; margin-left: 6px; }
  #made-section{
    transform: rotate(-7.105deg);
    font-size:24px;
  }
  #for-made-section{
    font-size:24px;
    transform: rotate(-5.595deg) !important; 

  }
  /* ----------------------------------------------------------
     KEYFRAMES
     ---------------------------------------------------------- */
  @keyframes fadeUp    { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:none} }
  @keyframes scaleIn   { from{opacity:0;transform:scale(.88)} to{opacity:1;transform:scale(1)} }
  @keyframes floatY    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
  @keyframes floatCard { 0%,100%{transform:translateY(0)rotate(-1deg)} 50%{transform:translateY(-8px)rotate(0)} }
  @keyframes badgePop  { from{opacity:0;transform:scale(.7)translateY(8px)} to{opacity:1;transform:scale(1)translateY(0)} }
  @keyframes spinSlow  { from{transform:rotate(0)} to{transform:rotate(360deg)} }
  @keyframes shimmer   { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
  
  /* ----------------------------------------------------------
     SCROLL REVEAL
     ---------------------------------------------------------- */
  .reveal, .reveal-left, .reveal-scale {
    max-width: 35%;
    opacity: 0;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  
  .reveal-right{
    max-width: 55%;
    opacity: 0;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  
  .reveal{
    max-width: 55%;
    opacity: 0;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  
#region-h2{
  font-size: 44px;
  color: #1A1B4E !important;
  letter-spacing: 1.5px !important;
  margin-top: 20px;
}

#region-verified{
  color: #D9A441 !important;
  padding-left: 16px;
  font-size: 38px;
}

.region-right-wrapper{
  display:flex;
  padding:60px;
  gap:70px;
}
  
  .reveal       { transform: translateY(40px); }
  .reveal-left  { transform: translateX(-40px); }
  .reveal-right { transform: translateX(40px); }
  .reveal-scale { transform: scale(.9); transition: opacity .65s var(--ease), transform .65s var(--ease-spring); }
  .reveal.visible,.reveal-left.visible,.reveal-right.visible,.reveal-scale.visible {
    opacity: 1; transform: none;
  }
  .delay-1{transition-delay:.1s} .delay-2{transition-delay:.2s} .delay-3{transition-delay:.3s}
  .delay-4{transition-delay:.4s} .delay-5{transition-delay:.5s} .delay-6{transition-delay:.6s}
  
  #creator-right {
    height: 450px;
    flex-shrink: 0;
    align-self: stretch;
    background: url("/images/illustrations/creator.jpg") lightgray 50% / cover no-repeat;
    border-radius: 24px;
    margin: auto;
    position: relative;
  }
  
  
  #region-form-right{
    max-width:45% !important;
  }
  
  
  /* ----------------------------------------------------------
     EYEBROW / LABELS
     ---------------------------------------------------------- */
  .eyebrow {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
  }
  .eyebrow--gold  { color: var(--gold); }
  .eyebrow--navy  { 
    color: #1FA58A;
    opacity: .55; 
    font-family: "Noto Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 8px; /* 150% */
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  
  .eyebrow--white { color: rgba(255,255,255,.6); }
  
  /* ----------------------------------------------------------
     TYPOGRAPHY SCALES
     ---------------------------------------------------------- */
  .section-h2 {
    font-family: var(--font-inter);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: black;
    margin-bottom: 20px;
    margin-top: 35px;
    animation: fadeUp .7s var(--ease) .18s both;
  }
  .section-body {
    font-family: var(--font-inter);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
  }

  .section-body-brand{
    font-size: 15px;
    color: #D9A441;
  }

  .section-h2-creators{
    margin-top: 25px !important;
  }
  .section-wrap {
    max-width: auto;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  /* ----------------------------------------------------------
     BUTTONS — global
     ---------------------------------------------------------- */
  .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 28px;
    border-radius: var(--r-pill);
    background: linear-gradient(90deg, #D9A441 0%, #D0B889 86.64%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: transform .25s var(--ease-spring), box-shadow .25s;
  }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(217,164,65,.45); }
  .btn-gold:active { transform: translateY(0); }
  
  .btn-blue-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--r-pill);
    background: #1A1B4E;
    box-shadow: 0 4px 12px rgba(217,164,65,.3);
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    transition: transform .25s var(--ease-spring), box-shadow .25s;
  }
  .btn-gold-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--r-pill);
    background: linear-gradient(to right, #D9A441, #D0B889);
    box-shadow: 0 4px 12px rgba(217,164,65,.3);
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    transition: transform .25s var(--ease-spring), box-shadow .25s;
  }
  .btn-gold-sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(217,164,65,.4); }
  
  .btn-join-creator-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--r-pill);
    background: #1A1B4E;
    box-shadow: 0 4px 12px rgba(217,164,65,.3);
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    transition: transform .25s var(--ease-spring), box-shadow .25s;
  }
  .btn-join-creator-sm:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26, 27, 78, 0.35); }
  
  .community-arrow{
    position:absolute;
    bottom: 35px;
    right: 38px;
    z-index: 100;
  }
  .btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    border: 1.2px solid rgba(255,255,255,.20);
    background: var(--navy-grad);
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    transition: transform .25s var(--ease-spring), box-shadow .25s;
  }
  .btn-navy:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,27,78,.3); }
  
  .btn-outline-navy {
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    transition: background .2s, color .2s;
  }
  .btn-outline-navy:hover { background: var(--navy); color: var(--white); }
  
  /* ----------------------------------------------------------
     ████  NAVBAR
     ---------------------------------------------------------- */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--navbar-h);
    padding: 0 60px;
    background: var(--white);
    display: flex;
    align-items: center;
    transition: box-shadow .3s var(--ease);
  }
  .navbar.scrolled { box-shadow: 0 2px 20px rgba(26,27,78,.09); }
  
  .navbar-inner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  /* Logo */
  .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform .3s var(--ease-spring);
  }
  .nav-logo:hover { transform: scale(1.05); }
  .nav-logo svg path { stroke: var(--navy); }
  
  /* Links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
    justify-content: center;
  }
  .nav-link {
    font-family: var(--font-inter);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--navy);
    white-space: nowrap;
    position: relative;
    transition: opacity .2s;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: width .3s var(--ease);
  }
  .nav-link:hover::after, .nav-link.active::after { width: 100%; }
  
  /* CTA */
  .nav-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
  
  .nav-login {
    font-family: var(--font-inter);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s;
  }
  .nav-login:hover { opacity: .7; }
  
  .btn-join-now {
    display: flex;
    align-items: center;
    padding: 11px 28px;
    border-radius: var(--r-pill);
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-inter);
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .3s, transform .2s var(--ease-spring), box-shadow .3s;
  }
  .btn-join-now:hover { background: #2a2c80; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(26,27,78,.25); }
  
  /* Hamburger */
  .hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  /* ----------------------------------------------------------
     ████  MOBILE MENU
     ---------------------------------------------------------- */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: #1F4468;
    border-radius: 0 0 20px 20px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    /* display: flex; */
    flex-direction: column;
    padding: 20px 28px;
    overflow-y: auto;
    height: 450px;
  }
  .mobile-overlay.open { transform: translateX(0); }
  
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .mobile-logo { color: var(--white); font-family: var(--font-inter); font-size: 22px; font-weight: 700; }
  .mobile-close {
    /* width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1); */
    color: var(--white);
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .mobile-close:hover { background: rgba(255,255,255,.2); }
  
  .mobile-nav-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
  .mobile-nav-item {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.90);
    padding: 8px 0;
    /* border-bottom: 1px solid rgba(255,255,255,.08); */
    transition: color .2s;
  }

  .mobile-login-link{
    display: flex;
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.90);
    padding: 8px 0;
    transition: color .2s;
    text-decoration-line: underline;

  }
  .mobile-nav-item:hover { color: var(--gold); }
  
  .mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
  .mobile-btn-gold {
    display: flex; align-items: center; justify-content: center;
    padding: 15px 24px; border-radius: var(--r-pill);
    background: #D9A441; color: var(--white);
    font-family: var(--font-inter); font-size: 16px; font-weight: 600;
  }
  .mobile-btn-navy {
    display: flex; align-items: center; justify-content: center;
    padding: 15px 24px; border-radius: var(--r-pill);
    background: var(--navy-grad); color: var(--white);
    font-family: var(--font-inter); font-size: 16px; font-weight: 600;
  }
  
  /* ----------------------------------------------------------
     ████  SECTION 1 — HERO
     ---------------------------------------------------------- */
  .s-hero {
    padding-top: var(--navbar-h);
    min-height: 100vh;
    background: var(--white);
    overflow: hidden;
  }
  
  .hero-wrap {
    max-width: 1728px;
    margin: 0 auto;
    padding: 60px 60px 80px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
  
  /* --- LEFT --- */
  .hero-left {
    flex: 0 0 560px;
    width: 560px;
    padding-top: 20px;
  }
  
  .hero-tagline-row {
    margin-bottom: 4px;
    /* Figma: rotate(-10.355deg) */
    display: block;
    width: fit-content;
    transform: rotate(-10.355deg);
    transform-origin: left center;
    animation: fadeUp .6s var(--ease) .05s both;
  }
  .hero-tagline {
    font-family: var(--font-caveat);
    font-size: 54px;
    font-weight: 400;
    line-height: 1;
    color: var(--gold);
    display: block;
  }
  
  #create-freely{
    font-size: 32px !important;
  }
  
  .hero-h1 {
    font-family: var(--font-inter);
    font-size: 76px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-top: 20px;
    animation: fadeUp .7s var(--ease) .18s both;
  }

  .hero-h1-tablet {
    font-family: var(--font-inter);
    font-size: 76px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-top: 20px;
    animation: fadeUp .7s var(--ease) .18s both;
  }
  .hero-h1-together {
    background: linear-gradient(273deg, #D9A441 21.23%, #34369D 106.99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-h1-dot {
    background: linear-gradient(273deg, #D9A441 21.23%, #34369D 106.99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-underline-svg {
    margin-top: -6px;
    margin-left: 180px;
    margin-bottom: 25px;
    width: 260px;
    animation: fadeUp .7s var(--ease) .28s both;
  }
  .hero-underline-svg svg { width: 100%; height: auto; }
  
  .hero-underline-together{
    margin: 0;
    position: absolute;
    right: 40px;
    bottom: -20px;
    width: 260px;
    animation: fadeUp .7s var(--ease) .28s both;
  }

  .hero-body {
    font-family: var(--font-inter);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    margin-top: 24px;
    max-width: 480px;
    animation: fadeUp .7s var(--ease) .35s both;
  }
  
  .hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin-top: 32px;
    animation: fadeUp .7s var(--ease) .45s both;
  }
  
  /* Proof row */
  .hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    animation: fadeUp .7s var(--ease) .55s both;
  }
  .hero-proof-avatars { display: flex; align-items: center; }
  .proof-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2.5px solid var(--white);
    object-fit: cover;
    margin-left: -12px;
    transition: transform .2s var(--ease-spring);
  }
  .proof-avatar:first-child { margin-left: 0; }
  .proof-avatar:hover { transform: translateY(-4px) scale(1.1); z-index: 2; }
  .hero-proof-text {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(26,27,78,.75);
  }
  
  /* Trusted logos */
  .hero-trusted { margin-top: 40px; animation: fadeUp .7s var(--ease) .65s both; }
  .hero-trusted-label {
    font-family: var(--font-noto);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  .hero-logos-row {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
  }
  .brand-logo {
    height: 56px;
    width: 56px;
    object-fit: contain;
    /* opacity: .75; */
    filter: grayscale(.15);
    transition: opacity .2s, filter .2s;
  }
  .brand-logo:hover { opacity: 1; filter: none; }
  .brand-logo--circle { height: 32px; }
  .brand-logo--text   { height: 18px; }
  
  /* --- RIGHT collage --- */
  .hero-right {
    flex: 1;
    position: relative;
    min-height: 620px;
  }
  
  /* Main large blob image */
  .hero-img-main {
    position: absolute;
    top: -30px;
    left: 100px;
    /* animation: fadeUp .9s var(--ease) .3s both, floatY 6s ease-in-out 1.2s infinite; */
  }
  
  
  /* New collab invite badge */
  .badge-collab {
    position: absolute;
    top: 20px; right: -16px;
    display: flex; align-items: center; gap: 6px;
    padding: 12px 16px;
    border-radius: 18px;
    background: var(--gold);
    color: #1A1B4E;
    line-height: 28.825px;
    font-family: var(--font-inter);
    font-size: 13px; font-weight: 600;
    box-shadow: 0 4px 16px rgba(217,164,65,.4);
    white-space: nowrap;
    /* animation: badgePop .6s var(--ease-spring) 1.1s both; */
  }
  
  /* Content idea card */
  .hero-card-idea {
    position: absolute;
    top: 210px; left: 10px;
    padding: 14px 18px;
    border-radius: var(--r-lg);
    background: var(--white);
    box-shadow: 0 8px 32px rgba(26,27,78,.12);
    min-width: 230px;
    z-index:20;
    /* animation: fadeUp .8s var(--ease) .7s both, floatCard 5s ease-in-out 1.5s infinite; */
  }
  
  .hero-card-idea-brands {
    position: absolute;
    top:-50px;
    left: 380px;
    padding: 14px 15px;
    border-radius: var(--r-lg);
    background: var(--white);
    box-shadow: 0 8px 32px rgba(26,27,78,.12);
    min-width: 250px;
    z-index:20;
  }
  .brands-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .brands-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .brands-in-progress {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 999px;
    background-color: #D6EFE7;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .brands-in-progress-span {
    color: #1FA58A;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    /* text-transform: capitalize; */
  }
  
  
  /* Shared card styles */
  .card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
  
  /* Creator Match Card */
  .card-creators {
    bottom: -15px;
    left: -80px;
    min-width: 260px;
  }
  .creator-handle {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
  }
  
  .creator-tags {
    font-size: 10px;
    color: #6b7280;
  }
  
  
  
  .creator-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0;
  }
  
  .creator-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .creator-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .creator-info {
    display: flex;
    flex-direction: column;
  }
  
  
  .view-all {
    font-size: 13px;
    font-weight: 600;
    color: #1FA58A;
    text-decoration: none;
  }
  
  .view-all:hover {
    text-decoration: underline;
  }
  
  .more-than-platform{
    color: #D9A441 !important;
    padding: 0px;
    font-size: 38px;
  }
  
  .section-h2-community{
    margin-top: -5px !important;
    margin-bottom: 20px !important;  
  }
  
  .section-body-community{
    color: #5C6672;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    max-width:80%;
  }
  
  .section-body-content{
    /* font-size: */
    color: #5C6672;
    font-family: "Noto Sans";
    letter-spacing: 1.3px !important;
  
  }
  #line-under-freedom{
    width:180px;
    margin-top:-35px;
    margin-left: 0px;
  }
  
  #line-under-community{
    width:150px;
    margin-top:-25px;
    margin-left: 100px;
  }
  
  #line-under-media{
    width:220px;
    margin-top:-35px;
    margin-left: 0px;
  }
  
  .card-label { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
  .card-title { font-size: 14px; font-weight: 700; color: black; margin-bottom: 8px; }
  .card-tiny-avatars { display: flex; align-items: center; }
  .card-tiny-avatars img {
    width: 24px; height: 24px; border-radius: 50%;
    border: 2px solid var(--white); object-fit: cover;
    margin-left: -6px;
  }

  .card-title-special{
    margin: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .card-tiny-avatars img:first-child { margin-left: 0; }
  .card-more { font-size: 12px; color: var(--text-muted); margin-left: 6px; }
  
  /* Man image */
  .hero-img-man {
    position: absolute;
    top: 300px;
    left: -20px;
    z-index: 10;
    /* animation: fadeUp .9s var(--ease) .5s both, floatY 7s ease-in-out 2s infinite; */
  }
  
  /* Woman image */
  .hero-img-woman {
    position: absolute;
    top: 320px;
    left: 270px;
    /* animation: fadeUp .9s var(--ease) .7s both, floatY 8s ease-in-out 2.5s infinite; */
  }
  
  /* Brand match badge */
  .badge-match {
    position: absolute;
    bottom: 0px; right: -20px;
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    border-radius: var(--r-lg);
    background: var(--white);
    box-shadow: 0 8px 28px rgba(26,27,78,.14);
    /* animation: badgePop .6s var(--ease-spring) 1.4s both; */
  }
  .match-lbl   { font-size: 11px; color: var(--text-muted); }
  .match-brand { font-size: 13px; font-weight: 700; color: black; }
  .match-pct   { background: #1FA58A; color: var(--white); font-size: 13px; font-weight: 700; padding: 5px 9px; border-radius: 25px; }
  
  /* Decorative SVGs */
  .hero-deco-plus  { 
    position: absolute; 
    top: 80px; 
    left: 40px; 
    /* animation: floatY 5s ease-in-out .3s infinite;  */
  }
  .hero-deco-curve { 
    position: absolute; 
    top: 300px; 
    right: -30px; 
    /* animation: floatY 6s ease-in-out .8s infinite;  */
  }
  .hero-deco-arrow { 
    position: absolute; 
    bottom: -10px; 
    left: 120px; 
    /* animation: floatY 7s ease-in-out .2s infinite;  */
  }
  
  /* ----------------------------------------------------------
     ████  SECTION 2 — BUILT FOR CREATORS
     ---------------------------------------------------------- */
  .s-creators {
    padding: 100px 0;
    background: #F5F5F5;
  }
  .s-creators .section-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
  }
  
  .creators-left { flex: 0 0 360px; }
  .creators-right { flex: 1; display: flex; flex-direction: column; gap: 28px; }
  
  /* UI mock card */
  .mock-card {
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: 0 4px 40px rgba(26,27,78,.1);
    overflow: hidden;
    max-width: 380px;
  }
  .mock-card-header {
    background: #F0F0F6;
    padding: 12px 16px;
    display: flex; gap: 6px;
  }
  .mock-dot { width: 10px; height: 10px; border-radius: 50%; }
  .mock-dot.red    { background: #FF5F57; }
  .mock-dot.yellow { background: #FEBC2E; }
  .mock-dot.green  { background: #28C840; }
  .mock-card-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
  
  .mock-profile-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
  .mock-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#D9A441,#D0B889); flex-shrink: 0; }
  .mock-text-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; }
  .mock-line { height: 8px; border-radius: 4px; background: #E8E8F2; }
  .mock-line.w60 { width: 60%; }
  .mock-line.w40 { width: 40%; }
  .mock-line.w30 { width: 30%; }
  .mock-line.w50 { width: 50%; }
  .mock-line.thin { height: 6px; }
  .mock-line.label-line { height: 7px; margin-bottom: 6px; }
  
  .mock-field { display: flex; flex-direction: column; gap: 2px; }
  .mock-input { height: 32px; border-radius: 8px; background: #FFF; border: 0.8px solid #E5E7EB;  }
  .mock-textarea { height: 60px; border-radius: 8px; background: #FFF; border: 0.8px solid #E5E7EB;  }
  .mock-btn {
    display: block; text-align: center;
    padding: 10px; border-radius: var(--r-pill);
    background: var(--gold-grad);
    color: var(--white); font-size: 13px; font-weight: 600;
    margin-top: 4px;
  }
  
  /* Feature list */
  .creators-features { display: flex; flex-direction: column; gap: 14px; }
  .feature-item {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-inter);
    font-size: 15px; font-weight: 500;
    color: var(--navy);
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: border-color .2s, box-shadow .2s;
  }
  .feature-item:hover { border-color: rgba(217,164,65,.4); box-shadow: 0 2px 12px rgba(217,164,65,.12); }
  .feature-check {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(217,164,65,.12);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; flex-shrink: 0;
  }
  
  /* ----------------------------------------------------------
     ████  SECTION 3 — BRANDS & AGENCIES  (dark)
     ---------------------------------------------------------- */
  .s-brands {
    padding: 100px 0;
    background: var(--navy-deep);
  }
  .s-brands__inner {
    display: flex;
    align-items: center;
    gap: 80px;
  }
  .brands-left { flex: 1; }
  .brands-right {
    flex: 0 0 900px;
    position: relative;
    display: flex;
    justify-content: center;
  }
  .brands-checklist {
    display: flex; flex-direction: column; gap: 14px;
    margin-top: 32px;
  }
  .brands-checklist li {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-inter);
    font-size: 15px; color: #FFF;
  }
  
  /* Creator card mock */
  .creator-card-mock {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-xl);
    padding: 24px;
    backdrop-filter: blur(12px);
    animation: fadeUp .9s var(--ease) .4s both;
  }
  .ccm-top { display: flex; gap: 16px; margin-bottom: 20px; }
  .ccm-avatar-wrap { flex-shrink: 0; }
  .ccm-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
  .ccm-badge {
    display: inline-block; padding: 4px 10px;
    border-radius: 20px; background: rgba(217,164,65,.2);
    color: var(--gold); font-size: 11px; font-weight: 600;
    margin-bottom: 6px;
  }
  .ccm-name  { font-size: 16px; font-weight: 700; color: var(--white); }
  .ccm-handle { font-size: 13px; color: var(--text-white50); }
  .ccm-stats { display: flex; gap: 0; }
  .ccm-stat { flex: 1; text-align: center; }
  .ccm-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.08); }
  .ccm-stat-val { display: block; font-size: 20px; font-weight: 700; color: var(--white); }
  .ccm-stat-lbl { display: block; font-size: 11px; color: var(--text-white50); margin-top: 2px; }
  
  /* Emoji bubbles */
  .brands-emoji-row {
    display: flex; gap: 12px; margin-top: 20px;
    justify-content: center; flex-wrap: wrap;
  }
  .emoji-bubble {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    font-size: 22px;
    animation: floatY 4s ease-in-out infinite;
  }
  .emoji-bubble--sm  { width: 36px; height: 36px; font-size: 18px; animation-delay: .5s; }
  .emoji-bubble--lg  { width: 52px; height: 52px; font-size: 26px; animation-delay: 1s; }
  
  /* ----------------------------------------------------------
     ████  SECTION 4 — BUILT FOR THE REGION
     ---------------------------------------------------------- */
  .s-region {
    padding: 100px 0px 100px 30px;
    background: #F5F5F5;
  }
  .s-region__inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
  }
  .region-left { flex: 1; max-width:60%}
  .region-right { flex: 0 0 400px; }
  
  /* Region feature items */
  .region-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
  .region-feature { font-family: "Poppins"; display: flex; gap: 16px; align-items: flex-start; }
  .rf-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border: 1.201px solid rgba(31, 165, 138, 0.30);
    border-radius: 50%;
    background: rgba(31, 165, 138, 0.15);
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }
  .rf-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1B4E;
    margin-bottom: 4px; 
  }
  .rf-body  { font-size: 12px; color: #D9A441; line-height: 1.6; }
  
  /* Region form mock */
  .region-form-mock {
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: 0 4px 40px rgba(26,27,78,.10);
    padding: 28px;
    border: 1px solid var(--border);
  }
  .rfm-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
  .rfm-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .rfm-field label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; }
  .rfm-input { height: 38px; border-radius: 8px; background: var(--off-white); border: 1.5px solid var(--border); }
  .rfm-input-row { display: flex; align-items: center; gap: 8px; }
  .rfm-input--flex { flex: 1; }
  .rfm-tag { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
  .rfm-tag--green { background: rgba(34,197,94,.15); color: #16A34A; }
  .rfm-tag--gold  { background: rgba(217,164,65,.15); color: var(--gold); }
  
  /* ----------------------------------------------------------
     ████  SECTION 5 — COMMUNITY
     ---------------------------------------------------------- */
  .s-community {
    padding: 100px 0 80px;
    background: #FFF;
  }
  .s-community__inner {
    display: flex;
    align-items: center;
    gap: 80px;
  }
  .community-left  { flex: 1; max-width:50% !important; }
  .community-right { flex: 0 0 360px; max-width:50% !important; }
  
  /* Photo collage */
  .community-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    margin-top: 32px;
    max-width: 340px;
  }
  .comm-photo { border-radius: var(--r-xl); overflow: hidden; }
  .comm-photo img { width: 100%; height: 100%; object-fit: cover; }
  .comm-photo--1 { grid-row: span 2; height: 220px; }
  .comm-photo--2 { height: 100px; }
  .comm-photo--3 { height: 104px; }
  
  /* CTA card */
  .community-cta-card {
    background: #EFEAD5;
    border-radius: var(--r-xl);
    padding: 36px 32px;
    width: 500px;
    position: relative;
  }
  .cta-card-h {
    font-family: var(--font-inter);
    font-size: 28px; font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 14px;
    padding-top: 12px;
    padding-left: 15px;
  }
  .cta-card-body {
    font-size: 15px; color: var(--text-muted);
    line-height: 1.65; margin-bottom: 24px;
    color: #5C6672;
    padding: 0px 15px;
    
  }
  .cta-card-btns { display: flex;  gap: 10px; padding:10px 15px 15px;}
  
  /* ----------------------------------------------------------
     ████  SECTION 6 — CONTENT THAT STANDS OUT
     ---------------------------------------------------------- */
  .s-content {

    padding: 100px 0 460px;
    background: #F5F5F5;
  }
  
  .section-h2-content{
    font-family: "Nunito";
    font-size: 47px;
    color: #1A1B4E !important;
    letter-spacing: 2px !important;
    margin-top: 20px;
    max-width: 100% !important;
  }
  .content-header { margin-bottom: 48px; }
  
  /* Photo grid */
  .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }
  .cg-item {
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    height: 240px;
    background: #E8EAF2;
  }
  .cg-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
  .cg-item:hover img { transform: scale(1.05); }
  .cg-item--tall  { grid-row: span 2; height: auto; min-height: 492px; }
  .cg-item--wide  { grid-column: span 2; }
  
  .cg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,27,78,.4) 0%, transparent 60%);
  }
  .cg-label {
    position: absolute; bottom: 16px; left: 16px;
    font-family: var(--font-inter);
    font-size: 16px; font-weight: 700;
    color: var(--white);
    background: rgba(26,27,78,.6);
    padding: 4px 10px; border-radius: 8px;
    backdrop-filter: blur(4px);
  }
  
  /* ----------------------------------------------------------
     ████  SECTION 7 — MANAGED / WANT US TO HANDLE
     ---------------------------------------------------------- */
  .s-managed {
    padding: 100px 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
  }
  .s-managed__inner {
    display: flex;
    align-items: center;
    gap: 80px;
  }
  .managed-left  { flex: 1; }
  .managed-right { flex: 0 0 300px; display: flex; justify-content: center; align-items: center; }
  .managed-sub { font-size: 15px; line-height: 1.6; margin-top: 20px; }
  
  .managed-deco-circle {
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 2px solid rgba(217,164,65,.25);
    position: relative;
  }
  .managed-deco-circle::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 2px solid rgba(217,164,65,.15);
  }
  .managed-deco-circle::after {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    background: rgba(217,164,65,.08);
  }
  
  /* ----------------------------------------------------------
     ████  SECTION 8 — CONTACT
     ---------------------------------------------------------- */
  .s-contact {
    padding: 100px 0;
    background: var(--white);
  }
  .s-contact__inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
  }
  .contact-info { flex: 0 0 360px; }
  .contact-form-wrap { flex: 1; }
  
  /* Contact details */
  .contact-details {
    display: flex; flex-direction: column; gap: 14px;
    margin-top: 8px; margin-bottom: 32px;
  }
  .contact-details li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--text-muted);
  }
  
  /* Social */
  .contact-social-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 12px; }
  .social-icons { display: flex; gap: 10px; }
  .social-icon {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s var(--ease-spring), opacity .2s;
  }
  .social-icon:hover { transform: translateY(-2px); opacity: .85; }
  .social-icon--ig   { background: radial-gradient(circle at 30% 107%, #fdf497 0%,#fd5949 45%,#d6249f 60%,#285aeb 90%); }
  .social-icon--tt   { background: #010101; }
  .social-icon--snap { background: #FFFC00; }
  
  /* Contact form */
  .contact-form {
    background: #F5F3F0;
    border-radius: var(--r-xl);
    padding: 36px;
    border: 1.2px solid #E5E7EB;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 7px;  }
  .form-group:last-of-type { margin-bottom: 0; }
  .form-group label {
    font-family: var(--font-inter);
    font-size: 13px; font-weight: 600;
    color: #000;
    /* text-transform: uppercase;  */
    /* letter-spacing: .8px; */
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--r-md);
    border: 1.2px solid #E5E7EB;
    background: var(--white);
    font-family: var(--font-inter);
    font-size: 14px; color: var(--navy);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(217,164,65,.15);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(0, 0, 0, 0.50); }
  
  /* Role pills */
  .role-pills { display: flex; gap: 8px; flex-wrap: wrap; }
  .role-pill {
    padding: 8px 18px;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: var(--font-inter);
    font-size: 13px; font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
  }
  .role-pill.active, .role-pill:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  
  .btn-submit { width: 100%; justify-content: center; margin-top: 24px; }
  
  .form-success {
    padding: 14px 18px;
    border-radius: var(--r-md);
    background: rgba(34,197,94,.1);
    color: #16A34A;
    font-size: 14px; font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(34,197,94,.2);
  }
  
  /* ----------------------------------------------------------
     ████  FOOTER
     ---------------------------------------------------------- */
     .footer-bg { background: var(--c-navy-dark); }
    
     .footer-grid {
       display: grid;
       grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
       gap: 48px; padding: 64px 0 48px;
     }
     .footer-brand-desc { font-size: .83rem; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 240px; margin-bottom: 24px; }
     .footer-social { display: flex; gap: 8px; }
     .footer-social .social-btn { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
     .footer-social .social-btn:hover { background: var(--c-gold); border-color: var(--c-gold); color: #fff; }
     
     .footer-heading { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
     .footer-link { display: block; font-size: .83rem; color: rgba(255,255,255,.48); line-height: 2.2; transition: color .2s; }
     .footer-link:hover { color: var(--c-gold); }
     
     .footer-divider { height: 1px; background: rgba(255,255,255,.07); }
     .footer-bottom {
       display: flex; align-items: center; justify-content: space-between;
       flex-wrap: wrap; gap: 12px; padding: 24px 0;
     }
     .footer-copy { font-size: .76rem; color: rgba(255,255,255,.28); }
     .footer-bottom-links { display: flex; gap: 20px; }
     .footer-bottom-links .footer-link { line-height: 1; }
     
  
  
   
  /* ============================================================
     SECTION 2 — POLAROID GALLERY
     ============================================================ */
     .polaroid-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 10px 40px 0px;
      background: var(--white);
      font-family: var(--font-sans);
  }
   
  .polaroid-stage {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 560px;
      height: 340px;
  }
   
  /* Base polaroid card */
  .polaroid {
      position: absolute;
      background: var(--white);
      border-radius: 4px;
      box-shadow:
          0 6px 24px rgba(0,0,0,0.18),
          0 2px 6px rgba(0,0,0,0.08);
      padding: 10px 10px 44px 10px;
      width: 350px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
  }
   
  .polaroid:hover {
      box-shadow:
          0 16px 48px rgba(0,0,0,0.22),
          0 4px 10px rgba(0,0,0,0.1);
      z-index: 10 !important;
  }
   
  /* Photo area */
  .polaroid-photo {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #ddd;
      border-radius: 2px;
  }
   
  .polaroid-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }
   
  /* Caption below photo */
  .polaroid-footer {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 44px;
      display: flex;
      align-items: center;
      padding: 0 14px;
  }
   
  .polaroid-label {
      font-family: 'Segoe Script', 'Comic Sans MS', 'Brush Script MT', cursive;
      font-size: 13.5px;
      color: #D9A441;
      font-weight: 600;
      letter-spacing: 0.2px;
  }
   
  /* Individual polaroid positions & rotations */
  .polaroid--left {
      left: 0;
      top: 30px;
      transform: rotate(-8deg);
      z-index: 1;
      width: 205px;
  }
   
  .polaroid--center {
      left: 45%;
      top: 0;
      transform: translateX(-50%) rotate(4deg);
      z-index: 2;
      width: 210px;
  }
   
  .polaroid--right {
      right: 20px;
      top: 20px;
      transform: rotate(-6deg);
      z-index: 3;
      width: 215px;
  }
   
  /* Hover lift effect */
  .polaroid--left:hover  { transform: rotate(-8deg) translateY(-8px) scale(1.03); }
  .polaroid--center:hover { transform: translateX(-50%) rotate(-2deg) translateY(-8px) scale(1.03); }
  .polaroid--right:hover { transform: rotate(6deg) translateY(-8px) scale(1.03); }
   
  /* ============================================================
     RESPONSIVE TWEAKS
     ============================================================ */
  @media (max-width: 600px) {
      .cta-card {
          padding: 30px 24px 36px;
      }
      .cta-title {
          font-size: 23px;
      }
      .cta-actions {
          flex-direction: column;
          align-items: flex-start;
      }
   
      .polaroid-stage {
          width: 340px;
          height: 260px;
      }
      .polaroid--left,
      .polaroid--center,
      .polaroid--right {
          width: 155px;
      }
  }
  
  
  
  /* ============================================================
     PHOTO GRID SECTION
     photo-grid.css
     ============================================================ */
  
  .photo-grid-section {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #F5F5F5;
  }
  
  .photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 220px 200px 200px;
      gap: 8px;
      width: 100%;
      border-radius: 16px;
      padding-bottom: 30px;
  }
  
  /* ── Base cell ─────────────────────────────────────────────── */
  .photo-grid__item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      background: #d6d0c8;
  }
  
  .photo-grid__img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      display: block;
      transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .photo-grid__item:hover .photo-grid__img {
      transform: scale(1.06);
  }
  
  /* ── Grid placement ─────────────────────────────────────────── */
  
  /* Row 1, Col 1 — tall: spans rows 1–2 */
  .photo-grid__item:nth-child(1) {
      grid-column: 1;
      grid-row: 1;
      height: 450px;
    }
  
  /* Row 1, Col 2 */
  .photo-grid__item:nth-child(2) {
      grid-column: 2;
      grid-row: 1;
      height: 320px;
  }
  
  /* Row 1, Col 3 */
  .photo-grid__item:nth-child(3) {
      grid-column: 3;
      grid-row: 1;
      height: 320px;

  }
  
  /* Row 2, Col 2 */
  .photo-grid__item:nth-child(4) {
      grid-column: 2;
      grid-row: 2;
      margin-top: 100px;
      height: 320px;
  }
  
  /* Row 2–3, Col 3 — tall: spans rows 2–3 */
  .photo-grid__item:nth-child(5) {
      grid-column: 3;
      grid-row: 2 ;
      height: 450px;
      margin-top: 90px;
  }
  
  /* Row 3, Col 1 */
  .photo-grid__item:nth-child(6) {
      grid-column: 1;
      grid-row: 3;
  }
  
  /* Row 3, Col 2 */
  .photo-grid__item:nth-child(7) {
      grid-column: 2;
      grid-row: 3;
      height: 270px;
  }
  
  /* ── Text overlays ──────────────────────────────────────────── */
  .photo-grid__overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 12px 14px;
      gap: 2px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 50%);
      direction: rtl;
  }
  
  .photo-grid__overlay span {
      font-family: 'Tahoma', 'Arabic Typesetting', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      text-shadow: 0 1px 4px rgba(0,0,0,0.55);
      line-height: 1.5;
      letter-spacing: 0.2px;
  }
  
  .photo-grid__label {
      position: absolute;
      bottom: 12px;
      left: 14px;
      display: flex;
      flex-direction: column;
      gap: 1px;
  }
  
  .photo-grid__label-title {
      font-family: 'Georgia', serif;
      font-size: 15px;
      font-weight: 700;
      font-style: italic;
      color: #fff;
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
      letter-spacing: 0.3px;
  }
  
  .photo-grid__label-sub {
      font-family: 'Georgia', serif;
      font-size: 11px;
      font-style: italic;
      color: #D4933A;
      text-shadow: 0 1px 4px rgba(0,0,0,0.5);
      letter-spacing: 0.5px;
  }
  
  /* ── Responsive ─────────────────────────────────────────────── */
  @media (max-width: 520px) {
      .photo-grid {
          grid-template-rows: 160px 148px 148px;
          gap: 6px;
      }
      .photo-grid__overlay span { font-size: 11px; }
      .photo-grid__label-title  { font-size: 13px; }
      .photo-grid__label-sub    { font-size: 10px; }
  }
  
  
  /* ============================================================
     SITE FOOTER
     footer.css
     ============================================================ */
  
     .site-footer {
      background: #0f1535;
      color: #fff;
      padding: 44px 48px 40px;
      width: 100%;
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  
  .footer-inner {
      display: grid;
      grid-template-columns: 200px repeat(5, 1fr);
      gap: 24px 20px;
      max-width: 1280px;
      margin: 0 auto;
      align-items: start;
  }
  
  /* ── Brand column ─────────────────────────────────────────── */
  .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      text-decoration: none;
  }
  
  .footer-logo-name {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.2px;
  }
  
  .footer-copyright {
      font-size: 11.5px;
      color: rgba(239, 234, 213, 0.60);
      line-height: 1.55;
      margin-bottom: 22px;
  }
  
  /* Social icons */
  .footer-socials {
      display: flex;
      align-items: center;
      gap: 10px;
  }
  
  .social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.10);
      color: #b0b8d4;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      flex-shrink: 0;
  }
  
  .social-btn:hover {
      background: rgba(255, 255, 255, 0.18);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.2);
  }
  
  .social-btn svg {
      display: block;
  }
  
  /* ── Link columns ─────────────────────────────────────────── */
  .footer-col-title {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: 0.1px;
      line-height: 1.3;
  }
  
  .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
  }
  
  .footer-links a {
      font-size: 13px;
      color: rgba(239, 234, 213, 0.60);
      text-decoration: none;
      transition: color 0.18s;
      line-height: 1.35;
      display: inline-block;
  }
  
  .footer-links a:hover {
      color: #fff;
  }
  
  .footer-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-logo-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
  }
  /* ── Responsive ───────────────────────────────────────────── */
  @media (max-width: 1024px) {
      .footer-inner {
          grid-template-columns: 180px repeat(5, 1fr);
      }
  }
  
  @media (max-width: 900px) {
      .site-footer { padding: 36px 32px 32px; }
      .footer-inner {
          grid-template-columns: repeat(3, 1fr);
          gap: 32px 20px;
      }
  }
  
  @media (max-width: 560px) {
      .site-footer { padding: 32px 20px 28px; }
      .footer-inner {
          grid-template-columns: 1fr 1fr;
          gap: 28px 16px;
      }
  }
  
  
  .verif-card {
    background: #ffffff;
    border-radius: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 8px rgba(0,0,0,0.04);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .verif-title-row {
    padding: 18px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .verif-title-text {
    font-family: "Noto Sans";
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #6b7280;
    line-height: 1;
  }
  
  .verif-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    gap: 12px;
  }
  
  .verif-row--bordered {
    border-bottom: 1px solid #f3f4f6;
  }
  
  .verif-row-label {
    font-family: "Noto Sans";
    font-size: 13.5px;
    font-weight: 400;
    color: #1a1b4e;
    letter-spacing: -0.01em;
    line-height: 1.4;
  }
  
  .verif-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-weight: 500;
    border: 1px solid;
    border-radius: 20px;
    padding: 3px 11px 4px;
    white-space: nowrap;
    line-height: 1.4;
    letter-spacing: 0.01em;
    flex-shrink: 0;
  }
  
  .verif-footer {
    background-color: #FAF8F4;
    padding: 24px 24px 28px;
    border-top: 1px solid #f3f4f6;
    margin-top: 2px;
    border-radius: 0px 0px 14px 14px;
  }
  
  .verif-footer-text {
    font-size: 11px;
    color: #5C6672;
    line-height: 1.5;
    margin: 0;
  }
  
  
  /* ============================================================
     MANAGED SERVICES SECTION
     managed-services.css
     ============================================================ */
  
  
  .managed-section {
      position: relative;
      background: #1A1B4E;
      width: 100%;
      padding: 100px 56px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  /* ── Decorative circles ───────────────────────────────────── */
  .managed-deco {
      position: absolute;
      top: 0;
      right: 0;
      width: 380px;
      height: 380px;
      pointer-events: none;
  }
  .managed-deco2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 380px;
    height: 380px;
    pointer-events: none;
  }
  
  .managed-deco-inner {
      position: absolute;
      width: 450px;
      height: 450px;
      top: 20px;
      right: -140px;
      border-radius: 50%;
      background: #1F4468;
      opacity: 0.6;
  }
  
  .managed-deco-inner2{
    position: absolute;
    width: 320px;
    height: 320px;
    bottom: -110px;
    left: -50px;
    border-radius: 50%;
    opacity: 0.1;
    background: #1FA58A;
  }
  
  /* ── Content ──────────────────────────────────────────────── */
  .managed-content {
      position: relative;
      z-index: 2;
      max-width: 420px;
  }
  
  .managed-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(31, 165, 138, 0.15);
      border: 1px solid rgba(31, 165, 138, 0.30);
      border-radius: 20px;
      padding: 6px 15px;
      margin-bottom: 20px;
  }
  
  .managed-badge span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #1FA58A;
  }
  .section-h2-manage{
      margin-top:0px !important;
      letter-spacing: 2px !important;
      font-size: 50px;
  }
  .section-h2-manage em{
    font-size: 45px;
  
  }
  .managed-title {
      font-size: 36px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 4px;
  }
  
  .managed-title-script {
      font-family: 'Caveat', cursive;
      font-size: 36px;
      font-weight: 600;
      color: #E8A020;
      line-height: 1.2;
      display: block;
      margin-bottom: 20px;
  }
  
  .managed-body {
      font-size: 13.5px;
      font-weight: 400;
      color: rgba(255,255,255,0.58);
      line-height: 1.7;
      max-width: 360px;
  }
  
  /* ── CTA Card ─────────────────────────────────────────────── */
  .managed-cta {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 14px;
      padding: 35px 30px 35px 35px;
      margin-top: 36px;
      margin-left: 60px;
      margin-right: 60px;
      gap: 16px;
  }
  
  .managed-cta-title {
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
      letter-spacing: 0.5px;
  }
  
  .managed-cta-sub {
      font-size: 12px;
      color: rgba(239, 234, 213, 0.60);
      font-weight: 400;
      line-height: 1.4;
      letter-spacing: 0.5px;
  
  }
  
  .managed-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #D9A441;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 11px 20px;
      border-radius: 30px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      letter-spacing: -0.1px;
      transition: background 0.2s, transform 0.15s;
  }
  
  .managed-cta-btn:hover {
      background: #d4901a;
      transform: translateY(-1px);
  }
  
  .section-body-manage{
    max-width: 51%;
    font-size: 18px !important;
  }
  
  /* ── Responsive ───────────────────────────────────────────── */
  @media (max-width: 640px) {
      .managed-section       { padding: 40px 28px; }
      .managed-title         { font-size: 26px; }
      .managed-title-script  { font-size: 26px; }
      .managed-cta           { flex-direction: column; align-items: flex-start; }
      .managed-deco-inner    { width: 145px; height: 145px; }
  }
  
  
  
  /* ================================================================
     Contact Section — "Let's start a conversation"
     File: public/css/contact-section.css  (or paste into app.css)
     ================================================================ */
  
  /* ── Fonts ───────────────────────────────────────────────────── */
  @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&family=Playfair+Display:ital@1&display=swap');
  
  /* ── CSS Variables ───────────────────────────────────────────── */
  :root {
      /* Brand palette — from screenshots */
      --c-bg:           #f5f5f0;          /* warm off-white page bg */
      --c-card-dark-bg: #1a1f3a;          /* navy card background   */
      --c-card-form-bg: #eeede8;          /* pale sand form card    */
      --c-gold:         #d4a843;          /* italic gold accent     */
      --c-navy:         #1a1f3a;          /* CTA button / role active */
      --c-body:         #2c2c2c;
      --c-muted:        #6b6b6b;
      --c-border:       #d9d8d3;
      --c-input-bg:     #ffffff;
      --c-input-focus:  #1a1f3a;
      --c-error:        #c0392b;
      --c-success-bg:   #eafaf1;
      --c-success:      #1a7a4a;
  
      /* Typography */
      --ff-sans:        'DM Sans', sans-serif;
      --ff-italic:      'Playfair Display', serif;
  
      /* Radii */
      --r-card:   20px;
      --r-input:  12px;
      --r-btn:    50px;
  
      /* Shadows */
      --shadow-card: 0 4px 30px rgba(0,0,0,.07);
      --shadow-form: 0 2px 12px rgba(0,0,0,.06);
  
      /* Transitions */
      --ease: cubic-bezier(.4,0,.2,1);
  }
  
  /* ── Section Wrapper ─────────────────────────────────────────── */
  .contact-section {
      background: #FFF;
      padding: 90px 24px 100px;
      font-family: var(--ff-sans);
      color: var(--c-body);
      position: relative;
      overflow: hidden;
  }
  
  /* subtle background texture dot pattern */
  .contact-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(26,31,58,.055) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
      z-index: 0;
  }
  
  .contact-section__inner {
      max-width: 960px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }
  
  /* ── Header ──────────────────────────────────────────────────── */
  .contact-section__header {
      text-align: center;
      margin-bottom: 52px;
      animation: fadeUp .65s var(--ease) both;
  }
  
  .contact-section__eyebrow {
      display: inline-block;
      font-size: .72rem;
      font-weight: 600;
      line-height: 16px; /* 150% */
      align-items: center;
      letter-spacing: .14em;
      color: #1FA58A;
      text-transform: uppercase;
      margin-bottom: 14px;
      border: 1px solid #E5E7EB;
      background: #FFF;
      padding: 10px 24px;
      border-radius: 40px;
  }
  
  .contact-section__title {
      font-family: "Poppins";
      font-size: clamp(2rem, 4.5vw, 2.75rem);
      font-weight: 700;
      color: #000;
      line-height: 1.15;
      margin: 0 0 16px;
      letter-spacing: -.02em;
  }
  
  .contact-section__title-italic {
      font-family: var(--ff-italic);
      font-style: italic;
      font-weight: 400;
      color: var(--c-gold);
  }
  
  .contact-section__subtitle {
      font-size: .97rem;
      color: #5C6672;
      line-height: 1.7;
      max-width: 450px;
      margin: 0 auto;
  }
  
  /* ── Body: two-column layout ─────────────────────────────────── */
  .contact-section__body {
      display: grid;
      grid-template-columns: 1fr 1.45fr;
      gap: 24px;
      align-items: start;
      animation: fadeUp .7s .15s var(--ease) both;
  }
  
  /* ================================================================
     LEFT DARK CARD
     ================================================================ */
  .contact-card {
      border-radius: var(--r-card);
      overflow: hidden;
  }
  
  .contact-card--dark {
      background: #1A1B4E;
      color: #fff;
      padding: 34px 40px 28px;
      display: flex;
      flex-direction: column;
      gap: 28px;
  }
  
  /* tagline */
  .contact-card__tagline-italic {
      /* font-family: var(--ff-italic); */
      font-style: italic;
      font-size: 1.6rem;
      font-weight: 200;
      /* color: var(--c-gold); */
      margin: 0 0 2px;
      line-height: 1.3;
  }
  
  .contact-card__tagline-bold {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin: 0 0 12px;
      letter-spacing: -.02em;
      line-height: 1.1;
  }
  
  .contact-card__description {
      font-size: .88rem;
      color: rgba(239, 234, 213, 0.65);
      line-height: 1.7;
      margin: 0;
  }
  
  /* info list */
  .contact-card__info-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
  }
  
  .contact-card__info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
  }
  
  .contact-card__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      min-width: 36px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255,255,255,.75);
      transition: background .25s var(--ease), color .25s var(--ease);
  }
  
  .contact-card__info-item:hover .contact-card__icon {
      background: rgba(212,168,67,.2);
      color: var(--c-gold);
  }
  
  .contact-card__info-label {
      display: block;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .1em;
      color: rgba(239, 234, 213, 0.50);
      text-transform: uppercase;
      margin-bottom: 2px;
  }
  
  .contact-card__info-value {
      display: block;
      font-size: .9rem;
      font-weight: 500;
      color: #EFEAD5;
      text-decoration: none;
      transition: color .2s var(--ease);
  }
  
  a.contact-card__info-value:hover {
      color: var(--c-gold);
  }
  
  
  .contact-section-left-flex{
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  
  /* follow block */
  .contact-card__follow {
      background: #FFF;
      border: 1.2px solid #E5E7EB;
      border-radius: 35px;
      padding: 20px 40px 0px 40px;
      align-items: center;
      justify-content: center;
  }
  
  .contact-card__follow-label {
      font-size: 17px;
      font-weight: 600;
      color: #000;
      margin: 0 0 21px;
      letter-spacing: .02em;
  }
  
  .contact-card__socials {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      padding-bottom: 20px;
  }
  
  /* Social icon buttons */
  .social-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 14px;
      text-decoration: none;
      transition: transform .25s var(--ease), opacity .25s var(--ease),
                  box-shadow .25s var(--ease);
      position: relative;
      overflow: hidden;
  }
  
  .social-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .25s var(--ease);
      border-radius: inherit;
  }
  
  .social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.3); }
  .social-btn:hover::before { opacity: 1; }
  
  /* Instagram */
  .social-btn--instagram { background: #e1306c; color: #fff; }
  .social-btn--instagram::before { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
  
  /* TikTok */
  .social-btn--tiktok { background: #1a1a1a; color: #fff; }
  .social-btn--tiktok::before { background: #333; }
  
  /* YouTube */
  .social-btn--youtube { background: #ff0000; color: #fff; }
  .social-btn--youtube::before { background: #cc0000; }
  
  /* Snapchat */
  .social-btn--snapchat { background: #fffc00; color: #1a1a1a; }
  .social-btn--snapchat::before { background: #ffe000; }
  
  .social-btn svg { position: relative; z-index: 1; }
  
  /* ================================================================
     RIGHT FORM CARD
     ================================================================ */
  .contact-form-card {
      /* background: var(--c-card-form-bg); */
      border-radius: var(--r-card);
      /* padding: 36px 34px 34px; */
      /* box-shadow: var(--shadow-card); */
      margin-left: 40px;
  }
  
  /* ── Success banner ────────────────────────────────────────────── */
  .form-success {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--c-success-bg);
      color: var(--c-success);
      border: 1px solid #a9dfbf;
      border-radius: 10px;
      padding: 12px 16px;
      font-size: .9rem;
      font-weight: 500;
      margin-bottom: 22px;
      animation: fadeUp .4s var(--ease) both;
  }
  
  /* ── Form layout ─────────────────────────────────────────────── */
  .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }
  
  .form-group {
      display: flex;
      flex-direction: column;
      gap: 7px;
  }
  
  /* ── Labels ──────────────────────────────────────────────────── */
  .form-label {
      font-size: .82rem;
      font-weight: 600;
      color: #000;
      letter-spacing: .01em;
  }
  
  /* ── Inputs ──────────────────────────────────────────────────── */
  .form-input,
  .form-textarea {
      background: var(--c-input-bg);
      border: 1.5px solid transparent;
      border-radius: var(--r-input);
      padding: 11px 15px;
      font-family: var(--ff-sans);
      font-size: .9rem;
      color: var(--c-body);
      outline: none;
      width: 100%;
      box-sizing: border-box;
      transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
      box-shadow: var(--shadow-form);
  }
  
  .form-input::placeholder,
  .form-textarea::placeholder {
      color: #b4b4ab;
  }
  
  .form-input:focus,
  .form-textarea:focus {
      border-color: var(--c-input-focus);
      box-shadow: 0 0 0 3px rgba(26,31,58,.1);
  }
  
  .form-input--error {
      border-color: var(--c-error) !important;
      box-shadow: 0 0 0 3px rgba(192,57,43,.1);
  }
  
  .form-textarea {
      resize: vertical;
      min-height: 110px;
      line-height: 1.6;
  }
  
  .form-error {
      font-size: .78rem;
      color: var(--c-error);
      margin-top: 2px;
  }
  
  /* ── Role Selector ───────────────────────────────────────────── */
  .role-selector {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
  }
  
  .role-btn {
      padding: 7px 18px;
      border-radius: var(--r-btn);
      /* border: 1.5px solid var(--c-border); */
      /* background: var(--c-input-bg); */
      font-family: var(--ff-sans);
      font-size: .85rem;
      font-weight: 600;
      color: #5C6672;
      cursor: pointer;
      transition: all .22s var(--ease);
      user-select: none;
      /* box-shadow: var(--shadow-form); */
  }
  
  .role-btn:hover:not(.role-btn--active) {
      border-color: #aaa;
      color: var(--c-body);
      transform: translateY(-1px);
  }
  
  .role-btn--active {
      background: var(--c-navy);
      border-color: var(--c-navy);
      color: #fff;
      box-shadow: 0 4px 14px rgba(26,31,58,.3);
  }
  
  /* ── Submit Button ───────────────────────────────────────────── */
  .form-submit-row {
      display: flex;
      justify-content: flex-start;
  }
  
  .submit-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--c-navy);
      color: #fff;
      border: none;
      border-radius: var(--r-btn);
      padding: 13px 28px;
      font-family: var(--ff-sans);
      font-size: .92rem;
      font-weight: 600;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
      box-shadow: 0 4px 18px rgba(26,31,58,.25);
      letter-spacing: .01em;
  }
  
  .submit-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,.12);
      transform: translateX(-105%);
      transition: transform .4s var(--ease);
      border-radius: inherit;
  }
  
  .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 26px rgba(26,31,58,.35);
  }
  
  .submit-btn:hover::before {
      transform: translateX(0);
  }
  
  .submit-btn:active {
      transform: translateY(0);
      box-shadow: 0 3px 10px rgba(26,31,58,.2);
  }
  
  .submit-btn__arrow {
      display: inline-block;
      transition: transform .25s var(--ease);
      font-size: 1rem;
  }
  
  .submit-btn:hover .submit-btn__arrow {
      transform: translateX(4px);
  }
  
  /* ================================================================
     ANIMATIONS
     ================================================================ */
  @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0);    }
  }
  
  /* ================================================================
     RESPONSIVE
     ================================================================ */
  
  /* ── Tablet: ≤ 860px ─────────────────────────────────────────── */
  @media (max-width: 860px) {
      .contact-section__body {
          grid-template-columns: 1fr;
      }
  
      .contact-card--dark {
          padding: 28px 24px;
      }
  
      .contact-form-card {
          padding: 28px 24px;
      }
  
      .contact-section__title {
          font-size: clamp(1.7rem, 5vw, 2.2rem);
      }
  }
  
  /* ── Mobile: ≤ 560px ─────────────────────────────────────────── */
  @media (max-width: 560px) {
      .contact-section {
          padding: 64px 16px 72px;
      }
  
      .contact-section__header {
          margin-bottom: 36px;
      }
  
      .form-row {
          grid-template-columns: 1fr;
          gap: 0;
      }
  
      .contact-form-card {
          padding: 24px 18px;
          border-radius: 16px;
      }
  
      .contact-card--dark {
          padding: 24px 18px;
          border-radius: 16px;
      }
  
      .contact-card__tagline-bold {
          font-size: 1.45rem;
      }
  
      .contact-section__subtitle .br-desktop {
          display: none;
      }
  
      .submit-btn {
          width: 100%;
          justify-content: center;
      }
  
      .form-submit-row {
          justify-content: stretch;
      }
  }
  
  /* ── Small Mobile: ≤ 380px ───────────────────────────────────── */
  @media (max-width: 380px) {
      .role-selector {
          gap: 6px;
      }
  
      .role-btn {
          padding: 6px 14px;
          font-size: .8rem;
      }
  }


  /* ── Carousel shell ─────────────────────────────────────────── */
.creators-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
}
 
.steps-carousel {
  width: 100%;
  background: #FAFBFF;
  border-radius: 16px;
  /* box-shadow: 0 2px 16px rgba(0,0,0,0.07); */
  border-right: 0.8px solid #E5E7EB;
  overflow: hidden;
  display: flex;
  position: relative;
  min-height: 340px;
}
 
/* ── Track ──────────────────────────────────────────────────── */
.steps-track {
  display: flex;
  flex-direction: row;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
}
 
/* ── Each panel ─────────────────────────────────────────────── */
.step-panel {
  flex-shrink: 0;
  width: 100%;
  transition: width 0.55s cubic-bezier(0.77, 0, 0.175, 1),
              opacity 0.4s ease;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
 
/* Active panel = wider */
.step-panel.is-active {
  cursor: default;
}
 
/* Collapsed panel */
.step-panel.is-collapsed {
  width: 0 !important;
}
 
.step-panel-inner {
  padding: 25px 22px 22px;
  min-width: 220px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
 
/* ── Step number ────────────────────────────────────────────── */
.step-num {
  font-family: "Noto Sans";
  font-size: 11px;
  font-weight: 700;
  color: #5C6672;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s;
}
 
.step-panel.is-active .step-num {
  color: #1FA58A;
}
 
/* ── Step title ─────────────────────────────────────────────── */
.step-title {
  font-family: "Inter";
  font-size: 18px;
  font-weight: 700;
  color: #1A1B4E;
  line-height: 1.25;
  margin-bottom: 5px;
}
.mock-container{
  position: relative;
}
.step-sub {
  font-family: "Noto Sans";
  font-size: 11px;
  color: #5C6672;
  margin-bottom: 18px;
  line-height: 1.4;
}
 
/* ── Vertical label for collapsed tabs ─────────────────────── */
.steps-tabs {
  display: none; /* handled inline by JS */
}
 
/* The collapsed vertical text column */
.step-panel.is-collapsed-label {
  width: 38px !important;
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
  border-left: 0.8px solid #E5E7EB;
  transition: width 0.55s cubic-bezier(0.77,0,0.175,1), background 0.2s;
  overflow: hidden;
}
 
.step-panel.is-collapsed-label:hover {
  background: #f9f9fb;
}
 
.step-panel.is-collapsed-label .step-panel-inner {
  padding: 18px 0;
  min-width: 38px;
  width: 38px;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: auto;
}
 
.step-panel.is-collapsed-label .step-num {
  font-family: "Noto Sans";
  font-size: 10px;
  margin-top: 5px;
  margin-bottom: 14px;
  color: #5C6672;
  align-self: self-start;
}
 
.step-panel.is-collapsed-label .step-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 12px;
  font-weight: 600;
  color: #1A1B4E;
  white-space: nowrap;
  /* letter-spacing: 0.01em; */
  height: 350px;
  /* margin: auto; */
  text-align: center;
  
  }
 
.step-panel.is-collapsed-label .step-sub,
.step-panel.is-collapsed-label .step-mockup {
  display: none;
}
 
/* ── Mock cards shared ──────────────────────────────────────── */
.step-mockup {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  right: -40px;
  top: -15px;
  width: 280px;
}

.step-mockup--browse{
  top: -5px;
}

.step-mockup--earn{
  right: -50px;
  top: 25px;
  max-width: 450px !important;
  width: 250px;
}
.mock-card {
  background: #ffffff;
  border: 1.6px solid #1A1B4E;
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 8px 40px 0 rgba(26, 27, 78, 0.14);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
 
.mock-label {
  font-family: "Noto Sans";
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5C6672;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.mock-label-4{
  color: #1FA58A;
  text-align: center;
}
 
/* ── Step 1: Create Profile ─────────────────────────────────── */
.mock-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0 6px;
  border: 1.6px dashed #E5E7EB;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: auto;
}
 
.mock-avatar span {
  font-size: 9.5px;
  color: #5C6672;
}
 
.mock-input,
.mock-textarea {
  width: 100%;
  border: 0.8px solid #E5E7EB;
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 10px;
  color: rgba(92, 102, 114, 0.50);
  background: #FFF;
  resize: none;
  font-family: "Noto Sans";
  outline: none;
}
.mock-input::placeholder {
  color: rgba(92, 102, 114, 0.50); /* your desired color */
  opacity: 1; /* ensures full visibility */
}

.mock-textarea::placeholder {
  color: rgba(92, 102, 114, 0.50); /* your desired color */
  opacity: 1; /* ensures full visibility */
}
.mock-textarea {
  height: 48px;
}
 
.mock-btn-primary {
  width: 100%;
  background: #1A1B4E;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-top: 2px;
}
 
/* ── Step 2: Social ─────────────────────────────────────────── */
.mock-social-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  border-bottom: 1px solid #f3f4f6;
}
 
.mock-social-row:last-of-type { border-bottom: none; }
 
.mock-social-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
/* .mock-ig { background: #fce7f3; color: #db2777; }
.mock-tt { background: #f0f0f0; color: #111; }
.mock-yt { background: #fee2e2; color: #dc2626; }
.mock-sc { background: #fef9c3; color: #ca8a04; } */
 
.mock-social-name { font-size: 10.5px; font-weight: 500; color: #1B1F4E; flex: 1; }
.mock-social-count { font-size: 10px; color: #6b7280; flex-shrink: 0; }
 
.mock-badge {
  font-size: 9px;
  font-weight: 600;
  border-radius: 12px;
  padding: 2px 7px;
  flex-shrink: 0;
}
 
.mock-badge--connected { background: #ecfdf5; color: #059669; border: 1px solid #ecfdf5; }
.mock-badge--connect   { background: #D9A441; color: white; border: 1px solid #D9A441; }
 
.mock-reach {
  font-size: 9.5px;
  font-weight: 600;
  color: #1FA58A;
  margin-top: 4px;
}
 
/* ── Step 3: Browse ─────────────────────────────────────────── */
.mock-card--browse {
  max-width: 270px;
  gap: 7px;
}
 
.mock-search {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0.8px solid #E5E7EB;
  border-radius: 7px;
  padding: 6px 9px;
  font-size: 10px;
  font-family: "Noto Sans";
  color: #5C6672;
}
 
.mock-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
 
.mock-filter {
  font-size: 9px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 10px;
  /* border: 1px solid #e5e7eb; */
  color: #5C6672;
  cursor: pointer;
  background-color: #F3F4F6;
}
 
.mock-filter--active {
  background: #1A1B4E;
  color: #fff;
  border-color: #1A1B4E;
}
 
.mock-deals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
 
.mock-deal {
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fafafa;
}

.mock-deal-selected{
  border-top: 0.8px solid #1FA58A;
  border-right: 0.8px solid #1FA58A;
  border-bottom: 0.8px solid #1FA58A;
  border-left: 2.4px solid #1FA58A;
  background: #F0FBFA;
}
 
.mock-deal-header {
  display: flex;
  align-items: center;
  gap: 5px;
}
 
.mock-deal-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  color: #1A1B4E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.mock-deal-icon--g { background: #E9E2F8; }
.mock-deal-icon--t { background: #E9E2F8; }
.mock-deal-icon--w { background: #E9E2F8; }
.mock-deal-icon--s { background: #E9E2F8; }
 
.mock-deal-name { font-size: 9.5px; font-weight: 600; color: #000; line-height: 1.2; }
.mock-deal-price { font-size: 10px; font-weight: 700; color: #D9A441; }
 
.mock-deal-tags { display: flex; gap: 2px; flex-wrap: wrap; }
 
.mock-tag {
  font-size: 8px;
  font-weight: 500;
  padding: 1px 5px;
  border-radius: 6px;
}
 
.mock-tag--ig     { background: #E9E2F8; color: #7B61C9; }
.mock-tag--yt     { background: #E9E2F8; color: #7B61C9; }
.mock-tag--tt     { background: #E9E2F8; color: #7B61C9; }
.mock-tag--beauty { background: #FCE9C9; color: #D9A441; }
.mock-tag--tech   { background: #FCE9C9; color: #D9A441; }
.mock-tag--life   { background: #FCE9C9; color: #D9A441; }
.mock-tag--fashion{ background: #FCE9C9; color: #D9A441; font-size: 7px;}
 
.mock-deal-btn {
  width: 100%;
  background: #1A1B4E;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px;
  font-size: 8.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-top: 2px;
}
 
/* ── Step 4: Match Making ───────────────────────────────────── */
.mock-card--match {
  max-width: 260px;
  align-items: center;
  text-align: center;
}
 
.mock-match-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  width: 100%;
  background: #F9FAFB;
  border-radius: 10px;
  padding: 8px;
}
 
.mock-brand-icon {
  width: 30px;
  height: 30px;
  background: #E9E2F8;
  border-radius: 50%;
  color: #1A1B4E;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.mock-brand-name { font-size: 10.5px; font-weight: 600; color: #000; }
.mock-brand-cat  { font-size: 9px; color: #5C6672; }
 
.mock-match-score {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}
 
.mock-donut {
  position: relative;
  width: 90px;
  height: 90px;
}
 
.mock-donut-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
 
.mock-donut-pct {
  font-size: 18px;
  font-weight: 800;
  color: #D9A441;
  line-height: 1;
}
 
.mock-donut-sub {
  font-size: 9px;
  color: #5C6672;
  font-family: "Noto Sans";
}
 
.mock-match-note {
  font-family: "Noto Sans";
  font-size: 9px;
  color: #5C6672;
  text-align: center;
  line-height: 1.45;
}
 
.mock-match-sent {
  font-size: 9px;
  color: #5C6672;
}
 
/* ── Step 5: Grow Earnings ──────────────────────────────────── */
.mock-card--earn {
  max-width: 250px;
}
 
.mock-earn-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5C6672;
  text-transform: uppercase;
}
 
.mock-earn-amount {
  font-size: 22px;
  font-weight: 800;
  color: #1A1B4E;
  line-height: 1.1;
}
 
.mock-earn-badge {
  font-size: 9px;
  font-weight: 600;
  background: #FCE9C9;
  color: #D9A441;
  border-radius: 20px;
  padding: 5px 8px;
  width: 90px;
}
 
.mock-earn-stats {
  display: flex;
  gap: 5px;
  font-size: 8.5px;

}

.mock-earn-stats span{
  color: #5C6672;
  background-color: #F3F4F6;
  border-radius: 20px;
  padding: 5px 12px;
}
.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
  margin: 2px 0;
}
 
.mock-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 3px;
}
 
.mock-bar::before {
  content: '';
  width: 100%;
  height: var(--h);
  background: #1A1B4E;
  opacity: 0.65;
  border-radius: 3px 3px 0 0;
  transition: height 0.3s;
}
 
.mock-bar--active::before {
  background: #D9A441;
  opacity: 1;
}
 
.mock-bar span {
  font-size: 7.5px;
  color: #5C6672;
  white-space: nowrap;
}
 
.mock-btn-secondary {
  width: 30%;
  background: transparent;
  color: #1A1B4E;
  border: 0.8px solid #1A1B4E;
  border-radius: 8px;
  padding: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  align-self: self-end;
  margin-right: 5px;
}


 
/* ── Wrap the canvas correctly ─────────────────────────────── */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: visible;
  /* min-height: 620px is fine on desktop — canvas is 590px */
}
 
/* ── Canvas container ──────────────────────────────────────── */
/* .hero-collage {
  position: relative;
  width: 560px;
  height: 590px;
  flex-shrink: 0;
  margin: auto;

} */
.mobile-hero-right-container{
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-collage {
  transform-origin: top left;
  transform: scale(var(--collage-scale));  
  /* margin-right: calc((1 - var(--collage-scale)) * -560px); 
  margin-bottom: calc((1 - var(--collage-scale)) * -590px); */
  margin: auto;
  margin-left: 70px;
  margin-top: 30px;
}

/* ── Move position responsibility to .hero-collage children ── */
/* These selectors now only match inside .hero-collage,
   so the old bare rules in seen.css still work for browsers
   that load seen.css alone, but our canvas specificity wins. */
 
.hero-collage .hero-img-main   { position: absolute; top: -30px;  left: 80px;   }
.hero-collage .badge-collab    { position: absolute; top: 20px;   right: -16px; }
.hero-collage .hero-card-idea  { position: absolute; top: 210px;  left: 10px;   z-index: 20; }
.hero-collage .hero-img-man    { position: absolute; top: 300px;  left: -20px;  z-index: 10; }
.hero-collage .hero-img-woman  { position: absolute; top: 320px;  left: 270px;  }
.hero-collage .badge-match     { position: absolute; bottom: 0px; right: -20px; }
.hero-collage .hero-deco-plus  { position: absolute; top: 80px;   left: 40px;   }
.hero-collage .hero-deco-curve { position: absolute; top: 300px;  right: -30px; }
.hero-collage .hero-deco-arrow { position: absolute; bottom: -10px; left: 120px; }
 
/* ── Mobile trusted logos (desktop: hidden) ────────────────── */
.hero-trusted--mobile { display: none; }

.hero-title-container{
  position: relative;
}