/* ============================================================
   AURA SMART — Customer Website
   Premium theme · Black / White / Gold
   ============================================================ */

:root {
  /* Brand — gold accent */
  --gold: #c2a24c;
  --gold-bright: #e4c97e;
  --gold-soft: #d8bd7c;
  --gold-deep: #9c7c34;

  /* Black / charcoal */
  --black: #0b0b0c;
  --charcoal: #141416;
  --charcoal-2: #1c1c1f;
  --charcoal-3: #26262a;

  /* Ink & neutrals (warm) */
  --ink: #17160f;
  --slate-700: #46443c;
  --slate-500: #6c685e;
  --slate-400: #9a958a;
  --line: #efeae1;
  --line-2: #f4f0e8;
  --bg: #ffffff;
  --bg-soft: #f8f6f1;
  --bg-tint: #f4efe3;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: none;
  --shadow-md: 0 10px 30px rgba(20,18,10,.06);
  --shadow-lg: 0 22px 55px rgba(11,11,12,.16);
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

@font-face {
  font-family: "Avayx";
  src: url("Avayx.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.14; color: var(--ink); }
h1, h2 { font-family: "Playfair Display", Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3.7vw, 2.9rem); }
h3, h4 { font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--black); color: #fff; }
.section--tint { background: var(--bg-tint); }

.eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 16px;
}
.section--navy .eyebrow { color: var(--gold-bright); }

.lead { font-size: 1.16rem; color: var(--slate-500); max-width: 720px; }
.section--navy .lead { color: rgba(255,255,255,.72); }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  padding: 14px 28px; border-radius: 2px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gold); color: #141210; box-shadow: 0 8px 22px rgba(194,162,76,.26); }
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(194,162,76,.34); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn--light { background: #fff; color: var(--black); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn .arw { transition: transform .2s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
/* Logo + "Aura" wordmark derive from one width.
   Avayx metric: "Aura" renders at 3.43 x font-size wide; base match = logo width / 3.43,
   then scaled up 1.2x per request so the wordmark reads slightly larger than the mark. */
.brand { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; color: var(--ink); --logo-w: 50px; }
.brand__mark { width: var(--logo-w); height: auto; }
.brand span { line-height: 1; }
.brand__name {
  font-family: "Avayx", "Playfair Display", Georgia, serif;
  font-size: calc(var(--logo-w) / 3.43 * 1.2);
  line-height: 1; font-weight: 400; letter-spacing: 0;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 52%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a.link {
  padding: 9px 16px; border-radius: 2px; font-weight: 500; font-size: .95rem;
  color: var(--slate-700); transition: color .18s, background .18s; letter-spacing: .01em;
}
.nav__links a.link:hover { color: var(--gold-deep); }
.nav__links a.link.active { color: var(--gold-deep); }
.nav__cta { margin-left: 12px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: .25s; }


/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 84% -10%, rgba(194,162,76,.18), transparent 60%),
    radial-gradient(800px 480px at -5% 110%, rgba(194,162,76,.07), transparent 55%),
    linear-gradient(180deg, var(--black), var(--charcoal));
  color: #fff;
  padding: 100px 0 108px;
}
.hero::after {
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(194,162,76,.5), transparent);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero .kicker {
  display: inline-flex; align-items:center; gap:9px;
  font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(194,162,76,.1);
  padding: 8px 16px; border-radius: 2px; margin-bottom: 24px;
  border: 1px solid rgba(194,162,76,.28);
}
.hero__sub { font-size: 1.2rem; color: rgba(255,255,255,.8); max-width: 560px; margin: 8px 0 30px; }
.hero__tags { display:flex; flex-wrap:wrap; gap:10px; margin-top: 32px; }
.hero__tags span { font-size:.82rem; font-weight:500; color:rgba(255,255,255,.82); border:1px solid rgba(255,255,255,.16); padding:7px 15px; border-radius:2px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__panel {
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid rgba(194,162,76,.22);
  border-radius: 6px; padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero__panel h4 { font-size:.76rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-bright); margin-bottom:20px; font-weight:600; }
.mini-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:12px; }
.mini { background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); border-radius: 4px; padding: 17px; }
.mini .ic { width:32px;height:32px;margin-bottom:11px; color: var(--gold-bright); }
.mini b { display:block; color:#fff; font-size:.98rem; }
.mini small { color: rgba(255,255,255,.55); font-size:.8rem; }
.hero__panel-img { height: 150px; border-radius: 6px; margin-bottom: 20px; border:1px solid rgba(194,162,76,.18); }

/* ---------- Media (tall image for split sections) ---------- */
.media { width:100%; min-height: 420px; border-radius: 10px; box-shadow: var(--shadow-lg); border:1px solid rgba(194,162,76,.16); }
.media--light { box-shadow: var(--shadow-md); border-color: var(--line); }
.section--navy .media { border-color: rgba(194,162,76,.22); }

/* ---------- Trust strip ---------- */
.trust { background: var(--charcoal); color:#fff; padding: 22px 0; border-bottom:1px solid rgba(255,255,255,.06); }
.trust__row { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 14px 40px; }
.trust__row .t { display:flex; align-items:center; gap:10px; font-weight:500; font-size:.92rem; color:rgba(255,255,255,.82); letter-spacing:.02em; }
.trust__row .t .dot { width:6px;height:6px;border-radius:50%;background:var(--gold); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card__ic {
  width: 52px; height: 52px; border-radius: 4px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--bg-tint); color: var(--gold-deep);
}
.card__ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate-500); font-size: .98rem; margin: 0; }
.card .tagline { display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:14px; }

.card--dark { background: var(--charcoal-2); border-color: rgba(194,162,76,.14); color:#fff; }
.card--dark h3 { color:#fff; }
.card--dark p { color: rgba(255,255,255,.66); }
.card--dark .card__ic { background: rgba(194,162,76,.12); color: var(--gold-bright); }

/* ---------- Section head ---------- */
.head { max-width: 760px; margin-bottom: 48px; }
.head.center { margin-left:auto; margin-right:auto; }

/* ---------- Stats ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align:center; }
.stat b { display:block; font-family:"Playfair Display",Georgia,serif; font-size: clamp(2.1rem,4vw,3.1rem); font-weight:600; color: var(--gold-deep); letter-spacing:-.01em; }
.section--navy .stat b { color: var(--gold-bright); }
.stat span { color: var(--slate-500); font-weight:500; font-size:.95rem; }
.section--navy .stat span { color: rgba(255,255,255,.68); }

/* ---------- Feature split ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.checklist { list-style:none; margin: 22px 0 0; padding:0; display:grid; gap:15px; }
.checklist li { display:flex; gap:14px; align-items:flex-start; font-size:1.02rem; color: var(--slate-700); }
.checklist .ck {
  flex: 0 0 24px; width:24px;height:24px;border-radius:50%; margin-top:2px; font-size:.8rem;
  display:grid;place-items:center; background: var(--bg-tint); color: var(--gold-deep);
}
.checklist b { color: var(--ink); font-weight:700; }

/* ---------- Audience chips ---------- */
.aud { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.aud__item { padding: 28px; border:1px solid var(--line); border-radius: 4px; background:#fff; transition: .25s var(--ease); box-shadow: var(--shadow-sm); }
.aud__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.aud__item .ic { width:46px;height:46px;border-radius:4px;background:var(--black);color:var(--gold-bright);display:grid;place-items:center;margin-bottom:18px; }
.aud__item .ic svg { width:23px;height:23px; }
.aud__item h3 { font-size:1.12rem; }
.aud__item p { color: var(--slate-500); font-size:.95rem; margin:0; }

/* ---------- Logos ---------- */
.logos-featured { display:grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 14px; }
.logos { display:grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.logo-cell {
  display:grid; place-items:center; height: 108px; padding: 18px 24px;
  background:transparent; border:0; border-radius: 0;
}
.logo-cell--lg { height: 128px; }
.logo-cell img { max-height:56px; max-width:78%; object-fit:contain; opacity:.7; transition: opacity .3s var(--ease); }
.logo-cell--lg img { max-height:76px; }
.logo-cell:hover img { opacity:1; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(194,162,76,.24), transparent 60%),
    linear-gradient(120deg, var(--black), var(--charcoal-2));
  color:#fff; border-radius: 8px; padding: 60px; text-align:center;
  box-shadow: var(--shadow-lg); border:1px solid rgba(194,162,76,.2);
}
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.76); max-width: 560px; margin: 0 auto 28px; }
.cta-band .btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Steps / process ---------- */
.steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step { padding: 28px; border-radius: 4px; background:#fff; border:1px solid var(--line); position:relative; box-shadow: var(--shadow-sm); }
.step .n { font-family:"Playfair Display",Georgia,serif; font-size:1.4rem; font-weight:600; color: var(--gold-deep); }
.step h3 { font-size:1.08rem; margin:10px 0 6px; }
.step p { color: var(--slate-500); font-size:.94rem; margin:0; }

/* ---------- Page header ---------- */
.pagehead {
  position: relative;
  background:
    radial-gradient(900px 420px at 82% -20%, rgba(194,162,76,.17), transparent 60%),
    linear-gradient(180deg, var(--black), var(--charcoal));
  color:#fff; padding: 82px 0 72px;
}
.pagehead::after { content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background: linear-gradient(90deg, transparent, rgba(194,162,76,.5), transparent); }
.pagehead h1 { color:#fff; font-size: clamp(2.2rem,4.4vw,3.3rem); }
.pagehead p { color: rgba(255,255,255,.76); font-size:1.14rem; max-width: 640px; }
.crumbs { font-size:.8rem; color: rgba(255,255,255,.5); margin-bottom: 20px; font-weight:500; letter-spacing:.06em; text-transform:uppercase; }
.crumbs a:hover { color: var(--gold-bright); }

/* ---------- Image placeholder system (photo over premium gradient) ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: 8px; background-color: #141416;
  background-image:
    linear-gradient(140deg, rgba(11,11,12,.30), rgba(11,11,12,.52)),
    var(--img, linear-gradient(0deg, transparent, transparent)),
    linear-gradient(140deg, #2a2a2e, #0b0b0c);
  background-position: center, center, center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.ph__badge {
  position:absolute; left:16px; top:16px; z-index:2;
  width:42px; height:42px; border-radius:8px; display:grid; place-items:center;
  background: rgba(11,11,12,.55); border:1px solid rgba(194,162,76,.4); color: var(--gold-bright);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.ph__badge svg { width:22px; height:22px; }

/* ---------- Solution rows ---------- */
.sol { display:grid; grid-template-columns: 300px 1fr; gap: 34px; align-items:stretch; padding: 26px; border:1px solid var(--line); border-radius: 10px; background:#fff; box-shadow: var(--shadow-sm); transition:.3s var(--ease); }
.sol:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.sol__img { min-height: 210px; border-radius: 8px; }
.sol__text { align-self:center; }
.sol h3 { margin-bottom:8px; }
.sol p { color: var(--slate-500); margin:0 0 14px; }
.sol .feats { display:flex; flex-wrap:wrap; gap:8px; }
.sol .feats span { font-size:.8rem; font-weight:500; color: var(--slate-700); background: var(--bg-soft); border:1px solid var(--line); padding:5px 12px; border-radius:999px; }

/* ---------- Platform grid ---------- */
.platform { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.pf { text-align:center; padding: 28px 20px; background:#fff; border:1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow-sm); transition:.25s var(--ease); }
.pf:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.pf .ic { width:50px;height:50px;border-radius:50%; margin:0 auto 14px; background:var(--bg-tint); color:var(--gold-deep); display:grid;place-items:center; }
.pf .ic svg{width:24px;height:24px;}
.pf h4 { font-size:1.02rem; margin-bottom:5px; }
.pf p { font-size:.88rem; color: var(--slate-500); margin:0; }

/* ---------- Partner segments ---------- */
.seg { border:1px solid var(--line); border-radius: 4px; background:#fff; overflow:hidden; box-shadow: var(--shadow-sm); transition:.25s var(--ease); }
.seg:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.seg__top { padding: 30px 30px 6px; display:flex; align-items:center; gap:16px; }
.seg__ic { flex:0 0 54px; width:54px;height:54px;border-radius:4px; background: var(--black); color: var(--gold-bright); display:grid;place-items:center; }
.seg__ic svg{width:27px;height:27px;}
.seg__top h3 { margin:0; font-size:1.22rem; }
.seg__body { padding: 8px 30px 32px; }
.seg__body p { color: var(--slate-500); font-size:.98rem; }
.seg__body ul { list-style:none; margin:14px 0 0; padding:0; display:grid; gap:10px; }
.seg__body li { display:flex; gap:11px; align-items:flex-start; font-size:.95rem; color: var(--slate-700); }
.seg__body li .ck { flex:0 0 20px;width:20px;height:20px;border-radius:50%;background:var(--bg-tint);color:var(--gold-deep);display:grid;place-items:center;margin-top:2px; }
.seg__body li svg{width:12px;height:12px;}

/* ---------- Team ---------- */
.team { display:grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.member { display:flex; gap:22px; align-items:center; padding:28px; border:1px solid var(--line); border-radius: 4px; background:#fff; box-shadow: var(--shadow-sm); }
.member .avatar { flex:0 0 76px; width:76px;height:76px;border-radius:50%; background: linear-gradient(155deg,var(--charcoal),var(--gold-deep)); color:var(--gold-bright); display:grid;place-items:center; font-family:"Playfair Display",serif; font-weight:600; font-size:1.5rem; border:1px solid rgba(194,162,76,.3); }
.member h3 { margin:0; font-size:1.16rem; }
.member .role { color: var(--gold-deep); font-weight:700; font-size:.86rem; letter-spacing:.04em; text-transform:uppercase; }
.member p { margin:6px 0 0; color: var(--slate-500); font-size:.9rem; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items:start; }
.form-card { background:#fff; border:1px solid var(--line); border-radius: 6px; padding: 36px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; font-size:.84rem; margin-bottom:7px; color: var(--slate-700); letter-spacing:.02em; }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1px solid var(--line); border-radius: 3px;
  font: inherit; font-size:.96rem; color: var(--ink); background:#fff; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194,162,76,.16); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-block { padding: 30px; border-radius: 6px; background: var(--black); color:#fff; border:1px solid rgba(194,162,76,.18); }
.info-block h3 { color:#fff; }
.info-item { display:flex; gap:14px; align-items:flex-start; padding: 15px 0; border-bottom:1px solid rgba(255,255,255,.09); }
.info-item:last-child { border-bottom:0; }
.info-item .ic { flex:0 0 42px; width:42px;height:42px;border-radius:4px;background:rgba(194,162,76,.12);color:var(--gold-bright);display:grid;place-items:center; }
.info-item .ic svg{width:20px;height:20px;}
.info-item small { display:block; color:var(--gold-bright); font-weight:600; letter-spacing:.12em; text-transform:uppercase; font-size:.66rem; margin-bottom:3px; }
.info-item a, .info-item span { color:#fff; font-weight:500; }
.info-item a:hover { color: var(--gold-bright); }

/* ---------- Offices ---------- */
.office { display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-bottom:1px solid var(--line); }
.office:last-child { border-bottom:0; padding-bottom:0; }
.office:first-of-type { padding-top:6px; }
.office__ic { flex:0 0 38px; width:38px;height:38px;border-radius:9px;background:var(--bg-tint);color:var(--gold-deep);display:grid;place-items:center; }
.office__ic svg { width:19px;height:19px; }
.office b { display:block; font-size:1rem; color:var(--ink); margin-bottom:3px; }
.office p { margin:0 0 6px; font-size:.9rem; color:var(--slate-500); line-height:1.5; }
.office__map { font-size:.85rem; font-weight:600; color:var(--gold-deep); }
.office__map:hover { color:var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: rgba(255,255,255,.68); padding: 66px 0 30px; border-top:1px solid rgba(194,162,76,.2); }
.footer__grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 34px 24px; margin-bottom: 46px; }
.footer h5 { color:#fff; font-size:.78rem; letter-spacing:.18em; text-transform:uppercase; margin:0 0 16px; }
.footer a { display:block; color: rgba(255,255,255,.62); padding: 5px 0; font-size:.94rem; transition:.15s; }
.footer a:hover { color: var(--gold-bright); }
.footer__brand p { font-size:.94rem; color: rgba(255,255,255,.55); max-width: 320px; margin-left:auto; margin-right:auto; }
.footer__bottom { border-top:1px solid rgba(255,255,255,.09); padding-top: 24px; display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; font-size:.85rem; color: rgba(255,255,255,.45); }
.footer__brand { grid-column: 1 / -1; text-align: center; margin-bottom: 42px; }
/* Override .footer a { display:block } (higher specificity) so the brand stays a centered flex column. */
.footer__brand .brand { display: flex; flex-direction: column; align-items: center; padding: 0; color:#fff; margin: 0 auto 14px; width: fit-content; }

/* ---------- Reveal ---------- */
html.js .reveal { opacity:0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity:1 !important; transform:none !important; transition:none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero__panel { order: -1; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .aud { grid-template-columns: repeat(2,1fr); }
  .platform { grid-template-columns: repeat(2,1fr); }
  .team { grid-template-columns: 1fr; }
  .logos { grid-template-columns: repeat(3,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .sol { grid-template-columns: 1fr; }
  .sol__img { min-height: 220px; }
  .media { min-height: 300px; }
}
@media (max-width: 720px) {
  .section { padding: 66px 0; }
  .nav__links { position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: stretch;
    background:#fff; border-bottom:1px solid var(--line); padding: 14px 20px 22px; gap:2px;
    box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .3s var(--ease); }
  .nav__links.open { transform: translateY(0); }
  .nav__links a.link { padding: 13px 12px; }
  .nav__cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .nav__toggle { display: block; }
  .grid-4, .grid-3, .grid-2, .aud, .platform, .logos, .steps, .stats, .form-row, .footer__grid { grid-template-columns: 1fr; }
  .logos-featured { grid-template-columns: 1fr; }
  .sol { grid-template-columns: 1fr; padding: 18px; }
  .sol__img { min-height: 180px; }
  .cta-band { padding: 42px 24px; }
  .member { flex-direction: column; text-align: center; }
  .footer { text-align: center; }
  .footer__brand p { max-width: 100%; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ---------- Phones ---------- */
@media (max-width: 520px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .hero { padding: 60px 0 68px; }
  .hero__sub { font-size: 1.08rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__panel { padding: 20px; }
  .mini-grid { gap: 10px; }
  .cta-band { padding: 36px 20px; }
  .cta-band .btns { flex-direction: column; }
  .cta-band .btns .btn { width: 100%; justify-content: center; }
  .card, .form-card, .info-block, .seg__top, .seg__body { padding-left: 22px; padding-right: 22px; }
  .card { padding: 26px 22px; }
  .brand { --logo-w: 46px; }
  .footer { padding: 48px 0 26px; }
  .stat b { font-size: clamp(2rem, 9vw, 2.6rem); }
}

/* Utilities */
.mt-s{margin-top:14px;} .mt-m{margin-top:28px;} .mb-0{margin-bottom:0;}
.txt-gold{color:var(--gold-deep);}
