/* ==========================================================================
   CartGains — Sticky Bundles & Quantity Breaks
   One stylesheet for every page. Mobile layout first, desktop from 1024px.
   ========================================================================== */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #201F1D;
  --body: #4A4743;
  --muted: #6B6760;
  --blue: #0088B5;          /* logo blue: large headline text only */
  --btn: #0077A0;           /* buttons and links (readable with white text) */
  --blue-dark: #005F80;     /* small labels, icons */
  --band: #006E93;          /* closing banner */
  --tint: #F4F8FA;          /* alternate section background */
  --tint-2: #EEF5F8;        /* pill, comparison panel */
  --icon-bg: #E3F1F6;
  --line: #ECE9E4;
  --line-2: #E4E1DB;
  --footer: #F7F6F3;
  --navy: #10192F;
  --navy-2: #152139;
  --green: #5CB78C;
  --slate: #5B6474;
  --font: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: 20px;
  --max: 1200px;
  --header-h: 64px;
}

@media (min-width: 1024px) {
  :root { --header-h: 80px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
a { color: var(--btn); }
a:hover { color: var(--blue-dark); }
strong { font-weight: 800; }

:focus-visible {
  outline: 3px solid var(--btn);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; color: #FFFFFF; }

.container {
  width: min(var(--max), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Text shown only on phones / only on larger screens */
.only-mobile { display: inline; }
.only-desktop { display: none; }
@media (min-width: 1024px) {
  .only-mobile { display: none; }
  .only-desktop { display: inline; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 30px;
  border-radius: 14px;
  border: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--btn); color: #FFFFFF; }
.btn-primary:hover { background: var(--blue-dark); color: #FFFFFF; }
.btn-outline { background: #FFFFFF; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #FFFFFF; }
.btn-white { background: #FFFFFF; color: var(--blue-dark); font-weight: 800; }
.btn-white:hover { background: #EAF3F7; color: var(--blue-dark); }

@media (min-width: 1024px) {
  .btn { font-size: 17px; }
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}

.site-header .bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; }
.logo img { height: 16px; width: auto; max-width: none; }

.main-nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-cta { height: 44px; padding: 0 16px; border-radius: 10px; font-size: 14px; }

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  border-top: 1px solid var(--line);
  background: #FFFFFF;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul {
  list-style: none;
  margin: 0 auto;
  padding: 8px 0 16px;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu li:last-child a { border-bottom: 0; }

@media (min-width: 1024px) {
  .logo img { height: 22px; }
  .main-nav { display: flex; align-items: center; gap: 40px; }
  .main-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
  }
  .main-nav a:hover { color: var(--btn); }
  .header-cta { height: 48px; padding: 0 24px; border-radius: 12px; font-size: 16px; }
  .menu-toggle, .mobile-menu { display: none !important; }
}

/* ==========================================================================
   Shared section typography
   ========================================================================== */
.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--blue-dark);
}

.section-title {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
}

@media (min-width: 1024px) {
  .eyebrow { font-size: 14px; }
  .section-title { font-size: 44px; letter-spacing: -1px; }
  .lead { font-size: 18px; }
}

/* ==========================================================================
   Home — hero
   ========================================================================== */
.hero {
  padding: 48px 0 64px;
  text-align: center;
}
.hero .container { display: flex; flex-direction: column; align-items: center; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--tint-2);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
}
.pill svg { display: none; }

.hero h1 {
  margin-top: 22px;
  max-width: 980px;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero h1 .accent { display: block; color: var(--blue); }

.hero-intro {
  margin-top: 18px;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
}

.hero-actions {
  margin-top: 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-actions .btn { width: 100%; font-size: 17px; }

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* Comparison panel */
.compare {
  margin-top: 44px;
  width: 100%;
  padding: 24px 8px;
  border-radius: 24px;
  background: var(--tint-2);
  display: flex;
  justify-content: center;
  gap: 12px;
}
.compare-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.compare-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.compare-label svg { width: 14px; height: 14px; }
.compare-label.is-sticky { font-weight: 800; color: var(--blue-dark); }
.compare-caption {
  width: 150px;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: var(--body);
}

/* Phones are drawn at 300 × 584 and scaled to fit */
.phone-scale {
  --s: 0.52;
  width: calc(300px * var(--s));
  height: calc(584px * var(--s));
  overflow: hidden;
  flex-shrink: 0;
}
.phone-scale .phone {
  transform: scale(var(--s));
  transform-origin: 0 0;
}
@media (min-width: 600px) { .phone-scale { --s: 0.75; } .compare-caption { width: 210px; font-size: 14px; } }

.hero-after-title {
  margin-top: 44px;
  max-width: 900px;
  text-align: center;
}
.hero-after-text {
  margin-top: 14px;
  max-width: 780px;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero { padding: 96px 0 110px; }
  .pill { height: 36px; padding: 0 16px; font-size: 14px; }
  .pill svg { display: block; }
  .hero h1 { margin-top: 28px; font-size: 68px; line-height: 1.06; letter-spacing: -2px; }
  .hero-intro { margin-top: 28px; font-size: 20px; }
  .hero-actions { margin-top: 40px; width: auto; flex-direction: row; gap: 16px; }
  .hero-actions .btn { width: auto; height: 56px; padding: 0 32px; }
  .hero-note { margin-top: 20px; font-size: 15px; }

  .compare { margin-top: 72px; padding: 56px 0; border-radius: 32px; gap: 120px; }
  .compare-col { gap: 20px; }
  .compare-label { gap: 8px; font-size: 16px; }
  .compare-label svg { width: 18px; height: 18px; }
  .compare-caption { width: 280px; font-size: 15px; line-height: 1.5; }
  .phone-scale { --s: 1; }

  .hero-after-title { margin-top: 72px; }
  .hero-after-text { margin-top: 20px; }
}

/* ==========================================================================
   Home — feature sections (quantity breaks, bundles, customisation)
   ========================================================================== */
.feature { padding: 64px 0; }
.feature.is-tinted { background: var(--tint); }

.feature .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.feature-text h2 {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.feature-text strong { color: var(--ink); }

.feature-visual {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual img.screenshot { width: 300px; height: auto; }

@media (min-width: 1024px) {
  .feature { padding: 100px 0; }
  .feature .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    align-items: center;
  }
  .feature-text { gap: 20px; }
  .feature-text h2 { font-size: 46px; line-height: 1.1; letter-spacing: -1px; }
  .feature-visual { margin-top: 0; height: 640px; }
  .feature-visual img.screenshot { width: 320px; }
  .feature.is-reversed .feature-visual { order: -1; }
}

/* Styling showcase */
.style-panel {
  width: 100%;
  padding: 20px;
  border-radius: 24px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.style-option { display: flex; flex-direction: column; gap: 8px; }
.style-option .name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--muted);
}
.demo-bar {
  height: 68px;
  padding: 0 16px 0 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-bar .thumb {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #63C095, #4A9B75);
}
.demo-bar .copy { flex-grow: 1; display: flex; flex-direction: column; gap: 2px; }
.demo-bar .title { font-size: 14px; font-weight: 800; }
.demo-bar .sub { font-size: 12px; font-weight: 500; }
.demo-bar svg { width: 18px; height: 18px; flex-shrink: 0; }

.demo-bar.is-dark { background: var(--navy-2); }
.demo-bar.is-dark .title { color: #FFFFFF; }
.demo-bar.is-dark .sub { color: #B9C3D3; }
.demo-bar.is-dark svg { stroke: #FFFFFF; }

.demo-bar.is-light { background: #FFFFFF; border: 1px solid #DEE2E8; }
.demo-bar.is-light .title { color: var(--navy); }
.demo-bar.is-light .sub { color: var(--slate); }
.demo-bar.is-light svg { stroke: var(--navy); }

.demo-bar.is-brand { background: #B43C1E; }
.demo-bar.is-brand .title { color: #FFFFFF; }
.demo-bar.is-brand .sub { color: #F6DDD5; }
.demo-bar.is-brand svg { stroke: #FFFFFF; }

.swatches { display: flex; align-items: center; gap: 10px; }
.swatches .label { display: none; font-size: 13px; font-weight: 700; color: var(--body); }
.swatch { width: 28px; height: 28px; border-radius: 50%; }
.swatch.is-white { background: #FFFFFF; border: 1px solid #CAD2DB; }
.swatch.is-more {
  border: 2px dashed #9A958D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .style-panel {
    height: 640px;
    padding: 56px;
    border-radius: 32px;
    justify-content: center;
    gap: 28px;
  }
  .style-option .name { font-size: 12px; }
  .demo-bar { height: 80px; padding: 0 22px 0 16px; gap: 14px; }
  .demo-bar .thumb { width: 48px; height: 48px; }
  .demo-bar .copy { gap: 3px; }
  .demo-bar .title { font-size: 16px; }
  .demo-bar .sub { font-size: 13px; }
  .demo-bar svg { width: 20px; height: 20px; }
  .swatches { gap: 12px; margin-top: 8px; }
  .swatches .label { display: inline; }
  .swatch { width: 30px; height: 30px; }
  .swatch.is-more { font-size: 16px; }
}

/* ==========================================================================
   Home — features list
   ========================================================================== */
.features { padding: 64px 0; text-align: center; }
.features .lead { margin-top: 12px; }

.feature-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
  text-align: left;
}
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.check {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check svg { width: 16px; height: 16px; }
.feature-list .item-title { display: block; font-size: 16px; font-weight: 800; }
.feature-list .item-text {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
}

@media (min-width: 700px) {
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    column-gap: 48px;
    row-gap: 28px;
  }
}

@media (min-width: 1024px) {
  .features { padding: 110px 0; }
  .features .lead { margin-top: 16px; }
  .feature-list {
    width: min(1060px, 100%);
    margin: 56px auto 0;
    column-gap: 72px;
    row-gap: 32px;
  }
  .feature-list li { gap: 16px; }
  .check { width: 40px; height: 40px; border-radius: 12px; }
  .check svg { width: 18px; height: 18px; }
  .feature-list .item-title { font-size: 17px; }
}

/* ==========================================================================
   Home — FAQ
   ========================================================================== */
.faq { padding: 64px 0; background: var(--tint); }
.faq .container { display: flex; flex-direction: column; gap: 12px; }
.faq-intro { display: flex; flex-direction: column; gap: 12px; }
.faq-intro h2 { font-size: 32px; line-height: 1.12; font-weight: 800; letter-spacing: -0.5px; }
.faq-intro p { font-size: 16px; line-height: 1.6; color: var(--body); }
.faq-intro a { font-weight: 700; }

.faq-list {
  margin-top: 16px;
  padding: 4px 18px;
  border-radius: 20px;
  background: #FFFFFF;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }

.faq-item summary {
  list-style: none;
  min-height: 64px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline-offset: 0; }

.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--tint-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg { width: 13px; height: 13px; }
.faq-icon .vertical { transition: opacity 0.15s ease; }
.faq-item[open] .faq-icon .vertical { opacity: 0; }

.faq-answer {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
}

@media (min-width: 1024px) {
  .faq { padding: 110px 0; }
  .faq .container { flex-direction: row; gap: 80px; align-items: flex-start; }
  .faq-intro { width: 360px; flex-shrink: 0; gap: 16px; }
  .faq-intro h2 { font-size: 44px; line-height: 1.15; letter-spacing: -1px; }
  .faq-intro p { font-size: 17px; }
  .faq-list { flex-grow: 1; margin-top: 0; padding: 8px 32px; border-radius: 24px; }
  .faq-item summary { min-height: 68px; padding: 0; gap: 16px; font-size: 17px; }
  .faq-icon { width: 32px; height: 32px; }
  .faq-icon svg { width: 14px; height: 14px; }
  .faq-answer { margin-bottom: 22px; padding-right: 48px; font-size: 16px; }
}

/* ==========================================================================
   Closing banner
   ========================================================================== */
.closing { padding: 64px 0; }
.closing-box {
  padding: 40px 24px;
  border-radius: 24px;
  background: var(--band);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.closing-box h2 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}
.closing-box p { font-size: 16px; line-height: 1.6; color: #FFFFFF; }
.closing-box .btn { margin-top: 8px; width: 100%; }

@media (min-width: 1024px) {
  .closing { padding: 100px 0; }
  .closing-box { padding: 80px; border-radius: 32px; gap: 20px; }
  .closing-box h2 { font-size: 48px; line-height: 1.1; letter-spacing: -1px; }
  .closing-box p { font-size: 19px; }
  .closing-box .btn { margin-top: 12px; width: auto; height: 56px; padding: 0 34px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 40px 0;
  background: var(--footer);
  border-top: 1px solid var(--line);
}
.site-footer .container { display: flex; flex-direction: column; gap: 28px; }
.footer-top { display: flex; flex-direction: column; gap: 28px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-brand img { height: 17px; width: auto; max-width: none; }
.footer-brand span { font-size: 14px; color: var(--body); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h2 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--muted);
}
.footer-col a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.footer-col a.email { font-weight: 700; }
.footer-col a:hover { color: var(--btn); }

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .site-footer { padding: 56px 0; }
  .site-footer .container { gap: 32px; }
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-brand { gap: 14px; }
  .footer-brand img { height: 19px; }
  .footer-brand span { font-size: 15px; }
  .footer-cols { display: flex; gap: 80px; }
  .footer-col h2 { font-size: 13px; }
  .footer-legal { padding-top: 24px; font-size: 14px; }
}

/* ==========================================================================
   Page header band (contact, privacy, terms)
   ========================================================================== */
.page-head { padding: 56px 0 48px; background: var(--tint); }
.page-head .container { display: flex; flex-direction: column; gap: 14px; }
.page-head.is-centered { text-align: center; }
.page-head.is-centered .container { align-items: center; }
.page-head h1 {
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
}
.page-head .date { font-size: 14px; font-weight: 700; color: var(--muted); }
.page-head .intro {
  margin-top: 4px;
  max-width: 820px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
}
.page-head.is-centered .intro { max-width: 700px; margin-top: 0; }

@media (min-width: 1024px) {
  .page-head { padding: 88px 0 72px; }
  .page-head.is-centered { padding: 96px 0 88px; }
  .page-head .container { gap: 18px; }
  .page-head.is-centered .container { gap: 20px; }
  .page-head h1 { font-size: 56px; letter-spacing: -1.5px; }
  .page-head.is-centered h1 { font-size: 60px; line-height: 1.06; letter-spacing: -1.8px; }
  .page-head .date { font-size: 15px; }
  .page-head .intro { margin-top: 6px; font-size: 19px; }
  .page-head.is-centered .intro { margin-top: 0; }
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-main { padding: 48px 0 64px; }
.contact-grid { display: grid; gap: 20px; }

.email-card {
  padding: 32px 24px;
  border-radius: 24px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.email-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.email-card .icon svg { width: 24px; height: 24px; }
.email-card .kicker { margin-top: 8px; font-size: 15px; font-weight: 700; color: #B9C3D3; }
.email-card .address {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.email-card .address:hover { color: #FFFFFF; text-decoration: underline; }
.email-card p { font-size: 16px; line-height: 1.6; color: #D5DCE6; }
.email-card .btn { margin-top: 8px; align-self: stretch; background: #FFFFFF; color: var(--navy); font-weight: 800; }
.email-card .btn:hover { background: #E6EBF2; color: var(--navy); }

.help-card {
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.help-card h2 { font-size: 24px; line-height: 1.25; font-weight: 800; letter-spacing: -0.5px; }

.chat-note {
  padding: 18px;
  border-radius: 18px;
  background: #EEF8F3;
  border: 1px solid #CFE9DC;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.chat-note .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-note .icon svg { width: 22px; height: 22px; }
.chat-note .title { display: block; font-size: 17px; font-weight: 800; color: var(--navy); }
.chat-note .text { display: block; margin-top: 4px; font-size: 16px; line-height: 1.6; color: var(--body); }

.help-card > p { font-size: 16px; line-height: 1.6; color: var(--body); }

.tips { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.tips li { display: flex; gap: 14px; align-items: flex-start; }
.tips .check { width: 32px; height: 32px; border-radius: 10px; }
.tips span.text { padding-top: 4px; font-size: 16px; line-height: 1.6; color: var(--body); }
.tips strong { color: var(--ink); }

.help-card .faq-link {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}
.help-card .faq-link a { font-weight: 700; }

.company-row { padding-bottom: 64px; }
.company-row .container {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company { display: flex; flex-direction: column; gap: 8px; }
.company .label { font-size: 13px; font-weight: 800; letter-spacing: 1px; color: var(--muted); }
.company .name { font-size: 17px; font-weight: 700; }
.company .addr { font-size: 16px; line-height: 1.6; color: var(--body); }
.company-row p { max-width: 520px; font-size: 16px; line-height: 1.6; color: var(--body); }
.company-row p a { font-weight: 700; }

@media (min-width: 1024px) {
  .contact-main { padding: 88px 0 110px; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: stretch; }
  .email-card { padding: 56px; border-radius: 28px; gap: 18px; }
  .email-card .icon { width: 56px; height: 56px; }
  .email-card .icon svg { width: 26px; height: 26px; }
  .email-card .kicker { margin-top: 10px; }
  .email-card .address { font-size: 40px; letter-spacing: -1px; }
  .email-card p { font-size: 17px; }
  .email-card .btn { margin-top: auto; align-self: flex-start; }
  .help-card { padding: 56px; border-radius: 28px; gap: 18px; }
  .help-card h2 { font-size: 28px; }
  .chat-note { padding: 20px 22px; gap: 16px; }
  .help-card > p { margin-top: 6px; font-size: 17px; }
  .help-card .faq-link { margin-top: 14px; padding-top: 24px; }
  .company-row { padding-bottom: 110px; }
  .company-row .container { padding-top: 40px; flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 40px; }
}

/* ==========================================================================
   Legal pages (privacy, terms)
   ========================================================================== */
.legal { padding: 40px 0 72px; }
.legal .container { display: flex; flex-direction: column; gap: 40px; }

.toc {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line-2);
}
.toc h2 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--muted);
}
.toc ol {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toc a {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--body);
  text-decoration: none;
}
.toc a:hover { color: var(--btn); }

.legal-body { max-width: 800px; }
.legal-body h2 {
  margin-top: 44px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p,
.legal-body ul {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
}
.legal-body ul {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-body li { padding-left: 6px; }
.legal-body strong { color: var(--ink); font-weight: 700; }
.legal-body a { font-weight: 700; }

@media (min-width: 1024px) {
  .legal { padding: 80px 0 120px; }
  .legal .container { flex-direction: row; align-items: flex-start; gap: 100px; }
  .toc {
    position: sticky;
    top: calc(var(--header-h) + 32px);
    width: 300px;
    flex-shrink: 0;
    padding: 0;
    border: 0;
  }
  .toc ol { gap: 14px; }
  .legal-body { width: 800px; }
  .legal-body h2 { margin-top: 52px; font-size: 26px; }
  .legal-body p,
  .legal-body ul { margin-top: 16px; font-size: 17px; }
}

/* ==========================================================================
   404
   ========================================================================== */
.not-found { padding: 96px 0 120px; text-align: center; }
.not-found .container { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.not-found h1 { font-size: 40px; line-height: 1.1; font-weight: 800; letter-spacing: -1px; }
.not-found p { max-width: 520px; font-size: 17px; line-height: 1.6; color: var(--body); }
.not-found .btn { margin-top: 10px; }


/* ==========================================================================
   Cookie consent (shown to visitors from Europe and the UK)
   ========================================================================== */
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px;
}
.consent[hidden] { display: none; }
.consent-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid var(--line-2);
  box-shadow: 0 12px 40px rgba(16, 25, 47, 0.16);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.consent-text { font-size: 15px; line-height: 1.55; color: var(--body); }
.consent-text a { font-weight: 700; }
.consent-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.consent-actions .btn { height: 48px; padding: 0 20px; font-size: 15px; }
html.has-consent .site-footer { padding-bottom: 200px; }

@media (min-width: 768px) {
  .consent { padding: 20px; }
  .consent-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 20px 18px 24px; }
  .consent-actions { display: flex; flex-shrink: 0; }
  .consent-actions .btn { min-width: 120px; }
  html.has-consent .site-footer { padding-bottom: 140px; }
}

/* Footer "Cookie settings" looks like the other footer links */
.footer-col .cookie-settings {
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.footer-col .cookie-settings:hover { color: var(--btn); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
