:root{
  --bg: #0a0a0a;
  --panel: #121212;
  --text: #f2f2f2;
  --muted: rgba(255,255,255,.78);
  --muted2: rgba(255,255,255,.60);

  --pill: rgba(255,255,255,.12);
  --pillBorder: rgba(255,255,255,.10);

  --purple: #4D148C;
  --purple2: #7C3AED;

  --radius: 52px;
  --max: 1400px;
}

*{ box-sizing:border-box; }
html,body{ 
width: 100%;
  overflow-x: hidden;
  margin: 0;
 }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 70% 15%, rgba(77,20,140,.22), transparent 60%),
    radial-gradient(900px 700px at 20% 80%, rgba(77,20,140,.14), transparent 65%),
    var(--bg);
  color: var(--text);
}

body::before{
  content:"";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 800px at 75% 25%, rgba(77,20,140,.35), transparent 60%),
    radial-gradient(900px 600px at 25% 80%, rgba(77,20,140,.22), transparent 65%);
}



/* =========================
   BUTTONS (PURPLE + HOVER)
========================= */
.pillBtn,
.aboutBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255,255,255,.95);

  background: linear-gradient(135deg, rgba(77,20,140,.95), rgba(124,58,237,.9));
  border: 1px solid rgba(77,20,140,.65);

  box-shadow: 0 12px 30px rgba(77,20,140,.22);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, border-color .25s ease;
  margin-top: 18px;
}

.pillBtn:hover,
.aboutBtn:hover

{
  transform: translateY(-2px);
  border-color: rgba(124,58,237,.95);
  box-shadow:
    0 18px 46px rgba(77,20,140,.35),
    0 0 0 4px rgba(77,20,140,.22);
  filter: brightness(1.06);
}

.pillBtn:active,
.aboutBtn:active{
  transform: translateY(0px);
  filter: brightness(0.98);
}


/* =========================
   NAVBAR – CENTERED MENU
========================= */

.topbar{
  width: min(100%, var(--max));  /* ✅ makes it respect max width */
  margin: 0 auto;               /* ✅ centers it */
  padding: 18px 22px;           /* ✅ keep spacing */
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 50;
}


/* LEFT */
.brandRight img{
  height: 56px;
  width: auto;
}

/* CENTER */
.navCenter{
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav{
  display: flex;
  gap: 28px;
}

.nav a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .02em;
  transition: .25s ease;
}

.nav a:hover{
  color: #fff;
}

/* RIGHT CTA FIX */
.topbar .pillBtn{
  margin-top: 0 !important;
}

/* =========================
   MOBILE NAV
========================= */

.menuBtn{
  display: none;
}

/* MOBILE */
@media (max-width: 1199px){

  .nav,
  .heroBtn{
    display: none;
  }

  .menuBtn{
    display: flex;
    margin-left: auto;
  }

  .mobileMenu{
    display: none;
    position: absolute;
    top: 82px;
    right: 18px;
    width: 260px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(12,12,12,.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.15);
  }

  .mobileMenu a{
    display: block;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }

  .mobileMenu a:hover{
    background: rgba(255,255,255,.08);
  }

  .mobileMenu .mobileCta{
    margin-top: 6px;
    text-align: center;
    background: linear-gradient(135deg, #4D148C, #7C3AED);
  }

  .mobileMenu.open{
    display: block;
  }
}


/* =========================
   HERO - LEFT
========================= */

.page.hero{
  width: min(100%, var(--max));
  margin: 0 auto;
 
  display: flex;
  gap: 22px;
  align-items: stretch;

  height: calc(100svh - 110px);   /* ✅ fit inside screen */
  position: relative;
  z-index: 1;
  overflow: hidden;              /* ✅ stop cut outside */
}
.leftPanel,
.rightPanel{
  height: 100%;
  min-height: 0;
}
.imgWrap{ height: 100%; min-height: 0; }

/* LEFT PANEL */
.leftPanel{
  flex: 0 0 56%;             /* ✅ left bigger */
  min-height: calc(100svh - 110px);
  position: relative;
  z-index: 1;
}

.imgWrap{
  height: 100%;
  min-height: calc(100svh - 110px);
  border-radius: 128px 0px 125px 0;
  overflow: hidden;
  position: relative;
}
@keyframes pulseGlow {
  0% { opacity: .7; }
  50% { opacity: 1; }
  100% { opacity: .7; }
}

.imgWrap::before{
  animation: pulseGlow 4s ease-in-out infinite;
}

/* IMAGE */
.heroImg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

/* META ON TOP OF IMAGE (like your 2nd screenshot) */
.leftMeta{
  position: absolute;
  left: 26px;
  bottom: 26px;     /* ✅ always bottom */
  top: auto;        /* ✅ remove fixed top */
  z-index: 2;

  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);

  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
  max-width: 70%;
}


/* =========================
   HERO - RIGHT
========================= */
.rightPanel{
  flex: 1;                   /* ✅ takes remaining width */
  min-height: calc(100svh - 110px);
  position: relative;
 
  overflow: hidden;
  position: relative;
  z-index: 1;
}


.rightContent{
  position: relative;
  z-index: 2;
  padding: 22px 26px 120px;
  display: flex;
  flex-direction: column;
  height: 100%;
}


/* headline width like screenshot */
.headline{
  max-width: 100%;
  font-size: clamp(18px, 2vw, 30px);
  
}
.ctaRow{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: auto;
  padding-bottom: 60px;
  transform: none;
}
.ctaBlock{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom:130px;
}
.ctaTag{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted2);
  text-align: right;
}
.cardBlock{
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  
}

.cardTop{
  gap: 12px;
  display:flex;
  align-items:center;
  justify-content: center;
}
.cardTop .kicker{
  display:flex;
  align-items:flex-end;
}
/* =========================
   MINI CARD (VIDEO)
========================= */
.miniCard{
  width: min(200px, 100%);
  height: 200px;
  border-radius: 18px 0px 18px 0;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(120px 120px at 70% 30%, rgba(255,255,255,.14), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  position: relative;
  text-decoration:none;
  color: rgba(255,255,255,.92);
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  padding: 14px 14px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.miniCard:hover{
  transform: translateY(-3px);
  border-color: rgba(77,20,140,.55);
  box-shadow: 0 20px 50px rgba(77,20,140,.25);
}

/* dark overlay for readability */
.miniCard::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
  z-index: 1;
}

/* content above video */
.miniArrow,
.miniLabel{
  position: relative;
  z-index: 2;
}

.miniLabel{
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.miniArrow{
  position:absolute;
  right: 14px;
  top: 10px;
  opacity: .9;
  font-size: 16px;
}

/* video layer */
.miniVideo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

/* purple shade overlay */
.videoOverlay{
  position: absolute;
  inset: 0;
  background: #4D148C;
  opacity: 0.28;              /* adjust strength */
  mix-blend-mode: multiply;  /* premium look */
  z-index: 1;
}

/* hover zoom */
.miniCard:hover .miniVideo{
  transform: scale(1.08);
}
/* =========================
   HUGE BOTTOM TITLE
========================= */
.bigTitle{
  position: absolute;
  left: 20px;
  right: 22px;
 /* ✅ bottom also scales with screen */
  bottom: clamp(30px, 5vmin, 60px);
  margin: 0;

  z-index: 5;          /* ✅ above everything */
  pointer-events: none;

  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: .9;
  font-size: clamp(54px, 9.6vw, 150px);
  color: rgba(255,255,255,.95);
}



/* Tablet */
@media (max-width: 1024px){
  .page.hero{
    gap: 16px;
    padding: 14px;
  }

  .leftPanel{ flex: 0 0 52%; }
  .headline{ font-size: clamp(18px, 2.4vw, 28px); }
  .bigTitle{ bottom: 35px; }
}

/* Mobile */
@media (max-width: 1030px){
  .page.hero{
    flex-direction: column;
    min-height: auto;
    gap: 14px;
  }

  .leftPanel,
  .rightPanel{
    flex: unset;
    min-height: auto;
  }

  .imgWrap{
    min-height: 50vh; /* ✅ image visible */
    border-radius: 32px;
  }

  .rightPanel{
    border-radius: 32px;
  }

  .rightContent{
    padding: 18px 18px 140px; /* ✅ space for title */
  }

  .bigTitle{
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: clamp(38px, 10vw, 70px);
    line-height: .95;
  }
}
@media (max-width: 420px){
  .rightContent{
    padding-bottom: 170px;
  }

  .bigTitle{
    font-size: 42px;
  }

  .pillBtn{
    width: 100%;
    justify-content: center;
  }
}
/* ✅ 1) Medium screens (laptop half width / 1100–1300px)
   reduce big title slightly so it fits */
@media (max-width: 1300px){
  .bigTitle{
    font-size: clamp(44px, 8.2vw, 120px);
    bottom: 45px;
    line-height: .92;
  }
  
  

}

/* ✅ 2) Even smaller desktop width (still 2 columns) */
@media (max-width: 1100px){
  .bigTitle{
    font-size: clamp(40px, 7.6vw, 105px);
    bottom: 36px;
  }
 

}

/* ✅ 3) IMPORTANT: short height screens (this is your main problem)
   When height is small, shrink title + lift CTA */
@media (max-height: 780px){
  .bigTitle{
    font-size: clamp(40px, 7.1vw, 110px);
    bottom: 28px;
    line-height: .94;
  }
  
  .leftMeta{
    margin-bottom: 220px;
  }
}

/* ✅ 4) Very short height */
@media (max-height: 680px){
  .bigTitle{
    font-size: clamp(40px, 7vw, 100px);
    bottom: 18px;
  }
  
}

/* =========================
   MOBILE/TABLET: put para + button INSIDE image
   (<= 900px)
========================= */
@media (max-width: 1030px){

  

  /* hide the services video card */
  .cardBlock, .miniCard{ display:none !important; }

  /* ✅ image becomes the main card */
  .leftPanel{ order: 1; }
  .rightPanel{ order: 2; } /* we will hide most of it */

  .imgWrap{
    position: relative;
    border-radius: 32px;
    overflow: hidden;
  }

  .heroImg{
    height: 62vh;
    min-height: 420px;
    width: 100%;
    object-fit: cover;
  }

  /* ✅ dark gradient at bottom so text is readable */
  .imgWrap::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.35) 55%,
      rgba(0,0,0,0.75) 100%
    );
    pointer-events:none;
    z-index: 1;
  }

  /* ✅ Move the right content ON TOP of the image */
  .rightPanel{
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none; /* so image still scrolls smoothly */
  }

  .rightContent{
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px; /* sits above big title */
    z-index: 4;
    padding: 0;
    height: auto;
    pointer-events: auto; /* ✅ button clickable */
  }

  /* headline (para) inside image */
  .headline{
    max-width: 50%;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 14px 0;
    text-shadow: 0 10px 30px rgba(0,0,0,.55);
  padding-bottom: 30px;
  
  }

  /* CTA row inside image */
  .ctaRow{
   margin-bottom: 30px;
   
    justify-content: flex-start;
    align-items: flex-start;
  }

  .ctaTag{
    text-align: left;
    margin-bottom: -10px;
  }

  .callBtn{
    width: fit-content;
  }

  /* ✅ Big title stays inside image at bottom */
  .bigTitle{
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 20px;
    z-index: 4;
    margin: 0;

    font-size: clamp(44px, 9.5vw, 74px);
    line-height: .98;
    text-shadow: 0 16px 44px rgba(0,0,0,.65);
  }

  /* move small meta label inside image */
  .leftMeta{
    left: 10px;
     bottom: -60px;
    z-index: 4;
    opacity: .9;
  }
}

@media (max-width: 380px){
   .leftMeta{
    left: 10px;
    bottom: -70px;
    z-index: 4;
    opacity: .9;
  }
}
@media (max-width: 342px){
  .leftMeta{
    left: 10px;
    top: 80px;
    z-index: 4;
    opacity: .9;
  }
}

/* Move service card + button lower around 1100px */


/* =========================
   ABOUT SECTION
========================= */
.aboutSection{
  padding: 90px 18px;
}

.aboutGrid{
  width: min(100%, var(--max));   /* ✅ max width 1300 */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1.55fr;
  gap: 56px;
  align-items: center;
}

/* LEFT */
.aboutLeftMeta{
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}
.aboutName{ margin-bottom: 10px; }
.aboutRole{ opacity: .92; }

/* CENTER IMAGE CARD */
.aboutImgCard{
  border-radius: 58px 0 58px 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow:
    0 0 0 1px rgba(77,20,140,.20),
    0 30px 120px rgba(77,20,140,.28);
}

.aboutImg{
  width: 100%;
   height: clamp(300px, 55vw, 560px); /* ✅ responsive */
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

/* RIGHT */
.aboutLabel{
  font-size: 13px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 22px;
}

.aboutText p{
  margin: 0 0 22px;
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.94);
  max-width: 44ch;
}

/* =========================
   ABOUT RESPONSIVE
========================= */
/* =========================
   ABOUT SECTION RESPONSIVE
========================= */

/* Tablet: 3 cols -> 2 cols */
@media (max-width: 1024px){
  .aboutSection{
    padding: 70px 18px;
  }

  .aboutGrid{
    grid-template-columns: 1fr 1.2fr;  /* left + image + right flow */
    gap: 32px;
    align-items: start;
  }

  /* Put right content under image for nicer flow */
  .aboutRight{
    grid-column: 1 / -1;  /* full width */
    margin-top: 10px;
  }

  .aboutText p{
    font-size: clamp(18px, 3.2vw, 28px);
    max-width: 60ch;
  }
}

/* Mobile: stack everything */
@media (max-width: 768px){
  .aboutSection{
    padding: 55px 16px;
  }

  .aboutGrid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aboutLeft{
    order: 1;
  }
  .aboutCenter{
    order: 2;
  }
  .aboutRight{
    order: 3;
  }

  .aboutImgCard{
    border-radius: 32px 0 32px 0; /* smaller radius on mobile */
  }

  .aboutLabel{
    margin-bottom: 14px;
  }

  .aboutText p{
    font-size: 18px;
    line-height: 1.35;
    max-width: 100%;
  }
}

/* Small phones */
@media (max-width: 480px){
  .aboutLeftMeta,
  .aboutLabel{
    font-size: 12px;
  }

  .aboutText p{
    font-size: 16px;
  }
}
/* Fix image crop just below 768px (like your screenshot) */
@media (max-width: 820px){
  .aboutImg{
    height: clamp(360px, 68vw, 520px);   /* a bit taller at this range */
    object-position: center top;         /* ✅ keeps top visible */
  }
}

/* Fix head cutting between 768px and 1024px */
@media (max-width: 1024px) and (min-width: 769px){

  .aboutImg{
    height: 520px;              /* keep enough vertical space */
    object-fit: cover;
    object-position: 50% 15%;   /* move crop slightly upward */
  }

}
/* =========================
   MANIFESTO SECTION 1
========================= */
.manifesto{
  padding: clamp(50px, 7vw, 80px) var(--pad-x, 22px) clamp(70px, 9vw, 120px);
  background: var(--bg);
}

.manifestoGrid{
  width: min(100%, var(--max));
  margin-inline: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(26px, 6vw, 80px);
  align-items: start;
}

.manifestoLeft{ 
  padding-top: clamp(0px, 2vw, 20px);
 }

.manifestoTitle{
  font-size: clamp(34px, 5.6vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0;
}
.manifestoTitle span{ color: rgba(255,255,255,.45); }

.manifestoTag{
  margin-top: clamp(14px, 2.2vw, 22px);
  font-size: clamp(10px, 1.2vw, 11px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.manifestoRight{
  padding-top: clamp(0px, 1.5vw, 12px);
  max-width: 520px;
}

.eyebrow{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.manifestoText{
  margin-top: clamp(14px, 2.2vw, 22px);
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.9);
}
.manifestoText.muted{ color: rgba(255,255,255,.65); }

/* keep this class if you still use it anywhere */
.violetBtn{
  background: linear-gradient(135deg, rgba(77,20,140,.95), rgba(124,58,237,.9));
  border: 1px solid rgba(77,20,140,.65);
  box-shadow: 0 12px 30px rgba(77,20,140,.22);
}
/* Tablet + mobile: stack */
@media (max-width: 1024px){
  .manifestoGrid{
    grid-template-columns: 1fr;
  }

  .manifestoRight{
    max-width: 100%;
  }
}

/* Small mobile: button full width */
@media (max-width: 520px){
  .pillBtn{
    width: 100%;
  }

  .manifestoTitle{
    line-height: 1.08;
  }
}


/*** SECTION 2 SERVICES***/

.teamSection{
  padding: 90px 18px 60px;
  position: relative;
  z-index: 1;
}

.teamWrap{
  width: min(100%, 1400px);
  margin: 0 auto;
}

.teamTop{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}

.teamBig{
  margin: 0;
  font-size: clamp(54px, 6.2vw, 100px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: rgba(255,255,255,.95);
}
.teamBig span{
  color: rgba(255,255,255,.45);
}

.teamEyebrow{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}

.teamText{
  margin: 0;
  max-width: 520px;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
}

/* ===== MARQUEE ===== */
.marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0 14px;
}

.marqueeTrack{
  display: flex;
  gap: 22px;
  width: max-content;
  animation: teamMarquee 28s linear infinite; /* ✅ speed */
  will-change: transform;
  
}
.marquee:hover .marqueeTrack {
  animation-play-state: paused;
}
/* ✅ Infinite loop animation */
@keyframes teamMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); } /* ✅ because we duplicated cards */
}

/* Cards */
.teamCard{
  flex: 0 0 auto;
  width: 260px;
  height: 320px;
  border-radius: 46px 0 46px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.teamCard img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

/* Overlay for readability */
.teamOverlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.60));
  z-index: 1;
}

/* Text */
.teamInfo{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.teamName{
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
}

.teamRole{
  font-size: 14px;
  color: rgba(255,255,255,.70);
}

/* Hover effect */
.teamCard:hover{
  transform: translateY(-6px);
  border-color: rgba(77,20,140,.55);
  box-shadow: 0 18px 60px rgba(77,20,140,.25);
}
.teamCard:hover img{
  transform: scale(1.10);
}

/* Optional: fade edges like screenshot */
.marquee::before,
.marquee::after{
  content:"";
  position:absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 5;
  pointer-events:none;
}
.marquee::before{
  left: 0;
  background: linear-gradient(90deg, #0a0a0a, transparent);
}
.marquee::after{
  right: 0;
  background: linear-gradient(270deg, #0a0a0a, transparent);
}

/* Responsive */
@media (max-width: 900px){
  .teamTop{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .teamText{ font-size: 18px; }
  .teamCard{ width: 220px; height: 280px; border-radius: 34px; }
  .teamName{ font-size: 28px; }
}

@media (max-width: 520px){
  .teamCard{ width: 190px; height: 250px; }
  .marqueeTrack{ animation-duration: 22s; }
}



/*** SECTION 3***/


/* =========================
   TESTIMONIAL SECTION
========================= */
.testimonialSection{
  padding: 100px 18px;
  position: relative;
  z-index: 1;
}

.testimonialWrap{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

/* LEFT */
.testimonialTitle{
  margin: 0 0 24px;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: rgba(255,255,255,.95);
}

.testimonialTag{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* RIGHT CARD */
.testimonialCard{
  position: relative;
  padding: 52px 56px 44px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 28px 28px 80px 28px; /* curved corner like screenshot */
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

/* Quote */
.testimonialQuote{
  margin: 0;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: rgba(255,255,255,.95);
  max-width: 42ch;
}

/* Footer */
.testimonialFooter{
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* User */
.testimonialUser{
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonialAvatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #facc15; /* yellow ring like screenshot */
}

.testimonialName{
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
}

.testimonialCompany{
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* Logo bottom right */
.testimonialLogo img{
  height: 86px;
  width: auto;
  opacity: .9;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .testimonialWrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonialCard{
    padding: 40px 36px 36px;
  }

  .testimonialQuote{
    max-width: 100%;
  }
}

@media (max-width: 520px){
  .testimonialCard{
    padding: 34px 28px 30px;
    border-radius: 22px 22px 60px 22px;
  }

  .testimonialFooter{
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}


/** FOOTER***/

/* =========================
   FOOTER (PREMIUM)
========================= */
.siteFooter{
  position: relative;
  padding: 90px 18px 50px;
  background: #0a0a0a;
  overflow: hidden;
  z-index: 1;
}

.footerWrap{
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* TOP GRID */
.footerTop{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT CTA */
.footerHeading{
  margin: 0 0 28px;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
}

.footerBtn{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.28);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.footerBtn span:first-child{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footerBtnIcon{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(77,20,140,1), rgba(124,58,237,1));
  color: #fff;
  font-size: 16px;
}

.footerBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(77,20,140,.20);
  filter: brightness(1.02);
}

.footerBtn:active{ transform: translateY(0); }

/* RIGHT COLS */
.footerCols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.footerCol{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footerTitle{
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
}

.footerCol a{
  color: rgba(255,255,255,.70);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s ease, transform .2s ease;
}

.footerCol a:hover{
  color: rgba(255,255,255,.95);
  transform: translateX(2px);
}

.footerInfo{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.footerItem{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.70);
  font-size: 15px;
}

.footerItem .fi{
  opacity: .9;
  width: 18px;
  display: inline-flex;
  justify-content: center;
}

/* SOCIAL */
.footerSocial{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footerSocial a{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.footerSocial a:hover{
  transform: translateY(-2px);
  border-color: rgba(77,20,140,.55);
  box-shadow: 0 16px 38px rgba(77,20,140,.18);
  background-color: #4D148C;
}

/* DIVIDER */
.footerDivider{
  margin: 60px 0 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

/* BOTTOM ROW */
.footerBottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.60);
  font-size: 14px;
}

/* BIG WATERMARK */
.footerWatermark{
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.25; /* overall fade */
}

.footerWatermark img{
  width: min(90vw, 900px);  /* BIG like text watermark */
  height: auto;
  display: block;
  filter: brightness(1);   /* keep logo clean */
}


/* RESPONSIVE */
@media (max-width: 950px){
  .footerTop{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footerCols{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 620px){
  .footerCols{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footerBottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .footerWatermark{
    bottom: -60px;
  }
}



/* image wrapper */
.brandTint{
  position: relative;
  overflow: hidden;
}

/* purple overlay */
.brandTint::after{
  content: "";
  position: absolute;
  inset: 0;
  background: #4D148C;
  mix-blend-mode: multiply; /* key */
  opacity: 0.55;            /* adjust strength */
  pointer-events: none;
}







/* =========================
   MOBILE NAV (ONLY <1200px)
========================= */

/* default hidden */
.menuBtn,
.mobileMenu{
  display: none;
}

/* hamburger button */
.menuBtn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: #4D148C;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  display: none;
}

.menuBtn span{
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 99px;
}

/* dropdown menu */
.mobileMenu{
  position: absolute;
  top: 82px;
  right: 18px;
  width: 280px;
  padding: 12px;
  border-radius: 58px 0 58px 0;
  background: rgba(12,12,12,.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.15);
  z-index: 9999;
}

.mobileMenu a{
  display: block;
  padding: 12px;
  border-radius: 25px;
  
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.mobileMenu a:hover{
  background: rgba(255,255,255,.08);
}

.mobileMenu .mobileCta{
  margin-top: 6px;
  text-align: center;
  background: linear-gradient(135deg, #4D148C, #7C3AED);
}

/* open state */
.mobileMenu.open{
  display: block;
}

/* Hamburger on hero image (ONLY <1200px) */
@media (max-width: 1199px){

  .leftPanel{ position: relative; }

  .menuBtn{
    display: flex !important;
    position: absolute !important;
    top: 18px;
    right: 18px;
    z-index: 50;
  }

  /* hide desktop nav + CTA in right header */
  .rightPanel .nav,
  .rightPanel .heroBtn{
    display: none !important;
  }

  /* optional: hide the right-side logo too (since logo already on image) */
  .rightPanel .brandRight{
    display: none !important;
  }
}








/* =========================
   DESKTOP DROPDOWN (What We Do)
========================= */
/* ✅ DESKTOP DROPDOWN FIX (no disappearing) */
.navDrop{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* hover bridge (prevents hover gap) */
.navDrop::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;          /* ✅ invisible area between button & menu */
}

.navDropMenu{
  position: absolute;
  left: 0;
  top: 100%;             /* ✅ always directly below */
  margin-top: 12px;      /* ✅ spacing without breaking hover */
  min-width: 260px;

  padding: 10px;
  
  border-radius: 58px 0 58px 0;
  background:#4D148C;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);

  display: none;
  z-index: 9999;
}

/* ✅ Open on hover OR keyboard focus */
.navDrop:hover .navDropMenu,
.navDrop:focus-within .navDropMenu{
  display: block;
}

.navDropMenu a{
  display: block;
  padding: 12px;
  border-radius: 25px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 14px;
}

.navDropMenu a:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}
/* =========================
   MOBILE DROPDOWN (inside hamburger)
========================= */
.mobileDrop{
  display: block;
}

.mobileDropBtn{
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  
  border: 0;
  cursor: pointer;
  text-align: left;
  color: #fff;
  background: transparent;
  font-size: 14px;
}

.mobileDropBtn:hover{
  background: rgba(255,255,255,.08);
}

.mobileDropMenu{
  display: none;
  padding: 6px 6px 10px;
}

.mobileDropMenu a{
  display: block;
  padding: 10px 12px;
  border-radius: 25px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 14px;
}

.mobileDropMenu a:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

.mobileDrop.open .mobileDropMenu{
  display: block;
}





/*** ANIMATION***/


/* Smooth transform performance */
#heroZoomImg{
  transform-origin: center center;
  will-change: transform;
}


/* =========================
   REVEAL SYSTEM (ALL SIDES)
========================= */

/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 1.8s ease,
    transform 2s cubic-bezier(.22,1,.36,1); /* smooth luxury easing */

  will-change: opacity, transform;
  transition-delay: var(--d, 0ms);

}

/* Directions */
.reveal-up    { transform: translate3d(0, 40px, 0); }
.reveal-down  { transform: translate3d(0, -40px, 0); }
.reveal-left  { transform: translate3d(40px, 0, 0); }
.reveal-right { transform: translate3d(-40px, 0, 0); }

/* Visible */
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Optional: little “pop” on reveal */
.reveal-pop {
  transform: scale(.98);
}
.reveal-pop.is-visible {
  transform: scale(1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}