/* ===================================================================
   Travbit — landing page styles
   Brand: sunset gradient  red → orange → yellow
   =================================================================== */

:root {
  --red:    #FF2200;
  --orange: #FF7A00;
  --yellow: #FFD400;
  --ink:    #22232B;
  --muted:  #6B6B76;
  --line:   #ECECEF;
  --bg:     #FFFFFF;
  --tint:   #FFF7EE;

  --grad: linear-gradient(135deg, var(--red) 0%, var(--orange) 52%, var(--yellow) 100%);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px -18px rgba(255, 90, 0, .35);
  --shadow-soft: 0 10px 30px -12px rgba(34, 35, 43, .12);

  --maxw: 1120px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: .72rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--lg { padding: .95rem 1.6rem; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.5rem; height: 68px; }
.brand { display: flex; align-items: center; gap: .55rem; margin-right: auto; }
.brand__mark { border-radius: 9px; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--orange); }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .95rem; }
.nav__links a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--orange);
  background: var(--tint);
  padding: .4rem .8rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; letter-spacing: -.02em; }
.hero__lead { margin-top: 1.25rem; font-size: 1.12rem; color: var(--muted); max-width: 34ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero__note { margin-top: 1.1rem; font-size: .9rem; color: var(--muted); }

/* Hero art / app screenshot */
.hero__art { position: relative; display: grid; place-items: center; }
.blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .5; z-index: 0; }
.blob--1 { width: 320px; height: 320px; background: var(--yellow); top: -30px; right: -20px; }
.blob--2 { width: 300px; height: 300px; background: var(--red); bottom: -40px; left: -30px; opacity: .35; }
.hero__shot {
  position: relative; z-index: 1;
  width: min(80%, 320px); height: auto;
  filter: drop-shadow(0 40px 55px rgba(0, 0, 0, .28));
}

/* ---------- Generic section ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tint { background: var(--tint); }
.section__title { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.01em; }
.section__sub { text-align: center; color: var(--muted); margin: .8rem auto 0; max-width: 52ch; font-size: 1.05rem; }

/* ---------- Feature cards ---------- */
.cards {
  margin-top: 2.6rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--tint);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1rem;
}
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .96rem; }

/* ---------- Build your own itinerary ---------- */
.builder { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.builder__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.01em; }
.builder__lead { color: var(--muted); font-size: 1.08rem; margin-top: 1rem; max-width: 46ch; }
.steps { margin: 1.7rem 0; display: grid; gap: 1.1rem; }
.steps li { display: flex; gap: .9rem; align-items: flex-start; }
.steps__num {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.steps h3 { font-size: 1.05rem; font-weight: 700; }
.steps p { color: var(--muted); font-size: .95rem; margin-top: .15rem; }

.builder__art { display: grid; place-items: center; }
.trip-card {
  width: min(100%, 360px); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 1.5rem;
}
.trip-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.trip-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.trip-card__badge { background: var(--tint); color: var(--orange); font-weight: 600; font-size: .78rem; padding: .3rem .7rem; border-radius: 999px; }
.trip-day { font-family: var(--font-head); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 1rem 0 .5rem; }
.trip-stop {
  display: flex; align-items: center; gap: .7rem; padding: .75rem .85rem;
  border: 1px solid var(--line); border-radius: 12px; margin-bottom: .5rem;
  font-size: .92rem; color: #3c3d45; background: #fff;
}
.trip-stop__dot { flex: none; width: 12px; height: 12px; border-radius: 50%; background: var(--grad); }
.trip-stop--add { color: var(--orange); font-weight: 600; border-style: dashed; justify-content: center; }

/* ---------- Audience pills ---------- */
.pills { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.pill {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .7rem 1.15rem; font-weight: 500; font-size: .96rem; box-shadow: var(--shadow-soft);
}

/* ---------- Pricing ---------- */
.pricing {
  margin-top: 2.8rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch;
}
.plan {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.plan--featured { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-6px); }
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px; white-space: nowrap;
}
.plan__icon { margin-bottom: 1rem; }
.plan__passes { display: flex; gap: .5rem; margin-bottom: 1rem; }
.plan h3 { font-size: 1.3rem; font-weight: 700; }
.plan__desc { color: var(--muted); margin-top: .5rem; font-size: .95rem; }
.plan__list { margin: 1.1rem 0 1.6rem; display: grid; gap: .55rem; }
.plan__list li { position: relative; padding-left: 1.6rem; font-size: .94rem; color: #3c3d45; }
.plan__list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800;
}
.plan__cta { margin-top: auto; width: 100%; }

/* ---------- Languages ---------- */
.langs { margin-top: 2.2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.4rem; }
.langs li { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }

/* ---------- Download CTA ---------- */
.cta { padding: clamp(3rem, 7vw, 5rem) 0; }
.cta__inner {
  background: var(--grad); border-radius: 28px; color: #fff; text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem; box-shadow: var(--shadow);
}
.cta__title { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; }
.cta__sub { margin-top: .7rem; font-size: 1.1rem; opacity: .95; }
.store-badges { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.8rem; }
.store-badge {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  background: #101114; color: #fff; border-radius: 12px;
  padding: .6rem 1.2rem; min-width: 168px; text-align: left;
  transition: transform .15s ease;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge__pre { font-size: .72rem; opacity: .85; }
.store-badge__name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.cta__note { margin-top: 1.3rem; font-size: .9rem; opacity: .9; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 2.2rem 0; }
.footer__grid { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 2rem; }
.footer__brand { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; color: var(--orange); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-inline: auto; }
.footer__links a { color: var(--muted); font-size: .93rem; }
.footer__links a:hover { color: var(--ink); }
.footer__copy { color: var(--muted); font-size: .88rem; }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal-hero {
  background: var(--tint);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
.legal-hero p { color: var(--muted); margin-top: .6rem; }
.legal { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem); }
.legal__body { max-width: 760px; margin-inline: auto; }
.legal__body h2 {
  font-size: 1.4rem; font-weight: 700; margin: 2.2rem 0 .7rem;
  padding-top: .4rem; scroll-margin-top: 90px;
}
.legal__body h3 { font-size: 1.1rem; font-weight: 700; margin: 1.4rem 0 .4rem; }
.legal__body p, .legal__body li { color: #3c3d45; font-size: 1rem; }
.legal__body p { margin: .7rem 0; }
.legal__body ul { list-style: disc; padding-left: 1.4rem; margin: .6rem 0; display: grid; gap: .4rem; }
.legal__body a { color: var(--orange); text-decoration: underline; }
.legal__updated {
  display: inline-block; font-size: .85rem; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .35rem .9rem; margin-top: 1rem;
}
.legal__entity {
  margin-top: 2.5rem; padding: 1.3rem 1.5rem; background: var(--tint);
  border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .95rem;
}
.legal__entity strong { color: var(--ink); }
.legal-toc {
  margin: 1.5rem 0 0; padding: 1.2rem 1.5rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.legal-toc p { font-family: var(--font-head); font-weight: 700; margin: 0 0 .6rem; }
.legal-toc ol { margin: 0; padding-left: 1.3rem; display: grid; gap: .3rem; }
.legal-toc a { color: var(--muted); text-decoration: none; font-size: .95rem; }
.legal-toc a:hover { color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__art { margin-top: 1rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .builder { grid-template-columns: 1fr; }
  .builder__lead { max-width: none; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { transform: none; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .nav__cta { display: none; }
  .footer__grid { flex-direction: column; text-align: center; }
  .footer__links { margin-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
