:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-strong: #101729;
  --text: #1a2640;
  --text-soft: #556583;
  --line: #d8e0f0;
  --brand: #007a6c;
  --brand-strong: #005b52;
  --accent: #ff8f3f;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 40px rgba(15, 23, 40, 0.08);
  --hero-bg: radial-gradient(circle at 20% 20%, rgba(0, 122, 108, 0.23) 0%, rgba(0, 122, 108, 0) 56%), radial-gradient(circle at 84% 12%, rgba(255, 143, 63, 0.2) 0%, rgba(255, 143, 63, 0) 50%), linear-gradient(145deg, #0e1524 0%, #151f34 60%, #0e1524 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  color: var(--text);
  background: linear-gradient(180deg, #eef3fb 0%, #f7f9fd 30%, #f4f7fb 100%);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(244, 247, 251, 0.86);
  border-bottom: 1px solid rgba(216, 224, 240, 0.8);
}

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

.brand {
  text-decoration: none;
  color: var(--surface-strong);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-name {
  font-size: 1.02rem;
}

.hero-claim {
  width: min(520px, 90%);
  height: auto;
  margin: 0.2rem 0 0.9rem;
  opacity: 0.98;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.nav-list a.active {
  color: var(--brand-strong);
}

.hero,
.page-hero {
  padding: 4rem 0 2.6rem;
}

.hero-panel {
  background: var(--hero-bg);
  color: #f2f6ff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(5, 10, 20, 0.45);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: clamp(1.5rem, 2.4vw, 2.8rem);
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #9fd8d2;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  color: var(--surface-strong);
}

.hero h1,
.page-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4.3vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  color: #f2f6ff;
}

.page-hero h1 {
  max-width: 14ch;
}

.hero p,
.page-hero p {
  color: rgba(232, 241, 255, 0.9);
  max-width: 62ch;
  font-size: 1.12rem;
  margin-bottom: 1.4rem;
}

.hero-image-wrap {
  min-height: 360px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.14) 0%, rgba(10, 18, 32, 0.62) 88%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border-radius: 11px;
  font-size: 0.93rem;
  font-weight: 700;
  padding: 0.78rem 1.15rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #0b9b89);
  color: #f0fdfa;
  box-shadow: 0 10px 24px rgba(0, 122, 108, 0.38);
}

.btn-secondary {
  color: #f6f8ff;
  border: 1px solid rgba(246, 248, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

main section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 1.8rem;
  max-width: 78ch;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.8rem;
  display: block;
}

h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-head p,
.copy {
  color: var(--text-soft);
  font-size: 1.08rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.card p,
.card li {
  font-size: 1rem;
  color: var(--text-soft);
}

.card ul {
  padding-left: 1rem;
}

.product-card {
  overflow: hidden;
}

.product-image {
  width: calc(100% + 2.6rem);
  margin: -1.3rem -1.3rem 1rem;
  height: 190px;
  object-fit: contain;
  padding: 0.7rem;
  background: #f5f8fd;
  border-bottom: 1px solid var(--line);
}

.site-shot {
  width: calc(100% + 2.6rem);
  margin: -1.3rem -1.3rem 0.9rem;
  height: 170px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #eaf0fb;
}

.site-logo {
  width: calc(100% + 2.6rem);
  margin: -1.3rem -1.3rem 0.9rem;
  height: 140px;
  object-fit: contain;
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
  background: #f6f9ff;
}

.ref-logo-link {
  display: block;
  width: calc(100% + 2.6rem);
  margin: -1.3rem -1.3rem 0.9rem;
  min-height: 140px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7ff 100%);
  text-decoration: none;
}

.ref-logo-link .site-logo {
  width: 100%;
  margin: 0;
  border-bottom: 0;
  background: transparent;
}

.site-logo--wide {
  height: 170px;
  padding: 0.7rem 1.1rem;
}

.mini-product-nav {
  display: grid;
  grid-template-columns: repeat(8, minmax(110px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.mini-product-item {
  text-decoration: none;
  color: var(--surface-strong);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.mini-product-item img {
  width: 100%;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.4rem;
}

.mini-product-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
}

.pill-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.pill-btn {
  border: 1px solid var(--line);
  background: #eef3fb;
  color: var(--text-soft);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.pill-btn.active {
  background: #101729;
  color: #ecf4ff;
  border-color: #101729;
}

.product-grid .product-card h3 {
  margin-top: 0.2rem;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.logo-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  box-shadow: var(--shadow-soft);
}

.logo-tile img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

.logo-tile h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.logo-tile p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.logo-note {
  margin-top: 0.85rem;
}

.partner-card .partner-mark {
  width: 100%;
  height: 58px;
  object-fit: contain;
  margin-bottom: 0.7rem;
}

.partner-mark-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.partner-mark-duo .partner-mark {
  margin-bottom: 0;
}

.partner-copy {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: 0.2rem;
  margin-bottom: 0.45rem;
}

.badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brand-strong);
  background: rgba(0, 122, 108, 0.12);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  display: inline-flex;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.block p,
.block li {
  color: var(--text-soft);
  font-size: 1rem;
}

.story-block {
  padding: 1.7rem;
}

.story-title {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.story-block p {
  font-size: 1.14rem;
  line-height: 1.78;
  margin-bottom: 0.95rem;
  max-width: 72ch;
}

.block ul {
  padding-left: 1rem;
}

.trust-section {
  padding-top: 0.5rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  box-shadow: var(--shadow-soft);
}

.trust-kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-strong);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trust-item strong {
  font-size: 0.95rem;
  color: var(--surface-strong);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  color: var(--text-soft);
  font-size: 1rem;
}

.mobile-cta {
  display: none;
}

.cta-band {
  background: #101729;
  color: #e9f3ff;
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cta-band h3 {
  color: #e9f3ff;
  margin-bottom: 0.3rem;
}

.cta-band p {
  color: rgba(233, 243, 255, 0.88);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.contact-list strong {
  font-size: 0.78rem;
  color: var(--brand-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.contact-list a,
.contact-list span {
  color: var(--surface-strong);
  text-decoration: none;
  font-weight: 600;
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  color: var(--surface-strong);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdff;
  color: var(--surface-strong);
  font: inherit;
  padding: 0.72rem 0.8rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(0, 122, 108, 0.2);
  border-color: rgba(0, 122, 108, 0.55);
}

.footer {
  padding: 2.2rem 0 3rem;
}

.footer-wrap {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: #b6d8ff;
  text-decoration: none;
  font-size: 0.85rem;
}

.breadcrumbs li {
  color: #deecff;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .two-col {
    grid-template-columns: 1fr;
  }

  .mini-product-nav {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }

  .hero-image-wrap {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .nav-list {
    gap: 0.55rem 0.9rem;
  }

  .header-row {
    padding: 0.75rem 0;
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    background: rgba(10, 18, 32, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(216, 224, 240, 0.22);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  }

  .mobile-cta-btn {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    padding: 0.68rem 0.55rem;
  }

  .mobile-cta-primary {
    background: linear-gradient(135deg, var(--brand), #0b9b89);
    color: #f0fdfa;
  }

  .mobile-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 248, 255, 0.32);
    color: #eef5ff;
  }
}
