/* ═══════════════════════════════════════════════
   MAHALI SERVICES v4 — International Edition
   Dark luxury · Images cinématiques · £ pricing
═══════════════════════════════════════════════ */

:root {
  --bg:    #0a0a0a;
  --bg1:   #0f0f0f;
  --bg2:   #141414;
  --bg3:   #1a1a1a;
  --surf:  #202020;
  --a:     #c8601e;
  --a2:    #e07840;
  --a3:    rgba(200,96,30,.12);
  --text:  #ede9e2;
  --text2: #9a948a;
  --text3: #524e48;
  --line:  rgba(255,255,255,.07);
  --line2: rgba(200,96,30,.22);
  --fd:    'Cormorant Garamond', Georgia, serif;
  --fb:    'Jost', system-ui, sans-serif;
  --r:     10px;
  --r2:    18px;
  --mw:    1160px;
  --nav:   72px;
  --sh:    0 0 0 1px var(--line), 0 12px 48px rgba(0,0,0,.5);
  --sha:   0 0 0 1px var(--line2), 0 12px 48px rgba(200,96,30,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
img  { display: block; max-width: 100%; }
em   { font-style: italic; color: var(--a); font-family: var(--fd); }
b    { font-weight: 600; }

h1 { font-family: var(--fd); font-size: clamp(3.2rem, 6.5vw, 6.5rem); font-weight: 700; line-height: 1.04; letter-spacing: -.015em; }
h2 { font-family: var(--fd); font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 600; line-height: 1.1; }
h3 { font-family: var(--fd); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 600; line-height: 1.18; }
h4 { font-family: var(--fd); font-size: 1.25rem; font-weight: 600; }

/* ══ Layout ══ */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 9rem 0; }

/* ══ Buttons ══ */
.cta-main {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem;
  background: var(--a); color: var(--bg);
  font-family: var(--fb); font-weight: 600; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: var(--r); cursor: pointer;
  transition: background .25s, box-shadow .25s, transform .2s;
}
.cta-main:hover { background: var(--a2); box-shadow: 0 8px 32px rgba(200,96,30,.3); transform: translateY(-2px); }

.cta-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem;
  background: transparent; color: var(--text2);
  font-family: var(--fb); font-weight: 500; font-size: .9rem;
  border: 1px solid var(--line); border-radius: var(--r);
  transition: color .2s, border-color .2s;
}
.cta-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.2); }

/* ══ NAVBAR ══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav); z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
#nav.stuck {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(24px);
  border-color: var(--line);
}
.nav-inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--fd); font-size: 1.2rem; font-weight: 600;
  color: var(--text); letter-spacing: -.01em; flex-shrink: 0;
}
.brand b { color: var(--a); }
.brand-hex { width: 26px; height: 26px; flex-shrink: 0; }
.nav-menu { display: flex; align-items: center; gap: .2rem; }
.nav-menu a {
  padding: .45rem .9rem;
  font-size: .84rem; font-weight: 500; color: var(--text3);
  letter-spacing: .03em; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--text); background: var(--bg3); }
.nav-btn {
  padding: .55rem 1.4rem;
  background: var(--a); color: var(--bg);
  font-weight: 600; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase;
  border-radius: var(--r); flex-shrink: 0;
  transition: background .2s, box-shadow .2s;
}
.nav-btn:hover { background: var(--a2); box-shadow: 0 4px 20px rgba(200,96,30,.25); }
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-drawer {
  display: none; flex-direction: column; gap: .25rem;
  position: absolute; top: var(--nav); left: 0; right: 0;
  background: rgba(10,10,10,.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 2rem 2rem;
}
.nav-drawer.open { display: flex; }
.drawer-link { padding: .85rem 1rem; font-size: .95rem; font-weight: 500; color: var(--text2); border-radius: 8px; transition: color .2s, background .2s; }
.drawer-link:hover { color: var(--text); background: var(--bg3); }
.drawer-cta { color: var(--a) !important; font-weight: 600; margin-top: .5rem; }

/* ══ HERO ══ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; padding-top: var(--nav);
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(.45) saturate(.8);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.2) 0%,
    rgba(10,10,10,.1) 40%,
    rgba(10,10,10,.7) 75%,
    rgba(10,10,10,.97) 100%
  );
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--mw); margin: 0 auto; padding: 0 2rem 5rem; width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .76rem; font-weight: 500; color: rgba(255,255,255,.5);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0; animation: fup .8s ease forwards;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--a); box-shadow: 0 0 10px var(--a); animation: blink 2.5s ease infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.hero-title { margin-bottom: 3rem; }
.ht-line { display: block; opacity: 0; animation: fup .8s ease forwards; }
.ht-line:nth-child(1) { animation-delay: .1s; }
.ht-line:nth-child(2) { animation-delay: .2s; color: var(--a); font-style: italic; }
.ht-line:nth-child(3) { animation-delay: .3s; }

.hero-sub-row {
  display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: end;
  margin-bottom: 4.5rem;
  opacity: 0; animation: fup .8s .4s ease forwards;
}
.hero-desc { max-width: 520px; font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,.6); }
.hero-ctas { display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; flex-shrink: 0; }

.hero-metrics {
  display: flex; align-items: center; gap: 3rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1);
  opacity: 0; animation: fup .8s .55s ease forwards;
}
.metric { display: flex; flex-direction: column; gap: .15rem; }
.m-val { font-family: var(--fd); font-size: 2rem; font-weight: 700; line-height: 1; color: var(--text); }
.m-key { font-size: .72rem; color: rgba(255,255,255,.35); letter-spacing: .05em; }
.metric-div { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }

.hero-scroll {
  position: absolute; bottom: 3rem; right: 3rem; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3);
}
.scroll-track { width: 1px; height: 48px; background: rgba(255,255,255,.15); position: relative; overflow: hidden; }
.scroll-thumb { width: 100%; height: 40%; background: var(--a); position: absolute; top: -40%; animation: scrollD 2s ease infinite; }
@keyframes scrollD { 0%{top:-40%}100%{top:140%} }
@keyframes fup { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

/* ══ TICKER ══ */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1.1rem 0; background: var(--bg1);
}
.ticker-track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content; animation: ticker 30s linear infinite; white-space: nowrap;
}
.ticker-track span { font-size: .75rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--text3); }
.ticker-track i { color: var(--a); font-style: normal; font-size: .65rem; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══ Section headers ══ */
.sec-head { margin-bottom: 5rem; }
.sh-label { font-size: .7rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--a); margin-bottom: 1.25rem; }
.sh-title { margin-bottom: 1.25rem; }
.sh-desc { font-size: 1.02rem; color: var(--text2); line-height: 1.8; max-width: 520px; }

/* ══ SERVICES — image+content layout ══ */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  padding: 5rem 0; border-top: 1px solid var(--line);
}
.svc-row:last-of-type { border-bottom: 1px solid var(--line); }
.svc-row-reverse { direction: rtl; }
.svc-row-reverse > * { direction: ltr; }

.svc-image {
  position: relative; border-radius: var(--r2); overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.svc-row:hover .svc-image img { transform: scale(1.04); }
.svc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,96,30,.15), rgba(0,0,0,.2));
}
.svc-img-num {
  position: absolute; bottom: 1.25rem; left: 1.5rem;
  font-family: var(--fd); font-size: 4rem; font-weight: 700;
  color: rgba(255,255,255,.12); line-height: 1; pointer-events: none;
}

.svc-content {}
.svc-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.svc-num { font-family: var(--fd); font-size: .82rem; font-weight: 700; color: var(--a); letter-spacing: .05em; }
.svc-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text3);
  padding: .18rem .65rem; border: 1px solid var(--line); border-radius: 50px;
}
.svc-content h3 { margin-bottom: 1rem; }
.svc-content > p { font-size: .92rem; color: var(--text2); line-height: 1.82; margin-bottom: 1.75rem; }
.svc-features { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.svc-features span {
  padding: .3rem .85rem; background: var(--bg3); border: 1px solid var(--line);
  border-radius: 50px; font-size: .76rem; color: var(--text2); font-weight: 500;
  transition: border-color .2s;
}
.svc-row:hover .svc-features span { border-color: var(--line2); }
.svc-pricing {
  display: flex; align-items: baseline; gap: .6rem;
  padding: .85rem 1.1rem; background: var(--bg2);
  border: 1px solid var(--line); border-radius: var(--r);
  margin-bottom: 1.5rem;
}
.sp-from { font-size: .72rem; color: var(--text3); letter-spacing: .05em; }
.sp-price { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.svc-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .84rem; font-weight: 600; color: var(--a); letter-spacing: .03em;
  transition: gap .2s;
}
.svc-link:hover { gap: .75rem; }

/* ══ APPROACH ══ */
.approach-sec { background: var(--bg1); }
.approach-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 7rem; align-items: start; }
.approach-left { position: sticky; top: calc(var(--nav) + 2.5rem); }
.approach-img {
  margin-top: 2rem; border-radius: var(--r2); overflow: hidden; aspect-ratio: 4/3;
}
.approach-img img { width: 100%; height: 100%; object-fit: cover; }

.approach-steps { display: flex; flex-direction: column; padding-top: .5rem; }
.step { display: grid; grid-template-columns: 14px 48px 1fr; gap: 0 1.5rem; padding-bottom: 3rem; }
.step-line {
  grid-row: 1 / 3; width: 1px; background: var(--line); margin: 6px auto 0;
  position: relative;
}
.step-line::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; background: var(--a); border-radius: 50%; margin-left: -.5px;
}
.step-line.last-step { background: transparent; }
.step-num { font-family: var(--fd); font-size: .82rem; font-weight: 700; color: var(--a); padding-top: .05rem; }
.step-content h4 { margin-bottom: .5rem; color: var(--text); }
.step-content p { font-size: .88rem; color: var(--text2); line-height: 1.78; }

/* ══ VALUES BAND ══ */
.values-band {
  padding: 4rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.vb-grid { display: flex; align-items: center; gap: 2rem; justify-content: space-between; }
.vb-item { display: flex; align-items: center; gap: 1rem; flex: 1; }
.vbi-icon { font-size: 1.5rem; flex-shrink: 0; }
.vb-item strong { display: block; font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: .15rem; }
.vb-item p { font-size: .8rem; color: var(--text3); margin: 0; }
.vb-div { width: 1px; height: 44px; background: var(--line); flex-shrink: 0; }

/* ══ APPS ══ */
.apps-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center;
  margin-bottom: 2rem;
}
.apps-img-col { position: relative; border-radius: var(--r2); overflow: hidden; aspect-ratio: 3/4; }
.apps-img-col img { width: 100%; height: 100%; object-fit: cover; }
.ai-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  display: flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem;
  background: rgba(10,10,10,.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 50px;
  font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.7);
}
.ai-dot { width: 6px; height: 6px; background: #5ccf8a; border-radius: 50%; box-shadow: 0 0 8px #5ccf8a; animation: blink 2s infinite; }

.ac-cat { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--a); margin-bottom: .6rem; }
.ac-name { margin-bottom: 1.1rem; }
.ac-desc { font-size: .9rem; color: var(--text2); line-height: 1.82; margin-bottom: 2rem; }
.ac-feats { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 2rem; padding: 1.5rem; background: var(--bg3); border-radius: var(--r); border: 1px solid var(--line); }
.acf { display: flex; align-items: center; gap: .65rem; font-size: .84rem; color: var(--text2); }
.acf-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--a); flex-shrink: 0; }
.ac-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.acp-label { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: .2rem; }
.acp-val { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--text); display: block; margin-bottom: .15rem; }
.acp-sub { font-size: .75rem; color: var(--text3); }

.app-soon-strip {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--bg2); border: 1px dashed var(--line); border-radius: var(--r);
}
.ass-icon { font-size: 1.75rem; flex-shrink: 0; }
.app-soon-strip strong { display: block; font-size: .95rem; font-weight: 600; margin-bottom: .2rem; }
.app-soon-strip p { font-size: .85rem; color: var(--text2); margin: 0; }

/* ══ SHOP ══ */
.shop-sec { background: var(--bg1); }
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2rem; }

.shop-item {
  background: var(--bg2); border: 1px solid var(--line); border-radius: var(--r2);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.shop-item:hover { border-color: var(--line2); box-shadow: var(--sha); transform: translateY(-5px); }

.shi-img { aspect-ratio: 16/10; overflow: hidden; }
.shi-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.shop-item:hover .shi-img img { transform: scale(1.06); }

.shi-body { padding: 2rem; display: flex; flex-direction: column; flex: 1; gap: 0; }
.si-number { font-family: var(--fd); font-size: .75rem; font-weight: 700; color: var(--a); letter-spacing: .1em; margin-bottom: 1rem; }
.shop-item h3 { margin-bottom: .75rem; font-size: 1.5rem; }
.shop-item > .shi-body > p { font-size: .88rem; color: var(--text2); line-height: 1.75; margin-bottom: 1.25rem; }
.shop-item ul { flex: 1; display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.shop-item li { font-size: .82rem; color: var(--text3); padding-left: 1rem; position: relative; }
.shop-item li::before { content:''; position:absolute; left:0; top:.5em; width:4px; height:4px; border-radius:50%; background:var(--a); opacity:.7; }
.si-price { font-size: .73rem; color: var(--a); font-weight: 600; letter-spacing: .04em; padding: .4rem 0; border-top: 1px solid var(--line); margin-bottom: 1rem; }
.si-link { font-size: .82rem; font-weight: 600; color: var(--a); letter-spacing: .03em; display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s; margin-top: auto; }
.si-link:hover { gap: .7rem; }

.affil-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--bg2); border: 1px solid var(--line); border-left: 3px solid var(--a); border-radius: var(--r);
}
.ab-left { display: flex; align-items: flex-start; gap: 1.25rem; flex: 1; }
.ab-pill { padding: .22rem .7rem; background: var(--a3); border: 1px solid var(--line2); border-radius: 50px; font-size: .68rem; font-weight: 700; color: var(--a); letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; margin-top: .2rem; }
.ab-left strong { display: block; font-size: .95rem; margin-bottom: .25rem; }
.ab-left p { font-size: .84rem; color: var(--text2); margin: 0; }

/* ══ CONTACT ══ */
.contact-sec { background: var(--bg); }

.contact-hero-img {
  position: relative; border-radius: var(--r2); overflow: hidden;
  aspect-ratio: 21/7; margin-bottom: 6rem;
}
.contact-hero-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); }
.chi-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(200,96,30,.2), rgba(0,0,0,.3));
}
.chi-text { text-align: center; }
.chi-text h2 { color: #fff; margin-bottom: .5rem; }
.chi-text p { color: rgba(255,255,255,.55); font-size: 1.05rem; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7rem; align-items: start; }
.contact-info { position: sticky; top: calc(var(--nav) + 2rem); }
.contact-info h2 { margin-bottom: 1rem; }

.ci-blocks { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.ci-block { padding: .9rem 1.1rem; background: var(--bg2); border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s; }
.ci-block:hover { border-color: var(--line2); }
.cib-label { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: .15rem; }
.cib-val { font-size: .9rem; color: var(--text); }

.ci-note { display: flex; align-items: center; gap: .6rem; font-size: .78rem; color: var(--text3); }
.cin-dot { width: 6px; height: 6px; border-radius: 50%; background: #5ccf8a; box-shadow: 0 0 8px #5ccf8a; flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--bg2); border: 1px solid var(--line);
  border-radius: var(--r2); padding: 2.5rem;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.cf-field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
.cf-field:last-of-type { margin-bottom: 1.5rem; }
.cf-field label { font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text3); }
.cf-field label span { color: var(--a); }
.cf-field input,
.cf-field textarea {
  padding: .85rem 1rem; background: var(--bg3); border: 1px solid var(--line);
  border-radius: var(--r); color: var(--text);
  font-family: var(--fb); font-size: .88rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.cf-field input:focus,
.cf-field textarea:focus { border-color: var(--a); box-shadow: 0 0 0 3px var(--a3); }
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--text3); }
.cf-field textarea { resize: vertical; }
.cf-sel { position: relative; }
.cf-sel select {
  width: 100%; padding: .85rem 2.5rem .85rem 1rem;
  background: var(--bg3); border: 1px solid var(--line);
  border-radius: var(--r); color: var(--text);
  font-family: var(--fb); font-size: .88rem;
  appearance: none; cursor: pointer; outline: none;
  transition: border-color .2s;
}
.cf-sel select:focus { border-color: var(--a); }
.cf-sel select option { background: var(--bg2); }
.cf-sel > span { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--text3); pointer-events: none; font-size: .8rem; }
.cf-submit {
  width: 100%; padding: 1.1rem;
  background: var(--a); color: var(--bg);
  font-family: var(--fb); font-weight: 600; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase;
  border: none; border-radius: var(--r); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  transition: background .2s, box-shadow .2s, transform .2s;
  margin-bottom: 1rem;
}
.cf-submit:hover { background: var(--a2); box-shadow: 0 8px 32px rgba(200,96,30,.25); transform: translateY(-1px); }
.cfs-arrow { font-size: 1.1rem; }
.cf-note { font-size: .73rem; color: var(--text3); text-align: center; }

/* ══ FOOTER ══ */
.footer { background: var(--bg1); border-top: 1px solid var(--line); padding: 5rem 0 2.5rem; }
.ft-top { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; padding-bottom: 4rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.ft-brand .brand { margin-bottom: 1.25rem; }
.ft-brand > p { font-size: .86rem; color: var(--text3); line-height: 1.75; max-width: 280px; margin-bottom: 1.25rem; }
.ft-badge { display: flex; align-items: center; gap: .55rem; font-size: .75rem; color: var(--text3); }
.ftb-dot { width: 6px; height: 6px; border-radius: 50%; background: #5ccf8a; box-shadow: 0 0 8px #5ccf8a; }
.ft-nav { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.ftn { display: flex; flex-direction: column; gap: .6rem; }
.ftn strong { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); margin-bottom: .4rem; }
.ftn a { font-size: .84rem; color: var(--text3); transition: color .2s; }
.ftn a:hover { color: var(--text); }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .76rem; color: var(--text3); flex-wrap: wrap; gap: .75rem; }
.ft-domain { color: var(--a); }

/* ══ REVEAL ══ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1080px) {
  .svc-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-row-reverse { direction: ltr; }
  .approach-layout { grid-template-columns: 1fr; gap: 4rem; }
  .approach-left { position: static; }
  .apps-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  .contact-info { position: static; }
  .ft-top { grid-template-columns: 1fr; gap: 3rem; }
  .vb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .vb-div { display: none; }
}
@media (max-width: 860px) {
  .nav-menu, .nav-btn { display: none; }
  .nav-toggle { display: flex; }
  .shop-grid { grid-template-columns: 1fr; }
  .hero-sub-row { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .hero-metrics { flex-wrap: wrap; gap: 1.5rem; }
  .metric-div { display: none; }
  .section { padding: 6rem 0; }
  .cf-row { grid-template-columns: 1fr; }
  .ft-nav { grid-template-columns: 1fr 1fr; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .contact-hero-img { aspect-ratio: 16/9; }
}
@media (max-width: 580px) {
  :root { --nav: 64px; }
  .container { padding: 0 1.25rem; }
  .section { padding: 5rem 0; }
  .hero-inner { padding: 0 1.25rem 4.5rem; }
  .ac-feats { grid-template-columns: 1fr; }
  .vb-grid { grid-template-columns: 1fr; }
  .affil-banner { flex-direction: column; align-items: flex-start; }
  .ab-left { flex-direction: column; gap: .75rem; }
  .contact-form { padding: 1.75rem 1.25rem; }
  .ft-nav { grid-template-columns: 1fr; }
  .app-soon-strip { flex-direction: column; align-items: flex-start; }
}
