/* ============================================================
   MASTER STYLESHEET — All Pages Combined
   Pages: index, about, services, contact, projects,
          project-detail, case-study, insight, insight-detail
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ── */
:root {
  /* Colours */
  --black:          #0a0a0a;
  --white:          #ffffff;
  --cream:          #f7f4ef;
  --grey-light:     #f2f2f2;
  --grey-mid:       #e0ddd8;
  --grey-text:      #888580;
  --orange:         #D6344B;
  --primary-red:    #D6344B;
  --primary-red1:   #da485d;
  --primary-red2:   #de5d6f;
  --primary-red3:   #e27181;
  --orange-light:   #ffe8de;
  --orange-mid:     #ffb89a;
  --gray:           #f2f2f2;

  /* Typography */
  --font-family:    'Inter', sans-serif;
  --font-body:      'Inter', sans-serif;
  --font-serif:     'Inter', sans-serif;
  --font-head:      'Google Sans', sans-serif;

  /* Motion */
  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease:           cubic-bezier(0.16, 1, 0.3, 1);
   --lh: 1.2em;      /* line height */
  --speed: 6s;      /* total cycle time */
  --swap-height: 125px;
  --swap-speed:  8s;
  --line-bg:     rgba(255,255,255,0.08); /* progress-track background */

  /* Radii */
  --radius-xl:      36px;
  --radius-lg:      24px;
  --radius-pill:    999px;

  /* Legacy aliases (contact/project-detail pages) */
  --bg-white:       #ffffff;
  --bg-light:       #f9f9f9;
  --text-black:     #1a1a1a;
  --text-gray:      #666;
  --text-dark:      #111111;
  --text-muted:     #555555;
  --text-ghost:     #cccccc;
  --border-light:   #eee;
  --border:         #EAEAEA;
  --accent:         #D6344B;
  --accent-orange:  #D6344B;
  --brand-red:      #D6344B;
  --brand-red-soft: #FFF1F1;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea {
  width: 100%;
  font-family: inherit;
  background: transparent;
}


/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */

/* Reveal (scroll-triggered via JS .visible) */
.reveal               { opacity: 0; transform: translateY(40px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal.visible,
.reveal.active        { opacity: 1; transform: translateY(0); }
.reveal-d1            { transition-delay: 0.1s; }
.reveal-d2            { transition-delay: 0.2s; }
.reveal-d3            { transition-delay: 0.3s; }
.reveal-d4            { transition-delay: 0.4s; }
.reveal-d5            { transition-delay: 0.5s; }
.reveal-left          { opacity: 0; transform: translateX(-50px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal-left.visible,
.reveal-left.active   { opacity: 1; transform: translateX(0); }
.reveal-right         { opacity: 0; transform: translateX(50px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal-right.visible,
.reveal-right.active  { opacity: 1; transform: translateX(0); }
.reveal-scale         { opacity: 0; transform: scale(0.92); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal-scale.visible,
.reveal-scale.active  { opacity: 1; transform: scale(1); }

/* Fade / scale (JS .vis trigger) */
.fade-up        { opacity: 0; transform: translateY(28px);  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.fade-up.vis    { opacity: 1; transform: translateY(0); }
.fade-left      { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.fade-left.vis  { opacity: 1; transform: translateX(0); }
.fade-right     { opacity: 0; transform: translateX(36px);  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.fade-right.vis { opacity: 1; transform: translateX(0); }
.scale-in       { opacity: 0; transform: scale(0.9);        transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.scale-in.vis   { opacity: 1; transform: scale(1); }

/* Delay helpers */
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* Line-reveal */
.line-wrap  { overflow: hidden; display: block; }
.line-inner { display: block; transform: translateY(110%); transition: transform 1s var(--ease-out); }
.line-inner.up { transform: translateY(0); }

/* Clip-path reveal (insight-detail) */
.reveal-text        { clip-path: inset(0 0 100% 0); transition: clip-path 1.5s var(--ease); }
.reveal-text.active { clip-path: inset(0 0 0 0); }
h1.reveal-text {
  display: block; visibility: visible; opacity: 1;
  color: var(--text-black) !important;
  padding-top: 40px; padding-bottom: 40px;
}


/* Keyframes */
@keyframes heroReveal { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp     { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes countUp    { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker     { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes slowMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes pulse      { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }


/* ============================================================
   GLOBAL COMPONENTS
   ============================================================ */

/* Tag label */
.tag-label {
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-text);
}

/* Divider line */
.divider-line { flex: 1; height: 1px; background: var(--grey-mid); }
.divider      { flex: 1; height: 1px; background: var(--grey-mid); }

/* ── Buttons ── */
.btn-dark {
  display: inline-flex; align-items: center; gap: 14px; letter-spacing:1px;
  background: var(--black); color: var(--white);
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 600;
  padding: 8px 8px 8px 24px; border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

.btn-icon {
  width: 38px; height: 38px; background: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease-out); flex-shrink: 0;
}
.btn-dark:hover .btn-icon { transform: rotate(45deg); }
.btn-icon svg { width: 14px; height: 14px; color:#1a1a1a; }

.btn-icon-dk {
  width: 38px; height: 38px; background: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease-out); flex-shrink: 0;
}
.btn-white { display: inline-flex; align-items: center; gap: 14px; background: var(--white); color: var(--black); font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; padding: 8px 8px 8px 24px; border-radius: var(--radius-pill); transition: transform 0.3s var(--ease-out), box-shadow 0.3s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.btn-white:hover .btn-icon-dk { transform: rotate(45deg); }

.btn-outline { display: inline-flex; align-items: center; gap: 12px; border: 1.5px solid var(--black); color: var(--black); font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; padding: 12px 24px; border-radius: var(--radius-pill); transition: all 0.3s ease; }
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-ghost-white { display: inline-flex; align-items: center; font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.5); padding: 16px 28px; border-radius: var(--radius-pill); border: 1.5px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

.btn-collaborate {
  background-color: var(--primary-red); color: white; border: none;
  padding: 6px 6px 6px 22px; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; display: flex; align-items: center;
  gap: 14px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btn-collaborate:hover { opacity: 0.9; transform: translateY(-1px); }
.arrow-wrapper {
  background-color: white; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.btn-collaborate:hover .arrow-wrapper { transform: rotate(45deg); }

/* CTA text links */
.cta-orange { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--black); transition: color 0.2s; }
.cta-orange:hover { color: var(--orange); }
.cta-orange .arr { color: var(--orange); }
.cta-white  { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-weight: 600; font-size: 1rem; opacity: 0.65; transition: opacity 0.2s; }
.cta-white .arr { color: var(--orange); }
.cta-white:hover { opacity: 1; }

/* Text swap effect */
.text-swap { position: relative; height: 24px; overflow: hidden; }
.text-primary, .text-hover { display: block; font-size: 18px; font-weight: 500; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.text-primary { color: #171717; }
.text-hover   { color: var(--primary-red); position: absolute; top: 100%; }

/* Italic */
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.italic-text  { font-style: italic; font-weight: 400; }


/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px; transition: background 0.4s, box-shadow 0.4s; background-color:#ffffff;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.93); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em;
}
.logo-mark { width: 330px; height: 60px; border-radius: 50%; position: relative; overflow: hidden; }
.nav-pill   { background: var(--grey-light); border-radius: var(--radius-pill); padding: 6px; display: none; }
@media (min-width: 900px) { .nav-pill { display: block; } }
.nav-list   { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-link   { display: block; font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--grey-text); padding: 9px 18px; border-radius: var(--radius-pill); transition: color 0.2s, background 0.2s; }
.nav-link:hover  { color: var(--black);  }
.nav-link.active { background: var(--primary-red); color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.nav-cta    { display: flex; align-items: center; gap: 12px; }
#desktopCta { display: none; }

/* Hamburger */
.hamburger  { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.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); }
@media (min-width: 900px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; font-family: var(--font-head); background: var(--black); 
  z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; opacity: 0; pointer-events: none; transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: scale(1); }
.mobile-menu a { font-family: var(--font-head); font-size: clamp(2rem,8vw,4rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; transition: color 0.2s; width:100%; padding:4px 24px; }
.mobile-menu a:hover { color: var(--orange); }

.mobile-menu-close {
  position: absolute; top: 24px; right: 44px;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
  opacity: 0.6; transition: opacity 0.2s;
}
.mobile-menu-close:hover { opacity: 1; }


/* ============================================================
   HERO (Index)
   ============================================================ */
.hero {
  position: relative; height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
#rippleGrid { position: absolute; inset: 0; z-index: 2; opacity: 0.5; }
#rippleGrid:hover { 
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.9); /* Subtle background fill */
  
  /* The Glow: X-offset, Y-offset, Blur-radius, Spread-radius, Color */
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.6); 
  
  /* Smooth transition makes the glow fade in gently */
  text-shadow: 
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 15px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(255, 255, 255, 0.3);
    
  transition: text-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
}
}

.hero-bg::after { content: ''; position: absolute; inset: 0; z-index: 2; }

.hero-content-wrapper {
  position: relative; z-index: 10; text-align: center;
  padding: 20px 40px; color: var(--white);  
}
.hero-content-wrapper > * { animation: heroReveal 1.2s var(--ease) forwards; }
.hero-title    { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.2s; }
.hero-cta      { animation-delay: 0.3s; }

/* --swap-height and --swap-speed merged into main :root below */

.text-swap-home {
  display: inline-block; /* Crucial: allows it to sit mid-sentence */
  position: relative;
  height: var(--swap-height); 
  overflow: hidden;
  vertical-align: bottom; /* Aligns the box with your text baseline */
  text-align:left;
}

.word-node {
  display: flex;
  flex-direction: column;
  animation: teleport-swap var(--swap-speed) infinite cubic-bezier(0.65, 0, 0.35, 1);
}

.text-node {
  display: block;
  height: var(--swap-height);
  line-height: var(--swap-height);
  color:var(--orange); /* Your brand orange */
  white-space: nowrap;
  font-family: var(--font-head); font-size: clamp(2.5rem, 6vw, 10rem);
  font-weight:600;
  font-style:normal;
}

/* Animation Logic for 3 words + 1 duplicate (4 total)
   0-25%: Word 1
   30-55%: Word 2
   60-85%: Word 3
   90-100%: Transition back to start
*/
@keyframes teleport-swap {
  0%, 25% { transform: translateY(0); }
  30%, 55% { transform: translateY(calc(var(--swap-height) * -1)); }
  60%, 85% { transform: translateY(calc(var(--swap-height) * -2)); }
  92%, 100% { transform: translateY(calc(var(--swap-height) * -3)); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; font-size: 0.85rem; font-weight: 600; margin-bottom: 30px;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--primary-red);
  border-radius: 50%; box-shadow: 0 0 10px var(--primary-red);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 10rem);
  line-height: 1.05; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 24px;
  padding: 20px 40px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 40px; line-height: 1.6;
}
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 40px; }

/* Social proof */
.social-proof {
  display: flex; align-items: center; gap: 20px;
  padding: 12px 24px; background: rgba(255,255,255,0.05); border-radius: 100px;
}
.avatar-group { display: flex; }
.avatar-group img {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid #000; margin-left: -12px;
}
.avatar-group img:first-child { margin-left: 0; }
.proof-info  { text-align: left; }
.stars       { color: #FFB800; font-size: 0.8rem; }
.proof-info p { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.6); }


/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section  { background: var(--cream); padding: 80px 40px; }
.clients-header   { max-width: 1240px; margin: 0 auto 50px; display: flex; align-items: center; gap: 24px; }
.logo-ticker      { overflow: hidden; position: relative; margin-bottom: 60px; }
.logo-ticker::before,
.logo-ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
.logo-ticker::before { left: 0;  background: linear-gradient(to right, var(--cream), transparent); }
.logo-ticker::after  { right: 0; background: linear-gradient(to left,  var(--cream), transparent); }
.logo-track  { display: flex; gap: 60px; align-items: center; animation: ticker 20s linear infinite; width: max-content; }
.logo-track img { height: 22px; filter: grayscale(1) opacity(0.55); transition: filter 0.3s; }
.logo-track img:hover { filter: grayscale(0) opacity(1); }
.clients-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.big-num  { font-family: "Raleway", sans-serif; font-size: clamp(7rem,16vw,16rem); font-weight: 600; line-height: 0.85; letter-spacing: -0.06em; }
.brand-tag { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 28px; }
.main-text { font-size: clamp(1.4rem,2.8vw,2.2rem); font-weight: 500; line-height: 1.2; letter-spacing: -0.02em; max-width: 560px; }


/* ============================================================
   BENTO GRID
   ============================================================ */
.bento-section { background: var(--cream); padding: 0 40px 80px; }
.bento-grid    { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bento-card    {
  background: var(--white); border-radius: var(--radius-xl); padding: 40px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 340px; transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.bento-card.wide    { grid-column: span 2; flex-direction: row; align-items: center; gap: 48px; }
.bento-card.img-bg  { background-image: url('../images/nanopv-mockup.jpg'); background-size: cover; background-position: center; padding: 0; min-height: 380px; }
.img-overlay { width: 100%; height: 100%; padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%); border-radius: var(--radius-xl); color: var(--white); }
.img-overlay h4 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.bento-card.dark { background: var(--black); color: var(--white); }
.card-eyebrow    { font-size: 0.8rem; font-weight: 600; color: var(--grey-text); display: flex; justify-content: space-between; }
.card-eyebrow.inv { color: rgba(255,255,255,0.4); }
.stat-big-num    { font-family: var(--font-head); font-size: clamp(4rem,8vw,6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin: 16px 0 12px; }
.card-desc       { font-size: 0.92rem; color: var(--grey-text); line-height: 1.55; }
.card-desc.inv   { color: rgba(255,255,255,0.45); }
.quote-giant     { position: absolute; bottom: -120px; right: -20px; font-size: 320px; font-weight: 900; color: rgba(0,0,0,0.025); line-height: 1; pointer-events: none; font-family: serif; }
.author-row      { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.author-row img  { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.author-name     { font-weight: 700; font-size: 0.95rem; }
.author-role     { font-size: 0.82rem; color: var(--grey-text); }
.process-side h3 { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; line-height: 1.2; }
.process-side p  { font-size: 0.92rem; color: var(--grey-text); line-height: 1.6; margin-bottom: 32px; }
.process-side    { flex: 1; }
.graph-side      { flex: 1; }
.graph-head      { margin-bottom: 20px; }
.graph-head strong { display: block; font-size: 0.88rem; font-weight: 600; }
.graph-head span   { font-size: 0.76rem; color: var(--grey-text); }
.graph-area      { width: 100%; height: 190px; border-left: 1px solid #eee; border-bottom: 1px solid #eee; position: relative; }
.step-pill       { position: absolute; padding: 9px 18px; border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.s1 { background: var(--orange-light); top: 14%; left: 5%; }
.s2 { background: var(--orange-mid);   top: 48%; left: 38%; }
.s3 { background: var(--orange); color: var(--white); top: 76%; left: 72%; }
.graph-labels    { position: absolute; bottom: -32px; width: 100%; display: flex; justify-content: space-between; font-size: 0.72rem; color: #ccc; }
.bento-link      { color: var(--white); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; opacity: 0.8; transition: opacity 0.2s, gap 0.2s; }
.bento-link:hover { opacity: 1; gap: 14px; }


/* ============================================================
   PROJECTS SECTION (Index & projects.html)
   ============================================================ */
.projects-section { background: var(--white); padding: 100px 40px; }
.section-head     { max-width: 1240px; margin: 0 auto 70px; text-align: center; }
.section-head h2  { font-family: var(--font-head); font-size: clamp(3rem,7vw,10rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1.2; margin: 12px 0 24px; }
.section-head p   { font-size: 1.05rem; color: var(--grey-text); max-width: 400px; margin: 0 auto; line-height: 1.6; }
.projects-grid    { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 40px 28px; }
.project-card     { display: flex; flex-direction: column; }
.project-card:hover { background-color: var(--cream); border-radius: 36px; }
.project-img-wrap { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 24px;  }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.project-card:hover .project-img-wrap img { transform: scale(1.06); }
.project-footer   { display: flex; align-items: flex-end; justify-content: space-between; padding: 8px 8px; margin: 12px; }
.project-info h3  { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.project-info p   { font-size: 0.9rem; color: var(--grey-text); max-width: 260px; line-height: 1.5; }
.proj-arrow       { width: 48px; height: 48px; background: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; opacity: 0; transform: translateX(15px); transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out); }
.project-card:hover .proj-arrow { opacity: 1; transform: translateX(0); }
.proj-arrow svg   { width: 20px; height: 20px; stroke: white; }
.more-cta         { max-width: 1240px; margin: 60px auto 0; display: flex; align-items: center; gap: 24px; }
.more-divider     { flex: 1; height: 1px; background: var(--grey-mid); }
.more-link        { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; position: relative; padding-bottom: 2px; }
.more-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1.5px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease-out); }
.more-link:hover::after { transform: scaleX(1); }
.arr-icon         { color: var(--orange); font-size: 1.2rem; transition: transform 0.3s var(--ease-out); }
.more-link:hover .arr-icon { transform: rotate(45deg); }
.project-logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.white-logo {
  width: 80px; /* Target display size for your white logo brand asset */
  height: 80px;
  opacity: 0;
  transform: scale(0.85);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

/* Projects page extras */
.more-cta-bar   { background: var(--white); padding: 80px 40px; text-align: center; background-image: url('../images/idea.png'); background-size:cover;background-position-y:-230px; }
.more-cta-inner { max-width: 680px; margin: 0 auto; }
.more-cta-bar { font-family: var(--font-head); font-size: clamp(2rem,4vw,3.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin: 16px 0 0px; }
.more-cta-bar h2 { font-family: var(--font-head); font-size: clamp(2rem,4vw,3.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin: 16px 0 24px; color:#fff; }
.more-cta-bar p  { font-size: 1rem; color: var(--grey-text); line-height: 1.7; margin-bottom: 40px; color:#fff; font-family:'Google Sans', sans-serif; letter-spacing:1px; }

/* Ticker section */
.ticker-section { background: var(--cream); overflow: hidden; padding: 0; }
.ticker-row     { display: flex; animation: ticker 20s linear infinite; white-space: nowrap; }
.ticker-inner   { display: flex; align-items: center; }

/* Case cards (projects.html) */
.case-section  { background: var(--white); padding: 100px 40px; }
.case-inner    { max-width: 1240px; margin: 0 auto; }
.case-top      { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.case-card     { border-radius: var(--radius-xl); overflow: hidden; position: relative; background: var(--grey-light); transition: transform 0.4s var(--ease-out); }
.case-card:hover { transform: translateY(-5px); }
.case-img      { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.case-body     { padding: 28px; }
.case-eyebrow  { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 8px; }
.case-tag      { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: var(--orange-light); padding: 4px 12px; border-radius: var(--radius-pill); }
.case-stats    { display: flex; gap: 24px; margin-top: 16px; }
.case-stat-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; }
.case-stat-lbl { font-size: 0.72rem; color: var(--grey-text); }
.case-cta      { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--orange); font-size: 0.9rem; margin-top: 20px; }

/* Team / join (projects.html) */
.team-join-section { background: var(--white); padding: 100px 40px; }
.team-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.image-container   { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 1/1; }
.image-container img { width: 100%; height: 100%; object-fit: cover; }
.social-icons      { position: absolute; top: 20px; right: 20px; display: flex; gap: 10px; }
.icon              { background: rgba(0,0,0,0.6); color: white; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.profile-info      { margin-top: 20px; }
.profile-info h3   { margin: 0; font-size: 1.2rem; }
.profile-info p    { color: var(--grey-text); font-size: 0.9rem; margin: 5px 0; }
.join-card         { background-color: var(--grey-light); border-radius: 24px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }
.join-header       { display: flex; justify-content: space-between; font-weight: 600; font-size: 0.9rem; }
.join-content h2   { font-size: 3rem; margin: 0 0 20px; }
.join-content p    { color: var(--grey-text); line-height: 1.5; max-width: 300px; }
.mail-link         { text-decoration: none; color: var(--black); font-weight: 600; text-align: right; }


/* ============================================================
   SERVICES SECTION (Index)
   ============================================================ */
.services-section      { background: var(--black); color: var(--white); padding: 120px 40px; }
.services-intro-grid   { max-width: 1240px; margin: 0 auto 90px; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.services-title        { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 28px; }
.services-list         { max-width: 1240px; margin: 0 auto; }
.service-item          { border-top: 1px solid rgba(255,255,255,0.08); padding: 44px 0; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.service-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.service-name          { font-family: var(--font-head); font-size: clamp(2.2rem,4.5vw,4.2rem); font-weight: 800; letter-spacing: -0.04em; transition: color 0.3s; }
.service-item:hover .service-name { color: var(--orange); }
.service-tags-wrap     { display: flex; flex-direction: column; gap: 12px; }
.tags-row              { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.stag                  { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.stag:hover            { color: var(--orange); }
.plus                  { color: rgba(255,255,255,0.2); }


/* ============================================================
   SERVICES PAGE (services.html)
   ============================================================ */

/* Hero */
.svc-hero { background: var(--cream); min-height: 88vh; display: flex; align-items: flex-end; padding: 100px 40px 80px; position: relative; overflow: hidden; }
.svc-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 20% 60%, rgba(255,107,53,0.08) 0%, transparent 65%); pointer-events: none; }
.svc-hero-inner   { max-width: 1240px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: flex-end; }
.svc-hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.2s forwards; }
.svc-hero-eyebrow .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 8px var(--orange); }
.svc-hero-title   { font-family: var(--font-head); font-size: clamp(3.5rem,8vw,8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; color: var(--black); }
.svc-hero-title em { color: var(--orange); font-style: normal; }
.svc-hero-right   { padding-bottom: 4px; }
.svc-hero-right p { font-size: 1.1rem; color: var(--grey-text); line-height: 1.75; margin-bottom: 36px; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.9s forwards; }
.svc-hero-right .cta-row { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 1.1s forwards; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* What we do */
.what-section  { background: var(--white); padding: 120px 40px; }
.what-inner    { max-width: 1240px; margin: 0 auto; }
.what-top      { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; margin-bottom: 100px; align-items: start; }
.what-top h2   { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; margin-top: 16px; }
.what-top p    { font-size: 1.1rem; color: var(--grey-text); line-height: 1.75; padding-top: 60px; margin-bottom: 28px; }
.what-top p strong { color: var(--black); font-weight: 600; }

/* Services accordion */
.svc-item         { border-top: 1px solid var(--grey-mid); position: relative; }
.svc-item:last-child { border-bottom: 1px solid var(--grey-mid); }
.svc-head         { display: flex; align-items: center; justify-content: space-between; padding: 40px 0; cursor: pointer; gap: 20px; }
.svc-head-left    { display: flex; align-items: center; gap: 32px; }
.svc-num          { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; color: var(--grey-mid); letter-spacing: 0.06em; min-width: 28px; }
.svc-name         { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,3.2rem); font-weight: 800; letter-spacing: -0.04em; transition: color 0.3s; }
.svc-item:hover .svc-name,
.svc-item.open .svc-name { color: var(--orange); }
.svc-icon         { width: 48px; height: 48px; border: 1.5px solid var(--grey-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.4s var(--ease-out); }
.svc-item:hover .svc-icon,
.svc-item.open .svc-icon  { background: var(--orange); border-color: var(--orange); }
.svc-icon svg     { width: 16px; height: 16px; stroke: var(--grey-text); transition: stroke 0.3s, transform 0.4s var(--ease-out); }
.svc-item:hover .svc-icon svg,
.svc-item.open .svc-icon svg { stroke: var(--white); }
.svc-item.open .svc-icon svg { transform: rotate(45deg); }
.svc-body         { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease-out); }
.svc-body-inner   { padding: 0 0 48px 60px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.svc-desc         { font-size: 1.05rem; color: var(--grey-text); line-height: 1.8; margin-bottom: 28px; }
.svc-deliverables h4 { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 16px; }
.svc-tags         { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag          { font-size: 0.82rem; font-weight: 600; padding: 7px 16px; border-radius: var(--radius-pill); background: var(--grey-light); color: var(--black); transition: background 0.2s; }
.svc-tag:hover    { background: var(--orange-light); color: var(--orange); }
.svc-cta-inline   { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--orange); transition: gap 0.3s var(--ease-out); }
.svc-cta-inline:hover { gap: 18px; }
.svc-list         {}

/* Pricing */
.pricing-section  { background: var(--black); color: var(--white); padding: 120px 40px; }
.pricing-inner    { max-width: 1240px; margin: 0 auto; }
.pricing-head     { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; margin-bottom: 80px; align-items: end; }
.pricing-head h2  { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; margin-top: 16px; }
.pricing-head p   { font-size: 1.05rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 20px; }
.pricing-note     { font-size: 0.82rem; color: rgba(255,255,255,0.25); line-height: 1.6; }
.pricing-grid     { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pricing-card     { background: #111; border-radius: var(--radius-xl); padding: 48px 40px; border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.4s var(--ease-out); }
.pricing-card:hover           { border-color: rgba(255,255,255,0.12); transform: translateY(-6px); }
.pricing-card.featured        { background: var(--orange); border-color: transparent; }
.pricing-card.featured:hover  { border-color: transparent; }
.pricing-plan     { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px; opacity: 0.55; }
.pricing-card.featured .pricing-plan { opacity: 0.7; color: var(--white); }
.pricing-amount   { font-family: var(--font-head); font-size: clamp(2.4rem,4vw,3.8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.pricing-per      { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-bottom: 28px; font-weight: 500; }
.pricing-card.featured .pricing-per { color: rgba(255,255,255,0.6); }
.pricing-desc     { font-size: 0.92rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 36px; flex: 1; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.75); }
.pricing-divider  { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 32px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.2); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.pricing-feat     { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.pricing-card.featured .pricing-feat { color: rgba(255,255,255,0.88); }
.feat-check       { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: 0.6rem; }
.pricing-card.featured .feat-check { background: rgba(255,255,255,0.2); }
.pricing-btn      { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; padding: 14px 28px; border-radius: var(--radius-pill); text-align: center; transition: all 0.3s ease; display: block; }
.pricing-btn-outline { border: 1.5px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); }
.pricing-btn-outline:hover { border-color: var(--white); color: var(--white); }
.pricing-btn-solid   { background: var(--black); color: var(--white); }
.pricing-btn-solid:hover { background: rgba(0,0,0,0.85); }

/* FAQ (services.html) */
.faq-section  { background: var(--cream); padding: 120px 40px; }
.faq-inner    { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.faq-left h2  { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; margin-top: 16px; margin-bottom: 28px; }
.faq-left p   { font-size: 0.95rem; color: var(--grey-text); line-height: 1.75; margin-bottom: 36px; }
.faq-item     { border-bottom: 1px solid var(--grey-mid); }
.faq-item:first-child { border-top: 1px solid var(--grey-mid); }
.faq-q        { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; gap: 20px; }
.faq-q h4     { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.35; }
.faq-toggle   { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--grey-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; color: var(--grey-text); transition: all 0.3s ease; line-height: 1; }
.faq-item.open .faq-toggle { background: var(--orange); border-color: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-a        { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq-a p      { font-size: 0.92rem; color: var(--grey-text); line-height: 1.8; padding-bottom: 24px; }

/* Social proof strip */
.proof-strip  { background: var(--white); padding: 80px 40px; }
.proof-inner  { max-width: 1240px; margin: 0 auto; }
.proof-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 52px; }
.proof-card   { background: var(--cream); border-radius: var(--radius-xl); padding: 44px; }
.proof-stars  { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 20px; }
.proof-card p { font-family: var(--font-head); font-size: 1.05rem; font-weight: 500; line-height: 1.6; letter-spacing: -0.01em; color: var(--black); margin-bottom: 28px; }
.proof-author { display: flex; align-items: center; gap: 14px; }
.proof-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.proof-avatar img { width: 100%; height: 100%; object-fit: cover; }
.proof-name   { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; }
.proof-role   { font-size: 0.78rem; color: var(--grey-text); margin-top: 2px; }

/* Service CTA block */
.svc-cta      { background-image: url('../images/idea.png'); padding: 100px 40px; text-align: center; position: relative; overflow: hidden; width: 100%; background-size: cover; }
.svc-cta::before { content: 'DESIGN'; position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); font-family: var(--font-head); font-size: clamp(8rem,18vw,18rem); font-weight: 800; letter-spacing: -0.06em; white-space: nowrap; color: rgba(255,255,255,0.06); pointer-events: none; }
.svc-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.svc-cta h2   { font-family: var(--font-head); font-size: clamp(3rem,6vw,6rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; color: var(--white); margin: 20px 0 28px; }
.svc-cta p    { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 480px; margin: 0 auto 48px; }


/* ============================================================
   TESTIMONIALS (Index)
   ============================================================ */
.testimonials-section { background: var(--white); padding: 120px 40px; }
.tm-inner    { max-width: 1240px; margin: 0 auto; }
.tm-header   { margin-bottom: 64px; }
.tm-header h2 { font-family: var(--font-head); font-size: clamp(2rem,5vw,4rem); font-weight: 800; letter-spacing: -0.03em; margin-top: 12px; }
.tm-header h2 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; }
.tm-slider   { position: relative; max-width: 800px; }
.tm-slide    { display: none; }
.tm-slide.active { display: block; animation: fadeUp 0.7s var(--ease-out); }
.tm-quote    { font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 36px; border: none; padding: 0; color: var(--black); }
.tm-author   { display: flex; align-items: center; gap: 16px; }
.tm-avatar-circle { width: 52px; height: 52px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 0.9rem; flex-shrink: 0; }
.tm-author strong { display: block; font-weight: 700; font-size: 1rem; }
.tm-author span   { font-size: 0.85rem; color: var(--grey-text); }
.tm-controls { display: flex; align-items: center; gap: 20px; margin-top: 48px; }
.tm-btn      { width: 44px; height: 44px; border: 1.5px solid var(--grey-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color 0.3s, background 0.3s; cursor: pointer; }
.tm-btn svg  { width: 20px; height: 20px; }
.tm-btn:hover { border-color: var(--orange); background: var(--orange); }
.tm-dots     { display: flex; gap: 6px; }
.tm-dot      { width: 6px; height: 6px; border-radius: 3px; background: var(--grey-mid); cursor: pointer; transition: background 0.3s, width 0.3s; }
.tm-dot.active { background: var(--orange); width: 22px; }
.tm-dark-card  { background: var(--black); color: var(--white); border-radius: var(--radius-xl); padding: 60px; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; margin-top: 60px; }
.tm-dark-card > img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 3/4; }
.tm-dark-quote p { font-family: var(--font-head); font-size: clamp(1.3rem,2.5vw,1.9rem); font-weight: 600; line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 40px; }
.co-logo { margin-bottom: 24px; }
.co-logo img { height: 28px; filter: invert(1); opacity: 0.6; }
.tm-author-sm { display: flex; align-items: center; gap: 14px; }
.tm-author-sm img { width: 44px; height: 44px; border-radius: 50%; }
.tm-author-sm strong { display: block; font-size: 1rem; }
.tm-author-sm span   { font-size: 0.82rem; color: rgba(255,255,255,0.5); }


/* ============================================================
   PROCESS (Index)
   ============================================================ */
.process-block       { background: var(--cream); color: var(--black); padding: 120px 40px; }
.process-intro-grid  { max-width: 1240px; margin: 0 auto 80px; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.process-main-title  { font-family: var(--font-head); font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 24px; }
.process-desc        { color: var(--black); line-height: 1.7; margin-bottom: 36px; }
.acc-wrap            { max-width: 1240px; margin: 0 auto; display: flex; height: 520px; border-radius: var(--radius-xl); overflow: hidden; }
input[type="radio"]  { display: none; }
.acc-p1 { background-color: var(--primary-red);  }
.acc-p2 { background-color: var(--primary-red1); }
.acc-p3 { background-color: var(--primary-red2); }
.acc-p4 { background-color: var(--primary-red3); }
.acc-panel { flex: 1; display: flex; cursor: pointer; transition: flex 0.7s var(--ease-out), background 0.5s; overflow: hidden; border-right: 1px solid rgba(255,255,255,0.05); }
input[type="radio"]:checked + .acc-panel { flex: 10; background: #1c1c1c; cursor: default; }
.acc-vert    { min-width: 72px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 36px 0; pointer-events: none; }
.acc-num     { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; opacity: 0.2; }
.acc-label   { font-family: var(--font-head); writing-mode: vertical-rl; transform: rotate(180deg); font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); }
input[type="radio"]:checked + .acc-panel .acc-vert { display: none; }
.acc-content { flex: 1; opacity: 0; transform: translateX(-30px); transition: opacity 0.4s ease, transform 0.6s var(--ease-out); padding: 56px; display: flex; align-items: center; pointer-events: none; }
input[type="radio"]:checked + .acc-panel .acc-content { opacity: 1; transform: translateX(0); transition-delay: 0.25s; pointer-events: all; }
.acc-content h2 { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; margin-bottom: 36px; letter-spacing: -0.03em; color: #fff; }
.acc-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.acc-col strong { display: block; font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: #fff; }
.acc-col p   { font-size: 0.86rem; color: rgba(255,255,255,0.42); line-height: 1.6; margin-bottom: 14px; }
.time-badge  { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(255,255,255,0.07); padding: 4px 10px; border-radius: 4px; color: rgba(255,255,255,0.45); }


/* ============================================================
   STATS (Index)
   ============================================================ */
.stats-section {
  position: relative;
  background: var(--black);
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/mountain-bg.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: 100px 40px; color: var(--white); overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
}
.stats-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(255,107,53,0.06) 0%, transparent 70%); pointer-events: none; }
.stats-head     { text-align: center; margin-bottom: 80px; }
.stats-head h2  { font-family: var(--font-head); font-size: clamp(3.5rem,8vw,7rem); font-weight: 800; letter-spacing: -0.05em; line-height: 0.9; text-transform: uppercase; margin-bottom: 16px; }
.stats-head p   { color: rgba(255,255,255,0.38); font-size: 1rem; }
.stats-grid     { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid rgba(255,255,255,0.07); }
.stat-box       { padding: 60px; border: 0.5px solid rgba(255,255,255,0.07); text-align: center; transition: background 0.3s; }
.stat-box:hover { background: rgba(255,255,255,0.02); }
.stat-num       { font-family: var(--font-head); font-size: clamp(4rem,8vw,7rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1; margin-bottom: 16px; }
.stat-box h4    { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.stat-box p     { font-size: 0.86rem; color: rgba(255,255,255,0.38); line-height: 1.6; max-width: 280px; margin: 0 auto; }
.ticker-wrap    { margin-top: 80px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 26px; overflow: hidden; }
.ticker-track   { display: inline-flex; animation: ticker 18s linear infinite; white-space: nowrap; }
.ticker-track span { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding-right: 36px; color: rgba(255,255,255,0.55); }
.ticker-track span.ot { color: var(--orange); opacity: 0.6; }


/* ============================================================
   BLOG / INSIGHTS (Index & insight.html)
   ============================================================ */
.blog-section    { background: var(--white); padding: 100px 40px; }
.blog-grid-wrap  { max-width: 1240px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.blog-row        { display: grid; gap: 20px; }
.blog-row.top    { grid-template-columns: 2fr 1fr 1fr; }
.blog-row.bottom { grid-template-columns: repeat(3,1fr); }
.blog-card       { display: flex; flex-direction: column; border-radius: var(--radius-xl); overflow: hidden; color: var(--black); transition: transform 0.4s var(--ease-out); }
.blog-card:hover { transform: translateY(-6px); }
.blog-img-wrap   { position: relative; overflow: hidden; border-radius: var(--radius-lg); margin: 10px 10px 0; }
.blog-img-wrap.tall     { aspect-ratio: 4/5; }
.blog-img-wrap:not(.tall) { aspect-ratio: 16/9; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-hover-arrow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.7); width: 56px; height: 56px; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.35s var(--ease-out); }
.blog-card:hover .blog-hover-arrow { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.blog-hover-arrow svg { width: 22px; fill: var(--black); }
.blog-info      { padding: 20px; }
.blog-info h3   { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; letter-spacing: -0.01em; }
.blog-info p    { font-size: 0.86rem; color: var(--grey-text); line-height: 1.5; }


/* ============================================================
   WORK SECTION (Index)
   ============================================================ */
.work-section    { background: var(--cream); padding: 100px 40px; }
.work-inner      { max-width: 1240px; margin: 0 auto; }
.work-badge      { display: inline-block; background: var(--grey-mid); font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 18px; }
.work-inner h2   { font-family: var(--font-head); font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 48px; }
.work-grid       { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; gap: 24px; grid-template-areas: "big s1" "big s2"; }
.work-card       { border-radius: var(--radius-xl); overflow: hidden; background: var(--white); }
.work-card.large { grid-area: big; }
.work-card:nth-child(2) { grid-area: s1; }
.work-card:nth-child(3) { grid-area: s2; }
.work-img        { position: relative; overflow: hidden; }
.work-card.large .work-img     { aspect-ratio: 1/1.1; }
.work-card:not(.large) .work-img { aspect-ratio: 16/9; }
.work-img img    { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.work-card:hover .work-img img { transform: scale(1.05); }
.work-tag        { position: absolute; top: 18px; left: 18px; background: rgba(255,255,255,0.92); padding: 5px 14px; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 700; font-family: var(--font-head); letter-spacing: 0.04em; text-transform: uppercase; }
.work-info       { padding: 28px; }
.work-info h3    { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.work-info p     { font-size: 0.88rem; color: var(--grey-text); line-height: 1.5; margin-bottom: 18px; }
.work-link       { font-weight: 700; font-size: 0.88rem; font-family: var(--font-head); color: var(--orange); }


/* ============================================================
   CONTACT SECTION (Index)
   ============================================================ */
.contact-section  { background: var(--white); padding: 100px 40px; }
.contact-card     { max-width: 1240px; margin: 0 auto; background: var(--cream); border-radius: 48px; padding: 100px 60px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.contact-avatars  { display: flex; margin-bottom: 36px; position: relative; }
.contact-avatars img { width: 56px; height: 56px; border-radius: 50%; border: 4px solid var(--cream); margin-left: -16px; object-fit: cover; }
.contact-avatars img:first-child { margin-left: 0; }
.online-dot       { position: absolute; bottom: 4px; right: -6px; width: 14px; height: 14px; background: #22c55e; border: 3px solid var(--cream); border-radius: 50%; }
.contact-title    { font-family: var(--font-head); font-size: clamp(3rem,7vw,5.5rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 24px; line-height: 1; }
.contact-desc     { font-size: 1.05rem; color: var(--grey-text); line-height: 1.65; max-width: 460px; margin-bottom: 48px; }
.contact-form     { width: 100%; max-width: 600px; display: flex; flex-direction: column; gap: 28px; }
.form-row         { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group      { position: relative; text-align: left; }
.input-group input,
.input-group textarea,
.input-group select { width: 100%; padding: 14px 0; font-size: 1rem; font-family: var(--font-body); border: none; border-bottom: 2px solid var(--grey-mid); background: transparent; outline: none; color: var(--black); transition: border-color 0.3s; }
.input-group label { position: absolute; top: 14px; left: 0; color: var(--grey-text); pointer-events: none; transition: all 0.3s ease; font-size: 0.95rem; }
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label { top: -12px; font-size: 0.7rem; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-head); }
.input-group input:focus,
.input-group textarea:focus { border-color: var(--black); }
select            { cursor: pointer; appearance: none; }
.social-row       { display: flex; gap: 16px; align-items: center; margin-top: 36px; }
.social-row a     { font-size: 0.88rem; font-weight: 600; color: var(--grey-text); transition: color 0.2s; }
.social-row a:hover { color: var(--orange); }
.dot-sep          { width: 4px; height: 4px; background: var(--grey-mid); border-radius: 50%; }


/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-page    { padding: 0px 0 100px; }
.main-grid       { display: grid; grid-template-columns: 1fr; align-items: start; }
.label-red       { color: var(--brand-red); text-transform: uppercase; font-weight: 700; font-size: 13px; letter-spacing: 2px; }
.huge-title      { font-size: clamp(3rem,7vw,10rem); font-weight: 600; line-height: 0.95; letter-spacing: -0.04em; margin: 20px 0; }
.huge-title span { color: var(--brand-red); }
.intro-p         { font-size: 1.15rem; color: var(--text-gray); line-height: 1.6; margin-bottom: 60px; max-width: 480px; }
.info-blocks     { margin-bottom: 60px; }
.info-item       { margin-bottom: 30px; }
.small-label     { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; color: #AAA; margin-bottom: 8px; }
.info-link       { font-size: 1.3rem; font-weight: 600; text-decoration: none; color: var(--text-black); transition: 0.3s; }
.info-link:hover { color: var(--brand-red); }
.availability-card { background: #FAFAFA; padding: 32px; border-radius: 24px; border: 1px solid var(--border); }
.avail-header    { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.pulse-dot       { width: 10px; height: 10px; background: #22C55E; border-radius: 50%; box-shadow: 0 0 10px #22C55E; animation: pulse 2s infinite; }
.team-names      { font-size: 13px; color: var(--text-gray); margin-top: 15px; font-weight: 500; }
.response-tag    { display: inline-block; margin-top: 15px; padding: 6px 12px; background: #E8F5E9; color: #2E7D32; font-size: 11px; font-weight: 700; border-radius: 6px; text-transform: uppercase; }
.form-step       { margin-bottom: 60px; }
.step-num        { font-size: 14px; font-weight: 800; color: #CCC; margin-bottom: 30px; }
.input-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
input, textarea  { padding: 18px 0; border: none; border-bottom: 1px solid var(--border); font-size: 16px; transition: 0.3s; }
input:focus, textarea:focus { outline: none; border-color: var(--brand-red); }
.field-label     { font-weight: 700; font-size: 15px; margin-bottom: 15px; display: block; }
.tag-selector    { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
.tag-pill        { padding: 10px 20px; border: 1px solid var(--border); border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.tag-pill.active { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }
.btn-submit      { background: var(--text-black); color: #fff; border: none; padding: 20px 45px; border-radius: 100px; font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: 0.3s var(--ease); }
.btn-submit:hover { background: var(--brand-red); transform: translateY(-3px); }
.extra-options   { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 100px; padding: 80px 0; border-top: 1px solid var(--border); }
.option-card     { padding: 40px; background: #FAFAFA; border-radius: 24px; transition: 0.3s var(--ease); border: 1px solid transparent; }
.option-card p     { line-height:24px; margin-top:16px; }
.option-card:hover { transform: translateY(-10px); background: #fff; border-color: var(--border); box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
.option-card a   { color: var(--brand-red); font-weight: 700; text-decoration: none; font-size: 14px; display: block; margin-top: 20px; }
.form-header, .form-footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.inquiry-form    { background: var(--white); border-radius: 32px; padding: 48px; border: 1px solid var(--border); }
.contact-form-wrapper { }
.contact-info    { }
.contact-head {padding:120px 48px 24px !important;}


/* ============================================================
   ABOUT PAGE (about.html & about.css)
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 100px 20px; }

/* Hero */
.hero-top     { text-align: center; margin-bottom: 60px; }
.hero-subline { font-size: 1.2rem; color: var(--text-gray); }

/* Avatar group (about page variant) */
.avatar-group .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #ddd; border: 2px solid white; margin-left: -10px;
}
.avatar-group .avatar.count {
  background: #1a1a1a; color: white; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}

.image-full img { width: 100%; height: auto; border-radius: 4px; margin-bottom: 80px; }

/* Intro grid */
.intro-grid   { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; }
.intro-left h2 { font-size: 2.2rem; line-height: 1.6; font-weight: 500; font-family: var(--font-head); margin-bottom:24px; }
.intro-right  { font-size: 1rem; color: var(--text-gray); position: relative; font-family: var(--font-body); }
.intro-right p { padding: 10px 0; line-height: 1.5rem; }
.index        { display: block; font-weight: bold; margin-bottom: 20px; }
.intro-grid-services   { display: grid; grid-template-columns:1fr;}

/* Values */
.values-header { display: grid; grid-template-columns: 0.1fr 1fr 0.8fr; gap: 40px; margin-bottom: 100px; font-family: var(--font-head); }
.values-section { background-color: var(--white); }
.testimonial-card { background: #fcfcfc; padding: 40px; border-radius: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.quote        { font-size: 1.5rem; font-weight: 600; margin-bottom: 15px; font-family: var(--font-body); }
.testimonial-user { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.user-avatar  { width: 50px; height: 50px; border-radius: 50%; background: #222; }
.value-item   { display: grid; grid-template-columns: 1.5fr 1.5fr 0.2fr; padding: 40px 0; border-top: 1px solid var(--border-light); align-items: center; font-family: var(--font-head); }
.value-main   { font-size: 2.5rem; font-weight: 600; letter-spacing: -1px; font-family: var(--font-head); }
.value-desc   { color: var(--text-gray); max-width: 400px; font-family: var(--font-body); line-height: 1.8rem; }
.value-num    { font-weight: bold; text-align: right; }
.values-title-group { }
.quote-sub    { }

.timeline-wrapper {
    position: relative;
    display: flex;
    gap: 40px;
    padding: 100px 0;
}

/* The Vertical Line Track */
.progress-track {
    position: absolute;
    left: 100px; /* Adjust based on where you want the line */
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--line-bg);
}

/* The Filling Orange Line */
.progress-bar-fill {
    width: 100%;
    height: 0%;
    background: var(--orange);
    transition: height 0.1s linear;
}

/* Individual Step Row */
.step-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 50px;
    margin-bottom: 150px;
    align-items: start;
}

.step-meta {
    font-family: monospace;
    color: var(--text-gray);
    font-size: 0.9rem;
    padding-top: 8px;
}

/* Pill Tags */
.step-tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.step-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.step-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-gray);
    max-width: 600px;
}


/* ============================================================
   CTA BANNERS (about & insight)
   ============================================================ */
.cta-banner {
  position: relative; width: 100%; height: 520px;
  background-image: url('../images/arch1.jpg');
  background-size: cover; background-position: center;
  display: flex; align-items: center; overflow: hidden;
}
.cta-banner1 {
  position: relative; width: 100%; height: 520px;
  background-image: url('../images/ideas-bg.png');
  background-size: cover; background-position: center; background-position-y:-548px;
  display: flex; align-items: center; overflow: hidden;
}
.overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(214,52,75,0.8), transparent);
  z-index: 1;
}
.cta-container  { position: relative; z-index: 2; padding-left: 8%; }
.cta-title      { color: var(--bg-white); font-size: 4.5rem; line-height: 1.1; font-weight: 600; margin: 0 0 40px; letter-spacing: -2px; }
.cta-link-wrapper { display: flex; align-items: center; }
.cta-link       { color: var(--bg-white); text-decoration: none; font-size: 1rem; font-weight: 500; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 4px; transition: border-color 0.3s ease; }
.cta-link:hover { border-color: rgba(255,255,255,1); }
.circle-icon    { width: 14px; height: 14px; border: 1px dashed var(--bg-white); border-radius: 50%; display: inline-block; }


/* ============================================================
   PROJECT DETAIL PAGE (project-detail.html)
   ============================================================ */
.case-study-hero {
  position: relative; width: 100%; height: 120vh; background-color: #fff;
}
.sticky-wrapper { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; }
.sticky-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.content-card   {
  position: relative; z-index: 10; background: var(--bg-white);
  border-radius: 40px 40px 0 0; margin-top: -20vh;
  padding: 100px 0; box-shadow: 0 -20px 40px rgba(0,0,0,0.1);
}
.case-header    { padding: 60px 0 100px; }
.project-name   { font-size: clamp(60px,10vw,140px); font-weight: 500; letter-spacing: -0.05em; margin: 0 0 40px; }
.case-details-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; border-top: 1px solid #eee; padding-top: 40px; }
.meta-data      { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.meta-item      { display: flex; flex-direction: column; gap: 5px; }
.meta-label     { font-size: 12px; text-transform: uppercase; color: var(--text-muted); }
.meta-value     { font-size: 18px; font-weight: 500; display:inline; }
.separator      { color: var(--text-ghost); padding-top:20px; }
.case-description { max-width: 450px; font-size: 18px; line-height: 1.5; }
.header-grid    { display: grid; grid-template-columns: 1fr 3fr; margin: 80px 0; gap: 20px; }
.label          { text-transform: uppercase; font-weight: 600; font-size: 12px; color: var(--accent-orange); }
.main-title     { font-size: clamp(24px,4vw,42px); line-height: 1.2; margin: 0; }
.main-title-casestudy     { font-size:16px; line-height: 1.8; margin: 0; font-weight:400; }
.stat-item      { padding: 5px 0px; }
.stat-item h3      { padding: 12px 0px; }
.stats-grid     { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 60px; border-top: 1px solid #eee; padding-top: 50px; }
.person         { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.person img     { width: 40px; height: 40px; border-radius: 50%; }
.image-grid-section { background: #f9f9f9; padding: 120px 0; }
.grid-layout    { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.grid-item img  { width: 100%; border-radius: 24px; display: block; }
.grid-item.wide { grid-column: span 2; }
.grid-header    { }

/* FAQ (project-detail.html variant) */
.faq-container  { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; padding: 0 40px; }
.faq-intro      { position: sticky; top: 100px; align-self: start; }
.faq-title      { font-size: 80px; margin: 0; letter-spacing: -0.05em; }
.faq-subtitle   { line-height:24px; }
.faq-list       { }
.faq-header     { display: flex; justify-content: space-between; padding: 30px 0; align-items: center; }
.faq-question   { font-size: 20px; font-weight: 600; transition: 0.3s; }
.faq-content    { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.4s ease; }
.faq-item.active .faq-content  { max-height: 200px; opacity: 1; padding-bottom: 30px; }
.faq-item.active .faq-question { color: var(--orange); }
.faq-number     { }
.faq-cta        { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 16px; transition: color 0.3s ease; padding-top:8px; }
.faq-cta .arrow { color: var(--orange); font-size: 18px; }
.faq-cta:hover  { color: var(--orange); }
.arrow          { color: var(--orange); }


/* ============================================================
   CASE STUDY PAGE (case-study.html)
   ============================================================ */
.cs-hero        { background: var(--cream); padding: 140px 40px 0; overflow: hidden; position: relative; }
.cs-hero::before { content: 'Tera'; position: absolute; bottom: -60px; right: -40px; font-family: var(--font-head); font-weight: 800; font-size: clamp(10rem,25vw,28rem); letter-spacing: -0.08em; color: rgba(0,0,0,0.03); line-height: 1; pointer-events: none; z-index: 0; white-space: nowrap; }
.cs-hero-inner  { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.cs-breadcrumb  { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.6s var(--ease-out) 0.2s forwards; }
.cs-breadcrumb a { font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; color: var(--grey-text); transition: color 0.2s; }
.cs-breadcrumb a:hover { color: var(--black); }
.cs-breadcrumb span  { color: var(--grey-mid); font-size: 0.7rem; }
.cs-breadcrumb strong { font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; }
.cs-hero-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-end; margin-bottom: 0; }
.cs-cats        { display: flex; gap: 10px; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.6s var(--ease-out) 0.3s forwards; }
.cs-cat         { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: var(--orange-light); padding: 5px 14px; border-radius: var(--radius-pill); }
.cs-cat-grey    { background: var(--grey-light); color: var(--grey-text); }
.cs-title       { font-family: var(--font-head); font-size: clamp(2.8rem,6vw,5.5rem); font-weight: 800; letter-spacing: -0.05em; line-height: 0.95; margin-bottom: 0; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.4s forwards; }
.cs-hero-right  { padding-bottom: 20px; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.5s forwards; }
.cs-client-card { background: var(--white); border-radius: var(--radius-xl); padding: 32px; margin-bottom: 28px; border: 1px solid var(--grey-mid); }
.cs-client-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.cs-client-logo { width: 52px; height: 52px; background: var(--black); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--white); }
.cs-client-name { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
.cs-client-sector { font-size: 0.78rem; color: var(--grey-text); }
.cs-client-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cs-stat-mini   { background: var(--grey-light); padding: 16px; border-radius: 16px; }
.cs-stat-mini-val { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.04em; }
.cs-stat-mini-lbl { font-size: 0.72rem; color: var(--grey-text); margin-top: 2px; }
.cs-hero-desc   { font-size: 1rem; color: var(--grey-text); line-height: 1.78; }
.cs-hero-img    { margin-top: 60px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; overflow: hidden; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.7s forwards; position: relative; }
.cs-hero-img img { width: 100%; height: 560px; object-fit: cover; }

/* Stats bar */
.cs-stats-bar   { background: var(--black); padding: 60px 40px; }
.cs-stats-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.cs-stat-big    { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 28px; }
.cs-stat-big:first-child { border-left: none; padding-left: 0; }
.cs-stat-big-num { font-family: var(--font-head); font-size: clamp(2.4rem,4vw,3.8rem); font-weight: 800; letter-spacing: -0.06em; color: var(--white); line-height: 1; }
.cs-stat-big-num .accent { color: var(--orange); }
.cs-stat-big-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-top: 8px; line-height: 1.5; }

/* Body sections */
.cs-body        { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.cs-section     { padding: 100px 0; }
.cs-section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 60px; }
.cs-section-label .tag-label { white-space: nowrap; }
.cs-section-label .divider   { flex: 1; height: 1px; background: var(--grey-mid); }
.cs-section-num { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; color: var(--grey-mid); margin-left: auto; white-space: nowrap; }

/* Challenge */
.cs-challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cs-challenge-grid h2 { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 28px; }
.cs-challenge-grid p  { font-size: 1.05rem; color: var(--grey-text); line-height: 1.82; margin-bottom: 20px; }
.cs-challenge-aside   { background: var(--cream); border-radius: var(--radius-xl); padding: 40px; border: 1px solid var(--grey-mid); }
.cs-challenge-aside h4 { font-family: var(--font-head); font-weight: 800; font-size: 1rem; margin-bottom: 20px; }
.cs-pain-list   { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.cs-pain-item   { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--white); border-radius: 16px; border: 1px solid var(--grey-mid); }
.cs-pain-icon   { width: 34px; height: 34px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.cs-pain-text   { font-size: 0.88rem; color: #2a2a2a; line-height: 1.6; }

/* Process steps */
.cs-process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.cs-step        { background: var(--cream); border-radius: var(--radius-xl); padding: 32px; border: 1px solid var(--grey-mid); position: relative; overflow: hidden; }
.cs-step::before { content: attr(data-num); position: absolute; top: -10px; right: 16px; font-family: var(--font-head); font-weight: 800; font-size: 4rem; color: rgba(0,0,0,0.04); letter-spacing: -0.06em; line-height: 1; }
.cs-step-icon   { width: 44px; height: 44px; background: var(--black); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 20px; }
.cs-step h4     { font-family: var(--font-head); font-weight: 800; font-size: 1rem; letter-spacing: -0.02em; margin-bottom: 10px; }
.cs-step p      { font-size: 0.84rem; color: var(--grey-text); line-height: 1.65; }
.cs-step-week   { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }

/* Creative grid */
.cs-creative-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cs-creative-img   { border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.cs-creative-img img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.cs-creative-img:hover img { transform: scale(1.04); }
.cs-creative-img.tall img  { height: 500px; }
.cs-creative-img.short img { height: 280px; }
.cs-img-caption    { position: absolute; bottom: 18px; left: 18px; background: rgba(0,0,0,0.65); backdrop-filter: blur(8px); color: rgba(255,255,255,0.8); font-size: 0.72rem; font-family: var(--font-head); font-weight: 600; padding: 6px 14px; border-radius: var(--radius-pill); }
.cs-creative-right { display: flex; flex-direction: column; gap: 24px; }

/* Quote */
.cs-quote       { background: var(--black); border-radius: var(--radius-xl); padding: 60px; margin: 0; }
.cs-quote-mark  { font-family: var(--font-head); font-size: 6rem; line-height: 0.6; color: var(--orange); margin-bottom: 24px; display: block; }
.cs-quote p     { font-family: var(--font-head); font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; letter-spacing: -0.03em; color: var(--white); line-height: 1.3; margin-bottom: 32px; }
.cs-quote-author { display: flex; align-items: center; gap: 16px; }
.cs-quote-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.1); }
.cs-quote-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cs-quote-name  { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--white); }
.cs-quote-role  { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* Results */
.cs-results-grid  { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 60px; }
.cs-result-card   { border-radius: var(--radius-xl); padding: 36px; border: 1.5px solid var(--grey-mid); transition: transform 0.4s var(--ease-out), border-color 0.3s; }
.cs-result-card:hover { transform: translateY(-5px); border-color: var(--orange); }
.cs-result-card.highlight { background: var(--orange); border-color: var(--orange); color: var(--white); }
.cs-result-icon   { font-size: 1.5rem; margin-bottom: 16px; }
.cs-result-num    { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,4rem); font-weight: 800; letter-spacing: -0.06em; margin-bottom: 8px; line-height: 1; }
.cs-result-card.highlight .cs-result-num  { color: var(--white); }
.cs-result-label  { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 10px; }
.cs-result-card.highlight .cs-result-label { color: rgba(255,255,255,0.6); }
.cs-result-desc   { font-size: 0.86rem; color: var(--grey-text); line-height: 1.65; }
.cs-result-card.highlight .cs-result-desc  { color: rgba(255,255,255,0.7); }
.cs-results-img   { border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 60px; }
.cs-results-img img { width: 100%; height: 480px; object-fit: cover; }

/* Deliverables */
.cs-deliverables  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cs-deliverable   { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--cream); border-radius: var(--radius-lg); border: 1px solid var(--grey-mid); }
.cs-deliverable-num { width: 36px; height: 36px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 0.78rem; flex-shrink: 0; }
.cs-deliverable h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; margin-bottom: 6px; }
.cs-deliverable p  { font-size: 0.82rem; color: var(--grey-text); line-height: 1.6; }

/* More cases */
.cs-more        { background: var(--cream); padding: 100px 40px; }
.cs-more-inner  { max-width: 1240px; margin: 0 auto; }
.cs-more-label  { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; }
.cs-more-label .divider { flex: 1; height: 1px; background: var(--grey-mid); }
.cs-more-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cs-more-card   { border-radius: var(--radius-xl); overflow: hidden; background: var(--white); border: 1px solid var(--grey-mid); transition: transform 0.45s var(--ease-out), box-shadow 0.45s; }
.cs-more-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.cs-more-img    { overflow: hidden; }
.cs-more-img img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.cs-more-card:hover .cs-more-img img { transform: scale(1.06); }
.cs-more-body   { padding: 32px; }
.cs-more-tag    { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.cs-more-title  { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.cs-more-desc   { font-size: 0.86rem; color: var(--grey-text); line-height: 1.65; margin-bottom: 20px; }
.cs-more-footer { display: flex; align-items: center; justify-content: space-between; }
.cs-more-date   { font-size: 0.76rem; color: var(--grey-text); }
.cs-more-arrow  { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--grey-mid); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.cs-more-card:hover .cs-more-arrow { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }
.cs-more-arrow svg { width: 13px; height: 13px; stroke: var(--grey-text); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.cs-more-card:hover .cs-more-arrow svg { stroke: var(--white); }

/* CTA band */
.cs-cta         { background: var(--black); padding: 120px 40px; text-align: center; }
.cs-cta h2      { font-family: var(--font-head); font-size: clamp(2.4rem,6vw,5rem); font-weight: 800; letter-spacing: -0.05em; color: var(--white); margin-bottom: 20px; }
.cs-cta h2 em   { color: var(--orange); font-style: normal; }
.cs-cta p       { font-size: 1.05rem; color: rgba(255,255,255,0.38); line-height: 1.75; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cs-cta-btns    { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }


/* ============================================================
   INSIGHT DETAIL PAGE (insight-detail.html)
   ============================================================ */
.case-study-hero-insight { padding-top: 120px; background: #fff; position: relative; z-index: 1; }
.center-text    { text-align: center; }
.meta-tags      { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 0.1em; }
.meta-tags span { margin: 0 10px; }
.author-block   { display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 80px; }
.avatar         { width: 50px; height: 50px; border-radius: 50%; background: url('https://i.pravatar.cc/100?u=alexa') center/cover; }
.author-info    { text-align: left; line-height: 1.2; }
.author-info strong { display: block; font-size: 1rem; }
.author-info span   { font-size: 0.85rem; color: var(--text-gray); }
.hero-image     { width: 100%; height: 85vh; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.more-news      { background: #ededed; padding: 120px 0; border-radius: 60px 60px 0 0; margin-top: -60px; position: relative; z-index: 11; }
.section-title  { font-size: clamp(4rem,15vw,10rem); text-align: center; line-height: 0.85; margin-bottom: 100px; font-weight: 800; letter-spacing: -0.05em; }
.news-grid      { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px,1fr)); gap: 60px; }
.img-zoom       { aspect-ratio: 4/5; border-radius: 30px; overflow: hidden; margin-bottom: 25px; }
.img-zoom img   { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.news-card      { cursor: pointer; text-decoration: none; color: inherit; display: block; }
.news-card:hover img { transform: scale(1.08); }
.news-card h4   { font-size: 1.5rem; margin: 10px 0; }
.footer-link    { text-align: center; margin-top: 80px; font-size: 1.2rem; }
.footer-link a  { text-decoration: none; color: var(--text-black); font-weight: 700; border-bottom: 2px solid var(--text-black); padding-bottom: 5px; }
/* Two Column Content */
.text-columns1   {display: grid;grid-template-columns:1fr;margin-top: 40px;}
.share-article span {font-weight: 700;text-transform: uppercase;font-size: 0.8rem;letter-spacing: 0.1em;}
/* Case Study Hero */
.case-study-content {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.content-card-insight {
  border-radius: 16px;
  padding: 40px;
  color: #1a1a1a;
  background-color:#ffffff;
}
.content-card-insight p {
  color: #1a1a1a;
  padding:16px 0px;
}
.date {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.insight {
  display: block; visibility: visible; opacity: 1;
  color: var(--text-black) !important;
  padding-top: 40px; padding-bottom: 40px;
  font-weight: 600;font-size: clamp(4rem,15vw,5rem);
}

.text-columns1 h2 {
  font-weight: 600;font-size: clamp(4rem,15vw,12rem);
}

.text-columns1 h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.text-columns1 p {
  line-height: 1.6;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.text-columns1 ul {
  padding:8px 18px;
  margin-bottom: 12px;
}

.text-columns1 li {
  margin-bottom: 6px;
  font-size:1rem;
}

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.full-width-section {
  margin-top: 20px;
  margin-bottom: 40px;
}

.share-article {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 14px;
}

.social-icons-insight {
  opacity: 0.7;
}


/* ============================================================
   COPY BUTTON (shared)
   ============================================================ */
.email-copy-wrapper { padding: 16px; }
.copy-btn       { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; display: inline-flex; align-items: center; position: relative; transition: color 0.2s ease; }
.copy-btn:hover { color: var(--orange); }
.copy-icon      { width: 18px; height: 18px; }
.tooltip        { position: absolute; bottom: 150%; left: 50%; transform: translateX(-50%) translateY(10px); background: #000; color: #fff; padding: 4px 8px; border-radius: 4px; font-size: 0.7rem; opacity: 0; pointer-events: none; transition: all 0.2s ease; }
.copy-btn:hover .tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }
.email-text     { }


/* ============================================================
   AVAILABILITY BADGE (shared)
   ============================================================ */
.avail-badge    { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); padding: 12px 20px; border-radius: var(--radius-pill); font-size: 0.85rem; border: 1px solid var(--grey-mid); }
.green-dot      { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 10px #22c55e; }


/* ============================================================
   FOOTER
   ============================================================ */
.main-footer    { background: var(--black); padding: 100px 40px 40px; color: var(--white); overflow: hidden; }
.footer-inner   { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.footer-mid     { display: grid; grid-template-columns: 1fr 1.5fr 2fr; gap: 60px; margin-bottom: 80px; }
.footer-label   { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-text); margin-bottom: 24px; }
.footer-link-list { list-style: none; padding: 0; margin: 0; }
.footer-link-list li { margin-bottom: 12px; }
.footer-link-list a { font-family: var(--font-head); font-size: 1.2rem; font-weight: 500; color: var(--white); transition: color 0.3s, transform 0.3s; display: inline-block; }
.footer-link-list a:hover { color: var(--orange); transform: translateX(8px); }
.footer-address { font-style: normal; font-size: 1.1rem; line-height: 1.6; margin-bottom: 24px; }
.footer-logo    { }
.footer-top     { }
.footer-col     { }

/* Marquee */
.footer-marquee { display: flex; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 40px 0; margin: 60px 0; width: 100%; }
.marquee-content { display: flex; animation: slowMarquee 50s linear infinite; }
.marquee-content span { font-family: var(--font-head); font-size: clamp(4rem,10vw,10rem); font-weight: 800; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.1); padding-right: 50px; }

/* Subscribe */
.subscribe h2   { font-size: 2.5rem; margin-bottom: 15px; letter-spacing: -0.02em; }
.subscribe p    { color: var(--grey-text); margin-bottom: 30px; font-size: 1rem; }
.subscribe-form { border-bottom: 1px solid var(--grey-mid); display: flex; padding: 10px 0; transition: border-color 0.3s; }
.subscribe-form:focus-within { border-color: var(--orange); }
.subscribe-form input   { background: transparent; border: none; padding: 10px 0; flex-grow: 1; color: var(--white); font-size: 1rem; outline: none; }
.subscribe-form button  { background: var(--white); color: var(--black); border-radius: 50%; width: 40px; height: 40px; border: none; cursor: pointer; font-size: 1.2rem; transition: transform 0.3s, background 0.3s; }
.subscribe-form button:hover { background: var(--orange); color: var(--white); transform: scale(1.1); }

/* Bottom bar */
.footer-bottom  { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 40px; }
.copyright      { color: var(--grey-text); font-size: 0.9rem; }
.footer-links   { display: flex; gap: 24px; }
.footer-links a { color: var(--grey-text); font-size: 0.85rem; font-weight: 500; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--white); }

/* Case-study footer variant */
.footer-logo-hero { font-family: var(--font-head); font-size: clamp(5rem,16vw,16.8rem); width: 100%; font-weight: 600; letter-spacing: 0.01em; line-height: 0.85; border-bottom: 1px solid var(--grey-mid); padding: 36px 0; margin-bottom: 60px; background: linear-gradient(135deg, var(--black) 40%, var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-nav     { display: flex; flex-direction: column; gap: 12px; }
.footer-nav span { font-family: var(--font-head); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 6px; }
.footer-nav a   { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: var(--black); transition: color 0.2s, transform 0.3s; display: inline-block; }
.footer-nav a:hover { color: var(--orange); transform: translateX(6px); }
.footer-meta    { text-align: right; }
.timezone       { font-size: 0.84rem; color: var(--grey-text); }


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .hero-title           { font-size: clamp(3.5rem, 10vw, 5rem); }
  .bento-grid           { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .bento-card.wide      { grid-column: span 2; }
  .projects-grid        { gap: 24px; }
  .footer-mid           { grid-template-columns: 1fr 1fr; }
  .subscribe            { grid-column: span 2; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .huge-title           { font-size: 5rem; }
  .intro-grid,
  .values-header,
  .value-item           { grid-template-columns: 1fr; }

  /* Services */
  .svc-hero-inner       { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero             { padding: 140px 20px 80px; }
  .what-top             { grid-template-columns: 1fr; gap: 30px; }
  .what-section         { padding: 80px 20px; }
  .svc-body-inner       { grid-template-columns: 1fr; gap: 28px; padding: 0 0 36px; }
  .pricing-grid         { grid-template-columns: 1fr; }
  .pricing-head         { grid-template-columns: 1fr; gap: 24px; }
  .pricing-section      { padding: 80px 20px; }
  .faq-inner            { grid-template-columns: 1fr; gap: 40px; }
  .faq-section          { padding: 80px 20px; }
  .proof-grid           { grid-template-columns: 1fr; }
  .proof-strip          { padding: 80px 20px; }

  /* Process accordion */
  .acc-wrap             { flex-direction: column; height: auto; }
  .acc-panel            { flex: none; height: 72px; }
  input[type="radio"]:checked + .acc-panel { height: auto; flex: none; }
  .acc-vert             { flex-direction: row; padding: 20px 28px; min-width: auto; height: 72px; width: 100%; }
  .acc-label            { writing-mode: horizontal-tb; transform: none; }
  .acc-grid             { grid-template-columns: 1fr; }

  /* Case study */
  .cs-hero-grid         { grid-template-columns: 1fr; gap: 36px; }
  .cs-hero              { padding: 120px 20px 0; }
  .cs-stats-inner       { grid-template-columns: repeat(2,1fr); }
  .cs-stats-bar         { padding: 40px 20px; }
  .cs-challenge-grid    { grid-template-columns: 1fr; gap: 40px; }
  .cs-section           { padding: 80px 0; }
  .cs-process-steps     { grid-template-columns: repeat(2,1fr); }
  .cs-results-grid      { grid-template-columns: 1fr 1fr; }

  /* Work grid */
  .work-grid            { grid-template-columns: 1fr; grid-template-areas: none; }
  .work-card.large,
  .work-card:nth-child(2),
  .work-card:nth-child(3) { grid-area: auto; }
  .work-section         { padding: 80px 20px; }

  /* Clients */
  .clients-grid         { grid-template-columns: 1fr; gap: 30px; }
  .clients-section      { padding: 60px 20px; }

  /* Services index */
  .services-intro-grid  { grid-template-columns: 1fr; gap: 30px; }
  .service-item         { grid-template-columns: 1fr; gap: 20px; }
  .services-section     { padding: 80px 20px; }

  /* Testimonials */
  .tm-dark-card         { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .testimonials-section { padding: 80px 20px; }

  /* Process */
  .process-intro-grid   { grid-template-columns: 1fr; gap: 30px; }
  .process-block        { padding: 80px 20px; }
  .acc-content          { padding: 28px; }

  /* Blog */
  .blog-row.top,
  .blog-row.bottom      { grid-template-columns: 1fr 1fr; }

  /* Team */
  .team-grid            { grid-template-columns: 1fr; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .hero, .projects-section, .services-section,
  .testimonials-section, .process-block, .contact-section { padding: 80px 20px; }

  .hero-title           { font-size: 3.2rem; line-height: 1.1; }
  .hero-cta             { flex-direction: column; gap: 20px; }

  .bento-grid           { grid-template-columns: 1fr; }
  .bento-card.wide      { grid-column: span 1; flex-direction: column; text-align: center; }
  .bento-section        { padding: 0 20px 60px; }

  .acc-wrap             { flex-direction: column; height: auto; border-radius: var(--radius-lg); }
  .acc-panel            { flex: none; height: 64px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  input[type="radio"]:checked + .acc-panel { height: auto; min-height: 300px; }
  .acc-vert             { flex-direction: row; padding: 0 24px; height: 64px; width: 100%; justify-content: flex-start; gap: 20px; }
  .acc-label            { writing-mode: horizontal-tb; transform: none; }

  .stats-grid           { grid-template-columns: 1fr; }
  .stat-box             { padding: 40px 20px; }

  .contact-card         { padding: 60px 24px; border-radius: var(--radius-xl); }
  .contact-section      { padding: 80px 20px; }

  .main-grid            { grid-template-columns: 1fr; gap: 60px; }
  .extra-options        { grid-template-columns: 1fr; }
  .input-row            { grid-template-columns: 1fr; }

  .faq-container, .header-grid { grid-template-columns: 1fr; display: block; }
  .case-details-row     { flex-direction: column; }
  .case-description     { margin-top: 30px; }
  .project-name         { font-size: 60px; }

  .footer-bottom        { flex-direction: column-reverse; text-align: center; }
  .footer-inner         { padding: 0 20px; }
  .footer-mid           { grid-template-columns: 1fr; gap: 40px; }
  .subscribe            { grid-column: span 1; }
  .footer-links         { justify-content: center; }
  .main-footer          { padding: 60px 20px 30px; }

  /* Case study */
  .cs-cta               { padding: 80px 20px; }
  .cs-more              { padding: 80px 20px; }
  .cs-more-grid         { grid-template-columns: 1fr; }
  .cs-hero-img img      { height: 300px; }
  .cs-creative-grid     { grid-template-columns: 1fr; }
  .cs-deliverables      { grid-template-columns: 1fr; }
  .cs-results-grid      { grid-template-columns: 1fr; }
  .cs-process-steps     { grid-template-columns: 1fr; }

  /* Insight detail */
  .container            { padding: 0 20px; }
  .news-grid            { grid-template-columns: 1fr; }

  /* Case study footer */
  .footer-mid.cs-variant { flex-direction: column; }
  .footer-meta          { text-align: left; }
  
  /* About Timeline study */
  .timeline-wrapper {
        gap: 20px;
        padding: 50px 10px;
    }

    /* Move line to the far left on mobile */
    .progress-track {
        left: 15px; 
    }

    /* Stack the meta (/001/) and the content */
    .step-row {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 15px;
        margin-bottom: 80px;
        padding-left: 40px; /* Space for the line on the left */
    }

    .step-meta {
        padding-top: 0;
        font-size: 0.8rem;
        opacity: 0.7;
    }

    .step-tag {
        font-size: 0.75rem;
        padding: 3px 10px;
        margin-bottom: 15px;
    }

    /* Scale down typography for mobile readability */
    .step-title {
        font-size: 1.8rem; 
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .step-text {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* ── 680px ── */
@media (max-width: 680px) {
  .projects-grid        { grid-template-columns: 1fr; }
  .projects-section     { padding: 80px 20px; }
  .proj-arrow           { opacity: 1; transform: none; width: 40px; height: 40px; }
  .blog-row.top,
  .blog-row.bottom      { grid-template-columns: 1fr; }
  .blog-section         { padding: 80px 20px; }
}

/* ── 640px ── */
@media (max-width: 640px) {
  .form-row             { grid-template-columns: 1fr; }
  .contact-card         { padding: 60px 24px; border-radius: var(--radius-xl); }
  .svc-cta              { padding: 80px 20px; }
  .cta-title            { font-size: 3rem; }
  .cta-banner,
  .cta-banner1          { height: 350px; }
  .cs-hero-img img      { height: 300px; }
  .cs-body              { padding: 0 20px; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .stats-grid           { grid-template-columns: 1fr; }
  .stat-box             { padding: 40px 24px; }
  .stats-section        { padding: 80px 20px; }
}

/* ── 580px ── */
@media (max-width: 580px) {
  .blog-row.top,
  .blog-row.bottom      { grid-template-columns: 1fr; }
  .blog-section         { padding: 80px 20px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .hero-title           { font-size: 2.8rem; }
  .hero-subtitle        {padding: 0 60px; }
  .site-header          { padding: 15px 20px; }
  .btn-dark,
  .btn-collaborate      { width: 100%; justify-content: space-between;  }
  .project-info h3      { font-size: 1.1rem; }
  .project-footer       { flex-direction: column; align-items: flex-start; gap: 15px; }
  .footer-bottom        { flex-direction: column; gap: 15px; text-align: center; }
  .footer-links         { justify-content: center; flex-wrap: wrap; }
  .cs-stats-inner       { grid-template-columns: 1fr 1fr; }
  .cs-results-grid      { grid-template-columns: 1fr; }
  .nav-cta              { display:none;}
  .logo                 { width: 180px; }
  .nav-inner            { padding: 4px 16px; }
  .values-header        { padding:24px 5px;}
  .subscribe-form button { width:45px; padding:0px; }
  .container            {padding:80px 20px;}
  .contact            {padding:24px 20px;}
  .huge-title           { font-size: 3rem; }
  .hero-top             {margin-bottom: 8px;}
  .text-swap-home       {text-align:center; font-size:3rem; --swap-height:65px;}
  .hero-cta             {padding: 0 70px;}
  .text-columns1        { padding:4px; border-radius:16px;}
  .content-card-insight   {background-color:#ffffff;}
  .mobile-menu          {width:100%; display:inherit;padding-top:120px;}
  .mobile-menu a        {width:100%; display:inherit;}
  .mobile-menu a:hover  {color:var(--orange);}
  .step-title {
        font-size: 1.5rem;
    }
    
    .timeline-wrapper {
        padding: 40px 5px;
    }
    .hero-content-wrapper { padding-top: 80px; }
}