:root {
  --bg: #f5efe7;
  --bg-deep: #102722;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --panel-dark: rgba(16, 39, 34, 0.78);
  --ink: #12241f;
  --ink-soft: #42524d;
  --line: rgba(18, 36, 31, 0.12);
  --line-strong: rgba(18, 36, 31, 0.22);
  --teal: #0f766e;
  --teal-deep: #0d5a53;
  --pine: #153b34;
  --sand: #ecdcca;
  --clay: #c56a3d;
  --mint: #ddf2ee;
  --shadow: 0 20px 60px rgba(12, 25, 22, 0.11);
  --radius: 22px;
  --max: 1160px;
  --font-display: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --font-body: 'Aptos', 'Segoe UI Variable Text', 'Trebuchet MS', sans-serif;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 106, 61, 0.16), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(15, 118, 110, 0.2), transparent 28%),
    linear-gradient(180deg, #f6efe4 0%, #f3f0ea 45%, #f7f3ed 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 36, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 36, 31, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: 14px;
  top: -48px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 14px;
}

/* Layout */
.container {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.surface {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.65s var(--ease-out) var(--reveal-delay, 0ms),
      transform 0.65s var(--ease-out) var(--reveal-delay, 0ms);
  }

  .reveal[data-revealed] {
    opacity: 1;
    transform: none;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(18, 36, 31, 0.08);
  background: rgba(245, 239, 231, 0.84);
  backdrop-filter: blur(14px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: block;
  flex: none;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(12, 25, 22, 0.14);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong,
.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'opsz' 18;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.menu-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.22s var(--ease-out);
  transform-origin: left;
}

.menu-links a.active,
.menu-links a:hover {
  color: var(--ink);
}

.menu-links a.active::after,
.menu-links a:hover::after {
  transform: scaleX(1);
}

/* Mobile toggle -- hamburger icon via SVG background */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.75);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='14' viewBox='0 0 20 14' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='2' rx='1' fill='%2312241f'/%3E%3Crect y='6' width='20' height='2' rx='1' fill='%2312241f'/%3E%3Crect y='12' width='13' height='2' rx='1' fill='%2312241f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.mobile-toggle:hover {
  background-color: rgba(255, 255, 255, 0.95);
  border-color: var(--line-strong);
}

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.86rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    background 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
}

.button-primary:hover {
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.42);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}

.button-light {
  background: #fff;
  color: var(--pine);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.button-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Text link with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 600;
  transition: gap 0.2s var(--ease-out);
}

.text-link::after {
  content: '->';
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}

.text-link:hover {
  gap: 9px;
}

.text-link:hover::after {
  transform: translateX(2px);
}

/* Hero */
.hero,
.page-hero {
  padding: 56px 0 30px;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.hero-copy,
.hero-stack,
.page-hero-copy,
.page-hero-side {
  border-radius: calc(var(--radius) + 6px);
  padding: 34px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .page-hero-copy {
    animation: heroEnter 0.7s var(--ease-out) both;
  }

  .hero-stack,
  .page-hero-side {
    animation: heroEnter 0.7s var(--ease-out) 0.12s both;
  }

  @keyframes heroEnter {
    from {
      opacity: 0;
      transform: translateY(26px);
    }
  }
}

/* Headings */
.hero-copy h1,
.page-hero-copy h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-copy h1,
.page-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  max-width: 12ch;
  margin-top: 14px;
  font-weight: 600;
  font-variation-settings: 'opsz' 72, 'SOFT' 20;
}

.lead {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 62ch;
  line-height: 1.65;
}

/* Kicker badge */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--mint);
  color: #0e5c55;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.kicker-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #e7f8f5;
}

.inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.inline-facts li {
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: rgba(18, 36, 31, 0.05);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.stat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(12, 25, 22, 0.06);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
}

/* Hero stack */
.hero-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-graphic,
.page-graphic {
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(18, 36, 31, 0.08);
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.1), rgba(255, 255, 255, 0.7));
}

.hero-graphic img,
.page-graphic img {
  width: 100%;
  height: auto;
}

.stack-card-logo,
.partner-logo {
  display: block;
  width: auto;
  max-width: 100%;
}

.logo-hornetsecurity {
  max-height: 28px;
}

.logo-mailstore {
  max-height: 34px;
}

.operator-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.operator-mark {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 14px;
}

.operator-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.operator-copy strong,
.partner-logo-copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 18;
}

.operator-copy span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.stack-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 36, 31, 0.08);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out);
}

.stack-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(12, 25, 22, 0.09);
}

.accent-card {
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.12), rgba(236, 220, 202, 0.72));
}

.stack-label,
.eyeline {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--font-body);
}

.stack-card h2,
.page-hero-side h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-variation-settings: 'opsz' 18;
}

/* Partner band */
.partner-band {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  padding: 30px;
  border-radius: calc(var(--radius) + 6px);
}

.partner-band-copy p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.partner-note {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.partner-logo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-logo-card {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 154px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out);
}

.partner-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(12, 25, 22, 0.1);
}

.partner-logo-card-dark {
  background: linear-gradient(145deg, #153b34, #0e6259 62%, #0d4c46);
  border-color: transparent;
}

.partner-logo-card-accent {
  background: linear-gradient(145deg, rgba(197, 106, 61, 0.14), rgba(236, 220, 202, 0.9));
}

.partner-logo-card-dark .partner-logo-copy strong,
.partner-logo-card-dark .partner-logo-copy p {
  color: #fff;
}

.partner-logo-card-dark .partner-logo-copy p {
  opacity: 0.82;
}

.partner-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.partner-logo-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Shared paragraph color */
.stack-card p,
.page-hero-side p,
.section-head p,
.card p,
.mini-card p,
.faq-item p,
.legal-copy p,
.contact-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Sections */
.section {
  padding: 36px 0;
}

.section-tight {
  padding-top: 20px;
}

.section-head {
  max-width: 740px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-top: 10px;
  margin-bottom: 8px;
  font-weight: 600;
  font-variation-settings: 'opsz' 36, 'SOFT' 10;
}

.section-head-light h2,
.section-head-light p {
  color: #fff;
}

.tone-dark {
  background: linear-gradient(135deg, rgba(16, 39, 34, 0.98), rgba(21, 59, 52, 0.95));
  color: #fff;
}

/* Card grids */
.card-grid,
.fit-grid,
.faq-grid,
.contact-grid,
.legal-grid {
  display: grid;
  gap: 16px;
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-2,
.faq-grid,
.contact-grid,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cards */
.card {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(12, 25, 22, 0.06);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out);
}

.card:not(.card-dark):hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(12, 25, 22, 0.1);
}

.card-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: background 0.22s ease;
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.card-dark h3,
.card-dark p,
.card-dark li {
  color: #fff;
}

.card h3,
.faq-item h3,
.mini-card h3,
.timeline-step h3,
.contact-panel h3,
.legal-copy h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 18;
}

/* List */
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding-left: 1.3em;
  position: relative;
}

.list-clean li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.85em;
  top: 0.1em;
}

.card-dark .list-clean li::before {
  color: rgba(100, 220, 200, 0.7);
}

.list-clean li + li {
  margin-top: 10px;
}

/* Split layout */
.split-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

/* Mini cards */
.mini-card {
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out);
}

.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(12, 25, 22, 0.08);
}

.fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Timeline */
.timeline {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

/* Visual connector line between timeline steps */
.timeline::before {
  content: '';
  position: absolute;
  top: 41px;
  left: calc(22px + 21px);
  right: calc(22px + 21px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(15, 118, 110, 0.25) 100%);
  pointer-events: none;
  z-index: 0;
}

.timeline-step {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out);
}

.timeline-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(12, 25, 22, 0.09);
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 14;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.3);
}

/* FAQ */
.faq-item {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(12, 25, 22, 0.08);
}

/* Page hero extras */
.page-hero-copy .lead,
.page-hero-side p {
  max-width: none;
}

.partner-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(18, 36, 31, 0.04);
}

.partner-chip-dark {
  background: linear-gradient(145deg, #153b34, #0e6259);
  border-color: transparent;
}

.case-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(236, 220, 202, 0.68));
  border: 1px solid rgba(18, 36, 31, 0.08);
  box-shadow: 0 16px 38px rgba(12, 25, 22, 0.08);
}

.case-card p + p {
  margin-top: 10px;
}

.proof-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--teal-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.highlight-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(18, 36, 31, 0.05);
  color: var(--ink-soft);
}

/* Contact / Legal panels */
.contact-panel,
.legal-copy {
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.form-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.form-panel {
  padding: 28px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(12, 25, 22, 0.08);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(18, 36, 31, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field-note,
.form-note,
.contact-micro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.security-note {
  margin-top: -2px;
  margin-bottom: 2px;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.07);
  border: 1px solid rgba(15, 118, 110, 0.16);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.form-status[data-state='success'] {
  color: #0e5c55;
}

.form-status[data-state='error'] {
  color: #9f3f1f;
}

.form-status[data-state='loading'] {
  color: var(--ink);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.placeholder-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(197, 106, 61, 0.11);
  border: 1px solid rgba(197, 106, 61, 0.22);
  color: #7a4328;
  font-size: 0.95rem;
}

/* CTA panel */
.cta-panel {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: center;
  padding: 36px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(140deg, #153b34, #0e6259 62%, #0d4c46);
  color: #fff;
  box-shadow: 0 30px 64px rgba(12, 25, 22, 0.2);
  position: relative;
  overflow: hidden;
}

/* Decorative glow circle */
.cta-panel::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  margin-top: 10px;
  margin-bottom: 8px;
  font-variation-settings: 'opsz' 36, 'SOFT' 10;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  padding: 36px 0 48px;
  border-top: 1px solid rgba(18, 36, 31, 0.09);
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.6fr) minmax(180px, 0.6fr);
}

.footer-grid p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.footer-brand {
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 36, 31, 0.08);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .stat-grid,
  .partner-band,
  .partner-logo-grid,
  .split-layout,
  .case-grid,
  .card-grid-3,
  .card-grid-2,
  .fit-grid,
  .timeline,
  .faq-grid,
  .contact-grid,
  .legal-grid,
  .form-layout,
  .field-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    backdrop-filter: blur(10px);
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu[data-open='true'] {
    display: flex;
  }

  .menu-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .menu .button {
    width: 100%;
  }

  .hero-copy,
  .hero-stack,
  .page-hero-copy,
  .page-hero-side,
  .partner-band,
  .cta-panel {
    padding: 24px;
  }

  .hero,
  .page-hero {
    padding-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .card,
  .mini-card,
  .faq-item,
  .timeline-step,
  .partner-logo-card,
  .stack-card {
    transition: none;
  }

  .hero-copy,
  .hero-stack,
  .page-hero-copy,
  .page-hero-side {
    animation: none;
  }

  .menu-links a::after {
    transition: none;
  }
}
