/* ============================================================
   Ananas GDS — Marketing site stylesheet
   Brand: amber #E29A00, navy #2c3a4b, cream #f4f2ee
   Type:  Public Sans (UI/body), JetBrains Mono (tagline/code)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --gold:        #E29A00;
  --gold-dark:   #CF8000;
  --gold-soft:   rgba(226, 154, 0, 0.10);
  --gold-soft-2: rgba(226, 154, 0, 0.16);

  --navy:        #2c3a4b;
  --navy-dark:   #1f2a37;
  --navy-deep:   #18222e;

  --ink:         #2F2B3D;
  --ink-muted:   #6b7785;
  --ink-light:   #a1b1bc;

  --cream:       #f4f2ee;
  --cream-alt:   #f7f6f3;
  --white:       #ffffff;

  --border:      rgba(44, 58, 75, 0.12);
  --border-soft: rgba(44, 58, 75, 0.08);

  --success:     #28C76F;
  --error:       #FF4C51;
  --warning:     #FF9F43;
  --info:        #00BAD1;

  --shadow-sm:   0 2px 12px rgba(20, 30, 45, 0.06);
  --shadow-md:   0 8px 32px rgba(20, 30, 45, 0.10);
  --shadow-lg:   0 24px 60px rgba(20, 30, 45, 0.14);

  --radius-card: 14px;
  --radius-btn:  9px;
  --radius-pill: 999px;

  --maxw:        1200px;
  --nav-h:       72px;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

  --font:        'Public Sans', system-ui, -apple-system, sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.85rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.18rem; font-weight: 700; }
p  { margin: 0 0 1rem; text-wrap: pretty; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.bg-cream { background: var(--cream); }
.bg-cream-alt { background: var(--cream-alt); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); color: #e8edf2; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }

.center { text-align: center; }
.measure { max-width: 720px; margin-left: auto; margin-right: auto; }
.lead { font-size: 1.2rem; color: var(--ink-muted); }
.bg-navy .lead { color: #aeb9c5; }

/* ---- Badge / eyebrow ---- */
.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.bg-navy .badge { color: #f3c14e; background: rgba(226,154,0,0.16); }

.section-head { margin-bottom: 56px; }
.section-head .lead { margin-top: 14px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .16s var(--ease), color .16s var(--ease),
              border-color .16s var(--ease), transform .16s var(--ease),
              box-shadow .16s var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(226,154,0,0.28); }
.btn--gold:hover { background: var(--gold-dark); box-shadow: 0 10px 26px rgba(226,154,0,0.34); }

.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn--lg { padding: 17px 32px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

.txtlink {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--gold-dark);
  transition: gap .16s var(--ease);
}
.txtlink:hover { gap: 11px; }
.txtlink svg { width: 17px; height: 17px; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .2s var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(20,30,45,0.06); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 36px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.brand__name { font-weight: 800; font-size: 1.18rem; color: var(--navy); letter-spacing: -0.02em; }
.brand__name span { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 6px; }
.nav__link {
  position: relative;
  padding: 9px 14px; border-radius: 8px;
  font-weight: 500; font-size: 0.97rem; color: var(--ink);
  transition: background .14s, color .14s;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav__link:hover { background: var(--cream); color: var(--navy); }
.nav__link.active { color: var(--gold-dark); }
.nav__spacer { flex: 1; }
.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__signin { font-weight: 600; font-size: 0.97rem; padding: 9px 14px; color: var(--navy); }
.nav__signin:hover { color: var(--gold-dark); }

/* dropdown */
.nav__drop { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 10px; width: 290px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
.nav__drop:hover .nav__menu,
.nav__drop:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: 9px;
}
.nav__menu a:hover { background: var(--cream); }
.nav__menu .mt { font-weight: 600; color: var(--navy); font-size: 0.96rem; }
.nav__menu .md { font-size: 0.82rem; color: var(--ink-muted); }

.nav__burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--border);
  border-radius: 9px; background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__burger svg { width: 22px; height: 22px; color: var(--navy); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(24,34,46,0.5); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), visibility .22s;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86%, 360px);
  background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  transform: translateX(100%); transition: transform .26s var(--ease);
  display: flex; flex-direction: column; padding: 22px;
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer__close { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 9px; background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__links { display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
.drawer__links a { padding: 14px 12px; border-radius: 9px; font-weight: 600; font-size: 1.05rem; color: var(--navy); border-bottom: 1px solid var(--border-soft); }
.drawer__links a:hover { background: var(--cream); }
.drawer__foot { margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy);
  color: #e8edf2;
}
.hero--navy { background:
    radial-gradient(900px 500px at 78% -8%, rgba(226,154,0,0.20), transparent 60%),
    radial-gradient(700px 500px at 6% 110%, rgba(0,186,209,0.10), transparent 55%),
    var(--navy-deep);
}
.hero--cream { background: var(--cream); color: var(--ink); }
.hero__inner { position: relative; z-index: 2; padding: 92px 0 96px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero--cream h1 { color: var(--navy); }
.hero__sub { font-size: 1.22rem; color: #b3bfcc; max-width: 560px; margin-bottom: 32px; }
.hero--cream .hero__sub { color: var(--ink-muted); }
.gold-em { color: #f3c14e; font-style: italic; font-weight: 600; }
.hero--cream .gold-em { color: var(--gold-dark); }

.trustbar {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 34px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trustbar span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; color: #c3cdd8; }
.trustbar svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: 26px; }
.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(--border);
  border-radius: var(--radius-card); padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s;
}
.card--hover:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(226,154,0,0.4); }

.ico {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-soft); color: var(--gold-dark);
  margin-bottom: 20px;
}
.ico svg { width: 26px; height: 26px; }
.ico--navy { background: rgba(255,255,255,0.08); color: var(--gold); }
.ico--red { background: rgba(255,76,81,0.10); color: var(--error); }

.card h3, .card h4 { margin-bottom: 10px; }
.card p { color: var(--ink-muted); margin-bottom: 0; }
.card p:not(:last-child) { margin-bottom: 1rem; }

/* feature alternating rows */
.featrow { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.featrow + .featrow { margin-top: 90px; }
.featrow--rev .featrow__media { order: 2; }
.featrow__media {
  border-radius: var(--radius-card); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  background: var(--cream-alt);
}
.featrow h3 { margin-bottom: 14px; }
.featrow p { color: var(--ink-muted); font-size: 1.08rem; }

/* checklist */
.check { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 13px; }
.check li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check svg { width: 21px; height: 21px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.bg-navy .check li { color: #d3dbe3; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step__num {
  font-family: var(--mono); font-weight: 700; font-size: 0.92rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h4 { margin-bottom: 8px; }
.step p { color: var(--ink-muted); margin: 0; }

/* numbered vertical steps */
.vsteps { display: grid; gap: 4px; max-width: 820px; }
.vstep { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.vstep:last-child { border-bottom: none; }
.vstep__n {
  font-family: var(--mono); font-weight: 700;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.vstep h4 { margin-bottom: 8px; }
.vstep p { color: var(--ink-muted); margin: 0; }

/* stat row */
.stat__big { font-family: var(--mono); font-weight: 700; font-size: 2.6rem; color: #fff; letter-spacing: -0.02em; }
.bg-navy .stat__big { color: #fff; }
.stat__lbl { color: #aeb9c5; font-size: 0.98rem; }

/* pills / tags */
.tile {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 22px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 12px;
}
.tile svg { width: 22px; height: 22px; color: var(--gold); }

/* ============================================================
   Data-flow animation (hero + how-it-works)
   ============================================================ */
.flow { width: 100%; height: auto; }
.flow-node rect, .flow-node circle { transition: none; }
.flow-line { stroke: rgba(255,255,255,0.18); stroke-width: 2; fill: none; }
.flow--light .flow-line { stroke: rgba(44,58,75,0.18); }
.flow-dot { fill: var(--gold); }
.flow-pulse { transform-box: fill-box; transform-origin: center; }

@keyframes dashflow { to { stroke-dashoffset: -28; } }
.flow-energ { stroke: var(--gold); stroke-width: 2.4; fill: none; stroke-dasharray: 6 8; animation: dashflow 1.1s linear infinite; opacity: 0.9; }

@keyframes hubpulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.92; }
}
.flow-hub { transform-box: fill-box; transform-origin: center; animation: hubpulse 2.6s var(--ease) infinite; }

@keyframes ringpulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.9); opacity: 0; }
}
.flow-ring { transform-box: fill-box; transform-origin: center; animation: ringpulse 2.6s ease-out infinite; }

/* ============================================================
   Comparison table
   ============================================================ */
.ctable { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; }
.ctable th, .ctable td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--border-soft); font-size: 0.98rem; }
.ctable thead th { background: var(--navy); color: #fff; font-weight: 600; }
.ctable thead th:not(:first-child) { text-align: center; }
.ctable tbody td:not(:first-child) { text-align: center; }
.ctable tbody tr:last-child td { border-bottom: none; }
.ctable td:first-child { font-weight: 600; color: var(--navy); }
.ctable .yes { color: var(--success); font-weight: 700; }
.ctable .no { color: var(--ink-light); }
.ctable .hl { background: var(--gold-soft); }
.ctable tbody tr:hover { background: var(--cream-alt); }

/* before/after */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; }
.ba__col { padding: 30px; }
.ba__col--before { background: var(--cream); }
.ba__col--after { background: #fff; }
.ba__row { display: grid; grid-template-columns: 1fr; gap: 0; }
.ba__head { font-weight: 700; color: var(--navy); margin-bottom: 18px; display: flex; align-items: center; gap: 9px; }
.ba__head svg { width: 20px; height: 20px; }
.ba__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ba__list li { padding-left: 28px; position: relative; color: var(--ink-muted); font-size: 0.98rem; }
.ba__col--before .ba__list li::before { content: '✕'; position: absolute; left: 0; color: var(--error); font-weight: 700; }
.ba__col--after .ba__list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }

/* pricing */
.plans { display: grid; grid-template-columns: 1.05fr 1fr; gap: 28px; align-items: start; max-width: 940px; margin: 0 auto; }
.plan { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 38px; box-shadow: var(--shadow-sm); }
.plan--free { border: 2px solid var(--gold); box-shadow: var(--shadow-md); }
.plan__badge { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; font-weight: 600; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; }
.plan h3 { font-size: 1.5rem; margin-bottom: 6px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 4px; }
.plan__amt { font-size: 3rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.plan__per { color: var(--ink-muted); font-size: 1rem; }
.plan__note { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 24px; }
.plan .check { margin-bottom: 28px; }
.plan .check li { font-size: 0.97rem; }

/* callout */
.callout { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 12px; padding: 30px 34px; }
.callout--navy { background: rgba(255,255,255,0.04); border-left-color: var(--gold); color: #cdd6df; }
.callout p:last-child { margin-bottom: 0; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--border); border-radius: 12px; background: #fff; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font); font-size: 1.08rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; transition: transform .22s var(--ease); }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s var(--ease); }
.faq__a-inner { padding: 0 24px 22px; color: var(--ink-muted); }

/* code block */
.code {
  background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 22px 24px;
  font-family: var(--mono); font-size: 0.9rem; line-height: 1.85;
  color: #cdd6df; overflow-x: auto;
}
.code .m { color: #f3c14e; font-weight: 600; }
.code .p { color: #6fd3e0; }
.code .c { color: #6b7785; }

/* status legend */
.statuslist { display: grid; gap: 12px; }
.statusrow { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: center; padding: 16px 20px; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.statuschip { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--navy); }
.dot { width: 13px; height: 13px; border-radius: 50%; }

/* tabs */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.tab { padding: 10px 20px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: #fff; font-weight: 600; font-size: 0.95rem; color: var(--ink-muted); cursor: pointer; transition: all .15s; }
.tab.active, .tab:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* contact */
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 1rem; padding: 13px 15px;
  border: 1px solid var(--border); border-radius: 9px; background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.info-block { display: grid; gap: 20px; }
.info-item { display: flex; gap: 14px; }
.info-item .ico { margin-bottom: 0; width: 46px; height: 46px; flex-shrink: 0; }
.info-item .lbl { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-light); font-family: var(--mono); }
.info-item .val { font-weight: 600; color: var(--navy); }

/* legal/prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3 { margin: 28px 0 10px; }
.prose p, .prose li { color: var(--ink-muted); }
.prose ul { padding-left: 20px; }
.prose .imprint-block { font-family: var(--mono); font-size: 0.95rem; line-height: 2; color: var(--navy); background: var(--cream); padding: 28px 32px; border-radius: 12px; }

/* ============================================================
   Footer
   ============================================================ */
.foot { background: var(--navy-deep); color: #9fb0bf; padding: 72px 0 34px; }
.foot__top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot__brand img { height: 40px; margin-bottom: 16px; }
.foot__brand p { font-size: 0.94rem; max-width: 280px; color: #8294a4; }
.foot__brand .tagline { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--gold); margin-top: 4px; }
.foot__col h5 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 16px; font-family: var(--mono); font-weight: 600; }
.foot__col a { display: block; padding: 6px 0; font-size: 0.94rem; color: #9fb0bf; transition: color .14s; }
.foot__col a:hover { color: var(--gold); }
.foot__bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 0.88rem; color: #6f8090; }
.foot__social { display: flex; gap: 10px; }
.foot__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.14); border-radius: 9px; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.foot__social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.foot__social svg { width: 18px; height: 18px; }

/* ============================================================
   Scroll reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .flow-energ, .flow-hub, .flow-ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- cookie consent ---- */
.consent {
  position: fixed; left: 24px; bottom: 24px; right: auto; z-index: 300;
  max-width: 420px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: 22px 24px;
  transform: translateY(140%); transition: transform .4s var(--ease);
}
.consent.show { transform: none; }
.consent p { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 16px; }
.consent strong { color: var(--navy); }
.consent__row { display: flex; gap: 10px; }
.consent .btn { padding: 10px 18px; font-size: 0.92rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 520px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .featrow { grid-template-columns: 1fr; gap: 30px; }
  .featrow--rev .featrow__media { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .nav__signin, .nav__cta .btn--outline { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 64px 0; }
  .wrap { padding: 0 22px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; gap: 28px; }
  .ctable { display: block; overflow-x: auto; white-space: nowrap; }
  .consent { left: 16px; right: 16px; max-width: none; }
  body { font-size: 16px; }
}
