:root {
  --ark: #0e7466;
  --ark-strong: #0a5a50;
  --ark-tint: #e3f2ef;
  --ark-ink: #0a2e29;
  --honey: #e9a13b;
  --honey-tint: #fbf0dc;
  --bg: #f7f5f1;
  --card: #fff;
  --subtle: #efece6;
  --border: #e5e1d8;
  --label: #1d1c19;
  --secondary: #6b6862;
  --on-ink: #f2efe7;
  --on-ink-soft: rgba(242, 239, 231, .74);
  --success: #377e44;
  --warning: #ad5b0d;
  --r-xs: 8px;
  --r-s: 12px;
  --r-m: 16px;
  --r-l: 20px;
  --r-xl: 28px;
  --shadow-1: 0 1px 2px rgba(29, 28, 25, .05), 0 1px 6px rgba(29, 28, 25, .04);
  --shadow-2: 0 2px 6px rgba(29, 28, 25, .05), 0 12px 32px rgba(29, 28, 25, .09);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  color: var(--label);
  background: var(--bg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand, .footer-brand {
  font-family: "Bricolage Grotesque", "Inter", sans-serif;
  letter-spacing: -.03em;
  line-height: 1.08;
}
a { color: var(--ark); }
.wrap { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 96px 0; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--r-xs);
  color: #fff;
  background: var(--ark-strong);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--ark);
  outline-offset: 3px;
}
[tabindex="-1"]:focus { outline: none; }

[data-lang="en"] { display: none; }
html[data-active="en"] [data-lang="fr"] { display: none; }
html[data-active="en"] [data-lang="en"] { display: revert; }

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  min-height: 76px;
  margin: 0 auto;
  padding: 8px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--label);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}
.brand img { width: 32px; height: 32px; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.support-link { color: var(--secondary); font-size: 14px; font-weight: 700; text-decoration: none; }
.support-link:hover { color: var(--label); }
.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
}
.lang-switch button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  color: var(--secondary);
  background: transparent;
  font: 700 13px/1 "Inter", sans-serif;
  cursor: pointer;
}
.lang-switch button.active { color: #fff; background: var(--ark); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  color: var(--on-ink);
  background:
    radial-gradient(circle at 83% 25%, rgba(63, 195, 176, .24), transparent 23rem),
    radial-gradient(circle at 12% 92%, rgba(233, 161, 59, .14), transparent 24rem),
    linear-gradient(155deg, var(--ark-ink), #0e4a40 66%, #12604f);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 76px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero .eyebrow, .final-cta .eyebrow { color: var(--honey); }
.hero h1 { font-size: clamp(42px, 5.4vw, 68px); font-weight: 800; }
.hero h1 em { color: var(--honey); font-style: normal; }
.hero-copy > p {
  max-width: 640px;
  margin-top: 24px;
  color: var(--on-ink-soft);
  font-size: clamp(17px, 2vw, 20px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ark-ink); background: var(--honey); box-shadow: var(--shadow-1); }
.button-secondary { color: var(--on-ink); border-color: rgba(242, 239, 231, .35); }
.button-secondary:hover { background: rgba(255, 255, 255, .08); }
.button-honey { color: var(--ark-ink); background: var(--honey); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 28px;
  color: var(--on-ink-soft);
  font-size: 13px;
  list-style: none;
}
.hero-proof li::before { content: "✓"; margin-right: 7px; color: #66d4c4; font-weight: 800; }

.product-preview { position: relative; display: grid; place-items: center; }
.phone {
  position: relative;
  width: min(340px, 100%);
  min-height: 610px;
  padding: 20px 18px 68px;
  border: 7px solid #171a18;
  border-radius: 48px;
  color: var(--label);
  background: var(--bg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}
.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: #171a18;
  transform: translateX(-50%);
}
.phone-top { display: flex; justify-content: space-between; padding: 0 8px; font-size: 10px; font-weight: 700; }
.screen-title { display: grid; gap: 2px; margin: 40px 4px 18px; }
.screen-title small { color: var(--secondary); font-size: 11px; }
.screen-title strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 28px; }
.pet-card {
  overflow: hidden;
  margin-bottom: 14px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  background: var(--card);
  box-shadow: var(--shadow-1);
}
.pet-heading { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.pet-heading > span:last-child { display: grid; }
.pet-heading strong { font-size: 14px; }
.pet-heading small { color: var(--secondary); font-size: 10px; }
.pet-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid #e8604c;
  border-radius: 50%;
  color: var(--ark-strong);
  background: var(--ark-tint);
  font-weight: 800;
}
.pet-avatar.dog { border-color: #4c8fd6; color: #315f92; background: #e9f2fb; }
.action-row { display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 9px; padding: 12px 0; border-top: 1px solid var(--border); }
.action-row > span:last-child { display: grid; }
.action-row strong { font-size: 11px; }
.action-row small { color: var(--secondary); font-size: 9px; }
.action-symbol {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--success);
  font-size: 12px;
  font-weight: 800;
}
.action-symbol.walk { color: var(--ark-strong); background: var(--ark-tint); }
.all-good { padding: 10px 12px; border-radius: var(--r-s); color: var(--success); background: #edf5ed; font-size: 10px; font-weight: 700; }
.all-good span { margin-right: 6px; }
.tabbar {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-around;
  padding: 14px 2px 9px;
  border-top: 1px solid var(--border);
  color: var(--secondary);
  font-size: 8px;
  font-weight: 600;
}
.tabbar .active { color: var(--ark); }
.floating-note {
  position: absolute;
  right: -18px;
  bottom: 78px;
  display: grid;
  min-width: 190px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--r-m);
  color: var(--label);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.floating-note strong { font-size: 13px; }
.floating-note span { color: var(--secondary); font-size: 10px; }

.trust-strip { border-bottom: 1px solid var(--border); background: var(--card); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: grid; padding: 24px; border-right: 1px solid var(--border); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { color: var(--ark-strong); font-size: 14px; }
.trust-grid span { color: var(--secondary); font-size: 12px; }

.section-heading { max-width: 680px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .feature-copy h2, .privacy-grid h2, .premium-copy h2, .final-cta h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
}
.section-heading p { margin-top: 18px; color: var(--secondary); font-size: 17px; }
.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.moment-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  background: var(--card);
  box-shadow: var(--shadow-1);
}
.moment-card.featured { color: var(--on-ink); background: var(--ark-ink); transform: translateY(-12px); }
.moment-number { color: var(--ark); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.moment-card.featured .moment-number { color: var(--honey); }
.moment-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 45px 0 24px;
  border-radius: var(--r-m);
  color: var(--ark-strong);
  background: var(--ark-tint);
  font-size: 22px;
  font-weight: 800;
}
.moment-card.featured .moment-icon { color: var(--ark-ink); background: var(--honey); }
.moment-card h3 { font-size: 23px; }
.moment-card p { margin-top: 13px; color: var(--secondary); font-size: 15px; }
.moment-card.featured p { color: var(--on-ink-soft); }

.feature-section { background: var(--card); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 88px; }
.feature-grid.reverse .feature-copy { order: 2; }
.feature-copy > p { margin-top: 20px; color: var(--secondary); font-size: 17px; }
.check-list { display: grid; gap: 12px; margin-top: 28px; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--ark);
  font-size: 11px;
  font-weight: 800;
}
.feature-visual { padding: 30px; border: 1px solid var(--border); border-radius: var(--r-xl); background: var(--bg); box-shadow: var(--shadow-2); }
.visual-label { display: block; margin-bottom: 20px; color: var(--ark); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stats-grid > div { display: grid; padding: 20px; border-radius: var(--r-m); background: var(--card); }
.stats-grid small { color: var(--secondary); font-size: 10px; text-transform: uppercase; }
.stats-grid strong { margin: 8px 0 2px; font-family: "Bricolage Grotesque", sans-serif; font-size: 26px; }
.stats-grid span { color: var(--success); font-size: 10px; font-weight: 700; }
.timeline { display: grid; grid-template-columns: 12px 1fr; align-items: center; gap: 12px; margin-top: 14px; padding: 18px; border-radius: var(--r-m); background: var(--card); }
.timeline > span { width: 10px; height: 10px; border-radius: 50%; background: var(--ark); box-shadow: 0 0 0 5px var(--ark-tint); }
.timeline > div { display: grid; }
.timeline strong { font-size: 12px; }
.timeline small { color: var(--secondary); font-size: 10px; }
.reminder-card { display: grid; gap: 12px; background: var(--card); }
.reminder {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: var(--r-m);
}
.reminder > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-s); color: var(--ark-strong); background: var(--ark-tint); font-size: 17px; font-weight: 800; }
.reminder.urgent > span { color: var(--warning); background: var(--honey-tint); }
.reminder > div { display: grid; }
.reminder strong { font-size: 13px; }
.reminder small { color: var(--secondary); font-size: 11px; }

.privacy-section { padding: 88px 0; color: var(--on-ink); background: var(--ark-ink); }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.privacy-grid .eyebrow { color: var(--honey); }
.privacy-grid p { color: var(--on-ink-soft); font-size: 17px; }
.privacy-grid a { display: inline-block; margin-top: 20px; color: #66d4c4; font-weight: 700; text-decoration: none; }

.premium-section { background: var(--subtle); }
.premium-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 84px; }
.premium-copy > p { max-width: 620px; margin-top: 20px; color: var(--secondary); font-size: 17px; }
.pricing-card {
  position: relative;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--card);
  box-shadow: var(--shadow-2);
}
.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ark-ink);
  background: var(--honey);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.pricing-card > small { color: var(--ark); font-weight: 800; text-transform: uppercase; }
.price { display: flex; align-items: baseline; gap: 8px; margin-top: 22px; }
.price strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 46px; line-height: 1; }
.price span, .pricing-card > p { color: var(--secondary); }
.pricing-card .button { width: 100%; margin-top: 26px; }
.pricing-card .legal-copy { margin-top: 18px; font-size: 10px; line-height: 1.5; }

.final-cta { padding: 96px 0; color: var(--on-ink); text-align: center; background: linear-gradient(145deg, var(--ark-ink), #0e4a40); }
.final-cta img { width: 64px; height: 64px; margin: 0 auto 24px; }
.final-cta h2 { margin-bottom: 30px; }

footer { padding: 52px 0 28px; border-top: 4px solid var(--honey); color: var(--on-ink-soft); background: var(--ark-ink); }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 36px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--on-ink); font-size: 18px; font-weight: 800; text-decoration: none; }
.footer-brand img { width: 30px; height: 30px; }
.footer-grid p { margin-top: 10px; font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 24px; max-width: 520px; }
.footer-links a { color: var(--on-ink-soft); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--on-ink); }
.copyright { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 12px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

@media (max-width: 900px) {
  .hero-grid, .feature-grid, .privacy-grid, .premium-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 60px; }
  .product-preview { width: min(480px, 100%); margin-inline: auto; }
  .moment-grid { grid-template-columns: 1fr; }
  .moment-card { min-height: 0; }
  .moment-card.featured { transform: none; }
  .feature-grid, .privacy-grid, .premium-grid { gap: 48px; }
  .feature-grid.reverse .feature-copy { order: initial; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 32px, 1120px); }
  .section { padding: 72px 0; }
  .nav-inner { padding-inline: 16px; }
  .support-link { display: none !important; }
  .hero { padding: 62px 0 78px; }
  .hero h1 { font-size: 42px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .phone { min-height: 570px; }
  .floating-note { right: -4px; bottom: 62px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .feature-visual { padding: 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 30px 24px; }
  .pricing-badge { position: static; display: inline-block; margin-bottom: 18px; }
  .price strong { font-size: 40px; }
  .footer-grid { flex-direction: column; }
  .footer-links { flex-direction: column; }
}
