/* ================================================================
   AUREVOLT PRIVATE LIMITED — Stylesheet
   Theme: Charcoal #14141B | Gold #C6962C | Ivory #FAF7F0
   Fonts: Sora (headings) · Jost (body)
   ================================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:        #C6962C;
  --gold-deep:   #A87B1B;
  --gold-soft:   #F6EDD8;
  --charcoal:    #14141B;
  --charcoal-2:  #1E1E28;
  --ink:         #23232E;
  --ivory:       #FAF7F0;
  --white:       #FFFFFF;
  --muted:       #6B6B76;
  --line:        #E9E2D2;
  --grad-gold:   linear-gradient(120deg, #D9AC3F, #B8860B);
  --shadow-1:    0 3px 16px rgba(20,20,27,.08);
  --shadow-2:    0 14px 44px rgba(20,20,27,.14);
  --r:           4px;
  --t:           all .32s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  font-size: 16.5px;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; color: var(--charcoal); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.sec { padding: 90px 0; }
.sec-tight { padding: 56px 0; }

/* ─── Section headings ──────────────────────────────── */
.sec-intro { max-width: 640px; margin-bottom: 54px; }
.sec-intro.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-deep); font-weight: 500; letter-spacing: 3.5px;
  text-transform: uppercase; font-size: .74rem; margin-bottom: 14px;
}
.kicker::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); }
.sec-intro.center .kicker::after { content: ""; width: 26px; height: 1.5px; background: var(--gold); }
.sec-intro h2 { font-size: 2.15rem; font-weight: 600; line-height: 1.28; letter-spacing: -.4px; }
.sec-intro h2 em { font-style: normal; color: var(--gold-deep); }
.sec-intro p { margin-top: 14px; color: var(--muted); }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; font-size: .86rem; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  border-radius: var(--r); transition: var(--t); font-family: 'Sora', sans-serif;
}
.btn-gold { background: var(--grad-gold); color: #fff; box-shadow: 0 8px 24px rgba(198,150,44,.35); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(198,150,44,.45); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--gold-deep); }
.btn-line { border: 1.5px solid var(--gold); color: var(--gold-deep); }
.btn-line:hover { background: var(--gold); color: #fff; }

/* ─── Announcement bar ──────────────────────────────── */
.annbar {
  background: var(--grad-gold); color: #fff;
  font-size: .8rem; letter-spacing: .6px; padding: 8px 0;
}
.annbar-in { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.annbar a { color: #fff; }
.annbar .ann-links { display: flex; gap: 22px; white-space: nowrap; }
.annbar i { margin-right: 6px; font-size: .75rem; }
.ann-note { overflow: hidden; flex: 1; text-align: center; white-space: nowrap; text-overflow: ellipsis; }

/* ─── Header ────────────────────────────────────────── */
.hdr {
  position: sticky; top: 0; z-index: 900;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hdr-in { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 50px; width: 50px; object-fit: cover; border-radius: 50%; border: 2px solid var(--gold); background: #fff; }
.brand-name { font-family: 'Sora', sans-serif; line-height: 1.15; }
.brand-name b { display: block; color: #fff; font-size: 1.16rem; font-weight: 700; letter-spacing: 2.5px; }
.brand-name b span { color: var(--gold); }
.brand-name small { color: rgba(255,255,255,.55); font-size: .62rem; letter-spacing: 3.2px; text-transform: uppercase; font-weight: 400; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav > li { position: relative; }
.nav > li > a {
  color: rgba(255,255,255,.82); font-size: .92rem; font-weight: 500;
  padding: 28px 0; display: inline-block; position: relative; transition: var(--t);
}
.nav > li > a::after {
  content: ""; position: absolute; left: 0; bottom: 20px;
  width: 0; height: 2px; background: var(--gold); transition: var(--t);
}
.nav > li > a:hover, .nav > li.on > a { color: #fff; }
.nav > li > a:hover::after, .nav > li.on > a::after { width: 100%; }

.drop {
  position: absolute; top: 100%; left: -18px; min-width: 250px;
  background: var(--charcoal-2); border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--gold);
  padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: var(--t); box-shadow: var(--shadow-2);
}
.nav li:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 22px; color: rgba(255,255,255,.75); font-size: .88rem; transition: var(--t);
}
.drop a i { color: var(--gold); width: 16px; font-size: .8rem; }
.drop a:hover { background: rgba(198,150,44,.12); color: #fff; padding-left: 28px; }

.hdr-cta { display: flex; align-items: center; gap: 18px; }
.hdr-phone { display: flex; align-items: center; gap: 11px; color: #fff; }
.hdr-phone i {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold); font-size: .85rem;
}
.hdr-phone small { display: block; color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; }
.hdr-phone b { font-size: .92rem; font-weight: 600; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 26px; height: 2px; background: #fff; transition: var(--t); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); z-index: 1000;
  background: var(--charcoal); padding: 26px;
  transform: translateX(100%); transition: var(--t);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,.4); }
.drawer-x { color: #fff; font-size: 1.3rem; margin-left: auto; display: block; width: fit-content; padding: 4px; }
.drawer ul { margin-top: 18px; }
.drawer ul li a {
  display: block; color: rgba(255,255,255,.85); padding: 13px 6px;
  border-bottom: 1px solid rgba(255,255,255,.08); font-size: .98rem;
}
.drawer ul li a:hover { color: var(--gold); }
.drawer .sub { display: none; padding-left: 14px; }
.drawer .sub a { font-size: .88rem; color: rgba(255,255,255,.6); }
.drawer-call { margin-top: 26px; background: rgba(198,150,44,.12); border: 1px solid rgba(198,150,44,.4); padding: 18px; border-radius: var(--r); text-align: center; }
.drawer-call p { color: rgba(255,255,255,.6); font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; }
.drawer-call a { color: var(--gold); font-weight: 600; display: block; margin-top: 6px; }
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 990; opacity: 0; visibility: hidden; transition: var(--t); }
.scrim.show { opacity: 1; visibility: visible; }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: var(--charcoal);
}
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(12,12,17,.93) 0%, rgba(12,12,17,.72) 42%, rgba(12,12,17,.15) 100%);
}
.hero-body { position: relative; z-index: 2; max-width: 640px; padding: 110px 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(198,150,44,.5); color: #E8C56B;
  font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 2px; margin-bottom: 26px; background: rgba(198,150,44,.08);
}
.hero-body h1 {
  color: #fff; font-size: 3.3rem; font-weight: 700; line-height: 1.16; letter-spacing: -1px;
}
.hero-body h1 .gold-line { color: transparent; background: linear-gradient(100deg,#E8C56B,#C6962C); -webkit-background-clip: text; background-clip: text; }
.hero-body > p { color: rgba(255,255,255,.78); margin: 22px 0 34px; font-size: 1.06rem; max-width: 520px; }
.hero-acts { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-marks { display: flex; gap: 38px; margin-top: 58px; flex-wrap: wrap; }
.hero-mark { border-left: 2px solid var(--gold); padding-left: 16px; }
.hero-mark b { display: block; color: #fff; font-family: 'Sora', sans-serif; font-size: 1.5rem; }
.hero-mark b span { color: inherit; font-size: inherit; letter-spacing: 0; text-transform: none; }
.hero-mark > span { color: rgba(255,255,255,.55); font-size: .8rem; letter-spacing: 1.4px; text-transform: uppercase; }

/* ─── Assurance strip ───────────────────────────────── */
.assure { background: var(--ivory); border-block: 1px solid var(--line); }
.assure-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.assure-it {
  display: flex; gap: 15px; align-items: center; padding: 30px 26px;
  border-right: 1px solid var(--line);
}
.assure-it:last-child { border-right: 0; }
.assure-it i { font-size: 1.5rem; color: var(--gold-deep); }
.assure-it h4 { font-size: .95rem; font-weight: 600; }
.assure-it p { font-size: .8rem; color: var(--muted); }

/* ─── Category tiles ────────────────────────────────── */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--r);
  background: var(--charcoal); aspect-ratio: 4 / 3.4; display: block;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; opacity: .92; }
.tile:hover img { transform: scale(1.07); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,15,.88) 100%);
}
.tile-txt { position: absolute; left: 24px; right: 24px; bottom: 20px; z-index: 2; }
.tile-txt small {
  color: #E8C56B; letter-spacing: 2.5px; text-transform: uppercase; font-size: .68rem; font-weight: 500;
}
.tile-txt h3 { color: #fff; font-size: 1.22rem; font-weight: 600; margin: 4px 0 6px; }
.tile-txt p { color: rgba(255,255,255,.66); font-size: .84rem; line-height: 1.5; }
.tile-go {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(6px);
  transition: var(--t);
}
.tile:hover .tile-go { background: var(--gold); transform: rotate(-45deg); }

/* ─── About split ───────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about-pic { position: relative; }
.about-pic img { border-radius: var(--r); box-shadow: var(--shadow-2); }
.about-pic::before {
  content: ""; position: absolute; inset: -18px auto auto -18px; width: 120px; height: 120px;
  border-top: 3px solid var(--gold); border-left: 3px solid var(--gold);
}
.about-chip {
  position: absolute; right: -16px; bottom: -22px;
  background: var(--charcoal); color: #fff; padding: 20px 26px; border-radius: var(--r);
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-2);
}
.about-chip i { color: var(--gold); font-size: 1.6rem; }
.about-chip b { font-family: 'Sora', sans-serif; display: block; font-size: 1rem; }
.about-chip span { font-size: .74rem; color: rgba(255,255,255,.6); letter-spacing: 1px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.tick-list { margin: 22px 0 30px; display: grid; gap: 12px; }
.tick-list li { display: flex; gap: 12px; align-items: baseline; font-weight: 500; }
.tick-list li i { color: var(--gold-deep); font-size: .85rem; }

/* ─── Pillars (why us) ──────────────────────────────── */
.pillars-band { background: var(--charcoal); }
.pillars-band .sec-intro h2, .pillars-band .sec-intro h2 em { color: #fff; }
.pillars-band .sec-intro h2 em { color: #E8C56B; }
.pillars-band .sec-intro p { color: rgba(255,255,255,.6); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.09); }
.pillar { background: var(--charcoal); padding: 40px 34px; transition: var(--t); position: relative; }
.pillar:hover { background: var(--charcoal-2); }
.pillar-num {
  font-family: 'Sora', sans-serif; color: rgba(255,255,255,.14);
  font-size: 2.4rem; font-weight: 700; position: absolute; top: 22px; right: 26px;
}
.pillar i { color: var(--gold); font-size: 1.7rem; }
.pillar h3 { color: #fff; font-size: 1.08rem; margin: 18px 0 10px; font-weight: 600; }
.pillar p { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ─── CTA band ──────────────────────────────────────── */
.cta-band {
  background: var(--grad-gold); padding: 72px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: "\f0e7"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%) rotate(12deg);
  font-size: 220px; color: rgba(255,255,255,.1);
}
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-in h2 { color: #fff; font-size: 2rem; font-weight: 700; letter-spacing: -.5px; }
.cta-in p { color: rgba(255,255,255,.85); margin-top: 8px; }
.cta-in .btn-dark:hover { background: #000; }

/* ─── Page banner (inner pages) ─────────────────────── */
.pgban {
  position: relative; background: var(--charcoal); padding: 92px 0 84px; overflow: hidden;
}
.pgban-img { position: absolute; inset: 0; }
.pgban-img img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.pgban::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,12,17,.9), rgba(12,12,17,.4)); }
.pgban .wrap { position: relative; z-index: 2; }
.pgban .kicker { color: #E8C56B; }
.pgban h1 { color: #fff; font-size: 2.6rem; font-weight: 700; letter-spacing: -.6px; }
.pgban p { color: rgba(255,255,255,.7); max-width: 560px; margin-top: 12px; }
.crumbs { display: flex; gap: 10px; align-items: center; margin-top: 22px; font-size: .82rem; color: rgba(255,255,255,.55); }
.crumbs a:hover { color: var(--gold); }
.crumbs i { font-size: .6rem; }
.crumbs b { color: #E8C56B; font-weight: 500; }

/* ─── Product catalog ───────────────────────────────── */
.filters { background: var(--ivory); border-bottom: 1px solid var(--line); padding: 16px 0; position: sticky; top: 78px; z-index: 500; }
.filters-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 9px 22px; border: 1px solid var(--line); border-radius: 40px;
  background: #fff; font-size: .84rem; font-weight: 500; color: var(--muted); transition: var(--t);
  font-family: 'Jost', sans-serif;
}
.chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.chip.on { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

.range-title {
  display: flex; align-items: center; gap: 16px; margin: 46px 0 24px;
}
.range-title:first-child { margin-top: 0; }
.range-title h2 { font-size: 1.25rem; font-weight: 600; white-space: nowrap; }
.range-title small { color: var(--muted); font-size: .8rem; white-space: nowrap; }
.range-title::after { content: ""; height: 1px; background: var(--line); flex: 1; }

.prods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.prod {
  border: 1px solid var(--line); border-radius: var(--r); background: #fff;
  transition: var(--t); overflow: hidden; display: flex; flex-direction: column;
}
.prod:hover { box-shadow: var(--shadow-2); transform: translateY(-4px); border-color: rgba(198,150,44,.5); }
.prod-visual {
  aspect-ratio: 1 / .78; display: grid; place-items: center; position: relative;
  background: linear-gradient(150deg, #FCFAF4, #F1E9D7); overflow: hidden;
}
.prod-visual i { font-size: 2.5rem; color: var(--gold-deep); opacity: .85; }
.prod-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.prod:hover .prod-visual img { transform: scale(1.06); }
.prod-flag {
  position: absolute; top: 12px; left: 12px;
  background: var(--charcoal); color: #E8C56B; font-size: .64rem;
  letter-spacing: 1.5px; padding: 4px 10px; border-radius: 2px; text-transform: uppercase; font-weight: 600;
}
.prod-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.prod-code { font-size: .72rem; color: var(--gold-deep); letter-spacing: 1.6px; font-weight: 600; }
.prod-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: .98rem; color: var(--charcoal); margin: 5px 0 7px; }
.prod-meta { font-size: .78rem; color: var(--muted); margin-bottom: 15px; }
.prod-meta b { color: var(--ink); font-weight: 500; }
.prod-act { margin-top: auto; display: flex; gap: 8px; }
.prod-act .ask {
  flex: 1; text-align: center; padding: 10px; border: 1px solid var(--charcoal);
  color: var(--charcoal); font-size: .78rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 2px; transition: var(--t);
}
.prod-act .ask:hover { background: var(--charcoal); color: #fff; }
.prod-act .wapp {
  width: 42px; display: grid; place-items: center; background: #E7F6EC; color: #1DA851;
  border-radius: 2px; font-size: 1.05rem; transition: var(--t);
}
.prod-act .wapp:hover { background: #1DA851; color: #fff; }

/* ─── Contact ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 54px; align-items: start; }
.c-cards { display: grid; gap: 18px; }
.c-card {
  display: flex; gap: 18px; padding: 26px; border: 1px solid var(--line);
  border-radius: var(--r); background: var(--ivory); transition: var(--t);
}
.c-card:hover { border-color: rgba(198,150,44,.6); box-shadow: var(--shadow-1); }
.c-card i {
  width: 50px; height: 50px; flex: 0 0 50px; border-radius: 50%;
  background: var(--charcoal); color: var(--gold); display: grid; place-items: center; font-size: 1.05rem;
}
.c-card h4 { font-size: 1rem; margin-bottom: 4px; }
.c-card p, .c-card a { color: var(--muted); font-size: .92rem; display: block; }
.c-card a:hover { color: var(--gold-deep); }

.form-panel { border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: var(--r); padding: 40px; box-shadow: var(--shadow-1); background: #fff; }
.form-panel h3 { font-size: 1.35rem; margin-bottom: 6px; }
.form-panel > p { color: var(--muted); font-size: .92rem; margin-bottom: 26px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field.full { grid-column: 1 / -1; }
.f-field label { font-size: .8rem; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: var(--ink); }
.f-field input, .f-field select, .f-field textarea {
  font-family: 'Jost', sans-serif; font-size: .95rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 3px; background: var(--ivory);
  transition: var(--t); outline: none; resize: vertical;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(198,150,44,.14); }

.mapbox { margin-top: 60px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.mapbox iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ─── Values / spec cards (about page) ──────────────── */
.vals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.val {
  border: 1px solid var(--line); border-radius: var(--r); padding: 34px 26px;
  background: #fff; text-align: center; transition: var(--t);
}
.val:hover { border-color: rgba(198,150,44,.55); box-shadow: var(--shadow-2); transform: translateY(-5px); }
.val i {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-deep); display: grid; place-items: center; font-size: 1.35rem;
}
.val h3 { font-size: 1.02rem; margin-bottom: 8px; font-weight: 600; }
.val p { color: var(--muted); font-size: .88rem; }

.facts-band { background: var(--ivory); border-block: 1px solid var(--line); }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.fact { padding: 46px 20px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact b { font-family: 'Sora', sans-serif; font-size: 2.3rem; color: var(--charcoal); }
.fact b i { color: var(--gold-deep); font-style: normal; }
.fact b span { display: inline; }
.fact > span { display: block; color: var(--muted); font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

/* ─── Footer ────────────────────────────────────────── */
.ftr { background: #0E0E14; color: rgba(255,255,255,.68); }
.ftr-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 46px; padding: 74px 0 54px; }
.ftr-brand img { height: 58px; width: 58px; border-radius: 50%; border: 2px solid var(--gold); background: #fff; object-fit: cover; margin-bottom: 18px; }
.ftr-brand p { font-size: .9rem; max-width: 300px; }
.ftr-soc { display: flex; gap: 10px; margin-top: 22px; }
.ftr-soc a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
  display: grid; place-items: center; color: rgba(255,255,255,.7); transition: var(--t); font-size: .9rem;
}
.ftr-soc a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.ftr h4 {
  color: #fff; font-size: .95rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px; font-weight: 600;
}
.ftr h4::after { content: ""; display: block; width: 30px; height: 2px; background: var(--gold); margin-top: 9px; }
.ftr-links li { margin-bottom: 11px; }
.ftr-links a { font-size: .9rem; transition: var(--t); }
.ftr-links a:hover { color: var(--gold); padding-left: 6px; }
.ftr-c { display: flex; gap: 13px; margin-bottom: 16px; font-size: .9rem; }
.ftr-c i { color: var(--gold); margin-top: 5px; }
.ftr-c a:hover { color: var(--gold); }
.ftr-base { border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0; }
.ftr-base-in { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.45); }
.ftr-base a { color: rgba(255,255,255,.65); }
.ftr-base a:hover { color: var(--gold); }

/* ─── Floaters ──────────────────────────────────────── */
.to-top {
  position: fixed; right: 26px; bottom: 96px; z-index: 800;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--charcoal); color: var(--gold); cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--t); box-shadow: var(--shadow-2);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--gold); color: #fff; }
.wa-float {
  position: fixed; right: 22px; bottom: 26px; z-index: 800;
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: #1DA851; color: #fff; font-size: 1.6rem; box-shadow: 0 10px 30px rgba(29,168,81,.45);
  transition: var(--t);
}
.wa-float:hover { transform: scale(1.1); }

/* ─── Reveal animation ──────────────────────────────── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .prods { grid-template-columns: repeat(3, 1fr); }
  .ftr-top { grid-template-columns: 1fr 1fr; }
  .assure-grid { grid-template-columns: repeat(2, 1fr); }
  .assure-it:nth-child(2) { border-right: 0; }
  .assure-it { border-bottom: 1px solid var(--line); }
  .assure-it:nth-child(n+3) { border-bottom: 0; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact { border-bottom: 1px solid var(--line); }
  .fact:nth-child(n+3) { border-bottom: 0; }
  .vals { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav, .hdr-phone { display: none; }
  .burger { display: flex; }
}
@media (max-width: 640px) {
  .sec { padding: 64px 0; }
  .hero-body h1 { font-size: 2.3rem; }
  .hero { min-height: 74vh; }
  .tiles, .pillars, .prods, .vals { grid-template-columns: 1fr; }
  .prods { grid-template-columns: repeat(2, 1fr); }
  .f-row { grid-template-columns: 1fr; }
  .annbar .ann-links span.hide-s { display: none; }
  .ann-note { display: none; }
  .sec-intro h2 { font-size: 1.7rem; }
  .cta-in h2 { font-size: 1.5rem; }
  .pgban h1 { font-size: 1.9rem; }
  .form-panel { padding: 26px 20px; }
  .filters { top: 70px; }
  .hdr-in { height: 70px; }
  .brand img { height: 42px; width: 42px; }
  .brand-name b { font-size: 1rem; }
}
@media (max-width: 430px) {
  .prods { grid-template-columns: 1fr; }
}
