/* ============================================================
   Arcee Stays — Shared Design System
   ============================================================ */
:root {
  --navy: #16294d;
  --navy-deep: #0f2140;
  --orange: #f07c1f;
  --orange-soft: #fff3e8;
  --text: #2b3a52;
  --muted: #6b7a90;
  --line: #e7ecf3;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --radius: 14px;
  --shadow: 0 18px 50px -22px rgba(16, 33, 64, .35);
  --shadow-sm: 0 8px 24px -14px rgba(16, 33, 64, .3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  width: min(1180px, 92%);
  margin-inline: auto
}

.accent {
  color: var(--orange)
}

.navy {
  color: var(--navy)
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .92rem;
  padding: .85rem 1.5rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px
}

.btn-primary {
  background: var(--navy);
  color: #fff
}

.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px)
}

.btn-orange {
  background: var(--orange);
  color: #fff
}

.btn-orange:hover {
  background: #d96a12;
  transform: translateY(-2px)
}

.btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line)
}

.btn-ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px)
}

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

.btn-outline:hover {
  background: var(--navy);
  color: #fff
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 0;
  gap: 1rem
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem
}

.brand img {
  height: 64px;
  width: auto
}

.brand .tag {
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .02em;
  margin-top: 2px
}

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

nav.links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: .2rem 0;
}

nav.links a:hover {
  color: var(--navy)
}

nav.links a.active {
  color: var(--navy);
  font-weight: 600
}

nav.links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg)
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .4) 22%, rgba(255, 255, 255, 0) 45%),
    url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?auto=format&fit=crop&w=1200&q=80') center/cover;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
  padding: 3.4rem 0 3rem
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: .74rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: 30px;
  border: 1px solid #ffe0c4;
  margin-bottom: 1.3rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 1.1rem;
}

.hero h1 span {
  display: block;
  color: var(--orange)
}

.hero p.lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 1.7rem
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem
}

.chips {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap
}

.chip {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .6rem .8rem;
  font-size: .78rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.chip .ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto
}

.chip svg {
  width: 16px;
  height: 16px
}

/* ---------- Phone mockup ---------- */
.phone-stage {
  display: flex;
  justify-content: center
}

.phone {
  width: 290px;
  background: #0c1c38;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(12, 28, 56, .6);
  position: relative;
}

.phone::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 7px;
  background: #22324f;
  border-radius: 8px;
  z-index: 3
}

.phone-screen {
  background: #f4f7fb;
  border-radius: 28px;
  overflow: hidden;
  padding: 1.4rem 1.1rem 1.1rem
}

.ph-welcome small {
  color: var(--muted);
  font-size: .7rem
}

.ph-welcome h3 {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin: .1rem 0 .2rem
}

.ph-welcome p {
  font-size: .68rem;
  color: var(--muted);
  margin-bottom: 1rem
}

.ph-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem
}

.ph-card {
  background: #fff;
  border-radius: 14px;
  padding: .75rem;
  box-shadow: 0 6px 14px -10px rgba(12, 28, 56, .4)
}

.ph-card .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin-bottom: .5rem
}

.ph-card .ic svg {
  width: 18px;
  height: 18px;
  color: var(--orange)
}

.ph-card b {
  font-size: .74rem;
  color: var(--navy);
  display: block
}

.ph-card span {
  font-size: .6rem;
  color: var(--muted)
}

.ph-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border-radius: 12px;
  padding: .6rem .7rem;
  margin-top: .6rem;
  box-shadow: 0 6px 14px -10px rgba(12, 28, 56, .4)
}

.ph-row .ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eef6ee;
  display: grid;
  place-items: center
}

.ph-row .ic svg {
  width: 15px;
  height: 15px;
  color: #3a9d5d
}

.ph-row b {
  font-size: .7rem;
  color: var(--navy)
}

.ph-row span {
  font-size: .56rem;
  color: var(--muted);
  display: block
}

.ph-wa {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center
}

.ph-wa svg {
  width: 16px;
  height: 16px;
  color: #fff
}

/* ---------- Trusted ---------- */
.trusted {
  padding: 1.4rem 0 2.4rem
}

.trusted .label {
  text-align: center;
  font-size: .74rem;
  letter-spacing: .16em;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.2rem
}

.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 2rem;
  box-shadow: var(--shadow-sm);
}

.logos img {
  flex: 1;
  width: auto;
  max-width: 150px;
  max-height: 46px;
  object-fit: contain;
  opacity: 1;
  transition: .25s ease;
}

.logos img:hover {
  transform: scale(1.05);
}

/* ---------- Sections ---------- */
section {
  padding: 3.4rem 0
}

.eyebrow {
  color: var(--orange);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .6rem
}

.sec-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.5px
}

.offer {
  display: grid;
  grid-template-columns: .85fr 2fr;
  gap: 2.5rem;
  align-items: start
}

.offer .intro p {
  color: var(--muted);
  font-size: .95rem;
  margin: 1rem 0 1.3rem
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem
}

.offer-link:hover {
  gap: .7rem
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition: .22s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.feature .ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin-bottom: .85rem
}

.feature .ic svg {
  width: 22px;
  height: 22px;
  color: var(--orange)
}

.feature h4 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .35rem
}

.feature p {
  color: var(--muted);
  font-size: .82rem
}

/* ---------- Why choose ---------- */
.why {
  background: var(--bg-soft)
}

.why .sec-head {
  text-align: center;
  margin-bottom: 2.4rem
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem
}

.why-card {
  text-align: center
}

.why-card .ic {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin: 0 auto .9rem;
  box-shadow: var(--shadow-sm)
}

.why-card .ic svg {
  width: 26px;
  height: 26px;
  color: var(--orange)
}

.why-card h4 {
  color: var(--navy);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .45rem
}

.why-card p {
  color: var(--muted);
  font-size: .8rem
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 1rem 0 3rem;
  background: linear-gradient(100deg, var(--navy-deep) 0%, var(--navy) 45%, rgba(22, 41, 77, .7) 100%),
    url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=1400&q=80') right center/cover;
  color: #fff;
  padding: 2.6rem 2.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px
}

.cta-band p {
  color: #c8d3e6;
  font-size: .95rem;
  margin-top: .6rem;
  max-width: 30rem
}

.cta-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: #aeb9cd
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding: 3rem 0 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.foot-top .brand-col img {
  height: 38px;
  filter: brightness(0) invert(1);
  margin-bottom: .9rem
}

.foot-top .brand-col p {
  font-size: .82rem;
  color: #9aa6bd;
  max-width: 16rem
}

.foot-col h5 {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.foot-col a {
  display: block;
  font-size: .85rem;
  color: #aeb9cd;
  padding: .3rem 0;
  transition: .18s ease
}

.foot-col a:hover {
  color: var(--orange);
  transform: translateX(3px)
}

.foot-social {
  display: flex;
  gap: .6rem;
  margin-top: .2rem
}

.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  transition: .2s ease
}

.foot-social a:hover {
  background: var(--orange);
  transform: translateY(-3px)
}

.foot-social svg {
  width: 17px;
  height: 17px;
  color: #fff
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  flex-wrap: wrap;
  font-size: .82rem
}

.foot .brand-f {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: .1em
}

.foot .brand-f img {
  height: 30px;
  filter: brightness(0) invert(1)
}

.foot-links {
  display: flex;
  gap: 1.6rem
}

.foot-links a:hover {
  color: #fff
}

.foot .copy {
  flex: 1;
  text-align: center;
  min-width: 200px
}

/* ============================================================
   Sub-page hero (Product / Features / Benefits)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg)
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .35) 22%, rgba(255, 255, 255, 0) 48%),
    var(--hero-img) center/cover;
  z-index: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
  padding: 3.6rem 0 3.2rem
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 1.1rem;
}

.page-hero h1 span {
  display: block;
  color: var(--orange)
}

.page-hero p.lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 31rem;
  margin-bottom: 1.7rem
}

.mini-stats {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 1.8rem
}

.mini-stat {
  text-align: center;
  min-width: 92px
}

.mini-stat .ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin: 0 auto .5rem
}

.mini-stat .ic svg {
  width: 20px;
  height: 20px;
  color: var(--orange)
}

.mini-stat b {
  display: block;
  font-size: .82rem;
  color: var(--navy);
  font-weight: 600
}

/* Phone with bg image (sub-page hero) */
.phone-photo {
  width: 290px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(12, 28, 56, .6);
  border: 12px solid #0c1c38;
  position: relative;
}

.phone-photo img {
  width: 100%;
  display: block
}

/* Floating impact panel (benefits hero) */
.impact-panel {
  background: var(--navy-deep);
  color: #fff;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  max-width: 270px
}

.impact-panel h4 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 1rem
}

.impact-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem 0
}

.impact-row .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(240, 124, 31, .18);
  display: grid;
  place-items: center;
  flex: 0 0 auto
}

.impact-row .ic svg {
  width: 17px;
  height: 17px;
  color: var(--orange)
}

.impact-row b {
  font-size: .82rem;
  display: block
}

.impact-row span {
  font-size: .68rem;
  color: #9aa6bd
}

/* ---------- Centered section head ---------- */
.sec-head.center {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.6rem
}

.sec-head.center p {
  color: var(--muted);
  font-size: .95rem;
  margin-top: .7rem
}

/* ============================================================
   Guest Journey timeline (Product)
   ============================================================ */
.journey {
  background: var(--bg-soft)
}

.journey-track {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 1.2rem;
  align-items: stretch
}

.journey-stage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm)
}

.journey-stage .stage-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  padding: .35rem .7rem;
  border-radius: 30px;
  margin-bottom: 1rem
}

.journey-stage.mid .stage-label {
  color: var(--navy);
  background: #eef2f9
}

.journey-stage ul {
  list-style: none
}

.journey-stage li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text);
  padding: .3rem 0
}

.journey-stage li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto
}

.journey-stage .mid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem
}

.journey-chip {
  text-align: center
}

.journey-chip .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin: 0 auto .45rem
}

.journey-chip .ic svg {
  width: 20px;
  height: 20px;
  color: var(--orange)
}

.journey-chip span {
  font-size: .72rem;
  font-weight: 500;
  color: var(--navy)
}

/* ============================================================
   Platform modules (Product) — alternating cards
   ============================================================ */
.modules {
  display: grid;
  gap: 1.2rem
}

.module {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.module:nth-child(even) .module-media {
  order: -1
}

.module-body {
  padding: 1.8rem 2rem
}

.module-body .ic {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1rem
}

.module-body .ic svg {
  width: 26px;
  height: 26px;
  color: var(--orange)
}

.module-body h3 {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .5rem
}

.module-body > p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1rem
}

.module-body ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .9rem
}

.module-body li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--text)
}

.module-body li svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex: 0 0 auto
}

.module-media {
  height: 100%;
  min-height: 230px;
  background-size: cover;
  background-position: center
}

/* ============================================================
   How it works (Product)
   ============================================================ */
.steps {
  display: grid;
  gap: 1rem
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  transition: .2s ease
}

.step:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px)
}

.step .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: .95rem
}

.step b {
  color: var(--navy);
  font-size: .92rem
}

.step span {
  display: block;
  color: var(--muted);
  font-size: .8rem
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start
}

/* Revenue list (Product) */
.rev-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem
}

.rev-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .7rem .9rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy)
}

.rev-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex: 0 0 auto
}

/* ============================================================
   Feature cards with image (Features page)
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .22s ease
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.feat-card .feat-body {
  padding: 1.4rem 1.4rem 1rem
}

.feat-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin-bottom: .85rem
}

.feat-card .ic svg {
  width: 23px;
  height: 23px;
  color: var(--orange)
}

.feat-card h4 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .35rem
}

.feat-card > .feat-body > p {
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: .9rem
}

.feat-card ul {
  list-style: none
}

.feat-card li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text);
  padding: .22rem 0
}

.feat-card li svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex: 0 0 auto
}

.feat-card .feat-img {
  height: 150px;
  background-size: cover;
  background-position: center;
  margin-top: auto
}

/* "Built for hotels" strip */
.builtfor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 1rem
}

.builtfor-item {
  text-align: center
}

.builtfor-item .ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin: 0 auto .8rem;
  box-shadow: var(--shadow-sm)
}

.builtfor-item .ic svg {
  width: 24px;
  height: 24px;
  color: var(--orange)
}

.builtfor-item h4 {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .35rem
}

.builtfor-item p {
  color: var(--muted);
  font-size: .8rem
}

/* ============================================================
   Benefit cards with image (Benefits page)
   ============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .22s ease
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.benefit-card .b-body {
  padding: 1.3rem 1.3rem 1rem
}

.benefit-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin-bottom: .8rem
}

.benefit-card .ic svg {
  width: 23px;
  height: 23px;
  color: var(--orange)
}

.benefit-card h4 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .7rem;
  line-height: 1.2
}

.benefit-card ul {
  list-style: none
}

.benefit-card li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text);
  padding: .25rem 0
}

.benefit-card li svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex: 0 0 auto;
  margin-top: .2rem
}

.benefit-card .b-img {
  height: 130px;
  background-size: cover;
  background-position: center;
  margin-top: auto
}

/* Stats band (Benefits) */
.stats-band {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.4rem;
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2rem;
  align-items: center
}

.stats-band .intro h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px
}

.stats-band .intro p {
  color: var(--muted);
  font-size: .88rem;
  margin: .7rem 0 1.1rem
}

.stat {
  text-align: center;
  border-left: 1px solid var(--line);
  padding-left: 1rem
}

.stat .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin: 0 auto .6rem
}

.stat .ic svg {
  width: 22px;
  height: 22px;
  color: var(--orange)
}

.stat .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1
}

.stat span {
  display: block;
  font-size: .74rem;
  color: var(--muted);
  margin-top: .4rem
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-hero {
  background: var(--bg-soft);
  padding-top: 3.2rem;
  padding-bottom: 3.6rem
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.6rem;
  align-items: start
}

.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 1.1rem
}

.contact-hero h1 span {
  color: var(--orange)
}

.contact-hero p.lead {
  color: var(--muted);
  font-size: .98rem;
  max-width: 30rem;
  margin-bottom: 2rem
}

.contact-points {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap
}

.contact-point {
  max-width: 150px
}

.contact-point .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin-bottom: .6rem
}

.contact-point .ic svg {
  width: 22px;
  height: 22px;
  color: var(--orange)
}

.contact-point b {
  display: block;
  font-size: .85rem;
  color: var(--navy)
}

.contact-point span {
  font-size: .76rem;
  color: var(--muted)
}

/* Form card */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow)
}

.form-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .35rem
}

.form-card .sub {
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 1.4rem
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.field {
  margin-bottom: 1rem
}

.field label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .35rem
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .88rem;
  color: var(--text);
  padding: .75rem .85rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: .18s ease
}

.field textarea {
  resize: vertical;
  min-height: 110px
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 124, 31, .12)
}

.form-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  color: var(--muted);
  margin-top: 1rem
}

.form-note svg {
  width: 15px;
  height: 15px;
  color: #3a9d5d
}

.form-success {
  display: none;
  background: #eafaf0;
  border: 1px solid #bfe6cd;
  color: #2b7a4b;
  border-radius: 10px;
  padding: .8rem 1rem;
  font-size: .85rem;
  margin-bottom: 1rem
}

.form-success.show {
  display: block
}

.form-error {
  display: none;
  background: #fdecec;
  border: 1px solid #f3c2c2;
  color: #b3261e;
  border-radius: 10px;
  padding: .8rem 1rem;
  font-size: .85rem;
  margin-bottom: 1rem
}

.form-error.show {
  display: block
}

/* Connect with team cards */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.connect-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: .22s ease
}

.connect-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.connect-card .ic {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem
}

.connect-card .ic svg {
  width: 26px;
  height: 26px;
  color: var(--orange)
}

.connect-card h4 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .45rem
}

.connect-card p {
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: .9rem
}

.connect-card a.val {
  color: var(--orange);
  font-weight: 600;
  font-size: .95rem
}

.connect-card .hours {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: .3rem
}

/* Demo band (navy, with image side) */
.demo-band {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy-deep);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  margin: 1rem 0 3rem;
  box-shadow: var(--shadow)
}

.demo-band .media {
  background-size: cover;
  background-position: center;
  min-height: 220px
}

.demo-band .body {
  padding: 2.4rem 2.6rem
}

.demo-band .eyebrow {
  color: var(--orange)
}

.demo-band h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: .6rem
}

.demo-band p {
  color: #c8d3e6;
  font-size: .92rem;
  margin-bottom: 1.4rem;
  max-width: 30rem
}

/* ============================================================
   Auth pages (Register / Login)
   ============================================================ */
.auth {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: stretch;
  min-height: calc(100vh - 73px);
}

/* Left dark hero panel */
.auth-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 3rem clamp(1.6rem, 4vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 33, 64, .94) 0%, rgba(15, 33, 64, .82) 45%, rgba(22, 41, 77, .7) 100%),
    var(--auth-img) center/cover;
  z-index: 0;
}

.auth-hero > * {
  position: relative;
  z-index: 1
}

.auth-hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 1rem
}

.auth-hero h1 span {
  display: block;
  color: var(--orange)
}

.auth-hero p.lead {
  color: #c8d3e6;
  font-size: .98rem;
  max-width: 27rem;
  margin-bottom: 1.8rem
}

.auth-feats {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem
}

.auth-feat {
  display: flex;
  align-items: center;
  gap: .9rem
}

.auth-feat .ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  flex: 0 0 auto
}

.auth-feat .ic svg {
  width: 21px;
  height: 21px;
  color: var(--orange)
}

.auth-feat b {
  font-size: .9rem;
  font-weight: 600;
  display: block
}

.auth-feat span {
  font-size: .78rem;
  color: #9aa6bd
}

.auth-hero .phone {
  width: 220px;
  align-self: flex-start
}

.auth-hero .phone-screen {
  padding: 1.1rem .9rem .9rem
}

/* Right form side */
.auth-form-side {
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.6rem clamp(1.2rem, 3vw, 2.6rem);
}

.auth-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  width: 100%;
  max-width: 560px
}

.auth-card.narrow {
  max-width: 430px
}

.auth-card h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.1
}

.auth-card h2 .accent {
  color: var(--orange)
}

.auth-card .sub {
  color: var(--muted);
  font-size: .88rem;
  margin: .4rem 0 1.5rem
}

.auth-card .group-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin: .2rem 0 .8rem
}

.auth-card .group-label span {
  color: var(--muted);
  font-weight: 400
}

/* password field with toggle */
.field.pw {
  position: relative
}

.field.pw .toggle-pw {
  position: absolute;
  right: .7rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  display: grid;
  place-items: center;
  padding: .3rem
}

.field.pw .toggle-pw svg {
  width: 18px;
  height: 18px
}

/* interests checkbox grid */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem .9rem;
  margin-bottom: 1.2rem
}

.check {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  color: var(--text);
  cursor: pointer
}

.check input {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
  flex: 0 0 auto;
  cursor: pointer
}

/* agree rows */
.agree {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .6rem;
  cursor: pointer
}

.agree input {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
  flex: 0 0 auto;
  margin-top: .1rem;
  cursor: pointer
}

.agree a {
  color: var(--orange);
  font-weight: 600
}

/* remember / forgot row */
.form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: .2rem 0 1.3rem
}

.form-meta .agree {
  margin-bottom: 0
}

.form-meta a {
  font-size: .82rem;
  color: var(--orange);
  font-weight: 600;
  white-space: nowrap
}

/* divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 1.3rem 0;
  color: var(--muted);
  font-size: .8rem
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line)
}

/* social buttons */
.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: .7rem .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  transition: .18s ease
}

.social-btn:hover {
  border-color: var(--navy);
  transform: translateY(-2px)
}

.social-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto
}

.auth-swap {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 1.3rem
}

.auth-swap a {
  color: var(--orange);
  font-weight: 600
}

/* trust strip under auth */
.auth-trust {
  padding: 2.4rem 0 1rem
}

/* ============================================================
   Responsive
   ============================================================ */
@media(max-width:980px) {

  .auth {
    grid-template-columns: 1fr
  }

  .auth-hero {
    padding: 2.6rem 1.6rem
  }

  .auth-hero .phone {
    display: none
  }

  .nav-cta .btn-text {
    display: none
  }

  .menu-toggle {
    display: block
  }

  nav.links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .5rem 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .3s ease, opacity .25s ease, visibility .25s ease;
  }

  header.open nav.links {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
  }

  nav.links a {
    padding: .85rem 6%;
    font-size: .95rem;
    border-bottom: 1px solid var(--line);
  }

  nav.links a:last-child {
    border-bottom: none
  }

  nav.links a.active::after {
    display: none
  }

  nav.links a.active {
    color: var(--orange)
  }

  .hero::after,
  .page-hero::after {
    display: none
  }

  .hero-inner,
  .page-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 2.4rem
  }

  .offer {
    grid-template-columns: 1fr
  }

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

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

  .journey-track {
    grid-template-columns: 1fr
  }

  .module,
  .module:nth-child(even) .module-media {
    grid-template-columns: 1fr;
    order: 0
  }

  .module:nth-child(even) .module-body {
    order: 0
  }

  .split-2 {
    grid-template-columns: 1fr;
    gap: 2rem
  }

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

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

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

  .stats-band {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem
  }

  .stats-band .intro {
    grid-column: 1 / -1
  }

  .stat {
    border-left: none;
    padding-left: 0
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .connect-grid {
    grid-template-columns: 1fr
  }

  .demo-band {
    grid-template-columns: 1fr
  }

  .demo-band .media {
    min-height: 160px
  }

  .foot-top {
    grid-template-columns: 1fr 1fr
  }

  .foot-top .brand-col {
    grid-column: 1 / -1
  }
}

@media(max-width:560px) {

  .feature-grid,
  .why-grid,
  .feat-grid,
  .benefit-grid,
  .builtfor {
    grid-template-columns: 1fr
  }

  .logos {
    padding: 1.2rem
  }

  .cta-band {
    padding: 2rem 1.6rem
  }

  .form-row,
  .check-grid {
    grid-template-columns: 1fr
  }

  .module-body ul {
    grid-template-columns: 1fr
  }

  .rev-list {
    grid-template-columns: 1fr
  }

  .stats-band {
    grid-template-columns: 1fr
  }

  .foot-top {
    grid-template-columns: 1fr
  }
}
