:root {
  --brand: #2a8f6a;
  --brand-dark: #1a5c44;
  --brand-mid: #3aa87d;
  --brand-soft: #e7f6ef;
  --brand-glow: rgba(42, 143, 106, 0.35);
  --accent: #ef7a58;
  --accent-soft: #ffe9e1;
  --ink: #142820;
  --muted: #4d665c;
  --line: #d4e8dc;
  --surface: #ffffff;
  --surface-muted: #f4faf7;
  --shadow-sm: 0 4px 14px rgba(20, 40, 32, 0.06);
  --shadow: 0 16px 40px rgba(20, 40, 32, 0.1);
  --shadow-lg: 0 28px 60px rgba(20, 40, 32, 0.14);
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --content: 1140px;
  --header-h: 4.5rem;
  --tap: 44px;
  --section-y: clamp(3.5rem, 7vw, 5.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  background: var(--surface-muted);
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 0.4em;
}

p {
  margin: 0;
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: white;
  font-weight: 800;
  border-radius: 0 0 12px 12px;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(244, 250, 247, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 16px var(--brand-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
}

.brand-text strong .brand-e,
.brand-text strong .brand-wordmark-e {
  color: var(--accent);
  font-weight: 800;
}

.brand-text strong .brand-bis,
.brand-text strong .brand-wordmark-bis {
  font-weight: 800;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  width: var(--tap);
  height: var(--tap);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav a {
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover,
.nav a.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.nav-cta {
  background: var(--brand) !important;
  color: white !important;
  box-shadow: 0 6px 18px var(--brand-glow) !important;
}

.nav-cta:hover {
  background: var(--brand-dark) !important;
  color: white !important;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.18rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  flex-shrink: 0;
  margin-left: 0.25rem;
}

.lang-switch-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1;
  min-width: 2rem;
  min-height: 1.85rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch-btn.is-active {
  background: var(--brand);
  color: white;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--surface);
  color: var(--brand-dark);
  box-shadow: var(--shadow);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 24px rgba(239, 122, 88, 0.32);
}

.btn-brand {
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 24px var(--brand-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-soft {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--line);
}

.btn-sm {
  min-height: 2.35rem;
  padding: 0.48rem 1rem;
  font-size: 0.88rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(239, 122, 88, 0.28), transparent 50%),
    linear-gradient(145deg, #0f3d2c 0%, var(--brand-dark) 38%, var(--brand) 72%, #3d9a72 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/hero-pantry.jpg') center / cover no-repeat;
  opacity: 0.22;
  mix-blend-mode: overlay;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr minmax(240px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.hero-copy {
  min-width: 0;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.hero-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.hero-brand strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-brand .brand-e,
.hero-brand .brand-wordmark-e {
  color: #ffd4c4;
  font-weight: 800;
}

.hero-brand .brand-bis,
.hero-brand .brand-wordmark-bis {
  font-weight: 800;
}

.hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  font-size: clamp(2.15rem, 5.2vw, 3.35rem);
  font-weight: 800;
  max-width: 14ch;
  color: white;
  margin-bottom: 0.5rem;
}

.hero .hero-lead {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 650;
}

.hero-bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
  font-size: 0.96rem;
}

.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 122, 88, 0.25);
}

.hero-phone {
  margin: 0;
  justify-self: center;
  width: min(100%, 270px);
  padding: 0.7rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-lg);
  transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
}

.hero-phone img {
  border-radius: 24px;
  width: 100%;
}

/* —— Benefit strip —— */
.benefit-wrap {
  position: relative;
  z-index: 2;
  margin-top: -1.75rem;
  padding-bottom: 0.5rem;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.benefit-item {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.benefit-item strong {
  font-family: var(--font-display);
  color: var(--brand-dark);
  font-size: 1.02rem;
}

.benefit-item span {
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--muted);
}

/* —— Sections —— */
.section {
  padding: var(--section-y) 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.25rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.45rem);
}

.section-head p {
  font-size: 1.06rem;
  margin-top: 0.45rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* —— App embed —— */
.app-section {
  background: linear-gradient(180deg, var(--surface-muted) 0%, #eaf5ef 100%);
}

.app-launch-row {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  margin: 0 auto 1.35rem;
  max-width: 46rem;
}

.app-storage-notice {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.app-shell-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.app-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  background: linear-gradient(90deg, var(--brand-soft), #fff);
  border-bottom: 1px solid var(--line);
}

.app-toolbar p {
  font-weight: 750;
  color: var(--brand-dark);
  font-size: 0.92rem;
}

.app-frame {
  width: 100%;
  min-height: min(75vh, 780px);
  border: 0;
  display: block;
  background: var(--surface-muted);
}

.app-lazy-hint[hidden] {
  display: none;
}

.app-lazy-hint {
  display: none;
}

.app-frame-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: min(75vh, 780px);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.app-frame-error[hidden] {
  display: none;
}

.app-fallback {
  padding: 2rem 1.25rem;
  text-align: center;
}

/* —— Features —— */
.feature-list {
  display: grid;
  gap: 2rem;
}

.feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.feature h3 {
  font-size: 1.4rem;
  color: var(--brand-dark);
}

.feature-copy ul {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.94rem;
}

.feature-copy ul li::marker {
  color: var(--brand);
}

.feature-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brand-soft);
  box-shadow: var(--shadow);
}

.feature-visual img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  max-height: 520px;
  margin-inline: auto;
}

.detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  margin-top: 2rem;
}

.detail-card {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.detail-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
}

.detail-card p,
.detail-card li {
  font-size: 0.92rem;
}

.detail-card ul {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.28rem;
}

.name-explain {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin-top: 1rem;
}

.name-chip {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 0.86rem;
}

.name-chip em {
  font-style: normal;
  color: var(--brand-dark);
}

/* —— Usage steps —— */
.usage-list {
  display: grid;
  gap: 0.85rem;
  counter-reset: usage;
}

@media (min-width: 900px) {
  .usage-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .usage-list .usage-item:nth-child(4),
  .usage-list .usage-item:nth-child(5),
  .usage-list .usage-item:nth-child(6) {
    grid-column: span 1;
  }
}

.usage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.usage-item::before {
  counter-increment: usage;
  content: counter(usage);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.usage-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}

.usage-item p {
  font-size: 0.9rem;
}

/* —— Screenshots —— */
.shot-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 220px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.shot-strip::-webkit-scrollbar {
  height: 5px;
}

.shot-strip::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.phone-frame {
  margin: 0;
  scroll-snap-align: start;
  padding: 0.65rem;
  border-radius: 26px;
  background: linear-gradient(165deg, #1a2824, #2a4038);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.phone-frame--hero {
  grid-column: span 1;
  transform: scale(1.04);
}

.phone-frame:hover {
  transform: translateY(-5px);
}

.phone-frame img {
  border-radius: 18px;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: white;
}

.phone-caption {
  text-align: center;
  margin-top: 0.65rem;
  font-weight: 750;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.shot-zoomable {
  cursor: zoom-in;
}

.hero-phone:has(.shot-zoomable),
.feature-visual:has(.shot-zoomable),
.phone-frame:has(.shot-zoomable) {
  position: relative;
}

.hero-phone:has(.shot-zoomable)::after,
.feature-visual:has(.shot-zoomable)::after,
.phone-frame:has(.shot-zoomable)::after {
  content: "+";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background: rgba(26, 44, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-phone:has(.shot-zoomable:hover)::after,
.hero-phone:has(.shot-zoomable:focus-visible)::after,
.feature-visual:has(.shot-zoomable:hover)::after,
.feature-visual:has(.shot-zoomable:focus-visible)::after,
.phone-frame:has(.shot-zoomable:hover)::after,
.phone-frame:has(.shot-zoomable:focus-visible)::after {
  opacity: 1;
  transform: scale(1);
}

.shot-lightbox {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  background: transparent;
  overflow: hidden;
}

.shot-lightbox::backdrop {
  background: rgba(15, 28, 24, 0.9);
  backdrop-filter: blur(6px);
}

.shot-lightbox-panel {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: max(3.5rem, calc(env(safe-area-inset-top) + 2.5rem)) 1rem max(1.5rem, env(safe-area-inset-bottom));
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.shot-lightbox-figure {
  margin: 0;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.shot-lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(95vw, 720px);
  max-height: min(88vh, 1280px);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  background: #fff;
  touch-action: pinch-zoom;
}

.shot-lightbox-caption {
  max-width: min(95vw, 720px);
  text-align: center;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.92);
}

.shot-lightbox-close {
  position: fixed;
  top: max(0.85rem, env(safe-area-inset-top));
  right: max(0.85rem, env(safe-area-inset-right));
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(26, 44, 38, 0.88);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.shot-lightbox-close:hover {
  transform: scale(1.05);
  background: rgba(42, 143, 106, 0.95);
}

body.shot-lightbox-open {
  overflow: hidden;
}

/* —— Pitch / trust —— */
.pitch-section {
  background: linear-gradient(180deg, transparent, rgba(231, 246, 239, 0.65));
}

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

.pitch-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.pitch-card--highlight {
  background: linear-gradient(145deg, #fff8f5, var(--brand-soft));
  border-color: rgba(42, 143, 106, 0.25);
}

.pitch-card h3 {
  font-size: 1.12rem;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
}

.pitch-card p {
  font-size: 0.94rem;
  font-weight: 650;
  color: var(--ink);
}

.trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin-top: 1.5rem;
}

.trust-item {
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}

.trust-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.trust-item p {
  font-size: 0.9rem;
}

.trust-item a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* —— FAQ —— */
.faq-list {
  display: grid;
  gap: 0.55rem;
  max-width: 52rem;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-family: var(--font-display);
  padding: 1rem 1.15rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

/* —— Social / promo —— */
.social-section {
  background: var(--surface);
}

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

.social-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--surface-muted);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.social-card h3 {
  font-size: 1.08rem;
  color: var(--brand-dark);
}

.social-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.social--large {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.social--large a {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 750;
  font-size: 0.84rem;
  color: var(--brand-dark);
  transition: background 0.15s ease;
}

.social--large a:hover {
  background: var(--brand-soft);
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.85rem;
}

.share-url {
  flex: 1 1 160px;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-band {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--brand-dark), var(--brand) 55%, #4aab82);
  color: white;
  display: grid;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.promo-band h3 {
  color: white;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0;
}

.promo-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
}

.promo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.promo-tags span {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 750;
}

/* —— Handbook & final CTA —— */
.handbook-cta {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--brand-dark), var(--brand) 60%, rgba(239, 122, 88, 0.5));
  color: white;
  box-shadow: var(--shadow-lg);
}

.handbook-cta h2 {
  color: white;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.handbook-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48ch;
  margin-top: 0.35rem;
}

.cta-band {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--ink);
  color: white;
  text-align: center;
}

.cta-band h2 {
  color: white;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  max-width: 20ch;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin: 0.5rem auto 0;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 1.25rem;
}

/* —— Sticky mobile CTA —— */
.sticky-cta {
  display: none;
  position: fixed;
  inset: auto 0 0;
  z-index: 45;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(244, 250, 247, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(20, 40, 32, 0.08);
}

.sticky-cta .btn {
  width: 100%;
}

.sticky-cta.is-hidden {
  transform: translateY(110%);
  pointer-events: none;
}

/* —— Footer —— */
.site-footer {
  padding: 2.75rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.site-footer h3 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.38rem;
}

.site-footer a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--brand-dark);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 0.84rem;
  color: var(--ink);
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
}

.footer-note a {
  color: var(--brand-dark);
  font-weight: 700;
}

/* —— Cookie —— */
.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  padding: 0.85rem 0 calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(20, 40, 32, 0.96);
  color: white;
  backdrop-filter: blur(10px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #b8f0d4;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* —— Legal & handbook subpages —— */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.legal-page .lead {
  margin-bottom: 2rem;
  max-width: 50ch;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  max-width: 68ch;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-page .placeholder {
  background: var(--accent-soft);
  color: #8a3d28;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  font-weight: 750;
}

.legal-locale-notice {
  margin: 0 0 1.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--brand-soft);
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 700;
  max-width: 52ch;
}

.lang-section .detail-card h3 {
  color: var(--brand-dark);
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}

.banner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.banner-card img {
  width: 100%;
  height: auto;
  background: var(--surface-muted);
}

.banner-card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.banner-card-body h3 {
  font-size: 1.05rem;
  color: var(--brand-dark);
}

.banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.65rem 0 0.85rem;
}

.banner-meta span {
  font-size: 0.78rem;
  font-weight: 750;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.guide-callout {
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: var(--brand-soft);
  border: 1px solid var(--line);
}

.guide-callout strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--brand-dark);
}

.guide-callout ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

/* —— Responsive —— */
@media (min-width: 900px) {
  .feature {
    grid-template-columns: 1fr 0.85fr;
    padding: 2rem;
  }

  .feature:nth-child(even) .feature-copy {
    order: 2;
  }

  .promo-band {
    grid-template-columns: 1fr auto;
  }

  .handbook-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.35rem);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    min-height: var(--tap);
    display: flex;
    align-items: center;
  }

  .lang-switch {
    align-self: center;
    margin: 0.15rem 0;
  }

  .brand-text span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 1.5rem;
  }

  .hero h1 {
    max-width: none;
    margin-inline: auto;
  }

  .hero .hero-lead {
    margin-inline: auto;
  }

  .hero-bullets {
    text-align: left;
    max-width: 26rem;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-phone {
    transform: none;
    width: min(100%, 240px);
  }

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pitch-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: block;
    transition: transform 0.25s ease;
  }

  body.has-sticky-cta {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 560px) {
  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-wrap {
    margin-top: -1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-phone {
    transform: none;
  }
}
