/* ── Brand webfonts ──
   Pasta & Wine — the brand's 'human touch' face (see Brand Style Guide). Two
   faces, not two weights: 'Pasta and Wine' is the lowercase handwriting; the
   'Big' face is all-caps marker. Self-hosted from /landing/fonts/ (same origin
   as every landing page, so no CORS headers needed). Declared here so any page
   linking landing.css can just use var(--font-hand) — no per-page @font-face.
   MBA holds the webfont licence (desktop OTFs live in Brand/Design). Neither
   face ships a true italic — font-style:italic synthesises an oblique. */
@font-face {
  font-family: 'Pasta and Wine';
  src: url('/landing/fonts/pasta-and-wine.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pasta and Wine Big';
  src: url('/landing/fonts/pasta-and-wine-big.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ── */
:root {
  --font-hand:        'Pasta and Wine', 'Caveat', cursive;
  --font-hand-caps:   'Pasta and Wine Big', 'Caveat', cursive;
  --color-dark:       #2A2D2C;
  --color-lime:       #A0CC3D;
  --color-lime-dark:  #8fb535;
  --color-off-white:  #fafbf4;
  --color-light-grey: #F4F4F4;
  --color-white:      #ffffff;
  --font-primary:     'Rubik', Arial, sans-serif;
  --nav-height:       64px;
  --container-max:    1200px;
  --section-v:        80px;
  --section-h:        24px;
  --radius:           4px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; background-color: #2A2D2C; }
/* iOS 26 Safari samples body background-color for bottom toolbar tint. Override the
   inline --bg (off-white) so the toolbar blends with the dark footer instead. */
body { background-color: #2A2D2C !important; }
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Container ── */
.lp-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-h);
}
@media (min-width: 600px)  { .lp-container { padding: 0 32px; } }
@media (min-width: 1536px) { .lp-container { padding: 0 56px; } }

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.lp-btn:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--color-lime);
}
.lp-btn--lime {
  background-color: var(--color-lime);
  color: var(--color-dark);
  border-color: var(--color-lime);
}
.lp-btn--lime:hover {
  background-color: var(--color-lime-dark);
  border-color: var(--color-lime-dark);
}
.lp-btn--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.lp-btn--dark:hover { border-color: var(--color-lime); }
.lp-btn--outline {
  background-color: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.lp-btn--outline:hover { border-color: var(--color-lime); }
.lp-btn--full { width: auto; }

/* ── Nav (copied from header.html <style> block) ── */

/* ── Page wrapper ── */
.mui-zf0iqh { display:flex; flex-direction:column; min-height:100vh; }
.mui-i9gxme { flex-grow:1; }
.mui-l8j5v3 { width:100%; min-height:64px; }

/* ── Fixed header bar ── */
.mui-v84s7f {
  box-sizing:border-box; width:100%; height:64px;
  padding:16px; z-index:1300;
  display:flex; justify-content:space-between;
  box-shadow:0 0 2px 0 rgba(0,0,0,0.1);
  background-color:#fff; position:fixed; top:0; left:0;
}
@media (min-width:600px)  { .mui-v84s7f { padding-left:32px; padding-right:32px; } }
@media (min-width:1536px) { .mui-v84s7f { padding-left:56px; padding-right:56px; } }
@media (min-width:1920px) { .mui-v84s7f { padding-left:calc((100vw - 1760px)/2); padding-right:calc((100vw - 1760px)/2); } }

/* ── Left group ── */
.mui-1yebhei { display:flex; align-items:center; height:100%; }

/* Hamburger */
.mui-1j50qf1 {
  display:inline-flex; align-items:center; justify-content:center;
  box-sizing:border-box; background-color:transparent;
  outline:0; border:0; margin:0; margin-right:24px; padding:0;
  cursor:pointer; user-select:none; vertical-align:middle; appearance:none; color:inherit;
}
.mui-1j50qf1:focus-visible { outline:2px solid #2A2D2C; outline-offset:2px; box-shadow:0 0 0 2px #A0CC3D; }
@media (min-width:1200px) { .mui-1j50qf1 { display:none; } }

/* Logo */
.mui-1e7kdcs { font-weight:700; cursor:pointer; color:#2A2D2C; height:100%; text-decoration:none; display:flex; align-items:center; }
.mui-1e7kdcs:focus-visible { outline:2px solid #2A2D2C; outline-offset:2px; box-shadow:0 0 0 2px #A0CC3D; }
.mui-h9tcdd { position:relative; cursor:pointer; display:block; }
@media (min-width:300px) { .mui-h9tcdd { display:none; } }
.mui-5q0h19 { position:relative; cursor:pointer; display:block; }
@media (max-width:299.95px) { .mui-5q0h19 { display:none; } }
.mui-1h10adb { width:100%; height:100%; object-fit:cover; object-position:left; }
.mui-15dywvi { height:100%; width:100%; object-fit:contain; }

/* Desktop nav */
.mui-1yz4d7v { display:none; align-items:center; height:100%; margin-left:16px; margin-right:16px; }
@media (min-width:1200px) { .mui-1yz4d7v { display:flex; } }
@media (min-width:600px)  { .mui-1yz4d7v { margin-left:32px; margin-right:32px; } }
@media (min-width:1536px) { .mui-1yz4d7v { margin-left:56px; margin-right:56px; } }

.mui-r2a2cq {
  display:block; font-family:'Rubik',Arial,sans-serif; font-weight:600;
  text-transform:uppercase; font-size:14px; line-height:18px; letter-spacing:0;
  color:#2A2D2C; text-decoration:none; position:relative; cursor:pointer; margin-left:16px;
}
@media (min-width:1200px) { .mui-r2a2cq { font-size:16px; line-height:20px; } }
@media (min-width:600px)  { .mui-r2a2cq { margin-left:32px; } }
@media (min-width:1536px) { .mui-r2a2cq { margin-left:56px; } }
.mui-r2a2cq::before { content:attr(data-text); font-weight:700; visibility:hidden; height:0; display:block; overflow:hidden; }
.mui-r2a2cq::after { content:""; position:absolute; bottom:-2px; left:50%; width:0; height:2px; background:#A0CC3D; transition:width 100ms ease-out,left 100ms ease-out; }
.mui-r2a2cq:hover::after { left:0; width:100%; }
.mui-r2a2cq:hover { font-weight:700; }
.mui-r2a2cq.d-nav-active { font-weight:700; }
.mui-r2a2cq.d-nav-active::after { left:0; width:100%; }
.mui-r2a2cq:focus-visible { outline:2px solid #2A2D2C; outline-offset:2px; box-shadow:0 0 0 2px #A0CC3D; }

/* ── Right group ── */
.mui-87pvwf { display:flex; align-items:center; gap:24px; height:100%; }
.MuiButtonBase-root.mui-vbekfb {
  display:inline-flex; align-items:center; justify-content:center;
  box-sizing:border-box; background-color:transparent;
  outline:0; border:0; margin:0; padding:0; cursor:pointer;
  user-select:none; vertical-align:middle; appearance:none; color:inherit;
}
.MuiButtonBase-root.mui-vbekfb:focus-visible { outline:2px solid #2A2D2C; outline-offset:2px; box-shadow:0 0 0 2px #A0CC3D; }
.mui-28fugj { user-select:none; width:1em; height:1em; display:inline-block; flex-shrink:0; transition:fill 200ms cubic-bezier(0.4,0,0.2,1) 0ms; font-size:24px; background:none; fill:currentColor; cursor:pointer; }
.mui-1dxo867 { user-select:none; width:1em; height:1em; display:inline-block; flex-shrink:0; transition:fill 200ms cubic-bezier(0.4,0,0.2,1) 0ms; font-size:24px; background:none; fill:currentColor; }

/* ══════════════════════════════════════════
   DRAWER / MEGA MENU
══════════════════════════════════════════ */

/* Drawer root – hidden by default */
.mui-12snods {
  position:fixed; z-index:1200; right:0; bottom:0; top:0; left:0;
  visibility:hidden;
}
.mui-12snods.drawer-open { visibility:visible; }

/* Backdrop */
.mui-919eu4 {
  position:fixed; display:flex; align-items:center; justify-content:center;
  right:0; bottom:0; top:0; left:0;
  background-color:rgba(0,0,0,0.5); -webkit-tap-highlight-color:transparent; z-index:-1;
  opacity:0; visibility:hidden; transition:opacity 225ms cubic-bezier(0.4,0,0.2,1) 0ms;
}
.drawer-open .mui-919eu4 { opacity:1; visibility:visible; }

/* Drawer paper */
.mui-19tc5g6 {
  background-color:#fff; color:rgba(0,0,0,0.87);
  transition:box-shadow 300ms cubic-bezier(0.4,0,0.2,1) 0ms;
  box-shadow:0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12);
  overflow-y:auto; display:flex; flex-direction:column;
  height:auto; flex:1 0 auto; z-index:1200; -webkit-overflow-scrolling:touch;
  position:fixed; top:0; outline:0; left:0; right:0; max-height:100%;
  visibility:hidden; transform:translateY(-100%); transition:transform 225ms cubic-bezier(0,0,0.2,1) 0ms, visibility 0ms 225ms;
}
@media (min-width:0px)    { .mui-19tc5g6 { max-height:calc(100dvh - 90px); overflow-y:auto; } }
@media (min-width:1200px) { .mui-19tc5g6 { max-height:none; overflow-y:unset; } }
.drawer-open .mui-19tc5g6 { visibility:visible; transform:translateY(0); transition:transform 225ms cubic-bezier(0,0,0.2,1) 0ms; }

/* Drawer inner content */
.mui-jplfpk { display:flex; flex-direction:column; background-color:#fff; padding:16px 24px; }

/* Main category list panel */
.mui-ovauc0 { flex-grow:1; display:flex; flex-direction:column; height:100%; justify-content:space-between; }

/* Nested category panel – hidden by default */
.mui-1k82tvs { flex-grow:1; display:none; flex-direction:column; }
.mui-1k82tvs.panel-active { display:flex; }

/* List resets */
.mui-urc5lr { list-style:none; margin:0; padding:0; }

/* Category top-level buttons */
.mui-j1abtg {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px; width:100%; cursor:pointer; color:inherit; background:none; border:none;
}
.mui-j1abtg:hover { background-color:#F4F4F4; }
.mui-j1abtg:focus-visible { outline:2px solid #2A2D2C; outline-offset:-2px; box-shadow:inset 0 0 0 4px #A0CC3D; }

/* Sub-category region buttons */
.mui-ho5nd3 {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px; width:100%; cursor:pointer; color:inherit; background:none; border:none;
}
.mui-ho5nd3:hover { background-color:#F4F4F4; }
.mui-ho5nd3:focus-visible { outline:2px solid #2A2D2C; outline-offset:-2px; box-shadow:inset 0 0 0 4px #A0CC3D; }
/* Chevron rotation on open */
.mui-ho5nd3[aria-expanded="true"] .mui-q40rhw { transform:rotate(180deg); }

/* Sub-category content – hidden by default */
.mui-t05o6e { padding-left:0; display:none; }
.mui-t05o6e.sub-open { display:block; }

/* Destination / activity links */
.mui-18yplj {
  font-size:inherit; font-family:inherit; line-height:inherit; text-transform:inherit;
  cursor:pointer; color:#2A2D2C; text-decoration:none;
  display:flex; align-items:center; justify-content:space-between;
  padding:12px; width:100%;
}
.mui-18yplj:hover { text-decoration:underline; background-color:#F4F4F4; }
.mui-18yplj:focus-visible { outline:none; background-color:#A0CC3D; box-shadow:0 -2px #A0CC3D,0 4px #2A2D2C; color:rgba(0,0,0,0.87); }

/* Link label text */
.mui-1x81idy { font-family:'Rubik',Arial,sans-serif; font-weight:400; text-transform:none; font-size:14px; line-height:22px; letter-spacing:0; color:#2A2D2C; }
@media (min-width:1200px) { .mui-1x81idy { font-size:16px; line-height:24px; } }

/* Category heading in nested panel */
.mui-14likba { margin:0; font-family:'Rubik',Arial,sans-serif; font-weight:600; text-transform:uppercase; font-size:14px; line-height:18px; letter-spacing:0; }
@media (min-width:1200px) { .mui-14likba { font-size:16px; line-height:20px; } }

/* Sub-category label (regions, activity groups) */
.mui-1cqyo20 { margin:0; font-family:'Rubik',Arial,sans-serif; font-weight:600; font-size:14px; line-height:18px; letter-spacing:0; text-transform:none; }
@media (min-width:1200px) { .mui-1cqyo20 { font-size:16px; line-height:20px; } }

/* Static sub-category header (Collections/About sections) */
.mui-r3cuug { display:flex; flex-direction:column; justify-content:center; height:46px; padding:0; }

/* Section wrappers – transparent on mobile (just stacks content normally) */
.d-menu-section, .d-wide { display:block; }

/* Back button in nested panel */
.mui-1dtfpn2 {
  display:flex; align-items:center; gap:16px; padding:12px;
  position:sticky; top:0; background-color:#fff; z-index:1;
  width:100%; border:none; text-align:left; color:inherit; cursor:pointer;
}
.mui-1dtfpn2:focus-visible { outline:2px solid #2A2D2C; outline-offset:-2px; box-shadow:inset 0 0 0 4px #A0CC3D; }

/* Divider row */
.mui-aio7p8 { display:flex; align-items:center; width:100%; }
.mui-4dny8q { border:0.5px solid #F4F4F4; width:100%; }

/* SVG icons in drawer */
.mui-q40rhw {
  user-select:none; width:1em; height:1em; display:inline-block; flex-shrink:0;
  transition:fill 200ms cubic-bezier(0.4,0,0.2,1) 0ms, transform 200ms ease;
  font-size:24px; background:none; fill:currentColor; color:#757575;
}
.mui-1h6fm15 { flex-grow:1; display:flex; flex-direction:column; height:100%; justify-content:space-between; }

/* ═══════════════════════════════════════
   DESKTOP MEGA-MENU LAYOUT (≥ 1200px)
═══════════════════════════════════════ */
@media (min-width:1200px) {
  /* Match header's horizontal padding; add vertical breathing room */
  .mui-jplfpk { min-height:auto; padding:16px 32px 0; }

  /* Nested panels: switch to horizontal row */
  .mui-1k82tvs .mui-1h6fm15 { flex-direction:row; align-items:stretch; }

  /* Main content area – horizontal padding comes from .mui-jplfpk */
  .mui-1k82tvs .mui-1h6fm15 > div:first-child { flex:1; padding:16px 0; overflow-y:auto; }

  /* Hide mobile-only navigation chrome */
  .mui-1dtfpn2 { display:none !important; }
  .mui-aio7p8  { display:none !important; }

  /* Help card: fixed-width right rail (exact live site values) */

  /* ── Destinations: region sidebar + country grid ── */
  #panel-destinations .mui-1h6fm15 > div:first-child { display:flex; position:relative; padding:0; }
  /* Region list becomes a left sidebar */
  #panel-destinations .mui-urc5lr { width:200px; min-width:200px; flex-shrink:0; padding:8px 0; }
  /* No accordion chevron on desktop */
  #panel-destinations .mui-ho5nd3 .mui-q40rhw { display:none !important; }
  #panel-destinations .mui-ho5nd3 { padding:10px 16px; white-space:nowrap; }
  #panel-destinations .mui-ho5nd3.d-region-active { background:rgba(160,204,61,0.12); font-weight:700; }
  #panel-destinations .mui-ho5nd3.d-region-active::after { content:'›'; font-size:16px; font-weight:400; color:#2A2D2C; }
  /* Country lists: compact 2-column block to the right of the sidebar */
  #panel-destinations .mui-t05o6e { display:none !important; position:absolute; left:200px; top:0; right:0; padding:8px 16px 16px; }
  #panel-destinations .mui-t05o6e .mui-urc5lr { display:grid; grid-template-rows:repeat(8,auto); grid-auto-flow:column; column-gap:0; list-style:none; margin:0; padding:0; }
  #panel-destinations .mui-t05o6e .mui-18yplj { padding:6px 12px; white-space:nowrap; }
  #panel-destinations .mui-t05o6e.d-region-active { display:block !important; }

  /* ── Activities: 3-column left-aligned grid ── */
  #panel-activities .d-wide .mui-urc5lr {
    display:grid; grid-auto-flow:column; grid-template-rows:repeat(7,auto);
    column-gap:32px; list-style:none; margin:0; padding:8px 0;
  }
  #panel-activities .d-wide .mui-18yplj { display:block; padding:6px 12px; white-space:nowrap; }

  /* ── Collections / Inspiration / About: auto-column section layout ── */
  /* Container: auto-flowing columns, max-content wide, 32px gap (matches live site grid) */
  #panel-collections .mui-1h6fm15 > div:first-child,
  #panel-inspiration .mui-1h6fm15 > div:first-child,
  #panel-about .mui-1h6fm15 > div:first-child {
    display:grid; grid-auto-flow:column dense; grid-auto-columns:max-content;
    column-gap:32px; align-items:start; padding:16px 0;
  }
  /* Each section block: 1-column grid, 12px between header and list */
  .d-menu-section { display:grid; grid-template-columns:max-content; row-gap:12px; }
  .d-menu-section .mui-r3cuug { height:auto; padding:0 12px 0; }
  .d-menu-section .mui-18yplj { display:block; padding:6px 12px; white-space:nowrap; }
  /* Collections: wide section – 3 internal columns for the bulk item list */
  #panel-collections .d-wide { display:block; }
  #panel-collections .d-wide .mui-urc5lr {
    display:grid; grid-auto-flow:column; grid-template-rows:repeat(5,auto); column-gap:32px;
  }
  #panel-collections .d-wide .mui-18yplj { display:block; padding:6px 12px; white-space:nowrap; }
}
@media (min-width:1536px) { .mui-jplfpk { padding-left:56px; padding-right:56px; } }
@media (min-width:1920px) { .mui-jplfpk { padding-left:calc((100vw - 1760px) / 2); padding-right:calc((100vw - 1760px) / 2); } }

/* ── Nav spacer (pushes page content below fixed header) ── */
.lp-page { padding-top: var(--nav-height); }

/* ── Hero ── */
.lp-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-color: var(--color-dark);
  overflow: hidden;
}
@media (min-width: 900px) { .lp-hero { min-height: 680px; } }

.lp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.lp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 100%);
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
  max-width: 720px;
}

.lp-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lime);
  margin-bottom: 16px;
}

.lp-hero__headline {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 20px;
}
@media (min-width: 900px)  { .lp-hero__headline { font-size: 48px; } }
@media (min-width: 1200px) { .lp-hero__headline { font-size: 56px; } }

.lp-hero__sub {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 560px;
}
@media (min-width: 900px) { .lp-hero__sub { font-size: 18px; } }

/* ── Social proof bar ── */
.lp-proof-bar {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-light-grey);
  padding: 20px 0;
}

.lp-proof-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lp-proof-bar__inner::-webkit-scrollbar { display: none; }

.lp-proof-bar__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-proof-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.lp-proof-bar__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(1);
  flex-shrink: 0;
}

.lp-proof-bar__trust {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-dark);
  opacity: 0.6;
  text-align: center;
  margin-bottom: 16px;
}

.lp-proof-bar__logo-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  opacity: 0.45;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ── Problem statement ── */
.lp-problem {
  padding: var(--section-v) 0;
  background-color: var(--color-white);
}

.lp-problem__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .lp-problem__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-problem__headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 1200px) { .lp-problem__headline { font-size: 36px; } }

.lp-problem__body {
  font-size: 16px;
  line-height: 26px;
  color: rgba(42,45,44,0.8);
  margin-bottom: 16px;
}
.lp-problem__body:last-child { margin-bottom: 0; }

.lp-problem__image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ── Solution / value prop ── */
.lp-solution {
  padding: var(--section-v) 0;
  background-color: var(--color-off-white);
}

.lp-solution__headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 12px;
}
@media (min-width: 1200px) { .lp-solution__headline { font-size: 36px; } }

.lp-solution__sub {
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: rgba(42,45,44,0.75);
  margin-bottom: 48px;
}

.lp-solution__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1200px) {
  .lp-solution__cards { grid-template-columns: repeat(3, 1fr); }
}

.lp-solution__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.lp-solution__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--color-lime);
}
.lp-solution__icon svg { width: 100%; height: 100%; }

.lp-solution__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.lp-solution__card-body {
  font-size: 15px;
  line-height: 24px;
  color: rgba(42,45,44,0.8);
}

/* ── How it works ── */
.lp-hiw {
  padding: var(--section-v) 0;
  background-color: var(--color-white);
}

.lp-hiw__headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 1200px) { .lp-hiw__headline { font-size: 36px; } }

.lp-hiw__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1200px) {
  .lp-hiw__steps { grid-template-columns: repeat(3, 1fr); }
}

.lp-hiw__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-hiw__number {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-lime);
}

.lp-hiw__step-title {
  font-size: 18px;
  font-weight: 700;
}

.lp-hiw__step-body {
  font-size: 15px;
  line-height: 24px;
  color: rgba(42,45,44,0.8);
}

.lp-hiw__cta-wrap {
  text-align: center;
  margin-top: 48px;
}

.lp-hiw__link {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-lime);
  padding-bottom: 2px;
  transition: border-color 150ms ease;
}
.lp-hiw__link:hover { border-color: var(--color-dark); }

/* ── Features / benefits ── */
.lp-features {
  padding: var(--section-v) 0;
  background-color: var(--color-off-white);
}

.lp-features__headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 64px;
}
@media (min-width: 1200px) { .lp-features__headline { font-size: 36px; } }

.lp-features__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}
.lp-features__row:last-child { margin-bottom: 0; }

@media (min-width: 900px) {
  .lp-features__row { grid-template-columns: 1fr 1fr; }
  .lp-features__row--reverse .lp-features__image { order: 2; }
}

.lp-features__image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.lp-features__title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
@media (min-width: 1200px) { .lp-features__title { font-size: 28px; } }

.lp-features__body {
  font-size: 16px;
  line-height: 26px;
  color: rgba(42,45,44,0.8);
}

/* ── Testimonials ── */
.lp-testimonials {
  padding: var(--section-v) 0;
  background-color: var(--color-dark);
  color: var(--color-white);
}

.lp-testimonials__headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 1200px) { .lp-testimonials__headline { font-size: 36px; } }

.lp-testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.lp-testimonials__track::-webkit-scrollbar { display: none; }
@media (min-width: 900px) {
  .lp-testimonials__track { overflow-x: visible; }
}

.lp-testimonials__card {
  background-color: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.lp-testimonials__stars {
  display: flex;
  gap: 4px;
}

.lp-testimonials__quote {
  font-size: 15px;
  line-height: 24px;
  color: rgba(255,255,255,0.9);
  flex-grow: 1;
}
.lp-testimonials__quote::before { content: '\201C'; }
.lp-testimonials__quote::after  { content: '\201D'; }

.lp-testimonials__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.lp-testimonials__avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-lime);
  flex-shrink: 0;
}

.lp-testimonials__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}

.lp-testimonials__trip {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ── FAQ ── */
.lp-faq {
  padding: var(--section-v) 0;
  background-color: var(--color-white);
}

.lp-faq__headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 1200px) { .lp-faq__headline { font-size: 36px; } }

.lp-faq__list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--color-light-grey);
}

.lp-faq__item {
  border-bottom: 1px solid var(--color-light-grey);
}

.lp-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-dark);
  text-align: left;
}
.lp-faq__question:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--color-lime);
}

.lp-faq__chevron {
  flex-shrink: 0;
  transition: transform 200ms ease;
  color: var(--color-dark);
}
.lp-faq__item[data-open="true"] .lp-faq__chevron {
  transform: rotate(180deg);
}

.lp-faq__answer {
  display: none;
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 26px;
  color: rgba(42,45,44,0.8);
}
.lp-faq__item[data-open="true"] .lp-faq__answer {
  display: block;
}

/* ── Offer / pricing ── */
.lp-offer {
  padding: var(--section-v) 0;
  background-color: var(--color-off-white);
}

.lp-offer__card {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-offer__headline {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.lp-offer__inclusions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-offer__inclusions li {
  font-size: 15px;
  line-height: 22px;
  padding-left: 24px;
  position: relative;
  color: rgba(42,45,44,0.85);
}
.lp-offer__inclusions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-lime);
}

.lp-offer__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.lp-offer__price-label {
  font-size: 13px;
  color: rgba(42,45,44,0.6);
}
.lp-offer__price-value {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-dark);
}
.lp-offer__price-note {
  font-size: 13px;
  color: rgba(42,45,44,0.6);
}

/* ── Final CTA ── */
.lp-final-cta {
  padding: var(--section-v) 0;
  background-color: var(--color-lime);
}

.lp-final-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.lp-final-cta__headline {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-dark);
}
@media (min-width: 1200px) { .lp-final-cta__headline { font-size: 44px; } }

.lp-final-cta__sub {
  font-size: 16px;
  line-height: 26px;
  color: rgba(42,45,44,0.8);
  max-width: 560px;
}

/* ── Footer ── */
#footer-trust-wrap { background: #ffffff; }

.lp-footer {
  padding: 32px 0 calc(32px + env(safe-area-inset-bottom, 0px));
  background-color: var(--color-dark);
}

.lp-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  justify-content: space-between;
}

.lp-footer__logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.lp-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.lp-footer__links {
  display: flex;
  gap: 24px;
}
.lp-footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 150ms ease;
}
.lp-footer__links a:hover { color: var(--color-white); }
.lp-footer__links a:focus-visible {
  outline: 2px solid var(--color-lime);
  outline-offset: 2px;
}

/* Help launcher */
.hlp-details {
  position: fixed;
  bottom: 8px;
  right: 8px;
  z-index: 9999;
}
@media (min-width: 768px) {
  .hlp-details { bottom: 16px; right: 16px; }
}
.hlp-summary {
  display: block;
  list-style: none;
  cursor: pointer;
}
.hlp-summary::-webkit-details-marker { display: none; }
.hlp-summary::marker { content: none; }
.hlp-popup {
  display: none;
  position: fixed;
  bottom: 88px;
  right: 16px;
  z-index: 1103;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 16px 20px;
  min-width: 210px;
  font-family: 'Rubik', sans-serif;
}
.hlp-details[open] .hlp-popup { display: block; }
.hlp-popup h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2A2D2C;
}
.hlp-popup ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hlp-popup ul a {
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #2A2D2C;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.hlp-popup ul a:hover { background: #ebebeb; }
