/* ==========================================================================
   NXTTECX Infotech Private Limited — Global design system
   Brand: gold (#E0A82E) + silver + charcoal (#0B1020)
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
  /* Brand */
  --gold: #E0A82E;
  --gold-light: #F6D27A;
  --gold-dark: #B4801C;
  --ink: #0B1020;          /* near-black charcoal */
  --ink-2: #141A2E;
  --ink-3: #1E263F;

  /* Neutrals */
  --white: #ffffff;
  --paper: #F7F8FA;
  --paper-2: #EEF1F5;
  --line: #E2E6EC;
  --line-2: #D3D9E2;
  --muted: #5A6478;
  --muted-2: #8A94A6;
  --text: #1A2032;

  /* Semantic */
  --ring: rgba(224,168,46,.35);
  --shadow-sm: 0 1px 2px rgba(11,16,32,.06), 0 1px 3px rgba(11,16,32,.08);
  --shadow-md: 0 8px 24px rgba(11,16,32,.08), 0 2px 8px rgba(11,16,32,.06);
  --shadow-lg: 0 24px 60px rgba(11,16,32,.14), 0 8px 24px rgba(11,16,32,.10);
  --shadow-gold: 0 12px 30px rgba(224,168,46,.28);

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.center { text-align: center; }
.grid { display: grid; gap: var(--gap); }
@media (min-width:700px){ .grid-2{grid-template-columns:repeat(2,1fr);} .grid-3{grid-template-columns:repeat(3,1fr);} }
@media (min-width:960px){ .grid-4{grid-template-columns:repeat(4,1fr);} .grid-3{grid-template-columns:repeat(3,1fr);} }
@media (max-width:959px){ .grid-4{grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .grid-4{grid-template-columns:1fr;} }

/* ----- Typography ----- */
.eyebrow {
  display: inline-flex; align-items: center; gap:.5rem;
  font-family: var(--font-display); font-weight: 600; font-size:.78rem;
  letter-spacing:.16em; text-transform: uppercase; color: var(--gold-dark);
}
.eyebrow::before { content:""; width: 22px; height:2px; background: var(--gold); border-radius:2px; }
.eyebrow--light { color: var(--gold-light); }
.h-xl { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
.h-lg { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.h-md { font-size: clamp(1.35rem, 2.6vw, 1.7rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.gold-text { color: var(--gold-dark); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem,4vw,3rem); }
.section-head .lead { margin-top: .9rem; }
.section-head.center { margin-inline: auto; }
.section-head.center .lead { margin-inline: auto; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content:center; gap:.55rem;
  font-family: var(--font-display); font-weight: 600; font-size:.98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height:18px; }
.btn--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn--gold:hover { box-shadow: 0 16px 40px rgba(224,168,46,.4); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn--ghost-light { background: rgba(255,255,255,.06); color:#fff; border-color: rgba(255,255,255,.25); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.btn--wa { background:#25D366; color:#053e1e; }
.btn--wa:hover { box-shadow: 0 14px 34px rgba(37,211,102,.35); }
.btn--lg { padding: 1rem 1.9rem; font-size:1.05rem; }
.btn-row { display:flex; flex-wrap:wrap; gap:.8rem; }

/* ----- Header ----- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.70);
  backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(226,230,236,.6);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
}
/* ----- Top utility bar ----- */
.topbar { position: relative; background: linear-gradient(90deg, #0B1020, #141A2E 55%, #0B1020); color:#9AA3B4; font-size:.82rem; }
.topbar::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%); }
.topbar__in { display:flex; align-items:center; justify-content:space-between; gap:1rem; min-height:42px; }
.topbar__tag { font-family: var(--font-display); font-weight:500; letter-spacing:.05em; color:#9AA3B4; }
.topbar__links { display:flex; align-items:center; gap:1.5rem; }
.topbar__links > a { display:inline-flex; align-items:center; gap:.4rem; color:#C9CFDB; transition: color .2s; }
.topbar__links > a:hover { color: var(--gold-light); }
.topbar__links svg { width:15px; height:15px; }
.topbar__social { display:inline-flex; align-items:center; gap:.7rem; padding-left:1rem; border-left:1px solid rgba(255,255,255,.14); }
.topbar__social a { color:#9AA3B4; display:inline-flex; transition: color .2s, transform .2s; }
.topbar__social a:hover { color: var(--gold-light); transform: translateY(-1px); }
.topbar__social svg { width:16px; height:16px; }
@media (max-width: 800px){ .topbar__tag { display:none; } .topbar__in { justify-content:center; } }
@media (max-width: 520px){ .topbar__social { display:none; } .topbar__links { gap:1.1rem; } }
.site-header.scrolled { background: rgba(255,255,255,.93); box-shadow: 0 8px 30px rgba(11,16,32,.09); }
.nav-links a { font-weight:500; }
.nav-cta .btn--gold { box-shadow: 0 8px 20px rgba(224,168,46,.25); }
.nav { display:flex; align-items:center; justify-content:space-between; gap:1rem; height: 74px; }
.brand { display:flex; align-items:center; }
.brand svg, .brand img { height: 40px; width:auto; }
.nav-links { display:flex; align-items:center; gap: 2rem; }
.nav-links a { font-family: var(--font-display); font-weight:500; font-size:.96rem; color: var(--text); position:relative; padding: .35rem 0; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--gold); transition: width .28s var(--ease); border-radius:2px; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after, .nav-links a:hover::after { width:100%; }
.nav-cta { display:flex; align-items:center; gap:.7rem; }
.nav-toggle { display:none; flex-direction:column; gap:5px; padding:.5rem; background:none; border:0; }
.nav-toggle span { width:24px; height:2px; background: var(--ink); border-radius:2px; transition: transform .3s, opacity .3s; }
@media (max-width: 940px){
  .nav-links, .nav-cta .btn { display:none; }
  .nav-toggle { display:flex; }
  .nav.open .nav-links {
    display:flex; position:absolute; top:74px; left:0; right:0; flex-direction:column; gap:0;
    background:#fff; border-bottom:1px solid var(--line); padding:.5rem 1.2rem 1.4rem; box-shadow: var(--shadow-lg);
  }
  .nav.open .nav-links a { padding: .95rem .25rem; border-bottom:1px solid var(--line); width:100%; }
  .nav.open .nav-links a::after { display:none; }
  .nav.open .nav-links .btn { display:inline-flex; margin-top:1rem; width:100%; }
  .nav.open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2){ opacity:0; }
  .nav.open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ----- Hero ----- */
.hero {
  position: relative; color:#fff; overflow:hidden;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(224,168,46,.18), transparent 60%), linear-gradient(160deg, #0B1020 0%, #141A2E 55%, #0B1020 100%);
}
.hero::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(900px 500px at 70% 20%, #000, transparent 75%); pointer-events:none;
}
.hero__inner { position:relative; display:grid; gap: clamp(2rem,4vw,3rem); align-items:center; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
@media (min-width: 960px){ .hero__inner { grid-template-columns: 1.15fr .85fr; } }
.hero h1 { color:#fff; font-size: clamp(2.3rem, 5.4vw, 4rem); }
.hero h1 .grad { background: linear-gradient(120deg, var(--gold-light), var(--gold)); -webkit-background-clip:text; background-clip:text; color: transparent; }
.hero p.lead { color: #C4CBDA; margin-top: 1.2rem; max-width: 52ch; }
.hero .btn-row { margin-top: 2rem; }
.hero__badges { display:flex; flex-wrap:wrap; gap:1.4rem 2rem; margin-top:2.6rem; padding-top:1.8rem; border-top:1px solid rgba(255,255,255,.1); }
.hero__badge { display:flex; flex-direction:column; }
.hero__badge b { font-family: var(--font-display); font-size:1.5rem; color:#fff; }
.hero__badge span { font-size:.82rem; color: var(--muted-2); letter-spacing:.02em; }

/* Hero visual card stack */
.hero__visual { position:relative; display:none; }
@media (min-width: 960px){ .hero__visual { display:block; } }
.glass-card {
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero__visual .glass-card + .glass-card { margin-top: 1.1rem; }
.mini-row { display:flex; align-items:center; gap:.9rem; }
.mini-ico { width:44px; height:44px; border-radius:12px; display:grid; place-items:center; background: linear-gradient(135deg, rgba(224,168,46,.25), rgba(224,168,46,.08)); color: var(--gold-light); flex-shrink:0; }
.mini-ico svg { width:22px; height:22px; }
.mini-row b { color:#fff; font-family:var(--font-display); font-size:1rem; }
.mini-row span { color: var(--muted-2); font-size:.85rem; }
.bar { height:8px; border-radius:6px; background: rgba(255,255,255,.1); overflow:hidden; margin-top:.5rem; }
.bar > i { display:block; height:100%; border-radius:6px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

/* ----- Marquee / trust strip ----- */
.trust { background: var(--ink); color:#fff; border-top:1px solid rgba(255,255,255,.06); }
.trust__inner { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 1rem 2.5rem; padding-block: 1.4rem; }
.trust__inner span { color: var(--muted-2); font-family: var(--font-display); font-weight:600; font-size:.9rem; letter-spacing:.04em; }

/* ----- Cards ----- */
.card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height:100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__ico {
  width: 54px; height:54px; border-radius: 14px; display:grid; place-items:center; margin-bottom:1.1rem;
  background: linear-gradient(135deg, #FFF7E6, #FCEBC4); color: var(--gold-dark); border:1px solid #F3E0B0;
}
.card__ico svg { width: 27px; height:27px; }
.card h3 { font-size:1.18rem; margin-bottom:.5rem; }
.card p { color: var(--muted); font-size:.96rem; }
.card__link { display:inline-flex; align-items:center; gap:.4rem; margin-top:1rem; font-family:var(--font-display); font-weight:600; font-size:.9rem; color: var(--gold-dark); }
.card__link svg { width:15px; height:15px; transition: transform .25s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }
.card--dark { background: linear-gradient(160deg, var(--ink-2), var(--ink)); border-color: rgba(255,255,255,.08); color:#fff; }
.card--dark h3 { color:#fff; }
.card--dark p { color: var(--muted-2); }

/* Flagship service (featured) */
.card--feature { position:relative; overflow:hidden; }
.card--feature::after { content:""; position:absolute; top:0; right:0; width:120px; height:120px; background: radial-gradient(circle at top right, rgba(224,168,46,.16), transparent 70%); }
.tag { display:inline-block; font-family:var(--font-display); font-weight:600; font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color: var(--gold-dark); background:#FFF6E3; border:1px solid #F3E0B0; padding:.25rem .6rem; border-radius:999px; }

/* ----- Feature / split ----- */
.split { display:grid; gap: clamp(2rem,4vw,3.5rem); align-items:center; }
@media (min-width: 900px){ .split { grid-template-columns: 1fr 1fr; } .split--rev > :first-child { order:2; } }
.check-list li { display:flex; gap:.75rem; align-items:flex-start; padding:.5rem 0; color: var(--text); }
.check-list li svg { flex-shrink:0; width:22px; height:22px; color: var(--gold-dark); margin-top:2px; }
.check-list li b { font-family: var(--font-display); }

.panel {
  background: linear-gradient(160deg, var(--paper), #fff); border:1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2.4rem);
}
.stat-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.stat { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; }
.stat b { display:block; font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.4rem); color: var(--ink); line-height:1; }
.stat b .u { color: var(--gold); }
.stat span { color: var(--muted); font-size:.9rem; }

/* ----- Process steps ----- */
.steps { counter-reset: step; display:grid; gap: 1.2rem; }
@media (min-width: 800px){ .steps { grid-template-columns: repeat(4,1fr); } }
.step { position:relative; padding: 1.6rem 1.4rem; background:#fff; border:1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-weight:700; font-size:1.1rem; color: var(--gold-dark);
  display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:12px;
  background:#FFF6E3; border:1px solid #F3E0B0; margin-bottom:1rem;
}
.step h3 { font-size:1.08rem; margin-bottom:.35rem; }
.step p { color: var(--muted); font-size:.92rem; }

/* ----- Industries ----- */
.ind {
  position:relative; overflow:hidden; border-radius: var(--radius);
  min-height: 210px; display:flex; flex-direction:column; justify-content:flex-end;
  padding:1.5rem; color:#fff; border:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(11,16,32,.15), rgba(11,16,32,.86)), linear-gradient(135deg, var(--ink-3), var(--ink));
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ind:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ind__ico { position:absolute; top:1.3rem; left:1.3rem; width:46px; height:46px; border-radius:12px; display:grid; place-items:center; background: rgba(224,168,46,.18); color: var(--gold-light); border:1px solid rgba(224,168,46,.35); }
.ind__ico svg{ width:23px;height:23px; }
.ind h3 { color:#fff; font-size:1.15rem; }
.ind p { color: var(--muted-2); font-size:.9rem; margin-top:.3rem; }

/* ----- CTA band ----- */
.cta-band { position:relative; overflow:hidden; color:#fff;
  background: radial-gradient(900px 500px at 15% 20%, rgba(224,168,46,.22), transparent 60%), linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); }
.cta-band__inner { display:grid; gap:1.6rem; align-items:center; padding-block: clamp(3rem,6vw,5rem); }
@media (min-width: 860px){ .cta-band__inner { grid-template-columns: 1.4fr auto; } }
.cta-band h2 { color:#fff; }
.cta-band p { color:#C4CBDA; margin-top:.6rem; max-width: 54ch; }

/* ----- Contact ----- */
.contact-grid { display:grid; gap: clamp(1.5rem,3vw,2.5rem); }
@media (min-width: 900px){ .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.info-card { display:flex; gap:1rem; padding:1.2rem; background:#fff; border:1px solid var(--line); border-radius: var(--radius); }
.info-card .mini-ico { background: linear-gradient(135deg,#FFF7E6,#FCEBC4); color: var(--gold-dark); border:1px solid #F3E0B0; }
.info-card b { font-family: var(--font-display); display:block; color: var(--ink); }
.info-card a, .info-card span { color: var(--muted); font-size:.95rem; word-break: break-word; }
.info-card a:hover { color: var(--gold-dark); }

form.enquiry { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem,3vw,2.2rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-family: var(--font-display); font-weight:500; font-size:.9rem; margin-bottom:.4rem; color: var(--ink); }
.field label .req { color: var(--gold-dark); }
.field input, .field select, .field textarea {
  width:100%; padding:.8rem .95rem; border:1px solid var(--line-2); border-radius: var(--radius-sm);
  font: inherit; color: var(--text); background:#fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--ring); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display:grid; gap:1.1rem; }
@media (min-width:600px){ .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size:.82rem; color: var(--muted-2); margin-top:.4rem; }

/* ----- Testimonials ----- */
.quote-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:1.7rem; height:100%; display:flex; flex-direction:column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote-card__stars { display:flex; gap:.15rem; color: var(--gold); margin-bottom:.9rem; }
.quote-card__stars svg { width:18px; height:18px; }
.quote-card blockquote { color: var(--text); font-size:1.02rem; line-height:1.65; flex:1; margin:0; }
.quote-card blockquote::before { content:"\201C"; font-family: var(--font-display); color: var(--gold); font-size:2.2rem; line-height:0; vertical-align:-.35em; margin-right:.15rem; }
.quote-card__who { display:flex; align-items:center; gap:.85rem; margin-top:1.3rem; padding-top:1.2rem; border-top:1px solid var(--line); }
.avatar { width:46px; height:46px; border-radius:50%; display:grid; place-items:center; font-family: var(--font-display); font-weight:700; font-size:1rem; color: var(--ink); background: linear-gradient(135deg, var(--gold-light), var(--gold)); flex-shrink:0; }
.quote-card__who b { font-family: var(--font-display); color: var(--ink); display:block; font-size:.98rem; }
.quote-card__who span { color: var(--muted); font-size:.85rem; }
.sample-note { display:inline-block; font-size:.72rem; font-family: var(--font-display); font-weight:600; letter-spacing:.08em; text-transform:uppercase; color: var(--muted-2); background: var(--paper-2); border:1px solid var(--line); border-radius:999px; padding:.2rem .6rem; margin-left:.6rem; vertical-align:middle; }

/* ----- Case study ----- */
.cs-hero-meta { display:flex; flex-wrap:wrap; gap:1.4rem 2.2rem; margin-top:1.8rem; padding-top:1.6rem; border-top:1px solid rgba(255,255,255,.1); }
.cs-hero-meta div b { display:block; font-family: var(--font-display); color:#fff; font-size:1.05rem; }
.cs-hero-meta div span { color: var(--muted-2); font-size:.82rem; letter-spacing:.03em; }
.cs-block + .cs-block { margin-top: clamp(2.5rem,5vw,4rem); }
.result-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:1rem; }
@media (min-width:700px){ .result-grid { grid-template-columns: repeat(4,1fr); } }

/* ----- Map / office ----- */
.map-wrap { border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width:100%; height:340px; border:0; display:block; }

/* ----- FAQ / accordion ----- */
.faq { border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; background:#fff; }
.faq details { border-bottom:1px solid var(--line); }
.faq details:last-child { border-bottom:0; }
.faq summary { list-style:none; cursor:pointer; padding:1.15rem 1.3rem; font-family: var(--font-display); font-weight:600; color: var(--ink); display:flex; justify-content:space-between; gap:1rem; align-items:center; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.4rem; color: var(--gold-dark); transition: transform .25s; line-height:1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ----- Page hero (inner pages) ----- */
.page-hero { position:relative; color:#fff; overflow:hidden;
  background: radial-gradient(900px 500px at 85% -20%, rgba(224,168,46,.16), transparent 60%), linear-gradient(160deg, #0B1020, #141A2E); }
.page-hero::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size:44px 44px; mask-image: radial-gradient(700px 400px at 75% 10%,#000,transparent 75%); }
.page-hero__inner { position:relative; padding-block: clamp(3rem,6vw,5rem); max-width: 760px; }
.page-hero h1 { color:#fff; }
.page-hero p { color:#C4CBDA; margin-top:1rem; font-size: clamp(1.05rem,1.6vw,1.2rem); }
.crumb { display:flex; gap:.5rem; align-items:center; font-size:.85rem; color: var(--muted-2); margin-bottom:1.1rem; }
.crumb a:hover { color:#fff; }
.crumb span { color: var(--gold-light); }

/* ----- Footer ----- */
.site-footer {
  position: relative; overflow: hidden; color:#C4CBDA;
  background: linear-gradient(180deg, #0E1424 0%, #0B1020 55%, #070A12 100%);
  padding-block: clamp(3.5rem,6vw,5.5rem) 0;
}
/* gold signature hairline + soft glow */
.site-footer::before { content:""; position:absolute; top:0; left:0; right:0; height:1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity:.55; }
.site-footer::after { content:""; position:absolute; top:-30%; right:-8%; width:520px; height:520px; border-radius:50%; background: radial-gradient(circle, rgba(224,168,46,.10), transparent 70%); pointer-events:none; }
.site-footer .container { position: relative; z-index: 1; }
.site-footer h4 { position: relative; padding-bottom:.6rem; }
.site-footer h4::after { content:""; position:absolute; left:0; bottom:0; width:26px; height:2px; background: var(--gold); border-radius:2px; }
.footer-grid { display:grid; gap: 2.2rem; }
@media (min-width: 760px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.site-footer .brand svg { height: 42px; }
.footer-about p { margin-top:1rem; font-size:.92rem; color: var(--muted-2); max-width: 34ch; }
.footer-social { display:flex; gap:.6rem; margin-top:1.2rem; }
.footer-social a { width:38px; height:38px; border-radius:10px; display:grid; place-items:center; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); color:#C4CBDA; transition: background .2s, color .2s, transform .2s; }
.footer-social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.footer-social svg { width:18px; height:18px; }
.site-footer h4 { color:#fff; font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; margin-bottom:1.1rem; }
.site-footer ul li { margin-bottom:.65rem; }
.site-footer ul a { font-size:.93rem; color: var(--muted-2); transition: color .2s, padding .2s; }
.site-footer ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li { display:flex; gap:.65rem; font-size:.92rem; color: var(--muted-2); margin-bottom:.8rem; }
.footer-contact svg { width:18px; height:18px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { margin-top: 2.6rem; border-top:1px solid rgba(255,255,255,.08); padding-block:1.5rem; display:flex; flex-wrap:wrap; gap:.7rem 1.5rem; justify-content:space-between; align-items:center; }
.footer-bottom p { font-size:.85rem; color: var(--muted-2); }
.footer-legal { display:flex; flex-wrap:wrap; gap:.4rem 1.2rem; font-size:.82rem; }
.footer-legal span { color: var(--muted-2); }
.footer-legal b { color:#C4CBDA; font-weight:500; }

/* ----- Floating WhatsApp ----- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width:56px; height:56px; border-radius:50%; background:#25D366; display:grid; place-items:center; box-shadow: 0 10px 30px rgba(37,211,102,.4); transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width:30px; height:30px; }

/* ----- Reveal animation ----- */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity:1; transform:none; transition:none; }
  html { scroll-behavior:auto; }
  .btn:hover, .card:hover, .ind:hover { transform:none; }
}

/* ----- Utilities ----- */
.bg-paper {
  position: relative;
  background:
    radial-gradient(600px 300px at 12% 0%, rgba(224,168,46,.05), transparent 60%),
    linear-gradient(180deg, #F5F7FB 0%, #EDF0F6 100%);
  border-block: 1px solid rgba(226,230,236,.7);
}
.bg-ink { background: var(--ink); }
.mt-2{margin-top:2rem;} .mt-1{margin-top:1rem;} .mb-0{margin-bottom:0;}
.pill { display:inline-flex; align-items:center; gap:.45rem; background:#fff; border:1px solid var(--line); border-radius:999px; padding:.4rem .85rem; font-size:.85rem; color: var(--muted); font-family:var(--font-display); font-weight:500; }
.pill svg{ width:15px;height:15px; color: var(--gold-dark);}
.divider { height:1px; background: var(--line); border:0; margin-block: var(--section-y); }
