/* =========================================================================
   Innovation Rental Solutions — page styles
   Clean white surfaces · navy headings · gold accents · revenue-focused
   ========================================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; }

.wrap { width: min(1180px, 100% - 48px); margin-inline: auto; }
section { position: relative; }
.section-pad { padding: clamp(68px, 9vw, 116px) 0; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--navy); color: #fff; padding: 12px 18px;
  border-radius: var(--radius-md); font-weight: 600; transition: top var(--dur-state) var(--ease-out);
}
.skip-link:focus { top: 16px; color: #fff; }

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--font-body); font-size: var(--t-eyebrow); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.eyebrow.center::before { display: none; }
.lead { font-size: var(--t-lead); line-height: 1.65; color: var(--slate-2); max-width: 58ch; }
.accent { color: var(--gold-dark); }
.on-navy .accent { color: var(--gold-bright); }

.sec-head { max-width: 740px; margin-bottom: clamp(40px, 5vw, 58px); }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 { margin-bottom: 18px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .lead { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  padding: 16px 28px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1; white-space: nowrap;
  transition: transform var(--dur-hover) var(--ease-out),
              background var(--dur-state) var(--ease-out),
              border-color var(--dur-state) var(--ease-out),
              box-shadow var(--dur-state) var(--ease-out),
              color var(--dur-state) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--dur-state) var(--ease-out); }
.btn:hover svg.arrow { transform: translateX(4px); }
/* sheen micro-interaction */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-120%);
}
.btn:hover::after { transform: translateX(120%); transition: transform 600ms var(--ease-out); }

.btn-gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(168,126,62,0.6); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-navy); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border-navy); }
.btn-outline:hover { border-color: var(--navy); background: rgba(11,35,65,0.04); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); padding: 10px 6px; font-weight: 600; }
.btn-ghost:hover { color: var(--gold-dark); }
.btn-lg { font-size: 16.5px; padding: 18px 34px; }

.cta-note { display: flex; align-items: center; gap: 8px; font-size: var(--t-small); color: var(--slate); font-weight: 500; }
.cta-note svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* =========================================================================
   HEADER
   ========================================================================= */
header.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-state) var(--ease-out),
              box-shadow var(--dur-state) var(--ease-out),
              border-color var(--dur-state) var(--ease-out);
}
header.site-header.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 8px 28px -22px rgba(11,35,65,0.45);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { height: 42px; width: auto; display: block; flex-shrink: 0; transition: opacity var(--dur-hover) var(--ease-out); }
.brand:hover .brand-logo { opacity: 0.85; }
.brand-name { font-family: var(--font-heading); line-height: 1.05; }
.brand-name .l1 { display: block; font-weight: 700; font-size: 17px; letter-spacing: 0.12em; color: var(--navy); }
.brand-name .l2 { display: block; font-weight: 600; font-size: 10.5px; letter-spacing: 0.26em; color: var(--gold-dark); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  position: relative; font-weight: 600; font-size: 15px; color: var(--charcoal);
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-state) var(--ease-out);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 13px 22px; font-size: 14.5px; }

.menu-btn { display: none; background: none; border: 0; color: var(--navy); cursor: pointer; padding: 8px; }
.menu-btn svg { width: 28px; height: 28px; display: block; }

.mobile-menu {
  display: none; position: fixed; inset: 76px 0 0; z-index: 49; background: var(--paper);
  flex-direction: column; padding: 28px 24px; gap: 4px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading); font-weight: 700; font-size: 26px; color: var(--navy);
  padding: 14px 0; border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .btn { margin-top: 24px; font-size: 17px; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding: 158px 0 84px;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(196,154,86,0.10), transparent 60%),
    radial-gradient(700px 420px at -8% 32%, rgba(11,35,65,0.05), transparent 60%),
    linear-gradient(var(--paper), var(--off-white));
}
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(40px, 5vw, 64px); align-items: center; }
.hero h1 { margin: 20px 0 22px; }
.hero .lead { margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 18px; }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: 14px; }
.hero-proof .item { display: flex; align-items: center; gap: 8px; font-size: var(--t-small); font-weight: 600; color: var(--slate-2); }
.hero-proof .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.hero-proof .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

.hero-figure { position: relative; }
.hero-figure .photo {
  width: 100%; height: clamp(380px, 42vw, 520px); display: block; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  background: linear-gradient(150deg, var(--navy-wash), var(--gold-soft));
}
.hero-figure::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border-radius: var(--radius-xl); border: 2px solid var(--gold-soft);
  background: linear-gradient(160deg, var(--gold-soft), transparent 70%);
}
.float-card {
  position: absolute; background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift); border: 1px solid var(--border-soft);
  animation: floaty 6s ease-in-out infinite;
}
.proof-shot {
  left: -34px; bottom: -30px; width: min(168px, 32%); padding: 8px;
  animation-delay: 1.2s;
}
.proof-shot img { width: 100%; height: auto; display: block; border-radius: calc(var(--radius-lg) - 6px); }
.proof-shot .cap { font-size: 11px; font-weight: 600; color: var(--slate); text-align: center; padding: 7px 2px 3px; line-height: 1.35; }
.rating-pill {
  right: -18px; top: 26px; display: flex; align-items: center; gap: 12px; padding: 14px 18px;
}
.rating-pill .badge-ic { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; flex-shrink: 0; }
.rating-pill .badge-ic svg { width: 22px; height: 22px; }
.rating-pill .big { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: var(--navy); line-height: 1; }
.rating-pill .stars { color: var(--gold); font-size: 12px; letter-spacing: 1.5px; }
.rating-pill .sub { font-size: 11.5px; color: var(--slate); font-weight: 600; line-height: 1.3; margin-top: 2px; }

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

/* =========================================================================
   STATS BAND
   ========================================================================= */
.stats-band { background: var(--navy); color: #fff; padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: rgba(255,255,255,0.14);
}
.stat .num {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(32px, 3.6vw, 44px); color: var(--gold-bright); line-height: 1;
}
.stat .label { font-size: var(--t-small); font-weight: 500; color: rgba(255,255,255,0.78); margin-top: 8px; letter-spacing: 0.02em; }

/* =========================================================================
   BENEFITS & REVENUE GROWTH
   ========================================================================= */
.benefits { background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card {
  background: var(--off-white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 32px 28px; transition: transform var(--dur-state) var(--ease-out), box-shadow var(--dur-state) var(--ease-out), border-color var(--dur-state) var(--ease-out);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--gold-soft); }
.benefit-card .ic {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy); color: var(--gold-bright);
  display: grid; place-items: center; margin-bottom: 20px;
  transition: transform var(--dur-state) var(--ease-out);
}
.benefit-card:hover .ic { transform: scale(1.08) rotate(-4deg); }
.benefit-card .ic svg { width: 24px; height: 24px; }
.benefit-card h3 { margin-bottom: 10px; font-size: 19px; }
.benefit-card p { font-size: 15px; color: var(--slate-2); line-height: 1.6; margin: 0; }

.growth-banner {
  margin-top: 26px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  background: var(--navy); border-radius: var(--radius-xl); padding: clamp(32px, 4vw, 52px);
  color: #fff; overflow: hidden; position: relative;
}
.growth-banner::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(circle, rgba(196,154,86,0.22), transparent 70%);
}
.growth-banner h3 { color: #fff; font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 12px; }
.growth-banner p { color: rgba(255,255,255,0.78); font-size: 15.5px; line-height: 1.65; margin-bottom: 22px; }
.growth-banner .btn { align-self: flex-start; }
.growth-chart { display: flex; align-items: flex-end; gap: 10px; height: 190px; position: relative; }
.growth-chart .bar {
  flex: 1; border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  transform-origin: bottom; transform: scaleY(0);
  transition: transform 900ms var(--ease-out);
  min-width: 18px;
}
.growth-chart .bar:nth-child(odd) { background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.22)); }
.growth-chart.in .bar { transform: scaleY(1); }
.growth-chart .bar:nth-child(1) { height: 34%; transition-delay: 60ms; }
.growth-chart .bar:nth-child(2) { height: 42%; transition-delay: 140ms; }
.growth-chart .bar:nth-child(3) { height: 50%; transition-delay: 220ms; }
.growth-chart .bar:nth-child(4) { height: 61%; transition-delay: 300ms; }
.growth-chart .bar:nth-child(5) { height: 70%; transition-delay: 380ms; }
.growth-chart .bar:nth-child(6) { height: 82%; transition-delay: 460ms; }
.growth-chart .bar:nth-child(7) { height: 95%; transition-delay: 540ms; }
.growth-note { font-size: 11.5px; color: rgba(255,255,255,0.5); margin-top: 12px; text-align: right; }

/* long-term lease vs short-term rental comparison */
.compare { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-card {
  background: var(--off-white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 32px 30px; display: flex; flex-direction: column;
  transition: transform var(--dur-state) var(--ease-out), box-shadow var(--dur-state) var(--ease-out);
}
.compare-card.win { background: var(--paper); border: 2px solid var(--gold); box-shadow: var(--shadow-card); }
.compare-card.win:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.compare-card h4 { font-size: 17.5px; margin-bottom: 18px; }
.compare-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.compare-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; color: var(--slate-2); }
.compare-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--slate); }
.compare-card.win li { color: var(--charcoal); }
.compare-card.win li svg { color: var(--gold-dark); }
.compare-card .btn { align-self: flex-start; }

/* =========================================================================
   SERVICES — two paths
   ========================================================================= */
.paths { background: var(--off-white); }
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.path-card {
  background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--radius-xl);
  padding: clamp(32px, 3.4vw, 44px);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform var(--dur-state) var(--ease-out), box-shadow var(--dur-state) var(--ease-out);
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.path-card.featured { border: 2px solid var(--gold); box-shadow: var(--shadow-card); }
.path-card .flag {
  position: absolute; top: 0; right: 0; background: var(--gold); color: var(--navy);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 0 0 0 var(--radius-md);
}
.path-card .tag { font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px; }
.path-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 16px; background: var(--gold-soft);
  display: grid; place-items: center; margin-bottom: 20px; color: var(--gold-dark);
}
.path-card .icon-wrap svg { width: 26px; height: 26px; }
.path-card h3 { font-size: clamp(22px, 2.2vw, 26px); margin-bottom: 10px; }
.path-card .desc { color: var(--slate-2); font-size: 15.5px; line-height: 1.6; margin-bottom: 24px; }
.path-card ul { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.path-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--charcoal); line-height: 1.5; }
.path-card li svg { width: 19px; height: 19px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.path-card .btn { margin-top: auto; }

/* =========================================================================
   HOW IT WORKS
   ========================================================================= */
.how { background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.step { padding: 0 22px; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 28px; right: -29px; width: 58px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 11px);
}
.step .dot {
  width: 56px; height: 56px; border-radius: 50%; background: var(--paper);
  border: 2px solid var(--navy); color: var(--navy);
  display: grid; place-items: center; font-family: var(--font-heading); font-weight: 700;
  font-size: 21px; margin-bottom: 20px;
  transition: background var(--dur-state) var(--ease-out), color var(--dur-state) var(--ease-out), border-color var(--dur-state) var(--ease-out), transform var(--dur-state) var(--ease-out);
}
.step:hover .dot { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: scale(1.07); }
.step:first-child .dot { background: var(--navy); color: #fff; }
.step:first-child:hover .dot { background: var(--gold); color: var(--navy); }
.step h4 { font-family: var(--font-heading); font-weight: 700; font-size: 16.5px; margin-bottom: 9px; }
.step p { font-size: 14px; color: var(--slate-2); line-height: 1.6; margin: 0; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials { background: var(--off-white); }

/* host trust card — real Airbnb profile screenshot */
.host-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 52px); align-items: center;
  background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px); box-shadow: var(--shadow-card);
  margin-bottom: clamp(36px, 4vw, 52px);
}
.host-shot { margin: 0; }
.host-shot img {
  width: 100%; height: auto; display: block; border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
}
.host-shot figcaption {
  margin-top: 10px; font-size: 12.5px; font-weight: 600; color: var(--slate);
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.host-shot figcaption::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); flex-shrink: 0;
}
.host-copy .eyebrow { margin-bottom: 14px; }
.host-copy h3 { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 12px; }
.host-copy p { font-size: 15.5px; line-height: 1.7; color: var(--slate-2); margin-bottom: 24px; }
.host-copy p strong { color: var(--navy); }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card {
  background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--dur-state) var(--ease-out), box-shadow var(--dur-state) var(--ease-out);
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.quote-card .stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; }
.quote-card blockquote { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--charcoal); flex: 1; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold-bright);
  display: grid; place-items: center; font-family: var(--font-heading); font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.quote-card .who .name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.quote-card .who .role { font-size: 12.5px; color: var(--slate); }
.testi-foot { margin-top: 30px; text-align: center; font-size: var(--t-small); color: var(--slate); font-weight: 500; }
.testi-foot strong { color: var(--navy); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--off-white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--dur-state) var(--ease-out), box-shadow var(--dur-state) var(--ease-out);
}
.faq-item[open] { border-color: var(--gold); box-shadow: var(--shadow-card); background: var(--paper); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; font-family: var(--font-heading); font-weight: 600; font-size: 16.5px; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform var(--dur-state) var(--ease-out), background var(--dur-state) var(--ease-out);
}
.faq-item summary .plus svg { width: 15px; height: 15px; }
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-item .answer { padding: 0 26px 24px; font-size: 15px; line-height: 1.7; color: var(--slate-2); }
.faq-item .answer p { margin: 0; max-width: none; }
.faq-item[open] .answer { animation: faq-in 320ms var(--ease-out); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 5vw, 64px); align-items: start; }
.contact-info .lead { margin-bottom: 30px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-row { display: flex; align-items: center; gap: 16px; }
.contact-row .ic {
  width: 48px; height: 48px; border-radius: 14px; background: var(--paper);
  border: 1px solid var(--border-soft); display: grid; place-items: center; color: var(--gold-dark); flex-shrink: 0;
}
.contact-row .ic svg { width: 22px; height: 22px; }
.contact-row .k { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.contact-row .v { font-size: 15.5px; font-weight: 600; color: var(--navy); }
.promise {
  display: flex; gap: 12px; align-items: flex-start; background: var(--success-soft);
  border-radius: var(--radius-md); padding: 16px 18px;
}
.promise svg { color: var(--success); width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.promise p { margin: 0; font-size: 14.5px; color: #185B3C; line-height: 1.55; font-weight: 500; }

.form-card {
  background: var(--paper); border: 1px solid var(--border-soft); border-radius: var(--radius-xl);
  padding: clamp(28px, 3.4vw, 40px); box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; color: var(--charcoal); margin-bottom: 7px; }
.field label .opt { color: var(--slate); font-weight: 500; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--charcoal);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--radius-md); background: var(--off-white);
  transition: border-color var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out), background var(--dur-hover);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--navy); background: var(--paper);
  box-shadow: 0 0 0 4px rgba(196,154,86,0.22);
}
.field.invalid input, .field.invalid textarea { border-color: var(--danger); }
.field .err { display: none; color: var(--danger); font-size: 12.5px; font-weight: 600; margin-top: 6px; }
.field.invalid .err { display: block; }

.pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pick label {
  margin: 0; cursor: pointer; text-align: center; padding: 13px 8px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); font-size: 13.5px; font-weight: 600; color: var(--slate-2); background: var(--off-white);
  transition: all var(--dur-hover) var(--ease-out);
}
.pick label:hover { border-color: var(--gold); color: var(--navy); }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick input:focus-visible + label { outline: 3px solid var(--gold); outline-offset: 2px; }
.pick input:checked + label { background: var(--navy); color: #fff; border-color: var(--navy); }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-fine { text-align: center; font-size: 12.5px; color: var(--slate); margin-top: 14px; }

.form-success { display: none; text-align: center; padding: 36px 10px; }
.form-success.show { display: block; }
.form-success .ic {
  width: 72px; height: 72px; border-radius: 50%; background: var(--success-soft); color: var(--success);
  display: grid; place-items: center; margin: 0 auto 20px;
}
.form-success .ic svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--slate-2); font-size: 15px; max-width: 40ch; margin: 0 auto; }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band {
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(196,154,86,0.18), transparent 65%),
    var(--navy);
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band .lead { color: rgba(255,255,255,0.78); margin: 0 auto 32px; }
.cta-band .eyebrow { color: var(--gold-bright); }
.cta-band .cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; align-items: center; }
.cta-band .cta-note { justify-content: center; margin-top: 18px; color: rgba(255,255,255,0.6); }
.cta-band .cta-note svg { color: var(--gold-bright); }

/* =========================================================================
   FOOTER
   ========================================================================= */
footer.site-footer { background: var(--navy-deep); color: #fff; padding: 60px 0 32px; }
.foot-grid { display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand { max-width: 360px; }
.foot-logo-link { display: inline-block; }
.foot-logo-link img { height: 54px; width: auto; display: block; transition: opacity var(--dur-hover) var(--ease-out); }
.foot-logo-link:hover img { opacity: 0.85; }
.foot-brand .brand-name .l1 { color: #fff; }
.foot-brand .brand-name .l2 { color: var(--gold-bright); }
.foot-brand p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.65; margin: 18px 0 0; }
.foot-tagline { display: inline-block; margin-top: 14px; font-family: var(--font-heading); font-weight: 600; font-size: 13.5px; letter-spacing: 0.06em; color: var(--gold-bright); }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0 0 16px; font-weight: 700; font-family: var(--font-body); }
.foot-col a, .foot-col span { display: block; color: rgba(255,255,255,0.78); font-size: 14.5px; margin-bottom: 11px; transition: color var(--dur-hover); }
.foot-col a:hover { color: var(--gold-bright); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 44px; padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,0.45); font-size: 13px;
}
.foot-bottom a { color: rgba(255,255,255,0.55); }
.foot-bottom a:hover { color: var(--gold-bright); }

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-entry) var(--ease-out), transform var(--dur-entry) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 90ms; }
.reveal[data-d="2"] { transition-delay: 180ms; }
.reveal[data-d="3"] { transition-delay: 270ms; }
.reveal[data-d="4"] { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
  .growth-chart .bar { transform: scaleY(1); transition: none; }
  .btn::after { display: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1020px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 620px; }
  .benefit-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
  .host-card { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .growth-banner { grid-template-columns: 1fr; }
  .growth-chart { height: 150px; }
  .path-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .step { padding: 0; }
  .step::after { display: none !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .stat + .stat::before { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-gold { display: none; }
  .menu-btn { display: block; }
  .hero { padding: 122px 0 64px; }
  .hero-figure .photo { height: 320px; }
  .proof-shot { left: 10px; bottom: -26px; }
  .rating-pill { right: 8px; top: 14px; padding: 11px 14px; }
  .benefit-grid, .quote-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .steps { grid-template-columns: 1fr; }
  .brand-name .l2 { display: none; }
  .brand-logo { height: 34px; }
  .foot-logo-link img { height: 46px; }
  .pick { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .nav .btn, .hero-proof .item { width: auto; }
  .hero-cta .btn { width: 100%; }
  .cta-band .cta-row .btn { width: 100%; }
}
