:root {
  --bg: #fff8f0;
  --surface: #ffffff;
  --ink: #1b1b1e;
  --muted: #5a5a66;
  --line: #eadfcb;
  --primary: #0f4c5c;
  --primary-2: #1b6a7e;
  --accent: #e36414;
  --accent-2: #fb8b24;
  --ring: rgba(15, 76, 92, 0.15);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(27, 27, 30, 0.08);
  --shadow-lg: 0 18px 50px rgba(27, 27, 30, 0.16);
  --max: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--accent);
}
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
}
h2 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
}
h3 {
  font-size: 1.1rem;
}
p {
  color: var(--muted);
  font-size: 0.95rem;
}
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}
main {
  flex: 1;
}
section {
  padding: 56px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(227, 100, 20, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin-top: 10px;
}

.site-header {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    transform 0.35s ease,
    background 0.25s,
    box-shadow 0.25s,
    top 0.25s;
}
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  box-shadow: var(--shadow);
}
.site-header.is-hidden {
  transform: translateY(-110%);
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  box-shadow: var(--shadow);
}
.site-header.is-scrolled .header-shell {
  border-color: transparent;
  box-shadow: none;
  background: transparent;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 4px 10px var(--ring);
}
.brand-mark i {
  font-size: 1rem;
}
.brand small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-pill {
  border: none;
  background: var(--primary);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.menu-pill:hover {
  background: var(--accent);
}
.menu-pill i {
  font-size: 1.25rem;
  transition: transform 0.3s;
}
.menu-pill[aria-expanded="true"] i {
  transform: rotate(90deg);
}
.cta-pill {
  display: none;
}
@media (min-width: 560px) {
  .cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
  }
  .cta-pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 76, 92, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  z-index: 90;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 88vw);
  background: var(--surface);
  z-index: 100;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.6, 0.05, 0.25, 1);
  display: flex;
  flex-direction: column;
  padding: 22px 22px 28px;
  overflow-y: auto;
}
.nav-panel.is-open {
  transform: translateX(0);
}
.nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.nav-close {
  background: var(--bg);
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.nav-close:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}
.nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid transparent;
}
.nav-list a:hover,
.nav-list a.is-active {
  background: var(--bg);
  border-color: var(--line);
  color: var(--primary);
}
.nav-list a i {
  color: var(--accent);
  font-size: 1.1rem;
}
.nav-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.nav-foot strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 4px;
}

.hero {
  position: relative;
  padding: 130px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 320px at 110% 10%,
      rgba(227, 100, 20, 0.18),
      transparent 60%
    ),
    radial-gradient(
      600px 280px at -10% 100%,
      rgba(15, 76, 92, 0.18),
      transparent 60%
    );
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
  }
}
.hero h1 span {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  margin-top: 14px;
  font-size: 1.02rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s,
    border 0.2s;
  font-family: "Space Grotesk", sans-serif;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn i {
  font-size: 1.05rem;
}
.hero-stats {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-stats div {
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}
.hero-stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  color: var(--primary);
}
.hero-stats span {
  font-size: 0.78rem;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: #eee;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow);
}
.hero-badge i {
  color: var(--accent);
  font-size: 1.4rem;
}
.hero-badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  display: block;
}
.hero-badge span {
  font-size: 0.72rem;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
@media (min-width: 620px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(15, 76, 92, 0.08);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.feature h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}
.feature p {
  font-size: 0.86rem;
}

.timeline {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
}
.step .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.step h3 {
  margin: 6px 0;
  font-size: 1rem;
}
.step p {
  font-size: 0.84rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (min-width: 820px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
  }
}
.split .panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink);
}
.checklist i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}
@media (min-width: 760px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.quote .stars {
  color: var(--accent-2);
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.quote blockquote {
  font-size: 0.92rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 12px;
}
.quote cite {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
}
.quote cite strong {
  display: block;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  margin-bottom: 2px;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 14px;
  align-items: center;
}
@media (min-width: 760px) {
  .cta-band {
    grid-template-columns: 1.4fr auto;
    padding: 34px;
  }
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
}
.cta-band .btn-primary {
  background: var(--accent);
}
.cta-band .btn-primary:hover {
  background: #fff;
  color: var(--primary);
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.faq details[open] {
  border-color: var(--primary);
}
.faq summary {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: "–";
}
.faq p {
  margin-top: 8px;
  font-size: 0.88rem;
}

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 680px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product .ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(227, 100, 20, 0.08);
  align-self: flex-start;
}
.product h3 {
  font-size: 1.05rem;
}
.product .price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}
.product .price small {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}
.product ul {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--ink);
}
.product ul li {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.product ul li i {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 3px;
}
.product .btn {
  margin-top: auto;
  justify-content: center;
}

.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}
@media (min-width: 680px) {
  .team {
    grid-template-columns: repeat(3, 1fr);
  }
}
.member {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.member .avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.member h3 {
  font-size: 1rem;
}
.member span {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.member p {
  font-size: 0.85rem;
  margin-top: 8px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}
@media (min-width: 880px) {
  .contact-wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }
}
.contact-card {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 100, 20, 0.4), transparent 65%);
}
.contact-card h2 {
  color: #fff;
}
.contact-card .lead {
  color: rgba(255, 255, 255, 0.85);
}
.contact-info {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.contact-info a {
  color: #fff;
  font-weight: 500;
}
.contact-info a:hover {
  color: var(--accent-2);
}
.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
}
.info-row i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.info-row small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--ring);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 14px 0 18px;
}
.consent input {
  margin-top: 3px;
  accent-color: var(--primary);
}
.form .btn {
  width: 100%;
  justify-content: center;
}

.map-frame {
  margin-top: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.policy {
  padding: 130px 0 60px;
}
.policy article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.policy h1 {
  margin-bottom: 6px;
}
.policy .updated {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.policy h2 {
  font-size: 1.2rem;
  margin: 24px 0 8px;
  color: var(--primary);
}
.policy h3 {
  font-size: 1rem;
  margin: 16px 0 6px;
}
.policy p,
.policy li {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.7;
}
.policy ul,
.policy ol {
  margin: 8px 0 8px 22px;
}
.policy li {
  margin-bottom: 4px;
}

.center-page {
  min-height: calc(100vh - var(--hf-offset, 260px));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 18px 60px;
}
.center-page .inner {
  max-width: 560px;
}
.center-page .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-lg);
}
.center-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}
.center-page p {
  margin: 10px auto 22px;
}
.center-page .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer {
  background: #0b2a33;
  color: #d9e5e9;
  padding: 24px 0 18px;
  margin-top: 30px;
}
.footer-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
}
.foot-brand .brand-mark {
  width: 32px;
  height: 32px;
}
.foot-contact {
  font-size: 0.82rem;
  line-height: 1.6;
}
.foot-contact a {
  color: #d9e5e9;
}
.foot-contact a:hover {
  color: var(--accent-2);
}
.foot-legal {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  justify-content: flex-start;
}
@media (min-width: 720px) {
  .foot-legal {
    justify-content: flex-end;
  }
}
.foot-legal a {
  color: #d9e5e9;
  border-bottom: 1px dotted rgba(217, 229, 233, 0.4);
}
.foot-legal a:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
}
.foot-copy {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  color: rgba(217, 229, 233, 0.7);
  text-align: center;
}

.privacy-pop {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: none;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 80;
}
.privacy-pop.is-visible {
  display: flex;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.privacy-pop i.lead-icon {
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.privacy-pop .body {
  flex: 1;
  font-size: 0.84rem;
  color: var(--ink);
}
.privacy-pop .body strong {
  font-family: "Space Grotesk", sans-serif;
  display: block;
  margin-bottom: 2px;
  font-size: 0.95rem;
}
.privacy-pop .body a {
  font-weight: 600;
}
.privacy-pop .actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.privacy-pop .actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
}
.privacy-pop .accept {
  background: var(--primary);
  color: #fff;
}
.privacy-pop .accept:hover {
  background: var(--accent);
}
.privacy-pop .decline {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line) !important;
}
@media (min-width: 560px) {
  .privacy-pop {
    max-width: 520px;
    left: auto;
  }
}

@media (max-width: 520px) {
  section {
    padding: 42px 0;
  }
  .hero {
    padding: 110px 0 40px;
  }
  .header-shell {
    padding: 6px 6px 6px 14px;
  }
  .brand small {
    display: none;
  }
  .privacy-pop {
    flex-direction: column;
    align-items: stretch;
  }
  .privacy-pop .actions {
    justify-content: flex-end;
  }
}
