/* =========================================================
   Liquidx Tech Solutions — static site styles
   Plain CSS. No framework, no build step for styling.
   ========================================================= */

:root {
  --brand:        #db6b0e;   /* logo orange */
  --brand-600:    #b0530a;   /* darker — links / text on white (AA) */
  --brand-700:    #8a3f08;
  --amber:        #f7a521;   /* gradient partner */
  --deep:         #e8590c;   /* secondary accent */

  --ink:          #171717;
  --body:         #4b4b4b;
  --muted:        #6b7280;
  --line:         #e7e2da;
  --bg:           #ffffff;
  --bg-soft:      #faf7f2;
  --bg-navy:      #14110c;
  --bg-navy-2:    #1e1912;

  --tint:         #fff5ea;   /* soft warm fill */
  --tint-2:       #fdecd3;
  --tint-line:    #f6d9b0;

  --radius:       16px;
  --radius-sm:    10px;
  --shadow-sm:    0 1px 2px rgba(20, 15, 8, .06), 0 1px 3px rgba(20, 15, 8, .09);
  --shadow-md:    0 10px 30px -12px rgba(20, 15, 8, .20);
  --shadow-lg:    0 30px 60px -20px rgba(20, 15, 8, .30);

  --container:    1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { text-wrap: pretty; }
ul, ol { padding-left: 1.2rem; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: #d8d2c7; }
.section--navy h2, .section--navy h3 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-700);
  background: var(--tint); border: 1px solid var(--tint-line);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.section--navy .eyebrow { background: rgba(219,107,14,.18); border-color: rgba(219,107,14,.4); color: #fbbf7a; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.lead { font-size: 1.15rem; color: var(--body); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px -8px rgba(219,107,14,.75); }
.btn--primary:hover { background: var(--brand-600); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: #d8cfc1; }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--light:hover { background: rgba(255,255,255,.2); }
.btn--lg { padding: 17px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand img { height: 46px; width: auto; }
@media (max-width: 480px) { .brand img { height: 40px; } }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  color: var(--body); font-weight: 600; font-size: .96rem;
  padding: 9px 14px; border-radius: 9px;
}
.nav a:hover { color: var(--ink); background: var(--bg-soft); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--brand-600); }
.nav .btn { display: none; }               /* shown only inside the mobile menu */
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer; padding: 0; place-items: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 22px 22px; box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .28s ease; visibility: hidden;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 13px 12px; font-size: 1.05rem; border-radius: 10px; }
  .nav .btn { display: inline-flex; margin-top: 10px; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(60px, 9vw, 120px) 0 clamp(60px, 9vw, 110px); }
.hero::before {
  content: ""; position: absolute; inset: -40% -10% auto -10%; height: 720px; z-index: 0;
  background:
    radial-gradient(45% 45% at 15% 25%, rgba(219,107,14,.20), transparent 60%),
    radial-gradient(45% 45% at 85% 15%, rgba(247,165,33,.20), transparent 60%),
    radial-gradient(40% 40% at 60% 80%, rgba(232,89,12,.12), transparent 60%);
  filter: blur(10px);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.18rem; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { margin-top: 28px; font-size: .92rem; color: var(--muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero__trust strong { color: var(--ink); }

.hero__panel {
  position: relative; background: linear-gradient(160deg, #1c1a15, #2b2416);
  border-radius: 24px; padding: 30px; color: #e9e4d8; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__panel::after {
  content: ""; position: absolute; width: 260px; height: 260px; right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(247,165,33,.5), transparent 65%);
}
.hero__panel h3 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.hero__panel .muted { color: #b0a793; font-size: .9rem; }
.metric-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; position: relative; }
.metric {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px; padding: 16px;
}
.metric b { display: block; color: #fff; font-size: 1.5rem; letter-spacing: -0.02em; }
.metric span { font-size: .82rem; color: #b0a793; }
.bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.1); margin-top: 18px; overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--amber)); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero p { max-width: none; }
}

/* ---------- trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 22px; flex-wrap: wrap; }
.strip p { font-weight: 600; color: var(--muted); font-size: .9rem; }
.strip__items { display: flex; gap: 28px; flex-wrap: wrap; }
.strip__items span { font-weight: 700; color: var(--ink); }

/* ---------- cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--tint-line); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--tint), var(--tint-2)); color: var(--brand-600);
  border: 1px solid var(--tint-line); margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .98rem; }
.card--link a { font-weight: 700; display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: -1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } .split--reverse .split__media { order: 0; } }
.checklist { list-style: none; padding: 0; margin-top: 22px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--body); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--brand); margin-top: 1px; }
.media-card {
  background: linear-gradient(160deg, var(--tint), var(--tint-2)); border: 1px solid var(--tint-line);
  border-radius: 20px; padding: 30px; box-shadow: var(--shadow-md);
}
.media-card__row { display: flex; align-items: center; gap: 14px; padding: 16px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.media-card__row:last-child { margin-bottom: 0; }
.media-card__row .dot { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--brand), var(--amber)); flex: none; display: grid; place-items: center; color: #fff; font-weight: 800; }
.media-card__row b { color: var(--ink); display: block; font-size: .96rem; }
.media-card__row span { font-size: .85rem; color: var(--muted); }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 26px 30px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-weight: 800; font-size: 1rem; color: var(--brand-700);
  background: var(--tint); border: 1px solid var(--tint-line); border-radius: 8px;
  padding: 4px 9px; display: inline-block; margin-bottom: 12px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { font-size: .95rem; }

/* ---------- pricing (kept for optional future use) ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--brand); box-shadow: var(--shadow-lg); position: relative; }
.plan h3 { font-size: 1.15rem; }
.plan__price { margin: 14px 0 4px; font-size: 2.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.plan__price span { font-size: .95rem; font-weight: 600; color: var(--muted); }
.plan__desc { font-size: .92rem; color: var(--muted); min-height: 40px; }
.plan ul { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 11px; }
.plan li { display: flex; gap: 10px; font-size: .95rem; }
.plan li svg { flex: none; width: 20px; height: 20px; color: var(--brand); }
.plan .btn { margin-top: auto; }

/* ---------- stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat b { display: block; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.stat span { color: #b8ad98; font-weight: 600; font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band__box {
  background: linear-gradient(150deg, var(--brand-700), var(--brand) 45%, var(--amber));
  border-radius: 26px; padding: clamp(40px, 6vw, 72px); color: #fff; box-shadow: var(--shadow-lg);
}
.cta-band__box h2 { color: #fff; }
.cta-band__box p { color: rgba(255,255,255,.92); max-width: 52ch; margin: 14px auto 28px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- team ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr 1fr; } }
.member { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 16px; box-shadow: var(--shadow-sm); }
.member .avatar {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.4rem; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--amber));
}
.member b { color: var(--ink); display: block; }
.member span { font-size: .88rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-methods { display: grid; gap: 14px; }
.contact-method {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.contact-method:hover { text-decoration: none; border-color: var(--tint-line); box-shadow: var(--shadow-md); }
.contact-method .ic { width: 44px; height: 44px; border-radius: 11px; flex: none; display: grid; place-items: center; background: linear-gradient(135deg, var(--tint), var(--tint-2)); color: var(--brand-600); border: 1px solid var(--tint-line); }
.contact-method b { color: var(--ink); display: block; font-size: .95rem; }
.contact-method span { color: var(--body); font-size: 1.02rem; word-break: break-word; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: block; margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form__note { font-size: .85rem; color: var(--muted); margin-top: 12px; }
.form__status { margin-top: 14px; font-size: .95rem; font-weight: 600; }
.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 26px; }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink); padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--brand); font-weight: 400; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details > p { padding: 16px 0; font-size: .98rem; }

/* ---------- blog ---------- */
.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-list { grid-template-columns: 1fr; } }
.post-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.post-card__thumb {
  aspect-ratio: 16 / 9; display: grid; place-items: center; color: #fff; padding: 20px; text-align: center;
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--brand-700), var(--brand) 55%, var(--amber));
}
.post-card__thumb.v2 { background: linear-gradient(135deg, #92400e, var(--amber) 55%, #fcd34d); }
.post-card__thumb.v3 { background: linear-gradient(135deg, #7c2d12, var(--deep) 55%, #fb923c); }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.post-card h3 { font-size: 1.08rem; margin: 8px 0 10px; color: var(--ink); }
.post-card p { font-size: .93rem; color: var(--body); }
.post-card__more { margin-top: auto; padding-top: 14px; font-weight: 700; color: var(--brand-600); font-size: .9rem; }

/* ---------- article ---------- */
.article { padding: clamp(40px, 6vw, 72px) 0; }
.article__head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.article__head .kicker { font-weight: 700; color: var(--brand-600); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.article__head h1 { margin: 14px 0 16px; font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.article__meta { color: var(--muted); font-size: .92rem; font-weight: 600; }
.article__banner {
  max-width: 900px; margin: 0 auto 44px; height: 200px; border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand) 55%, var(--amber));
  box-shadow: var(--shadow-md);
}
.article__banner.v2 { background: linear-gradient(135deg, #92400e, var(--amber) 55%, #fcd34d); }
.article__banner.v3 { background: linear-gradient(135deg, #7c2d12, var(--deep) 55%, #fb923c); }
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.22rem; margin: 30px 0 10px; }
.prose h4 { font-size: 1.05rem; margin: 22px 0 8px; color: var(--ink); }
.prose p { margin: 14px 0; }
.prose ul, .prose ol { margin: 14px 0; display: grid; gap: 8px; }
.prose li { padding-left: 4px; }
.prose strong { color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.prose th { background: var(--bg-soft); color: var(--ink); font-weight: 700; }
.prose .table-wrap { overflow-x: auto; }
.article__cta {
  max-width: 760px; margin: 48px auto 0; padding: 28px; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--tint), var(--tint-2)); border: 1px solid var(--tint-line); text-align: center;
}
.article__cta h3 { margin-bottom: 8px; }
.article__cta p { margin-bottom: 16px; font-size: .96rem; }
.article__back { max-width: 760px; margin: 32px auto 0; }

/* breadcrumb */
.crumbs { max-width: 760px; margin: 0 auto 24px; font-size: .85rem; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand-600); }

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(180deg, var(--bg-soft), #fff); border-bottom: 1px solid var(--line); padding: clamp(48px, 7vw, 84px) 0; text-align: center; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { max-width: 60ch; margin-inline: auto; font-size: 1.1rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-navy); color: #a29883; padding: 64px 0 28px; }
.site-footer a { color: #d8d2c7; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.brand--footer { background: #fff; padding: 10px 14px; border-radius: 12px; margin-bottom: 16px; }
.brand--footer img { height: 42px; width: auto; }
.site-footer__about { font-size: .92rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; font-size: .93rem; }
.footer-contact { display: grid; gap: 12px; font-size: .93rem; }
.footer-contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--amber); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials 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);
}
.socials a:hover { background: var(--brand); border-color: var(--brand); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- utilities ---------- */
.mt-0 { margin-top: 0; }
.hide { display: none !important; }
