:root {
  --primary: #cf5728;
  --primary-2: #f17845;
  --primary-dark: #9d3917;
  --ink: #181719;
  --ink-2: #211f22;
  --ink-3: #2a272b;
  --paper: #f7f4ef;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-strong: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);
  --green: #68c987;
  --amber: #f4b45e;
  --blue: #77aef2;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open, body.habix-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--primary); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--primary);
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 108px 0; }
.section--tight { padding: 76px 0; }
.section--panel { background: var(--ink-2); }
.section--paper { color: #242124; background: var(--paper); }
.section--glow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 20%, rgba(207, 87, 40, 0.15), transparent 34%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #f49a70;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 99px;
}
.section-title {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.99;
}
.section-title span { color: var(--primary-2); }
.section-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}
.section--paper .section-copy { color: #6a6266; }
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 46px;
}
.section-heading-row .section-copy { max-width: 460px; margin: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(24, 23, 25, 0.90);
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}
.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary-2), var(--primary));
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 24px rgba(207,87,40,.28);
}
.brand-mark img { width: 28px; height: 28px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: rgba(255,255,255,.66);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--primary-2);
  border-radius: 99px;
  transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  display: block;
  content: "";
  background: currentColor;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle span { margin: 4px 0; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  box-shadow: 0 12px 30px rgba(207,87,40,.28);
}
.btn--primary:hover { box-shadow: 0 16px 36px rgba(207,87,40,.38); }
.btn--secondary {
  color: var(--white);
  background: rgba(255,255,255,.06);
  border-color: var(--line);
}
.btn--secondary:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.20); }
.btn--ghost { color: var(--primary-2); background: transparent; border-color: rgba(207,87,40,.35); }
.btn--ghost:hover { background: rgba(207,87,40,.10); }
.btn--small { min-height: 44px; padding: 10px 18px; border-radius: 12px; font-size: .9rem; }
.btn--wide { width: 100%; }
.btn-icon { font-size: 1.1em; }

.hero {
  min-height: 860px;
  display: grid;
  align-items: center;
  padding: 148px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 22%, rgba(207,87,40,.23), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(207,87,40,.12), transparent 28%),
    linear-gradient(180deg, #211b1c 0%, var(--ink) 70%);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .045;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero::after {
  position: absolute;
  right: -140px;
  top: 150px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255,255,255,.018), 0 0 0 120px rgba(255,255,255,.012);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  align-items: center;
  gap: 68px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 14px;
  color: #f4a17a;
  background: rgba(207,87,40,.12);
  border: 1px solid rgba(207,87,40,.34);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 700;
}
.hero-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.6vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: .89;
}
.hero-title span { display: block; color: var(--primary-2); }
.hero-copy {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255,255,255,.45);
  font-size: .88rem;
}
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note span::before { color: var(--green); content: "✓"; font-weight: 800; }

.hero-panel {
  position: relative;
  padding: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.hero-panel::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  background: linear-gradient(145deg, rgba(241,120,69,.35), transparent 38%, rgba(255,255,255,.08));
  border-radius: inherit;
}
.panel-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.panel-title { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; }
.panel-live { display: inline-flex; align-items: center; gap: 7px; color: #a9e3bb; font-size: .76rem; font-weight: 700; }
.panel-live::before { width: 8px; height: 8px; content: ""; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(104,201,135,.12); }
.route-list { display: grid; gap: 12px; }
.route-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  color: var(--white);
  background: rgba(8,8,9,.22);
  border: 1px solid var(--line);
  border-radius: 17px;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.route-card:hover { transform: translateX(4px); border-color: rgba(241,120,69,.45); background: rgba(207,87,40,.09); }
.route-icon { width: 48px; height: 48px; display: grid; place-items: center; background: rgba(255,255,255,.07); border-radius: 14px; font-size: 1.35rem; }
.route-title { display: block; font-weight: 800; }
.route-sub { display: block; margin-top: 2px; color: rgba(255,255,255,.48); font-size: .78rem; }
.route-arrow { color: var(--primary-2); font-size: 1.25rem; }
.panel-foot { margin: 18px 4px 0; color: rgba(255,255,255,.42); font-size: .78rem; }

.trust-strip { position: relative; z-index: 2; margin-top: -34px; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
}
.trust-item { padding: 22px 25px; border-right: 1px solid var(--line-soft); }
.trust-item:last-child { border-right: 0; }
.trust-label { color: rgba(255,255,255,.42); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.trust-value { margin-top: 4px; font-family: var(--font-display); font-size: 1.07rem; font-weight: 800; }

.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.path-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: 26px;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.path-card:hover { transform: translateY(-7px); border-color: rgba(241,120,69,.40); box-shadow: 0 22px 55px rgba(0,0,0,.24); }
.path-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  content: "";
  background: radial-gradient(circle, rgba(207,87,40,.24), transparent 68%);
}
.path-number { color: rgba(255,255,255,.26); font-size: .75rem; font-weight: 800; letter-spacing: .15em; }
.path-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 28px 0 24px; background: rgba(207,87,40,.13); border: 1px solid rgba(207,87,40,.27); border-radius: 18px; font-size: 1.7rem; }
.path-card h3 { margin: 0; font-family: var(--font-display); font-size: 1.65rem; letter-spacing: -.03em; line-height: 1.1; }
.path-card p { margin: 14px 0 24px; color: var(--muted); }
.path-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: #f19a71; font-weight: 800; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; counter-reset: step; }
.step-card { position: relative; padding: 28px; background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 22px; counter-increment: step; }
.step-card::before { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 22px; content: counter(step, decimal-leading-zero); color: var(--white); background: var(--primary); border-radius: 13px; font-family: var(--font-display); font-weight: 800; }
.step-card h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 1.25rem; }
.step-card p { margin: 0; color: var(--muted); }

.habix-showcase { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; }
.habix-orb {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}
.habix-orb::before, .habix-orb::after { position: absolute; content: ""; border-radius: 50%; }
.habix-orb::before { width: 390px; height: 390px; background: radial-gradient(circle at 35% 30%, #ff9464, var(--primary) 45%, #6b1f0d 100%); box-shadow: 0 36px 90px rgba(207,87,40,.32); }
.habix-orb::after { width: 470px; height: 470px; border: 1px solid rgba(207,87,40,.25); box-shadow: 0 0 0 42px rgba(207,87,40,.035); }
.habix-face { position: relative; z-index: 1; font-size: 7.5rem; filter: drop-shadow(0 12px 16px rgba(0,0,0,.22)); }
.float-chip { position: absolute; z-index: 2; max-width: 220px; padding: 13px 16px; color: #2f282a; background: var(--paper); border-radius: 14px; box-shadow: 0 18px 45px rgba(0,0,0,.25); font-size: .86rem; font-weight: 700; }
.float-chip--one { top: 65px; right: -8px; }
.float-chip--two { bottom: 70px; left: -2px; }
.habix-list { display: grid; gap: 15px; margin: 30px 0; padding: 0; list-style: none; }
.habix-list li { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; color: var(--muted-strong); }
.habix-list span { width: 38px; height: 38px; display: grid; place-items: center; background: rgba(207,87,40,.12); border: 1px solid rgba(207,87,40,.25); border-radius: 11px; }

.campus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.campus-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: #272225;
  background: #fff;
  border: 1px solid #e5ded8;
  border-radius: 22px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.campus-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(54,35,24,.12); }
.campus-tag { align-self: flex-start; padding: 6px 10px; color: #a8411d; background: #fff0e8; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.campus-card h3 { margin: 24px 0 10px; font-family: var(--font-display); font-size: 1.4rem; line-height: 1.1; }
.campus-card p { margin: 0; color: #746b6f; }
.campus-card strong { margin-top: auto; padding-top: 24px; color: var(--primary); }

.app-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 68px; }
.phone-shell {
  position: relative;
  width: min(100%, 370px);
  margin: auto;
  padding: 13px;
  background: #111;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 45px;
  box-shadow: 0 35px 80px rgba(0,0,0,.42);
}
.phone-notch { width: 110px; height: 25px; position: absolute; z-index: 2; top: 18px; left: 50%; transform: translateX(-50%); background: #0c0c0c; border-radius: 0 0 16px 16px; }
.phone-screen { min-height: 690px; padding: 55px 20px 24px; overflow: hidden; background: linear-gradient(180deg, #252326, #1c1b1d); border-radius: 34px; }
.phone-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.phone-head strong { font-family: var(--font-display); }
.score-card { padding: 20px; background: linear-gradient(145deg, rgba(207,87,40,.24), rgba(255,255,255,.05)); border: 1px solid rgba(207,87,40,.30); border-radius: 20px; }
.score-top { display: flex; align-items: end; justify-content: space-between; }
.score-number { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; line-height: 1; }
.score-number small { color: rgba(255,255,255,.4); font-size: 1rem; }
.score-status { color: #a9e3bb; font-size: .78rem; font-weight: 800; }
.progress { height: 7px; margin-top: 16px; overflow: hidden; background: rgba(255,255,255,.09); border-radius: 99px; }
.progress span { width: 82%; height: 100%; display: block; background: linear-gradient(90deg, var(--primary), var(--green)); border-radius: inherit; }
.room-list { display: grid; gap: 10px; margin-top: 18px; }
.room-row { display: grid; grid-template-columns: 9px 1fr auto; align-items: center; gap: 11px; padding: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: 15px; }
.room-dot { width: 9px; height: 9px; background: var(--green); border-radius: 50%; }
.room-dot--amber { background: var(--amber); }
.room-dot--red { background: #ea6d6d; }
.room-name { font-size: .82rem; font-weight: 800; }
.room-meta { color: rgba(255,255,255,.42); font-size: .67rem; }
.room-score { font-family: var(--font-display); font-weight: 800; }
.feature-list { display: grid; gap: 14px; margin: 32px 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 43px 1fr; gap: 14px; align-items: start; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.feature-list li:last-child { border-bottom: 0; }
.feature-list .icon { width: 43px; height: 43px; display: grid; place-items: center; background: rgba(255,255,255,.06); border-radius: 13px; }
.feature-list strong { display: block; margin-bottom: 2px; }
.feature-list p { margin: 0; color: var(--muted); font-size: .92rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.feature-card { padding: 25px; background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 20px; }
.feature-card .icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; background: rgba(207,87,40,.12); border-radius: 14px; font-size: 1.3rem; }
.feature-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.14rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.pricing-wrap { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 60px; }
.price-card { padding: 34px; background: linear-gradient(150deg, rgba(255,255,255,.10), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.15); border-radius: 28px; box-shadow: var(--shadow); }
.price-label { display: inline-block; padding: 7px 11px; color: #ffd2bd; background: rgba(207,87,40,.16); border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price-old { margin-top: 22px; color: rgba(255,255,255,.35); text-decoration: line-through; }
.price { display: flex; align-items: flex-end; gap: 7px; margin: 2px 0 16px; }
.price strong { font-family: var(--font-display); font-size: clamp(3.6rem, 8vw, 5.8rem); letter-spacing: -.07em; line-height: .95; }
.price span { padding-bottom: 9px; color: var(--muted); }
.price-list { display: grid; gap: 11px; margin: 26px 0; padding: 0; list-style: none; color: var(--muted-strong); }
.price-list li::before { margin-right: 10px; color: var(--green); content: "✓"; font-weight: 900; }

.faq-list { max-width: 900px; margin: 46px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: var(--white); background: none; border: 0; text-align: left; font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; }
.faq-question::after { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; content: "+"; color: var(--primary-2); background: rgba(207,87,40,.10); border-radius: 9px; font-family: var(--font-body); font-size: 1.25rem; transition: transform .2s ease; }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .3s ease; }
.faq-answer > div { padding: 0 50px 24px 0; }

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 48px;
  overflow: hidden;
  background: linear-gradient(135deg, #f07945, #bd461d);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(150,50,18,.27);
}
.cta-panel::after { position: absolute; right: -70px; top: -120px; width: 300px; height: 300px; content: ""; border: 1px solid rgba(255,255,255,.20); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.045), 0 0 0 90px rgba(255,255,255,.025); }
.cta-panel h2 { position: relative; z-index: 1; max-width: 720px; margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.045em; line-height: 1; }
.cta-panel p { position: relative; z-index: 1; max-width: 680px; margin: 15px 0 0; color: rgba(255,255,255,.83); }
.cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; }
.cta-panel .btn--secondary { background: #fff; color: #8f3416; border-color: #fff; }

.page-hero { padding: 160px 0 80px; background: radial-gradient(circle at 80% 10%, rgba(207,87,40,.20), transparent 31%), linear-gradient(180deg, #211b1c, var(--ink)); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 54px; }
.page-title { margin: 0; font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6.3rem); font-weight: 800; letter-spacing: -.06em; line-height: .93; }
.page-title span { color: var(--primary-2); }
.page-lead { margin: 24px 0 0; color: var(--muted-strong); font-size: 1.18rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: rgba(255,255,255,.42); font-size: .82rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); }
.page-side-card { padding: 27px; background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 23px; }
.page-side-card h2 { margin: 0 0 10px; font-family: var(--font-display); font-size: 1.25rem; }
.page-side-card p { margin: 0 0 20px; color: var(--muted); }

.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; align-items: start; gap: 48px; }
.prose h2, .prose h3 { font-family: var(--font-display); letter-spacing: -.03em; }
.prose h2 { margin: 50px 0 16px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 30px 0 10px; font-size: 1.25rem; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: #f19a71; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li + li { margin-top: 8px; }
.info-box { margin: 28px 0; padding: 22px; background: rgba(207,87,40,.10); border: 1px solid rgba(207,87,40,.28); border-radius: 18px; }
.info-box strong { display: block; margin-bottom: 5px; color: var(--white); }
.sidebar { position: sticky; top: 105px; display: grid; gap: 16px; }
.sidebar-card { padding: 24px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 20px; }
.sidebar-card h3 { margin: 0 0 10px; font-family: var(--font-display); }
.sidebar-card p { margin: 0 0 18px; color: var(--muted); font-size: .9rem; }
.link-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.link-list a { display: flex; justify-content: space-between; gap: 10px; color: var(--muted-strong); text-decoration: none; }
.link-list a:hover { color: var(--primary-2); }

.lead-form { display: grid; gap: 17px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: grid; gap: 7px; }
.form-group--full { grid-column: 1 / -1; }
.form-label { color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 700; }
.form-control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus { border-color: rgba(241,120,69,.70); box-shadow: 0 0 0 4px rgba(207,87,40,.10); }
.form-control::placeholder { color: rgba(255,255,255,.28); }
select.form-control option { color: #222; }
textarea.form-control { min-height: 125px; resize: vertical; }
.form-consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: rgba(255,255,255,.48); font-size: .78rem; }
.form-consent input { margin-top: 3px; accent-color: var(--primary); }
.form-status { min-height: 22px; color: #a9e3bb; font-size: .86rem; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.form-card { padding: 32px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.form-card h2 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.8rem; }
.form-card > p { margin: 0 0 25px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 38px; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { padding: 22px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 18px; }
.contact-card strong { display: block; margin-bottom: 4px; }
.contact-card a { color: #f19a71; text-decoration: none; }

.site-footer { padding: 62px 0 28px; background: #121113; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr .7fr .7fr; gap: 38px; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; color: rgba(255,255,255,.42); font-size: .9rem; }
.footer-col h3 { margin: 0 0 14px; color: rgba(255,255,255,.42); font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: var(--primary-2); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; color: rgba(255,255,255,.30); border-top: 1px solid var(--line-soft); font-size: .78rem; }

.modal-backdrop { position: fixed; inset: 0; z-index: 800; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(5,5,6,.74); backdrop-filter: blur(9px); }
.modal-backdrop.is-open { display: flex; }
.modal { width: min(100%, 720px); max-height: calc(100vh - 40px); overflow: auto; padding: 30px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.modal-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.modal-head h2 { margin: 0; font-family: var(--font-display); font-size: 1.8rem; }
.modal-close { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 12px; font-size: 1.3rem; }

.habix-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 650;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary-2), var(--primary));
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(207,87,40,.42);
  font-size: 1.7rem;
  transition: transform .2s ease;
}
.habix-launcher:hover { transform: translateY(-3px) scale(1.03); }
.habix-launcher::after { position: absolute; inset: -6px; content: ""; border: 1px solid rgba(241,120,69,.35); border-radius: 50%; animation: habixPulse 2.3s infinite; }
.habix-panel {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 649;
  width: min(390px, calc(100vw - 24px));
  height: min(650px, calc(100vh - 125px));
  display: none;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background: #201e21;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,.48);
}
.habix-panel.is-open { display: grid; animation: habixIn .22s ease both; }
.habix-header { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 16px 17px; background: linear-gradient(135deg, rgba(207,87,40,.24), rgba(255,255,255,.03)); border-bottom: 1px solid var(--line); }
.habix-identity { display: flex; align-items: center; gap: 11px; }
.habix-avatar { width: 43px; height: 43px; display: grid; place-items: center; background: linear-gradient(145deg, var(--primary-2), var(--primary)); border-radius: 13px; font-size: 1.3rem; }
.habix-name { display: block; font-family: var(--font-display); font-weight: 800; }
.habix-status { display: flex; align-items: center; gap: 6px; color: #a9e3bb; font-size: .72rem; }
.habix-status::before { width: 7px; height: 7px; content: ""; background: var(--green); border-radius: 50%; }
.habix-close { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 11px; font-size: 1.15rem; }
.habix-messages { display: flex; flex-direction: column; gap: 11px; overflow-y: auto; padding: 17px; scroll-behavior: smooth; }
.habix-message { max-width: 88%; padding: 11px 13px; border-radius: 15px; font-size: .88rem; white-space: pre-wrap; }
.habix-message--bot { align-self: flex-start; color: rgba(255,255,255,.82); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.07); border-bottom-left-radius: 5px; }
.habix-message--user { align-self: flex-end; color: var(--white); background: var(--primary); border-bottom-right-radius: 5px; }
.habix-message--system { align-self: center; max-width: 95%; color: rgba(255,255,255,.42); background: none; text-align: center; font-size: .72rem; }
.habix-typing { display: inline-flex; gap: 4px; padding: 13px; }
.habix-typing span { width: 6px; height: 6px; background: rgba(255,255,255,.45); border-radius: 50%; animation: typing 1s infinite alternate; }
.habix-typing span:nth-child(2) { animation-delay: .2s; }
.habix-typing span:nth-child(3) { animation-delay: .4s; }
.habix-quick { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.habix-chip { padding: 8px 10px; color: #f6b294; background: rgba(207,87,40,.10); border: 1px solid rgba(207,87,40,.25); border-radius: 999px; font-size: .76rem; font-weight: 700; }
.habix-chip:hover { background: rgba(207,87,40,.18); }
.habix-input-row { display: grid; grid-template-columns: 1fr 43px; gap: 9px; padding: 13px; border-top: 1px solid var(--line); }
.habix-input { width: 100%; min-width: 0; padding: 11px 13px; color: var(--white); background: rgba(255,255,255,.055); border: 1px solid var(--line); border-radius: 13px; outline: 0; }
.habix-input:focus { border-color: rgba(241,120,69,.62); }
.habix-send { width: 43px; height: 43px; display: grid; place-items: center; color: var(--white); background: var(--primary); border: 0; border-radius: 13px; }
.habix-privacy { padding: 0 15px 10px; color: rgba(255,255,255,.27); font-size: .64rem; text-align: center; }

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

@keyframes habixPulse { 0%,100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.16); opacity: 0; } }
@keyframes habixIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes typing { to { transform: translateY(-4px); opacity: .25; } }

@media (max-width: 1040px) {
  .nav-links { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-panel { max-width: 690px; }
  .path-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .path-card:last-child { grid-column: 1 / -1; min-height: 300px; }
  .campus-grid { grid-template-columns: repeat(2, 1fr); }
  .habix-showcase, .app-grid, .pricing-wrap, .contact-grid { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    align-items: stretch;
    padding: 20px;
    background: rgba(24,23,25,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(0,0,0,.35);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { display: block; padding: 13px 10px; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .menu-toggle { display: grid; }
  .nav-actions .btn { display: none; }
  .hero { min-height: auto; }
  .hero::after { opacity: .4; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .trust-item:last-child { border-bottom: 0; }
  .section-heading-row { display: block; }
  .section-heading-row .section-copy { margin-top: 20px; }
  .steps { grid-template-columns: 1fr; }
  .habix-showcase, .app-grid, .pricing-wrap, .page-hero-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .habix-orb { min-height: 440px; }
  .sidebar { position: static; }
  .cta-panel { grid-template-columns: 1fr; padding: 38px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .section { padding: 78px 0; }
  .section--tight { padding: 58px 0; }
  .navbar { min-height: 70px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 1.33rem; }
  .nav-links { inset: 70px 0 auto; }
  .hero { padding: 120px 0 72px; }
  .hero-title { font-size: clamp(3.05rem, 16vw, 5.1rem); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-panel { padding: 18px; border-radius: 22px; }
  .route-card { grid-template-columns: 43px 1fr auto; padding: 13px; }
  .route-icon { width: 43px; height: 43px; }
  .path-grid, .feature-grid, .campus-grid { grid-template-columns: 1fr; }
  .path-card:last-child { grid-column: auto; }
  .path-card { min-height: 315px; }
  .habix-orb { min-height: 360px; }
  .habix-orb::before { width: 270px; height: 270px; }
  .habix-orb::after { width: 330px; height: 330px; }
  .habix-face { font-size: 5.8rem; }
  .float-chip { max-width: 180px; font-size: .72rem; }
  .float-chip--one { top: 28px; right: 0; }
  .float-chip--two { bottom: 24px; left: 0; }
  .phone-shell { width: 330px; }
  .phone-screen { min-height: 620px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: auto; }
  .page-hero { padding: 125px 0 62px; }
  .page-title { font-size: clamp(2.85rem, 15vw, 4.7rem); }
  .cta-panel { padding: 30px 24px; }
  .cta-actions { display: grid; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .modal { padding: 22px; }
  .habix-launcher { right: 14px; bottom: 14px; }
  .habix-panel { right: 12px; bottom: 88px; height: min(650px, calc(100vh - 105px)); }
}

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


/* =========================================================
   HabiRent V2 · App protagonista + servicios diferenciados
   ========================================================= */
.store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.google-play-badge {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 8px 19px 8px 14px;
  color: #fff;
  background: #050505;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 13px;
  box-shadow: 0 14px 34px rgba(0,0,0,.30);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.google-play-badge:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.5); box-shadow: 0 18px 40px rgba(0,0,0,.38); }
.google-play-icon { width: 34px; flex: 0 0 34px; }
.google-play-icon svg { width: 34px; height: 38px; }
.google-play-copy { display: grid; line-height: 1; }
.google-play-copy small { margin-bottom: 4px; font-size: .62rem; font-weight: 600; letter-spacing: .08em; }
.google-play-copy strong { font-size: 1.35rem; font-weight: 600; letter-spacing: -.025em; }
.service-inline-link {
  max-width: 620px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 15px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.service-inline-link:hover { background: rgba(255,255,255,.065); border-color: rgba(241,120,69,.36); }
.service-inline-link > span:first-child { width: 40px; height: 40px; display: grid; place-items: center; background: rgba(207,87,40,.12); border-radius: 11px; }
.service-inline-link strong, .service-inline-link small { display: block; }
.service-inline-link small { margin-top: 2px; color: rgba(255,255,255,.48); font-size: .76rem; }
.service-inline-link b { color: var(--primary-2); font-size: 1.2rem; }
.app-hero-panel .panel-foot { padding-top: 15px; border-top: 1px solid var(--line-soft); }
.mini-dashboard { margin: 3px 0 17px; padding: 19px; background: rgba(8,8,9,.25); border: 1px solid var(--line); border-radius: 18px; }
.mini-dashboard-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.mini-dashboard-head small, .mini-dashboard-head strong { display: block; }
.mini-dashboard-head small { color: rgba(255,255,255,.45); font-size: .72rem; }
.mini-dashboard-head strong { margin-top: 3px; font-family: var(--font-display); font-size: 1.1rem; }
.mini-score { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -.06em; }
.mini-score small { display: inline; font-size: .65rem; }
.mini-dashboard .progress { height: 7px; margin: 17px 0; }
.mini-dashboard .progress span { width: 82%; }
.mini-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mini-metrics div { padding: 10px; background: rgba(255,255,255,.045); border-radius: 11px; }
.mini-metrics small, .mini-metrics strong { display: block; }
.mini-metrics small { color: rgba(255,255,255,.4); font-size: .64rem; }
.mini-metrics strong { margin-top: 2px; font-family: var(--font-display); }
.app-first-grid .path-card--featured { background: linear-gradient(145deg, rgba(207,87,40,.18), rgba(255,255,255,.035)); border-color: rgba(241,120,69,.36); }
.service-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; color: #756c70; font-size: .82rem; font-weight: 700; }
.service-kicker span { padding: 7px 10px; color: #fff; background: var(--primary); border-radius: 999px; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 45px; }
.service-card { display: grid; grid-template-columns: 66px 1fr; gap: 20px; padding: 30px; color: #2a2527; background: #fff; border: 1px solid #e4ddd8; border-radius: 24px; text-decoration: none; box-shadow: 0 16px 35px rgba(55,35,22,.07); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(55,35,22,.12); }
.service-icon { width: 66px; height: 66px; display: grid; place-items: center; background: #fff0e8; border-radius: 19px; font-size: 1.8rem; }
.service-label { color: var(--primary); font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.service-card h3 { margin: 9px 0 10px; font-family: var(--font-display); font-size: 1.55rem; line-height: 1.08; }
.service-card p { margin: 0 0 20px; color: #71696d; }
.service-card strong { color: var(--primary); }
.service-disclaimer { margin-top: 24px; padding: 18px 20px; color: #61585c; background: #efe9e3; border-left: 4px solid var(--primary); border-radius: 13px; }
.service-disclaimer strong { color: #292426; }
.info-box--important { border-left: 4px solid var(--primary); }
.service-page-note { grid-column: 1 / -1; display: grid; gap: 4px; margin-bottom: 4px; padding: 17px 19px; color: var(--muted); background: rgba(207,87,40,.09); border: 1px solid rgba(207,87,40,.24); border-radius: 14px; }
.service-page-note strong { color: #f3a17a; }
.price-card > .google-play-badge { width: 100%; justify-content: center; margin-top: 24px; }
.cta-panel .google-play-badge { position: relative; z-index: 1; }

@media (max-width: 860px) {
  .service-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .store-actions { display: grid; }
  .store-actions > * { width: 100%; }
  .google-play-badge { justify-content: center; }
  .service-inline-link { grid-template-columns: 38px 1fr auto; }
  .service-card { grid-template-columns: 1fr; padding: 24px; }
  .mini-metrics { grid-template-columns: 1fr 1fr 1fr; }
}
