/* ==========================================================================
   Your Company — ICT Equipment Trading
   Design system: deep navy + gold, Cormorant Garamond display / DM Sans body
   Reference direction: khaleejalamal.com (navy 218 55% 12%, gold 41 58% 52%)
   ========================================================================== */

@import url("../fonts/fonts.css");

/* ---------- 1. Tokens ---------- */
:root {
  --navy: hsl(218 55% 12%);
  --navy-deep: hsl(219 60% 8%);
  --navy-soft: hsl(216 40% 20%);
  --gold: hsl(41 58% 52%);
  --gold-light: hsl(41 65% 68%);
  --gold-soft: hsl(41 60% 94%);
  --ink: hsl(218 45% 14%);
  --body: hsl(218 12% 42%);
  --muted: hsl(216 30% 96%);
  --border: hsl(216 20% 88%);
  --white: #fff;

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(14, 26, 47, .06), 0 6px 18px rgba(14, 26, 47, .05);
  --shadow-md: 0 10px 34px rgba(14, 26, 47, .11);
  --section-y: clamp(60px, 7.5vw, 104px);
  --header-h: 78px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 .5em;
  letter-spacing: .1px;
}
h1 { font-size: clamp(2.15rem, 4.6vw, 3.65rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); }
h4 { font-size: 1.08rem; font-family: var(--font-body); font-weight: 600; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin-bottom: .35rem; }
strong { color: var(--ink); font-weight: 600; }
/* keep emphasis readable on dark backgrounds */
.hero strong, .stats strong, .cta-band strong, .site-footer strong, .bg-navy strong, .mobile-nav strong { color: #fff; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(18px, 4vw, 32px); }
.section { padding: var(--section-y) 0; }
.section--tight { padding: calc(var(--section-y) * .6) 0; }
.bg-cream { background: hsl(216 40% 98%); }
.bg-navy { background: var(--navy); color: rgba(255, 255, 255, .78); }
.bg-navy h2, .bg-navy h3, .bg-navy h1 { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.06rem; max-width: 70ch; }
.center .lead { margin-inline: auto; }
.muted { color: var(--body); }
.small { font-size: .875rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-deep); padding: 10px 18px;
  font-weight: 600; z-index: 999; border-radius: 0 0 var(--radius) var(--radius);
}
.skip-link:focus { top: 0; }

/* ---------- 3. Typographic helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 28px; height: 2px; background: var(--gold); }
.section-head { max-width: 780px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head.center { margin-inline: auto; }
.rule-gold { width: 54px; height: 3px; background: var(--gold); margin: 0 0 1.2rem; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: .93rem; font-weight: 600;
  letter-spacing: .02em; padding: .95rem 1.7rem; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer; transition: all .25s var(--ease);
  text-align: center; line-height: 1.2;
}
.btn svg { width: 17px; height: 17px; }
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.btn--outline { border-color: var(--border); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--sm { padding: .68rem 1.2rem; font-size: .86rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.text-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem; color: var(--navy);
  border-bottom: 1.5px solid var(--gold); padding-bottom: 2px;
}
.text-link:hover { color: var(--gold); }
.text-link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.text-link:hover svg { transform: translateX(3px); }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-header a, .site-header .brand { transition: color .25s var(--ease); }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.42rem; color: #fff; letter-spacing: .2px; }
.brand__mark {
  width: 38px; height: 38px; flex: 0 0 38px; border: 1.5px solid var(--gold);
  border-radius: 4px; display: grid; place-items: center; color: var(--gold);
  font-size: 1.1rem; font-family: var(--font-display); font-weight: 700;
}
.brand__text small { display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; opacity: .72; margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 10px 14px; font-size: .93rem; font-weight: 500;
  color: rgba(255, 255, 255, .85);
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-top { display: flex; align-items: center; gap: .5rem; color: rgba(255, 255, 255, .75); font-size: .84rem; }
.header-top svg { width: 15px; height: 15px; color: var(--gold); }

/* solid header after scroll */
.site-header.is-solid { background: rgba(255, 255, 255, .97); box-shadow: 0 1px 0 var(--border), 0 6px 22px rgba(14, 26, 47, .07); backdrop-filter: blur(8px); }
.site-header.is-solid .brand { color: var(--navy); }
.site-header.is-solid .brand__text small { color: var(--body); opacity: 1; }
.site-header.is-solid .nav a { color: var(--body); }
.site-header.is-solid .nav a:hover, .site-header.is-solid .nav a[aria-current="page"] { color: var(--navy); }
.site-header.is-solid .header-top { color: var(--body); }
.site-header.is-solid .btn--ghost { border-color: var(--border); color: var(--ink); }
.site-header.is-solid .btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: transparent; }

/* mobile nav */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .35);
  background: transparent; border-radius: 4px; color: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.is-solid .nav-toggle { border-color: var(--border); color: var(--navy); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--navy-deep);
  padding: calc(var(--header-h) + 26px) clamp(20px, 6vw, 40px) 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-100%); transition: transform .38s var(--ease); overflow-y: auto;
}
.nav-open .mobile-nav { transform: translateY(0); }
.mobile-nav a {
  color: rgba(255, 255, 255, .9); font-family: var(--font-display); font-size: 1.5rem;
  padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.mobile-nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav .btn { margin-top: 22px; }
.mobile-nav__contact { margin-top: auto; padding-top: 26px; color: rgba(255, 255, 255, .65); font-size: .9rem; }
.mobile-nav__contact a { font-family: var(--font-body); font-size: .95rem; border: 0; padding: 3px 0; color: rgba(255, 255, 255, .85); display: block; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; color: rgba(255, 255, 255, .84);
  background: var(--navy-deep);
  padding: calc(var(--header-h) + clamp(56px, 9vw, 104px)) 0 clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(75% 95% at 82% 8%, rgba(204, 159, 62, .22) 0%, rgba(204, 159, 62, 0) 55%),
    radial-gradient(60% 80% at 6% 100%, rgba(31, 51, 80, .9) 0%, rgba(8, 16, 29, 0) 60%),
    linear-gradient(160deg, #0b1526 0%, #0e1a2f 46%, #16253c 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 0%, transparent 85%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 0%, transparent 85%);
}
.hero > .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 20ch; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero p { max-width: 62ch; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero .btn-row { margin-top: 30px; }

.hero__panel {
  border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .05); backdrop-filter: blur(6px);
  padding: clamp(22px, 3vw, 32px);
}
.hero__panel h3 { color: #fff; font-size: 1.32rem; margin-bottom: .35rem; }
.hero__panel > p { font-size: .93rem; margin-bottom: 1.3rem; }
.hero__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.hero__list li { display: flex; gap: .75rem; align-items: flex-start; margin: 0; font-size: .94rem; }
.hero__list svg { width: 19px; height: 19px; flex: 0 0 19px; color: var(--gold); margin-top: .28rem; }

.hero--page { padding: calc(var(--header-h) + clamp(40px, 6vw, 76px)) 0 clamp(40px, 6vw, 78px); }
.hero--page h1 { max-width: 24ch; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .84rem; color: rgba(255, 255, 255, .6); margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 13px; height: 13px; }

/* ---------- 7. Trust strip ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; padding: 26px 0; }
.trust__inner { display: flex; align-items: center; gap: clamp(20px, 4vw, 46px); flex-wrap: wrap; justify-content: center; }
.trust__label { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--body); font-weight: 600; }
.trust__items { display: flex; gap: clamp(16px, 3vw, 38px); flex-wrap: wrap; justify-content: center; }
.trust__item {
  font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: .5rem; opacity: .82;
}
.trust__item svg { width: 18px; height: 18px; color: var(--gold); }

/* ---------- 8. Cards & grids ---------- */
.grid { display: grid; gap: clamp(18px, 2.2vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }

.card {
  position: relative; display: block; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(22px, 2.4vw, 30px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden; height: 100%;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: hsl(216 20% 82%); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: .55rem; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 52px; height: 52px; border-radius: 4px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--navy); margin-bottom: 1.1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card--flat { background: hsl(216 40% 98%); border-color: transparent; }
.card--flat:hover { background: #fff; border-color: var(--border); }
.card--navy { background: var(--navy); border-color: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .78); }
.card--navy h3 { color: #fff; }
.card--navy .card__icon { background: rgba(204, 159, 62, .16); color: var(--gold); }
.card__num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: .5rem;
}

/* feature list with icons */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--gold); margin-top: .25rem; }
.feature h4 { margin-bottom: .3rem; color: var(--ink); }
.feature p { margin: 0; font-size: .93rem; }

/* ---------- 9. Split (image + text) ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4.5vw, 64px); align-items: center; }
.split--wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.split--wide-right { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
.split__media { position: relative; }

/* media placeholder — replace <div class="ph"> with <img src="..."> */
.ph {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    linear-gradient(135deg, hsl(218 45% 16%) 0%, hsl(216 40% 24%) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  display: grid; place-items: center; text-align: center; color: rgba(255, 255, 255, .72);
  padding: 26px; min-height: 240px;
}
.ph::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 42px 42px;
}
.ph__inner { position: relative; z-index: 1; max-width: 32ch; }
.ph svg { width: 34px; height: 34px; color: var(--gold); margin: 0 auto .7rem; display: block; }
.ph b { display: block; color: #fff; font-weight: 600; font-size: .95rem; margin-bottom: .2rem; }
.ph span { font-size: .8rem; letter-spacing: .04em; }
.ph--16x9 { aspect-ratio: 16 / 9; }
.ph--4x3 { aspect-ratio: 4 / 3; }
.ph--1x1 { aspect-ratio: 1 / 1; }
.ph--3x4 { aspect-ratio: 3 / 4; }

.badge-float {
  position: absolute; right: -14px; bottom: -14px; background: var(--gold);
  color: var(--navy-deep); border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-md); text-align: center;
}
.badge-float b { display: block; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.badge-float span { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }

/* ---------- 10. Stats ---------- */
.stats { background: var(--navy); color: rgba(255, 255, 255, .75); position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 88% 20%, rgba(204, 159, 62, .18) 0%, rgba(204, 159, 62, 0) 60%);
}
.stats .container { position: relative; z-index: 1; }
.stat { text-align: center; padding: 10px; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.3rem, 4vw, 3.2rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat__label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .6rem; }

/* ---------- 11. Products ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(26px, 3vw, 42px); }
.filter-btn {
  border: 1px solid var(--border); background: #fff; color: var(--body);
  padding: .55rem 1.05rem; border-radius: 999px; font-size: .87rem; font-weight: 500;
  cursor: pointer; transition: all .22s var(--ease); font-family: var(--font-body);
}
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.product {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product__media { position: relative; background: hsl(216 40% 98%); border-bottom: 1px solid var(--border); }
.product__media .ph { border-radius: 0; border: 0; min-height: 0; }
.product__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product__cat { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .45rem; }
.product h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.product p { font-size: .92rem; margin-bottom: .9rem; }
.product__specs { list-style: none; padding: 0; margin: 0 0 1.1rem; font-size: .87rem; }
.product__specs li { position: relative; padding-left: 1.1rem; margin-bottom: .3rem; }
.product__specs li::before { content: ""; position: absolute; left: 0; top: .62em; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.product .text-link { margin-top: auto; }
.cat-block + .cat-block { margin-top: clamp(34px, 4vw, 56px); }
.cat-block__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 26px; }
.cat-block__head h3 { margin: 0; font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.cat-block__head p { margin: .35rem 0 0; max-width: 72ch; font-size: .95rem; }

/* ---------- 12. Process ---------- */
.steps { counter-reset: step; display: grid; gap: clamp(18px, 2vw, 26px); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--border); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -1px; left: 0; transform: translateY(-50%);
  background: var(--gold); color: var(--navy-deep); font-family: var(--font-display);
  font-weight: 700; font-size: .92rem; width: 40px; height: 26px;
  display: grid; place-items: center; border-radius: 3px;
}
.step h4 { margin-bottom: .4rem; }
.step p { font-size: .92rem; margin: 0; }

/* ---------- 13. FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq details[open] { border-color: hsl(216 20% 80%); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; gap: 16px; align-items: center; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-body); color: var(--gold); font-size: 1.3rem; line-height: 1;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 22px 20px; font-size: .95rem; }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* ---------- 14. CTA band ---------- */
.cta-band { position: relative; background: var(--navy); color: rgba(255, 255, 255, .8); overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(55% 130% at 12% 10%, rgba(204, 159, 62, .2) 0%, rgba(204, 159, 62, 0) 60%),
    linear-gradient(120deg, #0c1729 0%, #16253c 100%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { margin: 0; max-width: 56ch; }

/* ---------- 15. Form ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink); }
.field .req { color: #b3261e; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: .8rem .95rem; width: 100%; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(204, 159, 62, .18);
}
.field .hint { font-size: .79rem; color: var(--body); }
.checkbox { display: flex; gap: .65rem; align-items: flex-start; font-size: .88rem; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 18px; accent-color: var(--gold); }
.form-note { font-size: .82rem; color: var(--body); margin-top: 14px; }
.form-status {
  display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--radius);
  font-size: .92rem; border: 1px solid;
}
.form-status.is-ok { display: block; background: hsl(150 45% 96%); border-color: hsl(150 40% 78%); color: hsl(150 60% 22%); }
.form-status.is-error { display: block; background: hsl(0 60% 97%); border-color: hsl(0 55% 85%); color: hsl(0 60% 34%); }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; }
.contact-card__icon {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 4px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--navy);
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card h4 { margin-bottom: .2rem; }
.contact-card a { color: var(--navy); font-weight: 500; }
.contact-card a:hover { color: var(--gold); }

/* info table (company verification data) */
.info-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.info-table th, .info-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.info-table th { width: 38%; color: var(--ink); font-weight: 600; background: hsl(216 40% 98%); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }

/* ---------- 16. Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .62); padding: clamp(48px, 6vw, 76px) 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(24px, 3.5vw, 48px); }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer h4::after { content: ""; display: block; width: 26px; height: 2px; background: var(--gold); margin-top: .6rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .8rem; }
.footer-contact svg { width: 17px; height: 17px; flex: 0 0 17px; color: var(--gold); margin-top: .3rem; }
.footer-contact a { color: rgba(255, 255, 255, .8); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: clamp(34px, 4vw, 52px); border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255, 255, 255, .5);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- 17. Utilities & motion ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.75rem; }
.mt-4 { margin-top: 2.5rem; }
.list-check { list-style: none; padding: 0; }
.list-check li { position: relative; padding-left: 1.7rem; margin-bottom: .6rem; }
.list-check li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 7px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}
.divider-gold { width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; z-index: 60;
  border-radius: 50%; background: var(--navy); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center; opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease); box-shadow: var(--shadow-md);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 80px; z-index: 60; }

/* ---------- 18. Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 940px) {
  .nav, .header-top { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .badge-float { right: 12px; bottom: -18px; }
}
@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .grid--2, .grid--3, .grid--4, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .stat__num { font-size: 2.2rem; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .to-top, .whatsapp-float, .cta-band, .mobile-nav { display: none !important; }
  body { color: #000; }
  .hero, .stats, .bg-navy, .site-footer { background: #fff !important; color: #000 !important; }
  .hero h1, .hero p, .stats .stat__num, .site-footer h4 { color: #000 !important; }
}
