/* =========================================================
   Broperty — Design tokens
   Matched to the real Broperty app UI: warm terracotta-orange
   accent, warm paper background, rounded cards, bold rounded
   sans typography (Plus Jakarta Sans + Inter).
   ========================================================= */

:root{
  --navy: #1E2233;
  --navy-2: #2A3040;
  --blue-mid: #2C4A78;
  --paper: #F4F1EB;
  --paper-2: #ECE7DE;
  --ink: #1E2233;
  --ink-muted: #6B7080;
  --line: #E7E2D8;
  --brass: #D97A46;
  --brass-light: #E89566;
  --brass-tint: #FBEEE5;
  --sage: #2E9A5E;
  --sage-light: #E4F5EC;
  --danger: #D6402A;
  --white: #FFFFFF;

  --font-display: "Plus Jakarta Sans", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Plus Jakarta Sans", "Inter", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --shadow-card: 0 1px 2px rgba(30,34,51,.04), 0 14px 28px -16px rgba(30,34,51,.16);
  --shadow-lift: 0 26px 50px -22px rgba(30,34,51,.28);
}

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

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

h1,h2,h3{
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.4rem, 4.4vw, 4rem); font-weight: 480; }
h2{ font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h3{ font-size: 1.2rem; margin-bottom: .4em; }
p{ margin: 0 0 1em; color: var(--ink-muted); }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
.mono{ font-family: var(--font-mono); }

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

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

:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .8em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-brass{
  background: var(--brass);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-brass:hover{ background: var(--brass-light); transform: translateY(-1px); }
.btn-outline{
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover{ background: var(--navy); color: var(--white); }
.btn-ghost{
  background: transparent;
  color: var(--navy);
  padding: .6em 1em;
}
.btn-ghost:hover{ color: var(--brass); }
.btn-lg{ padding: .95em 1.9em; font-size: 1.02rem; }
.btn-block{ width: 100%; margin-top: 1.4em; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,246,243,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.brand{
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--navy);
  margin-right: auto;
}
.brand-mark{ color: var(--brass); display:flex; }
.brand-mark svg{ width: 26px; height: 26px; }

.main-nav{ display: flex; gap: 2rem; height: 100%; }
.main-nav a{
  display: flex;
  align-items: center;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color .15s ease;
}
.main-nav a:hover{ color: var(--navy); }
.nav-item{ position: relative; height: 100%; display: flex; align-items: center; }
.nav-item.has-mega > a::after{
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-top: -3px;
  opacity: .6;
}
.nav-item.has-mega.nav-active > a{ color: var(--brass); }

/* ---------- Mega menu ---------- */
.mega{
  position: fixed;
  left: 0; right: 0;
  top: 72px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px -24px rgba(30,34,51,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 90;
}
.nav-item.nav-active .mega{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.4rem 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 2.5rem;
}
.mega-col-label{
  font-family: var(--font-mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-muted);
  margin-bottom: 1.1rem;
}
.mega-link{
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .55rem 0;
  border-radius: var(--radius-sm);
}
.mega-link-icon{
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--paper);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mega-link-icon svg{ width: 17px; height: 17px; }
.mega-link-text{ display: flex; flex-direction: column; }
.mega-link-text strong{ font-size: .9rem; font-weight: 600; color: var(--navy); }
.mega-link-text span{ font-size: .78rem; color: var(--ink-muted); margin-top: .1rem; }
.mega-link:hover .mega-link-text strong{ color: var(--brass); }
.mega-link:hover .mega-link-icon{ background: var(--brass-tint); color: var(--brass); }

.mega-simple-list a{
  display: block;
  padding: .5rem 0;
  font-size: .88rem;
  color: var(--ink-muted);
}
.mega-simple-list a:hover{ color: var(--brass); }

.mega-panel{
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 1.5rem;
}
.mega-panel-text{ position: relative; z-index: 1; }
.mega-panel-text p{ color: var(--white); font-weight: 700; font-size: 1.1rem; margin: 0 0 .4rem; font-family: var(--font-display); }
.mega-panel-text a{ color: var(--brass-light); font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }

@media (max-width: 900px){
  .mega{ display: none; }
}

.header-actions{ display: flex; align-items: center; gap: .6rem; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

.mobile-nav{
  display: none;
  flex-direction: column;
  gap: .2rem;
  padding: 1rem 28px 1.5rem;
  border-top: 1px solid var(--line);
}
.mobile-nav a{ padding: .7rem 0; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-nav .btn{ margin-top: .8rem; }

.site-header.nav-open .mobile-nav{ display: flex; }

@media (max-width: 900px){
  .main-nav, .header-actions{ display: none; }
  .nav-toggle{ display: flex; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: 88px 0 100px;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.eyebrow{
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1em;
}
.hero-sub{ font-size: 1.12rem; max-width: 46ch; }
.hero-cta{ display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.6rem 0 1rem; }
.hero-fine{ font-size: .84rem; color: var(--ink-muted); }

.hero-visual{
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-backdrop{
  position: absolute;
  inset: -6% -4%;
  background: linear-gradient(155deg, var(--brass-tint) 0%, #F4F1EB 55%, #EDE9E0 100%);
  border-radius: 40px;
  z-index: 0;
}

/* -------- App dashboard mockup -------- */
.app-mock{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  padding: 1.5rem 1.4rem 1.6rem;
  opacity: 0;
  animation: cardIn .7s ease forwards .15s;
}
.app-mock-head{ display: flex; align-items: center; gap: .7rem; margin-bottom: 1.3rem; }
.avatar{
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  flex-shrink: 0;
}
.app-mock-name{
  display: flex; flex-direction: column;
  font-weight: 700; color: var(--navy); font-size: .95rem;
  margin-right: auto;
}
.app-mock-name small{ font-weight: 500; color: var(--ink-muted); font-size: .76rem; }
.app-mock-bell{
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--paper-2);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.app-mock-bell svg{ width: 16px; height: 16px; }

.app-mock-title{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin: 0 0 .8rem;
}

.stat-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.stat-tile{
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: .85rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.stat-icon{
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--brass-tint);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .1rem;
}
.stat-icon svg{ width: 16px; height: 16px; }
.stat-label{ font-size: .74rem; color: var(--ink-muted); }
.stat-value{ font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.stat-value small{ font-weight: 600; font-size: .78rem; color: var(--ink-muted); }

.app-mock-chart{ background: var(--paper); border-radius: var(--radius-sm); padding: .9rem 1rem 1rem; }
.chart-head{ display: flex; justify-content: space-between; align-items: center; font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: .8rem; }
.chart-pill{ font-weight: 500; font-size: .72rem; color: var(--ink-muted); background: var(--white); padding: .25em .7em; border-radius: 999px; border: 1px solid var(--line); }
.chart-bars{ display: flex; align-items: flex-end; gap: .5rem; height: 64px; }
.chart-bars span{
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--brass-light), var(--brass));
  border-radius: 6px 6px 2px 2px;
}

.hero-card{
  position: absolute;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  gap: .3rem;
  opacity: 0;
  animation: cardIn .6s ease forwards;
}
.card-rent{ bottom: -6%; right: -8%; width: 220px; animation-delay: .8s; }
@keyframes cardIn{ from{ opacity:0; transform: translateY(14px);} to{ opacity:1; transform: translateY(0);} }

.card-label{ font-size: .74rem; color: var(--ink-muted); }
.card-figure{ font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.card-sub{ font-size: .78rem; }
.card-sub.up{ color: var(--sage); }

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; min-height: 380px; margin-bottom: 1.5rem; }
  .card-rent{ position: static; width: auto; margin-top: 1rem; }
}

.hero-solo .hero-inner{ grid-template-columns: 1fr; }
.hero-solo .hero-copy{ max-width: 640px; }
.hero-solo{ padding-bottom: 60px; }

/* ---------- Segments ---------- */
.segments{ padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-kicker{
  font-family: var(--font-mono);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-muted);
  margin-bottom: .6em;
  text-align: center;
}
.segment-row{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem 3rem;
}
.segment-item{
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--navy);
  font-weight: 500;
  font-size: .95rem;
}
.segment-item svg{ width: 22px; height: 22px; color: var(--brass); flex-shrink: 0; }

/* ---------- Section headers ---------- */
.section-head{ max-width: 640px; margin: 0 auto 3.2rem; text-align: center; }
.section-head .section-kicker{ text-align: center; }
.section-sub{ font-size: 1.05rem; }
.section-sub a, .price-desc a, .faq-item p a{ color: var(--brass); font-weight: 600; }
.feature-card p a{ color: var(--brass); font-weight: 600; }

.platform{ padding: 110px 0 60px; }

.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feature-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.feature-lg{ grid-column: span 2; display: flex; flex-direction: column; justify-content: center; }
.feature-icon{
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brass-tint);
  color: var(--brass);
  border-radius: var(--radius-sm);
  margin-bottom: 1.1rem;
}
.feature-icon svg{ width: 22px; height: 22px; }
.feature-card p{ font-size: .95rem; margin: 0; }

@media (max-width: 800px){
  .feature-grid{ grid-template-columns: 1fr; }
  .feature-lg{ grid-column: span 1; }
}

/* ---------- Reporting showcase ---------- */
.reporting{ padding: 100px 0; background: var(--paper-2); }
.reporting .section-kicker{ text-align: left; }
.reporting-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.check-list li{
  position: relative;
  padding-left: 1.6em;
  margin-bottom: .7em;
  color: var(--ink);
  font-size: .96rem;
}
.check-list li::before{
  content: "";
  position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px;
  background: var(--brass);
  border-radius: 2px;
}

/* Property detail mockup panel */
.property-panel{
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 1.5rem 1.5rem 1.7rem;
  box-shadow: var(--shadow-lift);
  max-width: 380px;
  margin: 0 auto;
}
.property-panel-head{
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1rem;
}
.pp-back, .pp-add{
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--navy);
}
.pp-add{ margin-left: auto; }
.pp-title{ font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; }

.pp-photo{ border-radius: var(--radius-sm); overflow: hidden; margin-bottom: .9rem; }
.pp-photo svg{ display: block; width: 100%; height: auto; }

.pp-address{
  display: flex; justify-content: space-between; align-items: center;
  font-size: .84rem; color: var(--ink-muted);
  margin-bottom: 1.2rem;
}
.pp-map{
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--brass-tint); color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pp-summary-head{
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--navy); font-size: .92rem;
  margin-bottom: .8rem;
}
.pp-stats .stat-tile{ gap: .15rem; }
.pp-stats .stat-value{ font-size: 1.25rem; }

.pp-units-head{
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 700; color: var(--navy); font-size: .92rem;
  margin: 1.3rem 0 .8rem;
}
.pp-units-count{ font-weight: 500; color: var(--ink-muted); font-size: .8rem; }
.pp-unit-row{ display: flex; gap: .6rem; }
.pp-unit-chip{
  flex: 1;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: .7rem .5rem;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.pp-unit-chip small{ font-weight: 500; color: var(--ink-muted); font-size: .72rem; }

@media (max-width: 860px){
  .reporting-inner{ grid-template-columns: 1fr; }
}

/* ---------- How it works ---------- */
.how{ padding: 100px 0; }
.how-steps{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2.4rem;
}
.how-num{
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: .85rem;
  display: block;
  margin-bottom: .8rem;
}
.how-step p{ font-size: .95rem; }
.how-step{ border-top: 2px solid var(--navy); padding-top: 1.2rem; }

@media (max-width: 800px){ .how-steps{ grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing{ padding: 100px 0; background: var(--paper-2); }
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.6rem;
  align-items: stretch;
}
.price-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-featured{
  border: 2px solid var(--brass);
  box-shadow: var(--shadow-lift);
}
.price-badge{
  position: absolute; top: -13px; left: 2rem;
  background: var(--brass);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: .3em .8em;
  border-radius: 20px;
}
.price-figure{ font-family: var(--font-display); font-size: 2.1rem; color: var(--navy); margin: .2em 0 .5em; }
.price-figure span{ font-family: var(--font-body); font-size: .95rem; color: var(--ink-muted); font-weight: 500; }
.price-desc{ font-size: .9rem; }
.price-card ul{ margin: 1rem 0; flex-grow: 1; }
.price-card li{
  font-size: .9rem;
  padding: .5em 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.price-card li:last-child{ border-bottom: none; }

@media (max-width: 900px){ .pricing-grid{ grid-template-columns: 1fr; } }

/* ---------- Stats band ---------- */
.stats-band{ padding: 90px 0; }
.stats-inner{ text-align: center; }
.quote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto 2.6rem;
  line-height: 1.4;
}
.quote cite{
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--ink-muted);
  margin-top: 1rem;
}
.stats-row{
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat{ display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.stat-num{ font-size: 2.2rem; color: var(--brass); font-weight: 500; }
.stat span:last-child{ font-size: .85rem; color: var(--ink-muted); }

/* ---------- FAQ ---------- */
.faq{ padding: 100px 0; }
.faq-list{ max-width: 720px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
}
.faq-item summary{
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content: "+";
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: 1.3rem;
  margin-left: 1rem;
}
.faq-item[open] summary::after{ content: "–"; }
.faq-item p{ margin-top: .8rem; font-size: .95rem; }

/* ---------- Final CTA ---------- */
.final-cta{
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--brass-tint) 0%, var(--paper) 60%);
  padding: 110px 0;
  text-align: center;
}
.final-cta h2{ color: var(--navy); }
.final-cta p{ color: var(--ink-muted); font-size: 1.05rem; }
.final-cta-inner{ position: relative; }
.final-cta .hero-fine{ color: var(--ink-muted); margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--paper-2); border-top: 1px solid var(--line); padding-top: 60px; }
.footer-inner{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 50px;
}
.footer-brand p{ font-size: .88rem; max-width: 32ch; margin-top: .8rem; }
.footer-col h4{ font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin-bottom: 1rem; }
.footer-col a{ display: block; font-size: .9rem; color: var(--ink-muted); padding: .35em 0; }
.footer-col a:hover{ color: var(--brass); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  font-size: .82rem;
  color: var(--ink-muted);
}

@media (max-width: 700px){
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* =========================================================
   Business Center page
   ========================================================= */

.switcher-mock{ max-width: 360px; }
.switcher-list{ display: flex; flex-direction: column; gap: .55rem; }
.switcher-row{
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem .9rem;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid transparent;
}
.switcher-row.switcher-active{
  background: var(--brass-tint);
  border-color: var(--brass-light);
}
.switcher-dot{ width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.switcher-name{ display: flex; flex-direction: column; font-weight: 700; font-size: .88rem; color: var(--navy); }
.switcher-name small{ font-weight: 500; font-size: .74rem; color: var(--ink-muted); }
.switcher-check{ color: var(--brass); font-weight: 700; }
.switcher-row.switcher-add{ background: transparent; border: 1px dashed var(--line); color: var(--ink-muted); }
.switcher-plus{
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy); flex-shrink: 0;
}
.switcher-row.switcher-add .switcher-name{ font-weight: 500; color: var(--ink-muted); font-size: .85rem; }

/* Feature strip */
.feature-strip{ padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.6rem;
}
.strip-item{
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.strip-icon{
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--brass-tint);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.strip-icon svg{ width: 17px; height: 17px; }

/* Onboarding steps panel */
.biz-flip{ direction: rtl; }
.biz-flip > *{ direction: ltr; }
.onboard-steps{ display: flex; flex-direction: column; gap: .7rem; margin-top: 1rem; }
.onboard-step{
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem .9rem;
  border-radius: var(--radius-sm);
  background: var(--paper);
  opacity: .6;
}
.onboard-step.onboard-done, .onboard-step.onboard-active{ opacity: 1; }
.onboard-step.onboard-active{ background: var(--brass-tint); }
.onboard-num{
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem; color: var(--ink-muted);
  flex-shrink: 0;
}
.onboard-step.onboard-done .onboard-num{ background: var(--sage); border-color: var(--sage); color: var(--white); }
.onboard-step.onboard-active .onboard-num{ background: var(--brass); border-color: var(--brass); color: var(--white); }
.onboard-text{ display: flex; flex-direction: column; font-weight: 700; font-size: .88rem; color: var(--navy); }
.onboard-text small{ font-weight: 500; font-size: .76rem; color: var(--ink-muted); }
.onboard-check{ margin-left: auto; color: var(--sage); font-weight: 700; }

@media (max-width: 860px){
  .biz-flip{ direction: ltr; }
}

/* Quote grid */
.biz-quotes .section-kicker{ margin-bottom: 2.4rem; }
.quote-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.quote-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
}
.quote-card p{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.45;
  margin-bottom: 1.2rem;
}
.quote-card cite{
  display: flex;
  align-items: center;
  gap: .6rem;
  font-style: normal;
  font-size: .82rem;
  color: var(--ink-muted);
}
.quote-avatar{
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  flex-shrink: 0;
}

@media (max-width: 860px){
  .quote-grid{ grid-template-columns: 1fr; }
}

/* Single-column featured pricing card for Business Center */
.pricing-grid-single{ max-width: 400px; margin: 0 auto; }
.pricing-footnote{ text-align: center; margin-top: 2rem; font-size: .9rem; }
.pricing-footnote a{ color: var(--brass); font-weight: 600; }
