/* Syntomo — visual, terse one-pager */
:root {
  --bg: #f6f3ee;
  --bg-alt: #efeae2;
  --ink: #142033;
  --ink-soft: #3d4a5c;
  --muted: #6b7685;
  --line: #d9d2c7;
  --card: #ffffff;
  --navy: #0f2744;
  --navy-2: #1a3a5c;
  --accent: #c45c26;
  --accent-hover: #a84c1e;
  --accent-soft: #f3e4d8;
  --green: #1f6b4a;
  --green-soft: #e3f0ea;
  --red-soft: #f5e6e6;
  --bad: #8b3a3a;
  --shadow: 0 18px 50px rgba(20, 32, 51, 0.08);
  --radius: 16px;
  --max: 1100px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--accent); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Blobs */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.bg-blob-1 {
  width: 420px;
  height: 420px;
  background: #e8c4a8;
  top: -80px;
  right: -100px;
}
.bg-blob-2 {
  width: 360px;
  height: 360px;
  background: #b8c9dc;
  bottom: 10%;
  left: -120px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 238, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 210, 199, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
}
.logo-mark svg { width: 28px; height: 28px; }
.logo-mark.sm { width: 36px; height: 36px; border-radius: 10px; }
.logo-mark.sm svg { width: 22px; height: 22px; }

.logo-text { font-size: 1.05rem; letter-spacing: -0.02em; }

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
  background: var(--navy);
  color: #fff !important;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--navy-2); color: #fff !important; }
.nav-cta .ico { width: 15px; height: 15px; }

/* Hero */
.hero { padding: 2.75rem 0 3.25rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.pill-ico {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--accent-soft);
}
.pill-ico svg { width: 13px; height: 13px; }

h1 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 em {
  font-style: italic;
  color: var(--accent);
}

.lead {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 32rem;
}

/* Stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.stat {
  display: grid;
  justify-items: start;
  gap: 0.15rem;
  padding: 0.85rem 0.9rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20, 32, 51, 0.04);
}
.stat-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 0.25rem;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--navy);
}
.stat-ico svg { width: 16px; height: 16px; }
.stat strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.stat span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn .ico { width: 16px; height: 16px; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-block { width: 100%; }

/* Hero visual */
.hero-visual { display: grid; place-items: center; }

.visual-card {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #fff 0%, #f3ebe3 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.visual-ring {
  position: relative;
  width: 180px;
  height: 180px;
}
.ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: #e5ddd2;
  stroke-width: 10;
}
.ring-fg {
  fill: none;
  stroke: var(--accent);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 90;
}
.ring-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.ring-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--navy);
}
.ring-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 10px 25px rgba(20, 32, 51, 0.08);
}
.float-chip svg { width: 14px; height: 14px; color: var(--accent); }
.chip-1 { top: 14%; left: 6%; }
.chip-2 { top: 18%; right: 4%; }
.chip-3 { bottom: 16%; left: 50%; transform: translateX(-50%); }

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.section-head { margin-bottom: 1.75rem; max-width: 36rem; }
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
}

/* Icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.icon-card {
  text-align: center;
  padding: 1.35rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(20, 32, 51, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.icon-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.icon-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.icon-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 0.85rem;
  border-radius: 16px;
}
.icon-wrap svg { width: 26px; height: 26px; }
.icon-navy { background: #e7eef6; color: var(--navy); }
.icon-accent { background: var(--accent-soft); color: var(--accent); }
.icon-green { background: var(--green-soft); color: var(--green); }

.guarantee-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  text-align: left;
}
.guarantee-banner p { margin: 0; font-size: 0.98rem; }
.guarantee-banner strong { color: #fff; }
.gb-ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.gb-ico svg { width: 20px; height: 20px; }

/* Process */
.process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.process-step {
  text-align: center;
  padding: 1.4rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.process-ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 0.65rem;
  border-radius: 14px;
  background: var(--bg);
  color: var(--navy);
}
.process-ico svg { width: 24px; height: 24px; }
.process-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.process-step h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.process-line {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--line), var(--accent));
  border-radius: 2px;
}

/* Fit */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fit-grid-single {
  grid-template-columns: 1fr;
  max-width: 36rem;
  margin-inline: auto;
}

.fit-card {
  padding: 1.35rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}
.fit-yes { background: linear-gradient(180deg, #fff 0%, var(--green-soft) 160%); }

.fit-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.fit-head h3 { margin: 0; font-size: 1.15rem; }

.fit-badge {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
}
.fit-badge.yes { background: var(--green); }
.fit-badge.no { background: var(--bad); }
.fit-badge svg { width: 16px; height: 16px; }

.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.icon-list li:last-child { margin-bottom: 0; }
.li-ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(15, 39, 68, 0.06);
  color: var(--navy);
}
.li-ico svg { width: 16px; height: 16px; }

/* Contact */
.contact-section { padding-bottom: 4.5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.75rem;
  align-items: start;
}

.contact-pills {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}
.contact-pill:hover { border-color: var(--navy); color: var(--navy); }
.muted-pill {
  font-weight: 500;
  color: var(--ink-soft);
}
.pill-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}
.pill-icon svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.req { color: var(--accent); }

input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 39, 68, 0.12);
}
textarea { resize: vertical; min-height: 90px; }

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

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 1.75rem;
  background: #ebe6de;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.footer-meta { text-align: right; }
.footer-meta a { font-weight: 600; text-decoration: none; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* Legal pages */
.legal-page {
  padding: 2.5rem 0 4rem;
}
.legal-wrap h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  margin: 0 0 0.35rem;
  line-height: 1.15;
}
.legal-wrap h2 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.6rem 0 0.5rem;
  color: var(--navy);
}
.legal-wrap p,
.legal-wrap li {
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.legal-wrap ul {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0.8rem;
}
.legal-wrap li { margin-bottom: 0.35rem; }
.legal-nav {
  margin-top: 2rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
}
.footer-links {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
}
.footer-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink-soft);
}
.footer-links a:hover { color: var(--accent); }

/* Thanks */
.thanks-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 3rem 0;
}
.thanks-card {
  width: min(480px, calc(100% - 2.5rem));
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.thanks-card h1 { font-size: 2.2rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .icon-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .process-line {
    width: 2px;
    height: 20px;
    margin-inline: auto;
    background: linear-gradient(180deg, var(--line), var(--accent));
  }
  .nav a:not(.nav-cta) { display: none; }
  .footer-meta { text-align: left; }
  .chip-1, .chip-2, .chip-3 { display: none; }
}

@media (max-width: 560px) {
  .field-row,
  .stat-row,
  .icon-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 1.75rem; }
}
