/* ==========================================================
   OOVA ADS — Flat editorial theme
   Same OOVA palette (teal-green + charcoal on white),
   deliberately DIFFERENT design language from oovatech:
   squared corners, hard offset shadows, bordered blocks,
   left-aligned section heads, dark footer, Sora + DM Sans.
   ========================================================== */

:root {
  /* Brand colors — identical to the OOVA palette */
  --green: #2e7d6b;
  --green-dark: #245f50;
  --green-light: #3fa588;
  --charcoal: #1e2422;

  --bg: #ffffff;
  --bg-soft: #f4f8f6;
  --bg-3: #e9f1ee;
  --card: #ffffff;
  --border: #e2eae6;
  --border-strong: #cdd9d3;

  --text: #1e2422;
  --text-soft: #55635e;
  --text-dim: #8a968f;

  --grad: linear-gradient(120deg, #2e7d6b, #3fa588);
  --grad-soft: linear-gradient(120deg, rgba(46,125,107,.10), rgba(63,165,133,.10));

  /* Squared geometry (vs oovatech's big pill radii) */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --max: 1180px;
  --header-h: 74px;
  --ease: .25s cubic-bezier(.4, 0, .2, 1);

  /* Hard offset shadows (vs oovatech's soft blur) */
  --shadow: 4px 4px 0 rgba(46, 125, 107, .12);
  --shadow-lg: 8px 8px 0 rgba(46, 125, 107, .18);
  --shadow-dark: 5px 5px 0 var(--charcoal);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* Subtle dot-grid texture instead of oovatech's radial glows */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(46, 125, 107, .07) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  pointer-events: none;
}

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

h1, h2, h3, h4 {
  font-family: 'Sora', 'DM Sans', sans-serif;
  line-height: 1.12;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.02em;
}

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }

.grad-text { color: var(--green); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--green-dark); font-weight: 700; font-size: .74rem;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 22px; height: 3px; background: var(--green); border-radius: 2px;
}

/* Left-aligned section head with an accent rule (editorial) */
.section-head { text-align: left; max-width: 680px; margin: 0 0 52px; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin: 18px 0 14px; font-weight: 800; }
.section-head p { color: var(--text-soft); font-size: 1.06rem; }

/* ===== Buttons — squared with hard shadow ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .93rem; cursor: pointer; font-family: 'Sora', sans-serif;
  border: 1.5px solid transparent; transition: var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green-dark); box-shadow: 3px 3px 0 var(--green-dark); }
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--green-dark); }
.btn-ghost { background: #fff; color: var(--charcoal); border-color: var(--charcoal); box-shadow: 3px 3px 0 rgba(30,36,34,.14); }
.btn-ghost:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(30,36,34,.2); border-color: var(--green); color: var(--green-dark); }
.btn-white { background: #fff; color: var(--green-dark); border-color: #fff; box-shadow: 3px 3px 0 rgba(0,0,0,.28); }
.btn-white:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0,0,0,.32); }

a.btn-primary { color: #fff !important; }
a.btn-white   { color: var(--green-dark) !important; }
a.btn-ghost   { color: var(--charcoal) !important; }

/* ===== Header — bordered bar, uppercase nav ===== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--charcoal);
}
.nav { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-weight: 600; color: var(--text-soft); font-size: .82rem; transition: var(--ease);
  position: relative; text-transform: uppercase; letter-spacing: .6px; font-family: 'Sora', sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 3px; background: var(--green); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-links .btn { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--charcoal); border-radius: 3px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero — LEFT aligned (vs oovatech centered) ===== */
.hero { padding: 92px 0 80px; text-align: left; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--bg-3); border: 1.5px solid var(--border-strong);
  color: var(--text); padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 600; margin-bottom: 26px;
}
.hero-badge .pill { background: var(--green); color: #fff; padding: 3px 10px; border-radius: 5px; font-size: .68rem; font-weight: 800; letter-spacing: .5px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); max-width: 15ch; margin: 0 0 22px; line-height: 1.05; font-weight: 800; }
.hero p { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--text-soft); max-width: 560px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
.hero-trust { margin-top: 56px; border-top: 1.5px solid var(--border-strong); padding-top: 28px; }
.hero-trust .lbl { color: var(--text-dim); font-size: .76rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.hero-logos { display: flex; gap: 36px; justify-content: flex-start; flex-wrap: wrap; opacity: .7; }
.hero-logos span { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--text-soft); }

/* ===== Stats — one bordered strip with dividers ===== */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--charcoal); border-radius: var(--radius);
  background: var(--card); box-shadow: var(--shadow-lg); overflow: hidden;
}
.stat { padding: 30px 26px; text-align: left; border-right: 1.5px solid var(--border-strong); }
.stat:last-child { border-right: none; }
.stat .num { font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--green-dark); }
.stat .lbl { color: var(--text-soft); font-size: .9rem; margin-top: 2px; font-weight: 500; }

/* ===== Bento / cards — flat, bordered, hard shadow ===== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile {
  background: var(--card); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius); padding: 30px; transition: var(--ease);
  position: relative; overflow: hidden;
}
.tile::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: var(--ease);
}
.tile:hover { transform: translate(-3px, -3px); border-color: var(--charcoal); box-shadow: var(--shadow-lg); }
.tile:hover::before { transform: scaleX(1); }
.tile.wide { grid-column: span 2; }
.tile .ic {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  background: var(--bg-3); border: 1.5px solid var(--charcoal);
  display: grid; place-items: center; font-size: 1.55rem; margin-bottom: 20px;
}
.tile h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
.tile p { color: var(--text-soft); font-size: .96rem; }

/* ===== Split ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 18px 0 20px; font-weight: 800; }
.split p { color: var(--text-soft); margin-bottom: 22px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 14px; color: var(--text-soft); }
.check-list .tick {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px;
  background: var(--green); color: #fff; display: grid; place-items: center;
  font-size: .72rem; font-weight: 800; border: 1.5px solid var(--green-dark);
}
.visual-card {
  border-radius: var(--radius); background: var(--charcoal);
  border: 1.5px solid var(--charcoal); box-shadow: var(--shadow-lg);
  min-height: 340px; display: grid; place-items: center;
  padding: 40px; text-align: center;
  background-image: radial-gradient(rgba(255,255,255,.06) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}
.visual-card .big { font-family: 'Sora', sans-serif; font-size: 4rem; font-weight: 800; color: var(--green-light); }
.visual-card .cap { color: rgba(255,255,255,.82); margin-top: 8px; }

/* ===== Process — bordered numbered steps ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--card); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius); padding: 28px 24px; transition: var(--ease);
}
.step:hover { border-color: var(--charcoal); box-shadow: var(--shadow); transform: translate(-2px, -2px); }
.step .step-num {
  font-family: 'Sora', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--green);
  line-height: 1; margin-bottom: 14px; -webkit-text-stroke: 0;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: .92rem; }

/* ===== Blog cards ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--card); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius); overflow: hidden; transition: var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translate(-3px, -3px); border-color: var(--charcoal); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 168px; display: grid; place-items: center; font-size: 2.8rem; color: #fff; background: var(--green); border-bottom: 1.5px solid var(--charcoal); overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card:nth-child(3n+2) .blog-thumb { background: var(--green-dark); }
.blog-card:nth-child(3n) .blog-thumb { background: var(--charcoal); }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  align-self: flex-start; background: var(--bg-3); border: 1.5px solid var(--border-strong);
  color: var(--green-dark); font-size: .72rem; font-weight: 700;
  padding: 4px 11px; border-radius: 5px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px;
}
.blog-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-body p { color: var(--text-soft); font-size: .92rem; margin-bottom: 18px; flex: 1; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--text-dim); border-top: 1.5px solid var(--border); padding-top: 15px; }
.read-more { color: var(--green-dark); font-weight: 700; font-family: 'Sora', sans-serif; }

/* ===== CTA — dark block with hard offset ===== */
.cta-band {
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  border: 1.5px solid var(--charcoal);
  box-shadow: 10px 10px 0 var(--green);
  padding: 60px 44px; text-align: center; position: relative; overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,.05) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; position: relative; font-weight: 800; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 1.08rem; position: relative; }

/* ===== Page hero ===== */
.page-hero { padding: 76px 0 56px; text-align: left; border-bottom: 1.5px solid var(--border); }
.page-hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); margin: 16px 0 14px; font-weight: 800; }
.page-hero p { color: var(--text-soft); max-width: 620px; font-size: 1.08rem; }
.breadcrumb { margin-top: 18px; font-size: .84rem; color: var(--text-dim); font-weight: 600; }
.breadcrumb a { color: var(--green-dark); }

/* ===== Values ===== */
.value-item { display: flex; gap: 18px; margin-bottom: 26px; }
.value-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--charcoal); border: 1.5px solid var(--charcoal);
  color: var(--green-light); display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 800;
}
.value-item h3 { font-size: 1.12rem; margin-bottom: 6px; }
.value-item p { color: var(--text-soft); font-size: .94rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; }
.contact-info-card {
  display: flex; gap: 16px; padding: 20px;
  background: var(--card); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius); margin-bottom: 15px; transition: var(--ease);
}
.contact-info-card:hover { border-color: var(--charcoal); box-shadow: var(--shadow); transform: translate(-2px, -2px); }
.contact-info-card .ic {
  width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--bg-3); border: 1.5px solid var(--charcoal);
  display: grid; place-items: center; font-size: 1.3rem;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--text-soft); font-size: .92rem; }
.contact-info-card a:hover { color: var(--green); }

.form { background: var(--card); border: 1.5px solid var(--charcoal); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-lg); }
.form h2 { font-size: 1.45rem; margin-bottom: 22px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .86rem; margin-bottom: 8px; color: var(--charcoal); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; background: var(--bg-soft); color: var(--text); transition: var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--green); background: #fff;
  box-shadow: 3px 3px 0 rgba(46, 125, 107, .18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note {
  display: none; margin-top: 14px; padding: 13px 16px; border-radius: var(--radius-sm);
  background: rgba(46, 125, 107, .1); border: 1.5px solid var(--green); color: var(--green-dark); font-weight: 600; font-size: .9rem;
}
.form-note.show { display: block; }
.map-box {
  margin-top: 18px; height: 220px; border-radius: var(--radius);
  background: var(--bg-3); border: 1.5px solid var(--border-strong); display: grid; place-items: center; color: var(--text-soft);
}

/* ===== FAQ ===== */
.faq-item { border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm); margin-bottom: 13px; overflow: hidden; background: var(--card); transition: var(--ease); }
.faq-item.open { border-color: var(--charcoal); box-shadow: var(--shadow); }
.faq-q {
  width: 100%; text-align: left; padding: 19px 22px; background: none; border: none;
  font-size: 1rem; font-weight: 700; color: var(--charcoal); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: 'Sora', sans-serif;
}
.faq-q .plus {
  color: var(--green-dark); font-size: 1.1rem; transition: var(--ease); flex-shrink: 0;
  width: 26px; height: 26px; border: 1.5px solid var(--border-strong); border-radius: 6px; display: grid; place-items: center;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--green); color: #fff; border-color: var(--green-dark); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 22px; color: var(--text-soft); }
.faq-item.open .faq-a { max-height: 320px; padding: 0 22px 20px; }

/* ===== Legal ===== */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.legal-toc-inner {
  position: sticky; top: 96px;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius);
  padding: 22px; background: var(--card); box-shadow: var(--shadow);
}
.legal-toc h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-dim); margin-bottom: 12px; font-family: 'Sora', sans-serif; }
.legal-toc a { display: block; color: var(--text-soft); font-weight: 600; font-size: .92rem; padding: 9px 0; border-bottom: 1px solid var(--border); transition: var(--ease); }
.legal-toc a:last-of-type { border-bottom: none; }
.legal-toc a:hover { color: var(--green-dark); padding-left: 4px; }
.legal-toc .btn { margin-top: 16px; width: 100%; justify-content: center; }

.legal { max-width: 760px; margin: 0; }
.legal .updated { color: var(--text-dim); font-size: .9rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 14px; font-weight: 800; scroll-margin-top: 96px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--text); scroll-margin-top: 96px; }
.legal p, .legal li { color: var(--text-soft); margin-bottom: 12px; }
.legal ul { list-style: none; padding-left: 0; }
.legal ul li { margin-bottom: 9px; padding-left: 22px; position: relative; }
.legal ul li::before { content: '▪'; position: absolute; left: 4px; color: var(--green); }
.legal a { color: var(--green-dark); font-weight: 600; }

/* ===== Footer — light & clean (logo shows in full color) ===== */
.footer { background: var(--bg-soft); border-top: 4px solid var(--green); padding: 66px 0 24px; margin-top: 40px; color: var(--text-soft); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1.5px solid var(--border-strong); }
.footer .logo { margin-bottom: 16px; }
.footer .logo-img { height: 46px; }
.footer-about p { color: var(--text-soft); font-size: .93rem; max-width: 320px; margin-top: 2px; }
.footer h4 { color: var(--charcoal); font-size: .78rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.2px; font-family: 'Sora', sans-serif; }
.footer-col a { display: block; color: var(--text-soft); font-size: .93rem; margin-bottom: 11px; transition: var(--ease); width: fit-content; }
.footer-col a:hover { color: var(--green-dark); transform: translateX(4px); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: #fff; border: 1.5px solid var(--border-strong);
  display: grid; place-items: center; transition: var(--ease); color: var(--charcoal); font-size: .95rem;
}
.socials a:hover { background: var(--green); border-color: var(--green-dark); color: #fff; transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--green-dark); }
.footer-bottom {
  padding-top: 6px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .86rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--green-dark); }

/* ==========================================================
   AUTH — two-column signup (form + promo panel)
   ========================================================== */
.auth-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  border: 1.5px solid var(--charcoal); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.auth-form { padding: 44px; background: var(--card); }
.auth-form > h1 { font-size: 1.9rem; margin-bottom: 26px; text-align: center; font-weight: 800; }
.auth-legend { font-size: 1.02rem; font-weight: 800; margin: 22px 0 14px; font-family: 'Sora', sans-serif; }
.auth-form form > .auth-legend:first-of-type { margin-top: 0; }

.acct-type { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.acct-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px; border: 1.5px solid var(--border-strong); border-radius: var(--radius);
  cursor: pointer; transition: var(--ease); text-align: center;
  font-weight: 700; font-family: 'Sora', sans-serif; color: var(--charcoal);
}
.acct-card input { accent-color: var(--green); width: 18px; height: 18px; }
.acct-card:hover { border-color: var(--charcoal); }
.acct-card:has(input:checked) { border-color: var(--green); box-shadow: 3px 3px 0 var(--green-dark); background: var(--bg-3); }

.auth-note {
  display: flex; gap: 10px; align-items: center;
  background: rgba(46, 125, 107, .08); border: 1.5px solid var(--green);
  color: var(--green-dark); padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: .87rem; font-weight: 600; margin-bottom: 22px;
}
.auth-alt { text-align: center; margin-top: 18px; color: var(--text-soft); font-size: .92rem; }
.auth-alt a { color: var(--green-dark); font-weight: 700; }

.auth-promo {
  padding: 46px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--green-dark), var(--charcoal));
}
.auth-promo::before { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(63, 165, 133, .28); top: -130px; right: -110px; }
.auth-promo::after  { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255, 255, 255, .06); bottom: -100px; left: -90px; }
.auth-promo > * { position: relative; z-index: 1; }
.auth-promo h2 { color: #fff; font-size: 1.65rem; line-height: 1.22; margin-bottom: 16px; font-weight: 800; }
.auth-promo .lede { color: rgba(255, 255, 255, .82); font-size: 1rem; margin-bottom: 26px; }
.auth-promo h3 { color: #fff; font-size: 1.15rem; margin: 4px 0 16px; }

.promo-badges { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; }
.promo-badge { flex: 1; min-width: 92px; background: rgba(255, 255, 255, .1); border: 1.5px solid rgba(255, 255, 255, .22); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center; }
.promo-badge .b-ic { font-size: 1.4rem; }
.promo-badge .b-t { font-weight: 800; font-size: .8rem; font-family: 'Sora', sans-serif; margin-top: 6px; }
.promo-badge .b-s { color: rgba(255, 255, 255, .7); font-size: .72rem; }

.promo-quotes { display: grid; gap: 12px; }
.promo-quote { background: rgba(255, 255, 255, .08); border: 1.5px solid rgba(255, 255, 255, .16); border-radius: var(--radius-sm); padding: 16px; }
.promo-quote p { color: rgba(255, 255, 255, .9); font-size: .86rem; margin-bottom: 12px; }
.promo-quote .who { display: flex; align-items: center; gap: 10px; }
.promo-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-weight: 800; color: #fff; font-family: 'Sora', sans-serif; font-size: .8rem; flex-shrink: 0; border: 1.5px solid rgba(255, 255, 255, .3); }
.promo-quote .n { font-weight: 700; font-size: .82rem; color: #fff; }
.promo-quote .r { color: rgba(255, 255, 255, .65); font-size: .74rem; }

/* ==========================================================
   TESTIMONIAL SLIDER — 3 per view, arrows advance to next 3
   ========================================================== */
.tslider { position: relative; }
.tslider-viewport { overflow: hidden; }
.tslider-track { display: flex; transition: transform .45s cubic-bezier(.4, 0, .2, 1); }
.tslider-slide {
  flex: 0 0 100%; min-width: 100%;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: stretch;
}
.tslider-slide .tile { display: flex; flex-direction: column; }

.tslider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 34px; }
.tslider-arrow {
  width: 48px; height: 48px; border: 1.5px solid var(--charcoal); background: #fff;
  border-radius: var(--radius-sm); font-size: 1.15rem; cursor: pointer;
  display: grid; place-items: center; transition: var(--ease);
  font-family: 'Sora', sans-serif; color: var(--charcoal); box-shadow: 3px 3px 0 rgba(30, 36, 34, .14);
}
.tslider-arrow:hover:not(:disabled) { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 rgba(46, 125, 107, .2); border-color: var(--green); color: var(--green-dark); }
.tslider-arrow:disabled { opacity: .35; cursor: not-allowed; box-shadow: none; }
.tslider-dots { display: flex; gap: 8px; }
.tslider-dot {
  width: 10px; height: 10px; padding: 0; border-radius: 50%;
  border: 1.5px solid var(--border-strong); background: #fff; cursor: pointer; transition: var(--ease);
}
.tslider-dot.active { background: var(--green); border-color: var(--green-dark); width: 26px; border-radius: 6px; }

/* ==========================================================
   DASHBOARD (account area)
   ========================================================== */
.dash-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; margin-bottom: 32px; }
.dash-head .hello { font-size: .78rem; color: var(--green-dark); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; }
.dash-head h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-top: 4px; font-weight: 800; }
.dash-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.balance-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-3); border: 1.5px solid var(--charcoal);
  padding: 9px 16px; border-radius: var(--radius-sm); font-weight: 700; color: var(--green-dark);
}

.panel { background: var(--card); border: 1.5px solid var(--charcoal); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.panel-head { padding: 20px 22px; border-bottom: 1.5px solid var(--border-strong); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.panel-head h3 { font-size: 1.12rem; font-weight: 800; }

.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.data th, table.data td { padding: 13px 18px; text-align: left; border-bottom: 1.5px solid var(--border); white-space: nowrap; }
table.data th { color: var(--charcoal); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .6px; background: var(--bg-3); font-family: 'Sora', sans-serif; }
table.data tbody tr:last-child td { border-bottom: none; }
table.data tbody tr:hover { background: var(--bg-soft); }
table.data td.name { font-weight: 700; color: var(--charcoal); }

.badge { display: inline-block; padding: 3px 11px; border-radius: 5px; font-size: .72rem; font-weight: 700; border: 1.5px solid; }
.badge.active  { background: rgba(46, 125, 107, .12); color: var(--green-dark); border-color: var(--green); }
.badge.pending { background: rgba(214, 158, 46, .14); color: #a9791a; border-color: #d69e2e; }
.badge.paused  { background: rgba(120, 128, 124, .14); color: #6b746f; border-color: #b7bfba; }

.empty-state { text-align: center; padding: 58px 24px; }
.empty-state .ic { font-size: 2.6rem; margin-bottom: 14px; }
.empty-state h3 { font-size: 1.25rem; margin-bottom: 8px; }
.empty-state p { color: var(--text-soft); margin-bottom: 22px; }

.flash { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 24px; font-weight: 600; font-size: .92rem; background: rgba(46, 125, 107, .1); border: 1.5px solid var(--green); color: var(--green-dark); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 992px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .bento, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .tile.wide { grid-column: span 2; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1.5px solid var(--border-strong); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .tslider-slide { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc-inner { position: static; }
  .legal-toc { display: flex; }
  .legal-toc-inner { width: 100%; }
  .auth-split { grid-template-columns: 1fr; }
  .auth-promo { order: 2; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--header-h); right: 0;
    width: 82%; max-width: 330px; height: calc(100vh - var(--header-h));
    background: #fff; flex-direction: column; align-items: flex-start;
    gap: 0; padding: 26px; box-shadow: -8px 0 30px rgba(0,0,0,.12);
    transform: translateX(110%); transition: transform var(--ease);
    border-left: 2px solid var(--charcoal);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 16px 0; border-bottom: 1.5px solid var(--border); font-size: .95rem; }
  .nav-links a.active::after { display: none; }
  .nav-cta .btn { display: none; }
  .nav-links .btn { display: inline-flex !important; margin-top: 18px; width: 100%; justify-content: center; }

  .bento, .blog-grid, .process-grid { grid-template-columns: 1fr; }
  .tslider-slide { grid-template-columns: 1fr; }
  .tile.wide { grid-column: span 1; }
  .stats-band { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1.5px solid var(--border-strong); }
  .stat:last-child { border-bottom: none; }
  .stat:nth-child(2) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band { padding: 42px 24px; box-shadow: 6px 6px 0 var(--green); }
  .auth-form, .auth-promo { padding: 26px; }
  .acct-type { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-logos { gap: 24px; }
  .logo-img { height: 38px; }
  .section-head { margin-bottom: 40px; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .stat .num { font-size: 2rem; }
  .visual-card .big { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
