/* ═══════════════════════════════════════════
   SHAPA — Landing Page Styles
   ═══════════════════════════════════════════ */

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--off-black);
  background: var(--white);
  line-height: 1.4;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── Brand Tokens ── */
:root {
  --primary: #FF6F00;
  --primary-light: #FF7A1A;
  --primary-dark: #E86100;
  --secondary: #FFF6DF;
  --off-black: #211008;
  --off-white: #FFF7F5;
  --white: #FFFFFF;
  --service-blue: #8B9DC3;
  --service-green: #2D5A4A;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(33, 16, 8, 0.06);
  --shadow-md: 0 4px 24px rgba(33, 16, 8, 0.10);
  --shadow-lg: 0 8px 48px rgba(33, 16, 8, 0.12);
  --shadow-glow: 0 4px 32px rgba(255, 111, 0, 0.25);

  --nav-height: 72px;
}


/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

p, span, a, li, summary {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
}


/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--pill {
  border-radius: var(--radius-pill);
}

.btn--lg {
  font-size: 1.3rem;
  padding: 16px 44px;
}

.btn--sm {
  font-size: 1rem;
  padding: 10px 24px;
}


/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 247, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(33, 16, 8, 0.04);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav--scrolled {
  background: rgba(255, 247, 245, 0.97);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 42px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--off-black);
  position: relative;
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white) !important;
  border-color: var(--primary);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__burger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__burger--open span:nth-child(2) {
  opacity: 0;
}

.nav__burger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ── Mobile Drawer ── */
.mobile-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--off-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-120%);
  transition: transform 0.35s ease;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.mobile-drawer--open {
  transform: translateY(0);
}

.mobile-drawer__link {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--off-black);
  padding: 8px 0;
  border-bottom: 1px solid rgba(33, 16, 8, 0.08);
}

.mobile-drawer__cta {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white) !important;
  text-align: center;
  margin-top: 8px;
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding-top: var(--nav-height);
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.hero__illustration {
  position: relative;
}

.hero__img {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  transform: translateY(0);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 1025px) {
  .hero__content {
    padding-top: clamp(28px, 4vw, 56px);
  }
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  color: var(--primary);
  line-height: 1.0;
  letter-spacing: 0.02em;
}

.hero__tagline {
  line-height: 1.35;
}

/* Softer weight — Bebas is single-weight, so size + color read as “not bold” */
.hero__tagline-line {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  color: rgba(33, 16, 8, 0.72);
  letter-spacing: 0.07em;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}


/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section {
  padding: 100px 0;
}

.section--cream {
  background: var(--secondary);
}

.section--dark {
  background: var(--off-black);
}

.section--cta {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.section__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
  color: var(--off-black);
  letter-spacing: 0.03em;
}

.section__title--light {
  color: var(--white);
}

.section__body {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: rgba(33, 16, 8, 0.7);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.section__body--light {
  color: rgba(255, 255, 255, 0.75);
}

.section__body--quicksand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.65;
}

.section__body--steps-intro {
  margin-bottom: 28px;
}

.steps--tight-top {
  margin-top: 8px;
}


/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   HIGHLIGHTS (Owner feature rows)
   ═══════════════════════════════════════════ */
.highlights {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 56px;
}

.highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.highlight--reverse {
  direction: rtl;
}

.highlight--reverse > * {
  direction: ltr;
}

.highlight__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight__img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.highlight:hover .highlight__img {
  transform: scale(1.04);
}

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

.highlight__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 111, 0, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.highlight__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--off-black);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.highlight__text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: rgba(33, 16, 8, 0.65);
  line-height: 1.7;
  letter-spacing: 0.01em;
  max-width: 460px;
}

/* Dark variant: same open layout as owner (no boxed cards) */
.highlights--dark .highlight__img {
  max-width: 340px;
}
.highlight__label--on-dark {
  color: var(--primary-light);
  background: rgba(255, 111, 0, 0.18);
  border: 1px solid rgba(255, 122, 26, 0.35);
}
.highlight__title--light {
  color: var(--off-white);
}
.highlight__text--light {
  color: rgba(255, 247, 245, 0.72);
}


/* ═══════════════════════════════════════════
   FEATURE CARDS (walker section + reusable)
   ═══════════════════════════════════════════ */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.features--three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card--dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card--dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.feature-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.feature-card__title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--off-black);
  letter-spacing: 0.04em;
}

.feature-card__title--light {
  color: var(--white);
}

.feature-card__text {
  font-size: 1rem;
  color: rgba(33, 16, 8, 0.6);
  letter-spacing: 0.04em;
}

.feature-card__text--light {
  color: rgba(255, 255, 255, 0.6);
}


/* ═══════════════════════════════════════════
   HOW IT WORKS — App preview (owner)
   ═══════════════════════════════════════════ */
.how-showcase {
  margin: 0 0 8px;
}

.how-showcase--triple {
  margin-top: 4px;
  margin-bottom: 12px;
}

.how-showcase__phones {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  padding: 28px 12px 8px;
  min-height: 380px;
  perspective: 1200px;
}

/* Column: captions sit on section background, not inside dark phone bezel */
.how-showcase__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  transition: transform 0.45s ease;
}

.how-showcase__col--left {
  z-index: 1;
  max-width: 228px;
  transform: perspective(900px) rotateY(8deg) rotateZ(-5deg) translateX(24px) translateY(18px);
}

.how-showcase__col--center {
  z-index: 3;
  max-width: 276px;
  transform: perspective(900px) translateY(-14px);
}

.how-showcase__col--right {
  z-index: 2;
  max-width: 228px;
  transform: perspective(900px) rotateY(-8deg) rotateZ(5deg) translateX(-24px) translateY(18px);
}

.how-showcase--triple:hover .how-showcase__col--left {
  transform: perspective(900px) rotateY(6deg) rotateZ(-4deg) translateX(24px) translateY(14px);
}

.how-showcase--triple:hover .how-showcase__col--center {
  transform: perspective(900px) translateY(-18px);
}

.how-showcase--triple:hover .how-showcase__col--right {
  transform: perspective(900px) rotateY(-6deg) rotateZ(4deg) translateX(-24px) translateY(14px);
}

.how-showcase__device {
  width: 100%;
  margin: 0;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(165deg, #35302e 0%, #161312 55%, #0d0b0a 100%);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 18px 44px rgba(33, 16, 8, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.45s ease;
}

.how-showcase__device--featured {
  padding: 12px;
  border-radius: 42px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 26px 56px rgba(33, 16, 8, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.how-showcase__device--featured .how-showcase__screen {
  border-radius: 30px;
}

.how-showcase__screen {
  border-radius: 28px;
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 9 / 19.5;
}

.how-showcase__screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.how-showcase__figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  padding: 0 6px;
  text-align: center;
}

.how-showcase__cap-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--off-black);
}

.how-showcase__cap-hint {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(33, 16, 8, 0.55);
  line-height: 1.45;
  letter-spacing: 0.02em;
  max-width: 200px;
}

/* ═══════════════════════════════════════════
   STEPS (HOW IT WORKS)
   ═══════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step__illustration {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.step__title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.step__text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(33, 16, 8, 0.62);
  letter-spacing: 0.02em;
  line-height: 1.55;
}


/* ═══════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.trust-strip__item {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(33, 16, 8, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-strip__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.trust-strip__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-strip__icon {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.trust-strip__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  color: var(--off-black);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.trust-strip__text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(33, 16, 8, 0.6);
  line-height: 1.6;
  letter-spacing: 0.01em;
}


/* ═══════════════════════════════════════════
   REVIEW CARDS (Testimonials v2)
   ═══════════════════════════════════════════ */
.reviews {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 48px;
  position: relative;
}

.review-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(33, 16, 8, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card__stars {
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 3px;
}

.review-card__quote {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--off-black);
  line-height: 1.65;
  letter-spacing: 0.01em;
  flex-grow: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(33, 16, 8, 0.06);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.review-card__meta {
  display: flex;
  flex-direction: column;
}

.review-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  color: var(--off-black);
  letter-spacing: 0.04em;
}

.review-card__role {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: rgba(33, 16, 8, 0.5);
  letter-spacing: 0.02em;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(33, 16, 8, 0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonials__dot--active {
  background: var(--primary);
}


/* ═══════════════════════════════════════════
   DUO FEATURE (Community Map + Lost & Found)
   ═══════════════════════════════════════════ */
.duo-feature {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 56px;
}

.duo-feature__block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.duo-feature__block--lost {
  grid-template-columns: 1.2fr 1fr;
}

.duo-feature__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.duo-feature__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.duo-feature__block:hover .duo-feature__img {
  transform: scale(1.04);
}

.duo-feature__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.duo-feature__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.duo-feature__label--blue {
  color: var(--service-blue);
  background: rgba(139, 157, 195, 0.15);
}

.duo-feature__label--green {
  color: var(--service-green);
  background: rgba(45, 90, 74, 0.12);
}

.duo-feature__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--off-black);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.duo-feature__text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  color: rgba(33, 16, 8, 0.65);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.duo-feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.duo-feature__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
  position: relative;
}

.duo-feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.duo-feature__list li strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--off-black);
  letter-spacing: 0.04em;
}

.duo-feature__list li span {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(33, 16, 8, 0.6);
  line-height: 1.6;
  letter-spacing: 0.01em;
}


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  max-width: 800px;
  margin: 32px auto 0;
}

.faq__item {
  border-bottom: 1px solid rgba(33, 16, 8, 0.1);
}

.faq__question {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.04em;
  color: var(--off-black);
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

details[open] .faq__question::after {
  content: '−';
}

.faq__answer {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0 0 20px;
  color: rgba(33, 16, 8, 0.65);
  letter-spacing: 0.02em;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-card--standard {
  border: 2px solid var(--primary);
  transform: scale(1.04);
}

.plan-card--standard:hover {
  transform: scale(1.04) translateY(-6px);
}

.plan-card__name {
  font-size: 2rem;
  color: var(--off-black);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.plan-card--basic .plan-card__name { color: var(--service-blue); }
.plan-card--standard .plan-card__name { color: var(--primary); }
.plan-card--unlimited .plan-card__name { color: var(--service-green); }

.plan-card__badge {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.plan-card--basic .plan-card__badge {
  background: rgba(139, 157, 195, 0.15);
  color: var(--service-blue);
}

.plan-card--standard .plan-card__badge {
  background: rgba(255, 111, 0, 0.12);
  color: var(--primary);
}

.plan-card--unlimited .plan-card__badge {
  background: rgba(45, 90, 74, 0.12);
  color: var(--service-green);
}

.plan-card__desc {
  font-size: 1rem;
  color: rgba(33, 16, 8, 0.6);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.plan-card__features {
  text-align: left;
  margin-bottom: 28px;
}

.plan-card__features li {
  font-size: 1rem;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--off-black);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(33, 16, 8, 0.06);
}

.plan-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Open plan tiles (walker section — matches modern owner aesthetic) */
.plans--modern {
  margin-top: 40px;
}

.plans--modern .plan-card {
  background: var(--white);
  border: 1px solid rgba(33, 16, 8, 0.08);
  box-shadow: none;
  border-radius: var(--radius-lg);
  padding: 44px 32px;
}

.plans--modern .plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 111, 0, 0.22);
}

.plans--modern .plan-card--standard {
  transform: none;
  border-width: 2px;
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(255, 111, 0, 0.04) 0%, var(--white) 48%);
}

.plans--modern .plan-card--standard:hover {
  transform: translateY(-4px);
}

.plans--modern .plan-card__desc {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: rgba(33, 16, 8, 0.58);
}

.plans--modern .plan-card__features li {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(33, 16, 8, 0.75);
}


/* ═══════════════════════════════════════════
   CTA / DOWNLOAD SECTION
   ═══════════════════════════════════════════ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Download CTA — real app screenshot in phone frame (matches how-showcase bezel) */
.cta-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-mockup__bezel {
  width: 100%;
  max-width: 288px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(165deg, #35302e 0%, #161312 55%, #0d0b0a 100%);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 20px 56px rgba(33, 16, 8, 0.35);
}

.cta-mockup__screen {
  border-radius: 30px;
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 9 / 19.5;
}

.cta-mockup__screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.cta-split__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-split__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1.05;
}

.cta-split__subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.cta-split__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.store-badges {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.store-badge:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.store-badge__svg {
  height: 48px;
  width: auto;
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--off-black);
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left center;
}

.footer__location {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.footer__heading {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.footer__link {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}

.footer__link:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 100px 24px 60px;
  }

  .hero__illustration {
    order: -1;
  }

  .hero__img {
    max-width: 440px;
    transform: none;
  }

  .hero__content {
    align-items: center;
    padding-bottom: 0;
  }

  .hero__ctas {
    justify-content: center;
  }

  .highlight {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .highlight--reverse {
    direction: ltr;
  }

  .highlight__content {
    align-items: center;
  }

  .highlight__text {
    max-width: 520px;
  }

  .highlight__img {
    max-width: 260px;
  }

  .highlights--dark .highlight__img {
    max-width: 260px;
  }

  .highlights {
    gap: 56px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .features--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-showcase__phones {
    min-height: 340px;
    padding: 20px 8px 4px;
  }

  .how-showcase__col--left {
    max-width: 200px;
    transform: perspective(900px) rotateY(6deg) rotateZ(-4deg) translateX(16px) translateY(22px);
  }

  .how-showcase__col--center {
    max-width: 236px;
    transform: perspective(900px) translateY(-8px);
  }

  .how-showcase__col--right {
    max-width: 200px;
    transform: perspective(900px) rotateY(-6deg) rotateZ(4deg) translateX(-16px) translateY(22px);
  }

  .how-showcase--triple:hover .how-showcase__col--left {
    transform: perspective(900px) rotateY(5deg) rotateZ(-3deg) translateX(16px) translateY(18px);
  }

  .how-showcase--triple:hover .how-showcase__col--center {
    transform: perspective(900px) translateY(-12px);
  }

  .how-showcase--triple:hover .how-showcase__col--right {
    transform: perspective(900px) rotateY(-5deg) rotateZ(3deg) translateX(-16px) translateY(18px);
  }

  .how-showcase--walker .how-showcase__phones {
    min-height: 280px;
  }

  .how-showcase--walker .how-showcase__col--pair-left {
    max-width: 236px;
    transform: perspective(900px) rotateY(5deg) rotateZ(-3deg) translateY(14px);
  }

  .how-showcase--walker .how-showcase__col--pair-right {
    max-width: 236px;
    transform: perspective(900px) rotateY(-5deg) rotateZ(3deg) translateY(14px);
  }

  .how-showcase--walker:hover .how-showcase__col--pair-left {
    transform: perspective(900px) rotateY(4deg) rotateZ(-2deg) translateY(10px);
  }

  .how-showcase--walker:hover .how-showcase__col--pair-right {
    transform: perspective(900px) rotateY(-4deg) rotateZ(2deg) translateY(10px);
  }

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

  .review-card {
    flex: 0 0 calc(50% - 14px);
    min-width: 260px;
  }

  .duo-feature__block,
  .duo-feature__block--lost {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .duo-feature__content {
    align-items: center;
  }

  .duo-feature__list {
    text-align: left;
  }

  .duo-feature__img {
    max-width: 240px;
  }

  .plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .cta-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .cta-split__content {
    align-items: center;
  }

  .store-badges {
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 80px 20px 48px;
  }

  .hero__img {
    max-width: 320px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }

  .highlights {
    gap: 48px;
  }

  .highlight__img {
    max-width: 220px;
  }

  .highlights--dark .highlight__img {
    max-width: 220px;
  }

  .features,
  .features--three {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-showcase__phones {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    gap: 8px;
    padding: 16px 0 8px;
  }

  .how-showcase__col--center {
    order: -1;
  }

  .how-showcase__col--left,
  .how-showcase__col--center,
  .how-showcase__col--right {
    max-width: 268px;
    transform: none;
  }

  .how-showcase__device,
  .how-showcase__device--featured {
    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.08),
      0 16px 40px rgba(33, 16, 8, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }

  .how-showcase--triple:hover .how-showcase__col--left,
  .how-showcase--triple:hover .how-showcase__col--center,
  .how-showcase--triple:hover .how-showcase__col--right {
    transform: none;
  }

  .how-showcase__figcaption {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .reviews {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    flex: none;
    width: 100%;
    max-width: 400px;
    display: flex;
  }

  .duo-feature {
    gap: 56px;
  }

  .duo-feature__img {
    max-width: 200px;
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }

  .plan-card--standard {
    transform: none;
  }

  .plan-card--standard:hover {
    transform: translateY(-6px);
  }

  .plans--modern .plan-card--standard:hover {
    transform: translateY(-4px);
  }

  .cta-split {
    gap: 32px;
  }

  .cta-mockup__bezel {
    max-width: 248px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Small Mobile
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .features,
  .features--three {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .plan-card {
    padding: 32px 20px;
  }
}
