/* =========================================================
   MYKIRANA - DESIGN TOKENS
========================================================= */
:root{
  --cream:        #FBF8F3;
  --cream-deep:   #F4EDE3;
  --rose:         #FCEEE8;
  --rose-deep:    #F6DBCB;
  --espresso:     #3B2E26;
  --espresso-soft:#6E5D50;
  --sage:         #7FA07D;
  --sage-deep:    #5C7C5A;
  --terracotta:   #C08355;
  --tan:          #EFE4D0;
  --white:        #FFFFFF;
  --line:         #E7DCCB;

  --shadow-soft:  0 2px 10px rgba(59,46,38,.06), 0 1px 2px rgba(59,46,38,.04);
  --shadow-lift:  0 18px 40px rgba(59,46,38,.14), 0 4px 10px rgba(59,46,38,.06);
  --shadow-ticket:2px 3px 0 rgba(59,46,38,.08);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --pad: clamp(20px, 5vw, 48px);
  --section-pad: clamp(64px, 9vw, 116px);

  --ease: cubic-bezier(.22,.68,0,1);
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   RESET
========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-display); font-weight: 600; color: var(--espresso); }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
svg{ width: 100%; height: 100%; }

.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--espresso); color: var(--cream);
  padding: 12px 18px; border-radius: var(--r-sm); z-index: 999;
}
.skip-link:focus{ left: 16px; top: 16px; }

:focus-visible{ outline: 2.5px solid var(--terracotta); outline-offset: 3px; }

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-heading{
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  line-height: 1.15;
  max-width: 18ch;
  letter-spacing: -.01em;
}
.section-lede{
  margin-top: 14px;
  font-size: 1.09rem;
  color: var(--espresso-soft);
  max-width: 52ch;
  line-height: 1.6;
}

.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* =========================================================
   BUTTONS
========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn span{ transition: transform .25s var(--ease); }
.btn:hover span{ transform: translateX(3px); }
.btn-primary{ background: var(--espresso); color: var(--cream); }
.btn-primary:hover{ box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.btn-outline{ border-color: var(--espresso); color: var(--espresso); background: transparent; }
.btn-outline:hover{ background: var(--espresso); color: var(--cream); transform: translateY(-2px); }
.btn-ghost{ color: var(--espresso); }
.btn-ghost:hover{ background: var(--tan); }
.btn-sm{ padding: 10px 18px; font-size: .9rem; }
.btn-lg{ padding: 18px 34px; font-size: 1.05rem; }

/* =========================================================
   NAVBAR
========================================================= */
.navbar{
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px var(--pad) 0;
}
.navbar-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px 10px 16px;
  border-radius: 999px;
  background: rgba(251,248,243,.7);
  border: 1px solid rgba(59,46,38,.08);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
}
.navbar.is-scrolled .navbar-inner{
  background: rgba(251,248,243,.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--shadow-soft);
  border-color: rgba(59,46,38,.1);
  padding-top: 7px;
  padding-bottom: 7px;
}
.brand{ display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark{ width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.brand-name{ font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }

.nav-links{ display: flex; align-items: center; gap: 26px; }
.nav-links a{ font-size: .92rem; font-weight: 500; color: var(--espresso-soft); position: relative; padding: 4px 0; }
.nav-links a:hover{ color: var(--espresso); }
.nav-links a::after{
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--terracotta);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after{ width: 100%; }

.navbar-cta{ display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; border-radius: 8px;
}
.nav-toggle span{ width: 20px; height: 2px; background: var(--espresso); margin: 0 auto; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
========================================================= */
.hero{ position: relative; padding: clamp(40px,7vw,72px) 0 40px; overflow: hidden; }
.hero-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.hero-tag{
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--sage-deep);
  background: #EAF1E7;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-heading{
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  max-width: 14ch;
}
.hero-alt{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--terracotta);
  margin-top: 14px;
}
.hero-sub{
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--espresso-soft);
  max-width: 46ch;
  line-height: 1.65;
}
.hero-actions{ display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-note{ margin-top: 16px; font-size: .85rem; color: var(--espresso-soft); opacity: .8; }

.hero-visual{ position: relative; }
.hero-stage{
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  perspective: 1400px;
}
.hero-blob{
  position: absolute;
  inset: -12% -18%;
  background: radial-gradient(closest-side, var(--rose) 0%, rgba(252,238,232,0) 72%);
  z-index: -1;
  border-radius: 50%;
}

.phone-frame{
  position: relative;
  border-radius: 34px;
  background: var(--espresso);
  padding: 12px;
  box-shadow: var(--shadow-lift);
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(1deg);
  transition: transform .5s var(--ease);
}
.hero-stage:hover .phone-frame{ transform: rotateY(-3deg) rotateX(1deg) rotateZ(0deg); }
.phone-notch{
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 16px; background: var(--espresso); border-radius: 0 0 12px 12px; z-index: 2;
}
.phone-screen{ border-radius: 22px; width: 100%; display: block; background: var(--cream); }

.float-card{
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 168px;
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card-label{ font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--terracotta); }
.float-card-value{ font-size: .86rem; font-weight: 600; color: var(--espresso); }

.float-card--order{ top: 2%; left: -18%; animation-delay: 0s; }
.float-card--slot{ top: 42%; right: -22%; animation-delay: 1.4s; }
.float-card--ready{ bottom: 4%; left: -14%; animation-delay: 2.8s; }

@keyframes floaty{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-9px); }
}

.receipt-edge{
  height: 16px;
  margin-top: 40px;
  background:
    linear-gradient(135deg, var(--cream-deep) 25%, transparent 25%) 0 50%,
    linear-gradient(225deg, var(--cream-deep) 25%, transparent 25%) 0 50%;
  background-size: 16px 16px;
  background-repeat: repeat-x;
}

/* =========================================================
   PROBLEM SECTION
========================================================= */
.problem{ padding: var(--section-pad) 0; background: var(--cream); }
.compare{
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.compare-panel{
  border-radius: var(--r-lg);
  padding: clamp(24px,3vw,36px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.compare-panel--before{ background: var(--espresso); color: var(--cream); }
.compare-panel--after{ background: var(--white); border: 1px solid var(--line); }
.compare-kicker{ font-weight: 600; font-size: 1.05rem; margin-bottom: 22px; font-family: var(--font-display); }
.compare-panel--before .compare-kicker{ color: var(--cream); }

.queue-illustration{ position: relative; flex: 1; min-height: 170px; margin-bottom: 20px; }
.queue-row{ display: flex; gap: 6px; align-items: flex-end; }
.dot{ width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(160deg, #8a7062, #5c483c); box-shadow: 0 3px 6px rgba(0,0,0,.25); }
.dot--2{ transform: translateY(-4px) translateX(-6px); }
.dot--3{ transform: translateY(2px) translateX(-14px); }
.dot--4{ transform: translateY(-6px) translateX(-20px); }
.dot--5{ transform: translateY(3px) translateX(-28px); opacity: .8; }
.scribble-note{
  position: absolute;
  background: #EFE0C8;
  color: #3B2E26;
  font-size: .72rem;
  line-height: 1.3;
  padding: 8px 10px;
  border-radius: 4px;
  box-shadow: var(--shadow-ticket);
  font-family: var(--font-body);
}
.note--1{ top: 12px; right: 6%; transform: rotate(-4deg); }
.note--2{ top: 74px; right: 26%; transform: rotate(3deg); }
.phone-ring{
  position: absolute; bottom: 4px; left: 4px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  animation: ring 1.6s ease-in-out infinite;
}
@keyframes ring{
  0%,100%{ transform: rotate(0); }
  10%{ transform: rotate(-14deg); }
  20%{ transform: rotate(12deg); }
  30%{ transform: rotate(-8deg); }
  40%{ transform: rotate(0); }
}

.schedule-illustration{ flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; justify-content: center; }
.slot-row{ display: flex; align-items: center; gap: 12px; }
.slot-time{ width: 52px; font-size: .82rem; font-weight: 600; color: var(--espresso-soft); flex-shrink: 0; }
.slot-fill{ flex: 1; height: 34px; border-radius: var(--r-sm); background: var(--cream-deep); border: 1px solid var(--line); }
.slot-row--active .slot-fill{ background: var(--rose); border-color: var(--rose-deep); }
.slot-check{ width: 26px; height: 26px; border-radius: 50%; background: var(--sage); color: var(--white); font-size: .78rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.tag-list{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.tag-list li{ font-size: .8rem; font-weight: 600; padding: 7px 13px; border-radius: 999px; background: rgba(255,255,255,.1); color: var(--cream); }
.tag-list--positive li{ background: var(--rose); color: var(--espresso); }

/* =========================================================
   SOLUTION - feature cards
========================================================= */
.solution{ padding: var(--section-pad) 0; background: var(--cream-deep); }
.feature-cards{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card{
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.feature-icon{
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--rose); color: var(--terracotta);
  padding: 12px; margin-bottom: 20px;
}
.feature-card h3{ font-size: 1.12rem; margin-bottom: 10px; }
.feature-card p{ font-size: .93rem; color: var(--espresso-soft); line-height: 1.55; }

/* =========================================================
   HOW IT WORKS - ticket timeline
========================================================= */
.how-it-works{ padding: var(--section-pad) 0; background: var(--cream); }
.ticket-timeline{
  margin-top: 50px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ticket-line{
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 0;
  border-top: 2px dashed var(--terracotta);
  opacity: .45;
  z-index: 0;
}
.ticket-step{ position: relative; z-index: 1; }
.ticket-stub{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 18px;
}
.ticket-step h3{ font-size: 1.05rem; margin-bottom: 8px; }
.ticket-step p{ font-size: .9rem; color: var(--espresso-soft); line-height: 1.55; }

/* =========================================================
   PRODUCT SHOWCASE
========================================================= */
.showcase{ padding: var(--section-pad) 0; background: var(--cream-deep); }
.showcase-tabs{
  display: flex;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.tab-btn{
  background: none; border: none; padding: 12px 6px; margin-right: 22px;
  font-size: .95rem; font-weight: 600; color: var(--espresso-soft);
  border-bottom: 2.5px solid transparent; margin-bottom: -1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.tab-btn:hover{ color: var(--espresso); }
.tab-btn.is-active{ color: var(--espresso); border-color: var(--terracotta); }

.showcase-panels{ margin-top: 40px; }
.tab-panel{ display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px,5vw,64px); align-items: center; }
.tab-panel[hidden]{ display: none; }

.showcase-media{ display: flex; justify-content: center; }
.device-frame{
  position: relative;
  border-radius: 30px;
  background: var(--espresso);
  padding: 10px;
  box-shadow: var(--shadow-lift);
  transition: transform .5s var(--ease);
  max-width: 300px;
}
.device-frame--browser{ max-width: 560px; border-radius: 16px; padding: 0 0 10px; }
.device-frame img{ border-radius: 20px; }
.device-frame--browser img{ border-radius: 0 0 8px 8px; }
.browser-bar{ display: flex; gap: 6px; padding: 12px 16px; }
.browser-bar span{ width: 9px; height: 9px; border-radius: 50%; background: rgba(251,248,243,.35); }
.tilt-target:hover{ transform: rotateY(-3deg) rotateX(1.5deg) translateY(-4px) scale(1.015); }

.showcase-text h3{ font-size: 1.35rem; margin-bottom: 12px; }
.showcase-text p{ color: var(--espresso-soft); font-size: 1rem; line-height: 1.65; max-width: 42ch; }

/* =========================================================
   FEATURES GRID
========================================================= */
.features{ padding: var(--section-pad) 0; background: var(--cream); }
.feature-grid{
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
}
.feature-item-icon{
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--tan); color: var(--espresso);
  padding: 10px; margin-bottom: 16px;
}
.feature-item h3{ font-size: 1rem; margin-bottom: 6px; }
.feature-item p{ font-size: .88rem; color: var(--espresso-soft); line-height: 1.5; }

/* =========================================================
   BEFORE / AFTER SLIDER
========================================================= */
.before-after{ padding: var(--section-pad) 0; background: var(--cream-deep); }
.ba-slider{
  position: relative;
  margin-top: 40px;
  height: 340px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.ba-side{
  position: absolute; inset: 0;
  padding: clamp(28px,4vw,44px);
  display: flex; flex-direction: column; justify-content: center;
}
.ba-side > *{ max-width: clamp(150px, 42vw, 260px); }
.ba-before{ background: var(--espresso); color: var(--cream); align-items: flex-end; }
.ba-after{
  background: var(--white);
  clip-path: inset(0 50% 0 0);
}
.ba-title{ font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 18px; }
.ba-side ul{ display: flex; flex-direction: column; gap: 12px; }
.ba-side li{ font-size: .98rem; font-weight: 500; padding-left: 26px; position: relative; }
.ba-before li::before{ content: "\2715"; position: absolute; left: 0; color: #D89A83; font-weight: 700; }
.ba-after li::before{ content: "\2713"; position: absolute; left: 0; color: var(--sage-deep); font-weight: 700; }
.ba-range{
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba-handle{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-lift);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--espresso); pointer-events: none;
  border: 2px solid var(--cream);
}

/* =========================================================
   BUSINESS BENEFITS
========================================================= */
.benefits{ padding: var(--section-pad) 0; background: var(--cream); }
.benefit-cards{ margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.benefit-card{
  border-radius: var(--r-lg);
  padding: clamp(28px,4vw,42px);
  background: var(--white);
  border: 1px solid var(--line);
}
.benefit-card--accent{ background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.benefit-card h3{ font-size: 1.4rem; margin-bottom: 22px; }
.benefit-card--accent h3{ color: var(--cream); }
.benefit-card ul{ display: flex; flex-direction: column; gap: 13px; }
.benefit-card li{ font-size: 1rem; padding-left: 24px; position: relative; }
.benefit-card li::before{ content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); }
.benefit-card--accent li::before{ background: var(--sage); }

/* =========================================================
   COUNTER VISUAL - chaos -> organized tickets
========================================================= */
.counter-visual{ padding: var(--section-pad) 0; background: var(--cream-deep); overflow: hidden; }
.ticket-stage{
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: clamp(30px,5vw,56px) clamp(20px,4vw,40px);
  min-height: 260px;
  position: relative;
}
.ticket-pile{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.mini-ticket{
  background: var(--cream);
  border: 1px dashed var(--terracotta);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: .85rem;
  color: var(--espresso-soft);
  transition: transform 1s var(--ease), box-shadow .6s var(--ease);
  box-shadow: var(--shadow-ticket);
}
.mini-ticket span{ display: block; font-weight: 700; color: var(--espresso); font-size: .82rem; margin-bottom: 4px; }
.mt-1{ transform: rotate(-7deg) translate(4px, 6px); }
.mt-2{ transform: rotate(4deg) translate(-6px, -4px); }
.mt-3{ transform: rotate(-3deg) translate(2px, 10px); }
.mt-4{ transform: rotate(6deg) translate(-3px, -8px); }
.mt-5{ transform: rotate(-5deg) translate(5px, 3px); }
.mt-6{ transform: rotate(3deg) translate(-4px, 7px); }
.ticket-stage.is-organized .mini-ticket{ transform: rotate(0) translate(0,0); box-shadow: var(--shadow-soft); }
.ticket-stage-caption{ text-align: center; margin-top: 26px; font-size: .85rem; color: var(--espresso-soft); }

/* =========================================================
   DEMO CTA
========================================================= */
.demo-cta{ padding: var(--section-pad) 0; background: var(--cream); }
.demo-cta-inner{ background: var(--rose); border-radius: var(--r-lg); padding: clamp(40px,6vw,70px); text-align: center; }
.demo-cta-inner h2{ font-size: clamp(1.8rem, 3.2vw, 2.5rem); max-width: 22ch; margin: 0 auto; }
.demo-cta-inner p{ margin: 18px auto 0; max-width: 48ch; color: var(--espresso-soft); font-size: 1.05rem; }
.demo-cta-actions{ display: flex; justify-content: center; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* =========================================================
   START YOUR JOURNEY
========================================================= */
.journey{ background: var(--espresso); padding: var(--section-pad) 0; }
.journey-inner{ text-align: center; }
.journey-inner h2{ color: var(--cream); font-size: clamp(1.9rem, 3.4vw, 2.8rem); max-width: 20ch; margin: 0 auto; }
.journey-inner p{ color: rgba(251,248,243,.75); max-width: 50ch; margin: 18px auto 0; font-size: 1.06rem; }
.journey-inner .btn{ margin-top: 32px; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ background: var(--cream-deep); padding-top: 56px; }
.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p{ margin-top: 12px; color: var(--espresso-soft); font-size: .95rem; max-width: 30ch; }
.footer-social{ margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer-social a{ display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--espresso-soft); }
.footer-social svg{ width: 18px; height: 18px; flex-shrink: 0; }
.footer-social a:hover{ color: var(--espresso); }
.footer-links{ display: flex; flex-direction: column; gap: 12px; }
.footer-links-title{ font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--espresso-soft); margin-bottom: 4px; }
.footer-links a{ font-size: .95rem; color: var(--espresso-soft); }
.footer-links a:hover{ color: var(--espresso); }
.footer-bottom{ padding: 24px var(--pad) 30px; }
.footer-bottom p{ font-size: .82rem; color: var(--espresso-soft); text-align: center; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px){
  .nav-mobile-wrap{ display: contents; }
  .nav-links, .navbar-cta{ display: none; }
  .nav-toggle{ display: flex; }

  .navbar.is-open .nav-mobile-wrap{
    display: flex; flex-direction: column; gap: 10px;
    position: absolute; top: calc(100% + 8px); left: var(--pad); right: var(--pad);
    background: var(--white); border-radius: var(--r-md); padding: 16px 18px;
    box-shadow: var(--shadow-lift); border: 1px solid var(--line);
  }
  .navbar.is-open .nav-links{
    display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
    position: static; background: none; border: none; box-shadow: none; padding: 0;
  }
  .navbar.is-open .nav-links a{ padding: 10px 4px; width: 100%; }
  .navbar.is-open .navbar-cta{
    display: flex; flex-direction: column; gap: 10px;
    position: static; background: none; border: none; box-shadow: none; padding: 12px 0 0;
    margin-top: 6px; border-top: 1px solid var(--line);
  }
  .navbar.is-open .navbar-cta .btn{ width: 100%; justify-content: center; }

  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; }
  .hero-stage{ max-width: 280px; }

  .compare{ grid-template-columns: 1fr; }
  .feature-cards{ grid-template-columns: repeat(2, 1fr); }
  .ticket-timeline{ grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .ticket-line{ display: none; }
  .tab-panel{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .benefit-cards{ grid-template-columns: 1fr; }
  .ticket-pile{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{ flex-direction: column; }
}

@media (max-width: 560px){
  .feature-cards{ grid-template-columns: 1fr; }
  .ticket-timeline{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
  .ticket-pile{ grid-template-columns: 1fr; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ justify-content: center; }
  .float-card{ min-width: 140px; padding: 10px 12px; }
  .float-card--order{ left: -6%; top: -4%; }
  .float-card--slot{ right: -8%; }
  .float-card--ready{ left: -6%; bottom: -2%; }
  .demo-cta-actions{ flex-direction: column; align-items: stretch; }
  .demo-cta-actions .btn{ justify-content: center; }
  .ba-slider{ height: 400px; }
  .ba-side{ padding: 18px; }
  .ba-title{ font-size: 1.02rem; margin-bottom: 12px; }
  .ba-side li{ font-size: .84rem; padding-left: 20px; }
  .ba-side ul{ gap: 8px; }
}
