/* ============================================
   ANAND MOTORS — styles.css  (v3 Responsive)
   Brand: Charcoal Black + Amber Gold
   Screens: Mobile · Tablet · Desktop
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --g:  #C9961A;
  --gl: #D4A820;
  --gs: #E8C050;
  --gd: #9A7010;
  --ink:  #080705;
  --ink2: #111008;
  --ink3: #1A1710;
  --ink4: #222018;
  --cr:  #F4EFE6;
  --cr2: #EAE4D8;
  --cr3: #D8D0C0;
  --ms: #9A9080;
  --fg: #58524A;
  --gh: #2C2820;
  --ln: #252218;
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; max-width: 100%; }
body { background: var(--ink); color: var(--cr); font-family: 'Outfit', sans-serif; overflow-x: hidden; width: 100%; max-width: 100%; position: relative; }

/* ── CURSOR (desktop only) ── */
#cur, #cur2 {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
#cur  { width: 6px; height: 6px; background: var(--gs); }
#cur2 { width: 38px; height: 38px; border: 1px solid rgba(212,168,32,.35); transition: all .1s ease; }

/* ── NAV ── */
#nav { position: fixed; top: 0; left: 0; width: 100%; max-width: 100vw; z-index: 1000; transition: all .4s; }
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 5rem; transition: padding .4s; max-width: 100%; box-sizing: border-box;
}
#nav.s .nav-inner {
  padding: 1rem 5rem;
  background: rgba(8,7,5,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gh);
}
.logo {
  font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 900;
  letter-spacing: .06em; text-decoration: none; color: var(--cr); cursor: none;
  white-space: nowrap; flex-shrink: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis;
}
.logo b { color: var(--gl); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--ms); text-decoration: none; font-size: .7rem; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 400; transition: color .3s;
  position: relative; cursor: none;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--gl); transition: width .3s;
}
.nav-links a:hover { color: var(--gs); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }
.ncta {
  border: 1px solid rgba(201,150,26,.45); color: var(--gl); padding: .55rem 1.4rem;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  font-family: 'Outfit', sans-serif; background: transparent; transition: all .3s; cursor: none;
  white-space: nowrap;
}
.ncta:hover { background: var(--gl); color: var(--ink); }

/* ── HAMBURGER ── */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .4rem; cursor: pointer; flex-shrink: 0;
}
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--cr);
  transition: all .35s; transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
#mob-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink2); z-index: 999;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 2.5rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
#mob-menu.open { opacity: 1; pointer-events: all; }
#mob-menu a {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700;
  color: var(--cr); text-decoration: none; letter-spacing: .03em; transition: color .3s;
}
#mob-menu a:hover { color: var(--gl); }
.mob-cta {
  margin-top: 1rem; background: var(--gl); color: var(--ink);
  padding: 1rem 3rem; font-size: .8rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600;
  font-family: 'Outfit', sans-serif; border: none; cursor: pointer;
}
.mob-line { width: 40px; height: 1px; background: var(--gh); }

/* ── HERO ── */
#home { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hbg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(201,150,26,.03) 100px),
    repeating-linear-gradient(0deg,  transparent, transparent 99px, rgba(201,150,26,.03) 100px);
}
.hbg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,150,26,.05) 0%, transparent 65%);
}
.bgnum {
  position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
  font-family: 'Playfair Display', serif; font-size: min(38vw, 380px); font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(201,150,26,.05);
  line-height: 1; user-select: none; pointer-events: none;
}
.hc { position: relative; padding: 0 5rem; z-index: 2; max-width: 800px; }
.htag {
  display: flex; align-items: center; gap: .8rem; margin-bottom: 2rem;
  opacity: 0; animation: fu .8s .2s forwards;
}
.htl { width: 42px; height: 1px; background: var(--gl); flex-shrink: 0; }
.hts { font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gl); font-weight: 400; }
h1.ht {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  font-weight: 900; line-height: .93; margin-bottom: 1.8rem;
  opacity: 0; animation: fu .8s .4s forwards;
}
h1.ht em { font-style: italic; color: var(--gl); font-weight: 400; }
.hsub {
  font-size: clamp(.85rem, 1.5vw, .98rem); color: var(--ms); max-width: 430px;
  line-height: 1.9; margin-bottom: 3rem; font-weight: 300;
  opacity: 0; animation: fu .8s .6s forwards;
}
.hact {
  display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: fu .8s .8s forwards;
}
.hst-row {
  position: absolute; right: 5rem; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 0;
  opacity: 0; animation: fr .8s 1s forwards;
}
.si { padding: 1.6rem 1.8rem; border: 1px solid var(--gh); text-align: right; position: relative; }
.si + .si { border-top: none; }
.si::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gl), transparent);
  opacity: 0; transition: opacity .4s;
}
.si:hover::before { opacity: 1; }
.sn { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gl); line-height: 1; }
.sl { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fg); margin-top: .3rem; }
.scr {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem; z-index: 2;
  opacity: 0; animation: fu .8s 1.2s forwards;
}
.scrt { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--fg); }
.scrl { width: 1px; height: 55px; background: var(--gh); position: relative; overflow: hidden; }
.scrl::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: var(--gl); animation: sa 2s ease-in-out infinite;
}
@keyframes sa   { 0%   { transform: translateY(-100%); } 100% { transform: translateY(300%); } }
@keyframes fu   { from { opacity: 0; transform: translateY(32px);  } to { opacity: 1; transform: translateY(0);  } }
@keyframes fr   { from { opacity: 0; transform: translateY(-50%) translateX(28px); } to { opacity: 1; transform: translateY(-50%) translateX(0); } }

/* Mobile hero stats row */
.hst-mob { display: none; }

/* ── BUTTONS ── */
.bp {
  background: var(--gl); color: var(--ink); padding: .9rem 2.5rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  font-family: 'Outfit', sans-serif; border: none; text-decoration: none;
  display: inline-block; transition: all .3s; cursor: none;
}
.bp:hover { background: var(--gs); }
.bgh {
  color: var(--ms); font-size: .75rem; letter-spacing: .1em; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem; transition: color .3s;
  font-weight: 300; cursor: none; background: none; border: none;
  font-family: 'Outfit', sans-serif;
}
.bgh:hover { color: var(--gs); }
.bgh svg { transition: transform .3s; }
.bgh:hover svg { transform: translateX(4px); }

/* ── TICKER ── */
.ticker {
  background: var(--ink2); border-top: 1px solid var(--gh); border-bottom: 1px solid var(--gh);
  height: 46px; display: flex; align-items: center; overflow: hidden;
}
.tick-wrap { display: flex; animation: tk 30s linear infinite; white-space: nowrap; }
.tick-item {
  display: flex; align-items: center; gap: 1.8rem;
  padding: 0 2rem; height: 46px; border-right: 1px solid var(--gh); flex-shrink: 0;
}
.tdot { width: 4px; height: 4px; background: var(--gl); border-radius: 50%; }
.ttxt { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--fg); }
@keyframes tk { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SHARED SECTION STYLES ── */
section { padding: 7rem 5rem; }
.stag { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.stl { width: 26px; height: 1px; background: var(--gl); flex-shrink: 0; }
.sts { font-size: .63rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gl); font-weight: 400; }
.sth {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1.8rem;
}
.sth em { font-style: italic; color: var(--gl); font-weight: 400; }
.divl { height: 1px; background: linear-gradient(90deg, transparent, var(--gh), transparent); }

/* ── MEET OUR TEAM — CUBE ROTATION ── */
.th { margin-bottom: 3rem; }

.cube-wrap { display: flex; flex-direction: column; align-items: center; gap: 2rem; }

.cube-stage {
  width: 280px; height: 360px;
  perspective: 1400px;
  position: relative;
}
.cube {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.65,0,.35,1);
  cursor: grab;
}
.cube:active { cursor: grabbing; }

.cube-face {
  position: absolute; inset: 0;
  background: var(--ink2); border: 1px solid var(--gh);
  backface-visibility: hidden;
  display: flex; flex-direction: column; align-items: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.cf-img {
  width: 100%; height: 220px; margin-bottom: 1.3rem;
  background: var(--ink3); border: 1px solid var(--gh);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; flex-shrink: 0;
}
.cf-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-ico { font-size: 3.2rem; color: var(--gh); }
.cf-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--cr); margin-bottom: .4rem; }
.cf-role { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gl); font-weight: 400; }

/* Nav controls below the cube */
.cube-nav { display: flex; align-items: center; gap: 1.6rem; }
.cube-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--gh); background: transparent; color: var(--gl);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .3s, background .3s, color .3s;
}
.cube-arrow:hover { border-color: var(--gl); background: var(--gl); color: var(--ink); }
.cube-dots { display: flex; gap: .55rem; }
.cube-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gh);
  border: none; padding: 0; cursor: pointer; transition: background .3s, transform .3s;
}
.cube-dot.on { background: var(--gl); transform: scale(1.25); }

/* ── REVEAL ANIMATIONS ── */
.rv  { opacity: 0; transform: translateY(45px);  transition: all .85s cubic-bezier(.16,1,.3,1); }
.rl  { opacity: 0; transform: translateX(-45px); transition: all .85s cubic-bezier(.16,1,.3,1); }
.rr  { opacity: 0; transform: translateX(45px);  transition: all .85s cubic-bezier(.16,1,.3,1); }
.rv.on, .rl.on, .rr.on { opacity: 1; transform: none; }

/* ── ABOUT ── */
#about { background: var(--ink2); }
.ag { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.atext p { color: var(--ms); line-height: 2; margin-bottom: 1.5rem; font-weight: 300; font-size: .9rem; }
.aq { position: relative; margin: 2.5rem 0; padding: 1.8rem 2rem; }
.aq::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--gl), var(--gd));
}
.aq::after { content: ''; position: absolute; inset: 0; background: rgba(201,150,26,.04); }
.aq p {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic;
  color: var(--cr); line-height: 1.75; font-weight: 400; position: relative; z-index: 1;
}
.aq cite {
  display: block; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gl); margin-top: .8rem; font-style: normal; position: relative; z-index: 1;
}
.pcard { background: var(--ink3); border: 1px solid var(--gh); position: relative; overflow: hidden; }
.pcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--gl), var(--gd), transparent);
}
.phead { padding: 1.6rem 2rem; border-bottom: 1px solid var(--gh); display: flex; align-items: center; justify-content: space-between; }
.pht { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gl); font-weight: 500; }
.pyrs { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--gl); text-align: right; line-height: 1; }
.pylab { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fg); text-align: right; }
.psteps { padding: 1.8rem; }
.pstep { display: flex; gap: 1.3rem; padding: 1.3rem 0; border-bottom: 1px solid var(--gh); transition: all .3s; }
.pstep:last-child { border-bottom: none; padding-bottom: 0; }
.pstep:hover { background: rgba(201,150,26,.03); margin: 0 -1.8rem; padding-left: calc(1.3rem + 1.8rem); padding-right: 1.8rem; }
.pn { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gh); font-weight: 900; min-width: 2.2rem; line-height: 1; transition: color .3s; }
.pstep:hover .pn { color: var(--gl); }
.pt { font-size: .82rem; font-weight: 500; color: var(--cr); margin-bottom: .3rem; }
.pd { font-size: .75rem; color: var(--ms); line-height: 1.65; font-weight: 300; }

/* ── CATALOG ── */
#catalog { background: var(--ink); }
.ch { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap; }
.cfilts { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.cf {
  background: transparent; border: 1px solid var(--gh); color: var(--ms);
  padding: .45rem 1.2rem; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase;
  transition: all .3s; font-family: 'Outfit', sans-serif; font-weight: 400; cursor: none;
}
.cf:hover, .cf.on { border-color: var(--gl); color: var(--gl); background: rgba(201,150,26,.06); }
.cgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gh); }
.pc { background: var(--ink2); position: relative; overflow: hidden; transition: background .4s; }
.pc:hover { background: var(--ink3); }
.pc:hover .pi-ico { transform: scale(1.2) rotate(-8deg); opacity: .28; }
.pc:hover .piov { opacity: 1; }
.pimg { height: 190px; background: var(--ink3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--gh); }
.pi-ico { font-size: 3.5rem; opacity: .1; transition: all .5s; user-select: none; }
.piov { position: absolute; inset: 0; opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; padding: 1rem; }
.wab { background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.22); color: #4DD97A; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; padding: .28rem .65rem; font-weight: 500; }
.pbody { padding: 1.4rem; }
.pcat { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gl); margin-bottom: .4rem; font-weight: 500; }
.pname { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--cr); margin-bottom: .45rem; }
.pdesc { font-size: .74rem; color: var(--ms); line-height: 1.65; margin-bottom: 1.2rem; font-weight: 300; }
.pcta { display: inline-flex; align-items: center; gap: .45rem; color: var(--gl); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: gap .3s; cursor: none; }
.pcta:hover { gap: .7rem; }

/* ── CLIENTS ── */
#clients { background: var(--ink2); }
.clg { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; margin-bottom: 5rem; }
.tnums { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 2.5rem; background: var(--gh); }
.tc { background: var(--ink3); padding: 1.8rem; position: relative; overflow: hidden; }
.tc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gl), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.tc:hover::after { transform: scaleX(1); }
.tn { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: var(--gl); line-height: 1; }
.tl { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg); margin-top: .35rem; }
.tlist { display: flex; flex-direction: column; }
.tcard { background: var(--ink3); border: 1px solid var(--gh); padding: 2rem; position: relative; transition: all .4s; }
.tcard + .tcard { border-top: none; }
.tcard:hover { border-color: rgba(201,150,26,.3); }
.tcard::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gl); opacity: .13; position: absolute; top: -.5rem; left: 1rem; line-height: 1; font-weight: 900; }
.ttxt { font-size: .85rem; color: var(--ms); line-height: 1.85; margin-bottom: 1.3rem; font-weight: 300; font-style: italic; }
.tau { display: flex; align-items: center; gap: .9rem; }
.tav { width: 36px; height: 36px; border-radius: 50%; background: var(--ink4); border: 1px solid rgba(201,150,26,.3); display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--gl); font-weight: 600; flex-shrink: 0; }
.tan h5 { font-size: .8rem; font-weight: 500; color: var(--cr); }
.tan p  { font-size: .67rem; color: var(--fg); margin-top: .1rem; }
.b2b { background: var(--ink3); border: 1px solid var(--gh); position: relative; overflow: hidden; }
.b2b::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--gl), var(--gd), transparent); }
.b2b-in { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; padding: 3.5rem 4rem; }
.b2b h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: .8rem; line-height: 1.2; }
.b2b h3 em { font-style: italic; color: var(--gl); font-weight: 400; }
.b2b p { color: var(--ms); font-size: .85rem; line-height: 1.75; font-weight: 300; max-width: 500px; }
.b2b-btns { display: flex; flex-direction: column; gap: 1rem; min-width: 200px; }

/* ── CONTACT ── */
#contact { background: var(--ink); }
.cong { display: grid; grid-template-columns: 1fr 1.3fr; gap: 7rem; }
.cinfo { display: flex; flex-direction: column; gap: 2.2rem; margin-top: .5rem; }
.ci { display: flex; gap: 1.3rem; }
.cico { width: 44px; height: 44px; border: 1px solid var(--gh); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: border-color .3s; }
.ci:hover .cico { border-color: rgba(201,150,26,.4); }
.cdet h4 { font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gl); margin-bottom: .4rem; font-weight: 500; }
.cdet p  { color: var(--ms); font-size: .83rem; line-height: 1.7; font-weight: 300; }
.cdet a  { color: var(--gl); text-decoration: none; font-size: .78rem; }
.cform { background: var(--ink2); border: 1px solid var(--gh); padding: 2.8rem; position: relative; }
.cform::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--gl), var(--gd), transparent); }
.ftit { font-family: 'Playfair Display', serif; font-size: 1.55rem; margin-bottom: 2.2rem; font-weight: 700; }
.ftit em { font-style: italic; color: var(--gl); font-weight: 400; }
.fg { margin-bottom: 1.2rem; }
.fg label { display: block; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--fg); margin-bottom: .45rem; font-weight: 500; }
.fg input, .fg textarea, .fg select { width: 100%; background: var(--ink3); border: 1px solid var(--gh); color: var(--cr); padding: .8rem 1rem; font-family: 'Outfit', sans-serif; font-size: .83rem; font-weight: 300; outline: none; transition: border-color .3s; appearance: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: rgba(201,150,26,.5); }
.fg select option { background: var(--ink2); }
.fg textarea { min-height: 110px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
footer { background: var(--ink2); border-top: 1px solid var(--gh); padding: 3rem 5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.flogo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; letter-spacing: .06em; text-decoration: none; color: var(--cr); }
.flogo b { color: var(--gl); }
.fcopy { font-size: .68rem; color: var(--fg); letter-spacing: .05em; }
.flinks { display: flex; gap: 2rem; }
.flinks a { color: var(--fg); text-decoration: none; font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; transition: color .3s; cursor: none; }
.flinks a:hover { color: var(--gl); }

/* ── WHATSAPP FAB ── */
.wfab { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 900; box-shadow: 0 6px 24px rgba(37,211,102,.22); transition: all .3s; text-decoration: none; cursor: none; }
.wfab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 35px rgba(37,211,102,.38); }
.wfab svg { width: 25px; height: 25px; fill: white; }
.wpulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.3); animation: wp 2.5s infinite; }
@keyframes wp { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.65); opacity: 0; } }

/* ═══════════════════════════
   TABLET  (≤ 1024px)
═══════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner      { padding: 1.4rem 2.5rem; }
  #nav.s .nav-inner { padding: .9rem 2.5rem; }
  .nav-links      { display: none; }
  .burger         { display: flex; }
  section         { padding: 5.5rem 2.5rem; }
  .hc             { padding: 0 2.5rem; max-width: 100%; }
  .hst-row        { display: none; }
  .hst-mob        { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gh); margin-top: 3rem; }
  .hst-mob .si    { text-align: center; padding: 1.2rem 1rem; }
  .hst-mob .sn    { font-size: 2rem; }
  .ag             { grid-template-columns: 1fr; gap: 3.5rem; }
  .clg            { grid-template-columns: 1fr; gap: 3.5rem; }
  .cong           { grid-template-columns: 1fr; gap: 3.5rem; }
  .cgrid          { grid-template-columns: repeat(2,1fr); }
  .b2b-in         { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem; }
  footer          { padding: 2.5rem; }
  .bgnum          { font-size: min(55vw, 400px); right: 0; }
}

/* ═══════════════════════════
   MOBILE  (≤ 640px)
═══════════════════════════ */
@media (max-width: 640px) {
  .nav-inner        { padding: 1.1rem 1.3rem; }
  #nav.s .nav-inner { padding: .8rem 1.3rem; }
  .logo             { font-size: 1.15rem; }
  .ncta             { display: none; }
  section           { padding: 4rem 1.3rem; }
  .hc               { padding: 0 1.3rem; }
  h1.ht             { font-size: clamp(2.8rem, 13vw, 4.5rem); line-height: .96; }
  .hsub             { font-size: .85rem; max-width: 100%; }
  .hact             { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .bp               { width: 100%; text-align: center; padding: .9rem 1.5rem; }
  .bgnum            { display: none; }
  .scr              { display: none; }
  .cgrid            { grid-template-columns: 1fr; }
  .tnums            { grid-template-columns: 1fr 1fr; }
  .cfilts           { gap: .4rem; }
  .cf               { padding: .4rem .9rem; font-size: .6rem; }
  .cube-stage       { width: 230px; height: 320px; }
  .cf-img           { height: 190px; }
  .cf-name          { font-size: 1.1rem; }
  .frow             { grid-template-columns: 1fr; }
  .b2b-btns         { min-width: auto; width: 100%; }
  .b2b h3           { font-size: 1.5rem; }
  footer            { flex-direction: column; text-align: center; padding: 2rem 1.3rem; }
  .flinks           { justify-content: center; }
  .mob-cta          { width: 100%; text-align: center; }
  #mob-menu a       { font-size: 1.8rem; }
  #cur, #cur2       { display: none; }
  body *            { cursor: auto; }
  .logo, .ncta, .bp, .bgh, .cf, .flinks a, .pcta, .wfab { cursor: pointer; }
}