:root {
  --bg: #f3f8fb;
  --bg-2: #e6f1f7;
  --ink: #0c2230;
  --ink-soft: #3a5566;
  --line: #d4e3ec;
  --accent: #0a7ea4;
  --accent-2: #3fbac2;
  --accent-deep: #063b51;
  --warm: #f7c873;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(10, 40, 60, 0.08);
  --maxw: 1140px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-deep);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
}
h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 0.6rem;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
p {
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}
ul,
ol {
  padding-left: 1.1rem;
  color: var(--ink-soft);
}
li {
  margin-bottom: 0.35rem;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
section {
  padding: 46px 0;
}

.site-header {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(243, 248, 251, 0.96),
    rgba(243, 248, 251, 0.86)
  );
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.site-header.is-tucked .header-inner {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.brand .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    var(--accent-2),
    var(--accent) 70%
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.15);
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 400;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-toggle {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition:
    transform 0.25s ease,
    background 0.25s;
  z-index: 120;
  position: relative;
}
.nav-toggle:hover {
  background: var(--bg-2);
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}
.nav-toggle[aria-expanded="true"] .icon-close {
  display: inline-block;
}
.nav-toggle[aria-expanded="true"] {
  transform: rotate(90deg);
}

.overlay-nav {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 59, 81, 0.97),
    rgba(10, 126, 164, 0.95)
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 100;
  padding: 30px;
}
.overlay-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.overlay-nav nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.overlay-nav nav ul li {
  margin: 14px 0;
}
.overlay-nav nav ul li a {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
  padding: 6px 8px;
}
.overlay-nav nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--warm);
  transition:
    width 0.25s ease,
    left 0.25s ease;
}
.overlay-nav nav ul li a:hover::after {
  width: 60%;
  left: 20%;
}
.overlay-nav .nav-meta {
  margin-top: 22px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-family: var(--font-body);
}

.hero {
  background:
    radial-gradient(
      1200px 400px at 80% -10%,
      rgba(63, 186, 194, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 110%,
      rgba(10, 126, 164, 0.18),
      transparent 60%
    ),
    var(--bg);
  padding: 60px 0 50px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.hero h1 span {
  color: var(--accent);
}
.hero p.lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 55ch;
  margin-top: 0.6rem;
}
.hero-cta {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--accent-deep);
}
.hero-figure {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-figure .float-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--ink);
  box-shadow: var(--shadow);
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-figure .float-badge i {
  color: var(--accent);
}

.section-title {
  margin-bottom: 26px;
  text-align: center;
}
.section-title small {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature i {
  font-size: 1.4rem;
  color: var(--accent);
  background: var(--bg-2);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 1.05rem;
}

.routine-strip {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.routine-strip h2 {
  color: #fff;
}
.routine-strip p {
  color: rgba(255, 255, 255, 0.85);
}
.routine-strip ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.routine-strip ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
}
.routine-strip ul li i {
  color: var(--warm);
  margin-top: 3px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--accent-2);
  display: block;
  margin-bottom: 6px;
}
.step h3 {
  font-size: 1rem;
}
.step p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial {
  background: #fff;
  border-left: 3px solid var(--accent-2);
  padding: 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.testimonial p {
  font-style: italic;
}
.testimonial cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.85rem;
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--accent);
}
.faq details[open] summary::after {
  content: "–";
}
.faq details[open] {
  box-shadow: var(--shadow);
}
.faq p {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product .price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--accent-deep);
  margin-top: 6px;
}
.product ul {
  font-size: 0.88rem;
  margin: 8px 0;
}
.product .btn {
  margin-top: auto;
  align-self: flex-start;
}
.product .pill {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--bg-2);
  color: var(--accent-deep);
  padding: 4px 10px;
  border-radius: 999px;
  width: max-content;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.about-grid img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.values {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.value {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.value i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 6px;
  display: block;
}
.value h3 {
  font-size: 0.95rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card .row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-card .row i {
  background: var(--bg-2);
  color: var(--accent);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card .row strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-card .row span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 240px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 240px;
}

form {
  display: grid;
  gap: 12px;
}
label {
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 500;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.checkbox-row input {
  margin-top: 3px;
}

.cta-band {
  text-align: center;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 20px;
  padding: 30px;
}
.cta-band h2 {
  margin-bottom: 0.4rem;
}
.cta-band p {
  margin-bottom: 1rem;
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.policy-content h2 {
  margin-top: 1.2rem;
  font-size: 1.25rem;
}
.policy-content h3 {
  font-size: 1rem;
  margin-top: 1rem;
}
.policy-content p,
.policy-content li {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.policy-content .updated {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.fullscreen {
  min-height: calc(100vh - var(--header-h, 72px) - var(--footer-h, 80px));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 18px;
}
.fullscreen .inner {
  max-width: 560px;
}
.fullscreen .icon-big {
  font-size: 3rem;
  color: var(--accent);
  background: var(--bg-2);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.site-footer {
  background: var(--accent-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 24px 0;
  font-size: 0.82rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-inner a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-inner a:hover {
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-pop {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 200;
  max-width: 560px;
  margin-left: auto;
  transform: translateY(140%);
  transition: transform 0.35s ease;
}
.cookie-pop.is-shown {
  transform: translateY(0);
}
.cookie-pop p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink);
  flex: 1 1 220px;
}
.cookie-pop .btn {
  padding: 8px 14px;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-wrap,
  .routine-strip {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .product-grid,
  .testimonial-row {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  section {
    padding: 36px 0;
  }
  .feature-grid,
  .product-grid,
  .testimonial-row,
  .steps {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .brand small {
    display: none;
  }
  .routine-strip {
    padding: 24px;
  }
  .policy-content {
    padding: 22px;
  }
}
@media (max-width: 360px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 12px;
  }
  .header-bar {
    padding: 12px;
  }
}
