/* ─── einio website — shared stylesheet ──────────────────────────────────── */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ───────────────────────────────────────────────────────── */
:root {
  --brand-darkest:   #1A2E1A;
  --brand-dark:      #243B2A;
  --brand-forest:    #2D5016;
  --brand-medium:    #4A7C59;
  --brand-light:     #7EAF8E;
  --brand-muted:     #B5D4BF;
  --accent-orange:   #FF6B35;
  --accent-orange-dk:#E55A26;
  --accent-blue:     #0066FF;
  --surface-white:   #F8F9FA;
  --surface-light:   #EEF2EE;
  --surface-mid:     #D4E4D8;
  --neutral-900:     #212529;
  --neutral-700:     #495057;
  --neutral-500:     #6C757D;
  --neutral-300:     #CED4DA;
  --neutral-100:     #F1F3F5;
  --white:           #ffffff;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.15), 0 8px 16px rgba(0,0,0,.08);
}

/* ─── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--neutral-900);
  background: var(--surface-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── Layout Helpers ──────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

.container--narrow { max-width: 896px; margin-inline: auto; padding-inline: 1.5rem; }
.container--mid    { max-width: 1152px; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 1024px) {
  .container--narrow, .container--mid { padding-inline: 2.5rem; }
}

/* ─── Typography ──────────────────────────────────────────────────────────── */
.tracking-brand { letter-spacing: 0.07em; }
.text-center { text-align: center; }

/* ─── Animations ──────────────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes orbit-cw  { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes orbit-ccw { from { transform: rotate(0deg); }   to { transform: rotate(-360deg); } }

.animate-float { animation: float 2.8s ease-in-out infinite; }
.orbit-group-cw  { transform-origin: 140px 140px; animation: orbit-cw  18s linear infinite; }
.orbit-group-ccw { transform-origin: 140px 140px; animation: orbit-ccw 28s linear infinite; }

/* ─── NAVBAR ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.navbar--transparent { background: transparent; }
.navbar--scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(206,212,218,.4);
}

.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) { .navbar__inner { height: 80px; } }

.navbar__logo { flex-shrink: 0; }
.navbar__logo img { height: 36px; }
@media (min-width: 1024px) { .navbar__logo img { height: 44px; } }
.navbar__logo--dark  { display: none; }
.navbar__logo--light { display: block; }
.navbar--scrolled .navbar__logo--dark  { display: block; }
.navbar--scrolled .navbar__logo--light { display: none; }

.navbar__nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .navbar__nav { display: flex; } }
@media (min-width: 1024px) { .navbar__nav { gap: 2rem; } }

.navbar__link {
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: opacity .2s;
  background: none; border: none;
}
.navbar__link:hover { opacity: .7; }
.navbar--scrolled .navbar__link { color: var(--brand-darkest); }

.navbar__login {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--white);
  transition: background .2s, border-color .2s, color .2s;
}
.navbar__login:hover { background: rgba(255,255,255,.1); }
.navbar--scrolled .navbar__login {
  border-color: var(--brand-darkest);
  color: var(--brand-darkest);
}
.navbar--scrolled .navbar__login:hover {
  background: var(--brand-darkest);
  color: var(--white);
}
.navbar__login svg { width: 15px; height: 15px; }

.navbar__burger {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: var(--white);
  transition: color .2s;
}
@media (min-width: 768px) { .navbar__burger { display: none; } }
.navbar--scrolled .navbar__burger { color: var(--brand-darkest); }
.navbar__burger svg { width: 22px; height: 22px; }

.navbar__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--neutral-300);
  padding: 1rem .5rem;
  flex-direction: column; gap: .75rem;
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile-link {
  text-align: left; font-size: .875rem; font-weight: 500;
  color: var(--brand-darkest);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.navbar__mobile-link:hover { background: var(--surface-light); }

.navbar__mobile-login {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600;
  color: var(--brand-darkest);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.navbar__mobile-login:hover { background: var(--surface-light); }
.navbar__mobile-login svg { width: 15px; height: 15px; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.footer { padding: 2rem 0; }
.footer--dark { background: var(--brand-darkest); }
.footer--light { background: var(--white); border-top: 1px solid var(--neutral-300); }

.footer__inner {
  display: flex; flex-direction: column; gap: 1.5rem;
}
@media (min-width: 640px) {
  .footer__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer__logo img { height: 36px; }
@media (min-width: 1024px) { .footer__logo img { height: 44px; } }

.footer__nav {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .375rem 1.5rem;
}
.footer__link {
  font-size: .875rem;
  transition: color .2s;
}
.footer--dark  .footer__link { color: rgba(255,255,255,.5); }
.footer--light .footer__link { color: var(--neutral-500); }
.footer--dark  .footer__link:hover { color: rgba(255,255,255,.8); }
.footer--light .footer__link:hover { color: var(--brand-darkest); }

.footer__copy-row {
  border-top: 1px solid;
  margin-top: 1.5rem; padding-top: 1.25rem;
  text-align: center;
}
.footer--dark  .footer__copy-row { border-color: rgba(255,255,255,.1); }
.footer--light .footer__copy-row { border-color: var(--neutral-200); }
.footer__copy { font-size: .75rem; }
.footer--dark  .footer__copy { color: rgba(255,255,255,.3); }
.footer--light .footer__copy { color: var(--neutral-300); }

.footer__lang-row { display: flex; align-items: center; gap: .5rem; justify-content: center; padding: .75rem 0 0; }
.footer__lang-pill {
  font-size: .75rem; font-weight: 500;
  padding: .2rem .6rem; border-radius: 999px;
  text-decoration: none; border: 1px solid transparent;
  transition: color .2s, border-color .2s, background .2s;
}
.footer--dark  .footer__lang-pill        { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.15); }
.footer--dark  .footer__lang-pill:hover  { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.3); }
.footer--dark  .footer__lang-pill.is-active { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.footer--light .footer__lang-pill        { color: var(--neutral-400); border-color: var(--neutral-200); }
.footer--light .footer__lang-pill:hover  { color: var(--brand-darkest); border-color: var(--neutral-400); }
.footer--light .footer__lang-pill.is-active { color: var(--brand-darkest); border-color: var(--brand-darkest); background: var(--neutral-100); }

/* ─── HERO (dark, full viewport) ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--brand-darkest);
  padding: 1.25rem 1.5rem;
}
.hero--installer {
  align-items: flex-start; justify-content: flex-end;
  padding-top: 6rem; padding-bottom: 4rem;
  min-height: 100svh;
}
.hero__invite-msg {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius-full);
    padding: .625rem 1.5rem;
    letter-spacing: .01em;
    backdrop-filter: blur(4px);
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__glow-tr {
  position: absolute; top: -10%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #4A7C59 0%, transparent 70%);
  opacity: .10;
}
.hero__glow-bl {
  position: absolute; bottom: -8%; left: -8%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #2D5016 0%, transparent 70%);
  opacity: .08;
}
.hero__grid {
  position: absolute; inset: 0;
  opacity: .05;
}
.hero__dots {
  position: absolute; inset: 0;
  opacity: .04;
}

.hero__content {
  position: relative; z-index: 10;
  text-align: center;
  max-width: 900px;
}
.hero--installer .hero__content {
  text-align: left; max-width: 720px;
}

.hero__h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero__h1 .accent { color: var(--brand-medium); }

.hero__tagline {
  color: rgba(255,255,255,.7);
  font-size: .9375rem; font-weight: 500; font-style: italic;
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}
.hero--installer .hero__tagline { margin-inline: 0; font-style: normal; font-weight: 300; font-size: 1rem; line-height: 1.65; max-width: 540px; color: rgba(255,255,255,.6); }

.hero__ctas {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 480px) { .hero__ctas { flex-direction: row; justify-content: center; } }
.hero--installer .hero__ctas { justify-content: flex-start; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  color: rgba(255,255,255,.3);
}
.hero__scroll span { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; }
.hero__scroll svg { width: 16px; height: 16px; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .875rem; font-weight: 600;
  padding: .875rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--orange {
  background: var(--accent-orange); color: var(--white);
  box-shadow: var(--shadow-lg);
}
.btn--orange:hover { background: var(--accent-orange-dk); transform: translateY(-1px); box-shadow: var(--shadow-xl); }
.btn--orange:active { transform: translateY(0); }

.btn--outline-white {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); }

.btn--dark {
  background: var(--brand-darkest); color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--dark:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

/* ─── SECTION HEADERS ─────────────────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--brand-medium);
  margin-bottom: .75rem;
}
.section-h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600; letter-spacing: -.02em;
  color: var(--brand-darkest);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-h2--white { color: var(--white); }
.section-sub {
  color: var(--neutral-500);
  font-size: .9375rem; line-height: 1.7;
  max-width: 640px; margin-inline: auto;
}

/* ─── FEATURES SECTION ────────────────────────────────────────────────────── */
.features-section { background: var(--surface-white); padding: 5rem 0; }
@media (min-width: 1024px) { .features-section { padding: 7rem 0; } }

.features-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid rgba(206,212,218,.5);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card__icon svg { width: 28px; height: 28px; }

.feature-card__bar {
  width: 32px; height: 2px;
  border-radius: 2px;
  margin-bottom: 1rem;
  transition: width .3s;
}
.feature-card:hover .feature-card__bar { width: 48px; }

.feature-card__title {
  font-size: 1rem; font-weight: 600; color: var(--brand-darkest);
  margin-bottom: .75rem; line-height: 1.3;
}
.feature-card__body {
  font-size: .875rem; color: var(--neutral-500); line-height: 1.7;
}

/* ─── MISSION SECTION ─────────────────────────────────────────────────────── */
.mission-section { background: var(--brand-darkest); padding: 5rem 0; }
@media (min-width: 1024px) { .mission-section { padding: 7rem 0; } }

.mission-inner {
  display: flex; flex-direction: column; gap: 2.5rem;
}
@media (min-width: 1024px) {
  .mission-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
}

.mission-text { max-width: 540px; }
.mission-h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600; color: var(--white);
  letter-spacing: -.02em; line-height: 1.25;
  margin-bottom: 1.5rem;
}
.mission-body { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; }

.mission-services { flex: 0 0 420px; }
@media (max-width: 1023px) { .mission-services { flex: none; width: 100%; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 480px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-item {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: .875rem 1rem;
  transition: background .2s;
}
.service-item:hover { background: rgba(255,255,255,.1); }
.service-item__icon { color: var(--brand-medium); flex-shrink: 0; }
.service-item__icon svg { width: 18px; height: 18px; }
.service-item__label { font-size: .875rem; color: rgba(255,255,255,.8); font-weight: 300; }

/* ─── CTA SECTION ─────────────────────────────────────────────────────────── */
.cta-section { background: var(--surface-light); padding: 5rem 0; }
@media (min-width: 1024px) { .cta-section { padding: 6rem 0; } }

.cta-h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600; color: var(--brand-darkest);
  letter-spacing: -.02em; line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-body {
  color: var(--neutral-500);
  font-size: 1rem; line-height: 1.7;
  max-width: 480px; margin-inline: auto;
  margin-bottom: 2.5rem;
}
.cta-btns { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 480px) { .cta-btns { flex-direction: row; justify-content: center; } }

/* ─── AGENT ORB ───────────────────────────────────────────────────────────── */
.agents-section { background: var(--white); padding: 5rem 0; }
@media (min-width: 1024px) { .agents-section { padding: 7rem 0; } }

.orb-layout {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
@media (min-width: 1024px) { .orb-layout { flex-direction: row; gap: 4rem; } }

.orb-visual {
  position: relative;
  width: 208px; height: 208px;
  flex-shrink: 0;
}
@media (min-width: 640px)  { .orb-visual { width: 256px; height: 256px; } }
@media (min-width: 1024px) { .orb-visual { width: 288px; height: 288px; } }

.orb-visual svg {
  width: 100%; height: 100%;
  transition: opacity .5s;
}

.orb-center-image {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.orb-center-image img,
.orb-center-image .orb-placeholder {
  width: 68px; height: 68px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: opacity .5s, transform .5s;
}
.orb-center-image img { object-fit: cover; }
.orb-placeholder {
  display: flex; align-items: center; justify-content: center;
}
.orb-placeholder svg { width: 100%; height: 100%; }

.orb-info { flex: 1; min-width: 0; }

.orb-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.orb-tab {
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 500;
  border: 1.5px solid var(--neutral-300);
  color: var(--neutral-700);
  background: transparent;
  transition: all .2s;
}
.orb-tab:hover { border-color: var(--neutral-500); }
.orb-tab.is-active { color: var(--white); border-color: transparent; box-shadow: var(--shadow-sm); }

.orb-agent-detail { transition: opacity .3s, transform .3s; }
.orb-agent-detail.is-transitioning { opacity: 0; transform: translateY(8px); }

.orb-agent-badge {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .25rem;
}
.orb-agent-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.orb-agent-label {
  font-size: .6875rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--neutral-500);
}
.orb-agent-subtitle {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600; color: var(--brand-darkest);
  margin-bottom: .25rem; line-height: 1.2;
}
.orb-agent-tagline {
  font-size: 1rem; font-weight: 500; font-style: italic;
  margin-bottom: 1rem;
}
.orb-agent-desc {
  font-size: .9375rem; color: var(--neutral-700);
  line-height: 1.7; max-width: 540px;
}

/* ─── BENEFITS ────────────────────────────────────────────────────────────── */
.benefits-section { background: var(--surface-white); padding: 5rem 0; }
@media (min-width: 1024px) { .benefits-section { padding: 7rem 0; } }

.benefits-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid rgba(206,212,218,.5);
  transition: transform .3s, box-shadow .3s;
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.benefit-card__head { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-card__check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(26,46,26,.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  transition: background .2s;
}
.benefit-card:hover .benefit-card__check { background: rgba(26,46,26,.1); }
.benefit-card__check svg { width: 14px; height: 14px; color: var(--brand-medium); }
.benefit-card__title { font-size: 1rem; font-weight: 600; color: var(--brand-darkest); margin-bottom: .5rem; line-height: 1.3; }
.benefit-card__desc { font-size: .875rem; color: var(--neutral-500); line-height: 1.7; }

/* ─── PRICING ─────────────────────────────────────────────────────────────── */
.pricing-section { background: var(--brand-darkest); padding: 5rem 0; }
@media (min-width: 1024px) { .pricing-section { padding: 7rem 0; } }

.pricing-intro {
  text-align: center; margin-bottom: 2.5rem;
}
.pricing-principles {
  color: rgba(255,255,255,.55);
  font-size: .875rem; line-height: 1.8;
  list-style: none; display: inline-block; text-align: left;
  margin-bottom: 1.5rem;
}
.pricing-principles li { margin-bottom: .25rem; }
.pricing-principles li::before {
  content: attr(data-num) ') ';
  color: rgba(255,255,255,.3); font-weight: 600;
}
.pricing-h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600; color: var(--white);
  letter-spacing: -.02em; margin-bottom: .75rem;
}

.pricing-toggles {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .pricing-toggles { flex-direction: row; justify-content: center; } }

.toggle-group {
  display: inline-flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  padding: 4px;
}
.toggle-btn {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: all .2s;
  display: flex; align-items: center; gap: .5rem;
}
.toggle-btn:hover { color: var(--white); }
.toggle-btn.is-active { background: var(--white); color: var(--brand-darkest); box-shadow: var(--shadow-sm); }
.toggle-badge {
  font-size: .625rem; font-weight: 700;
  padding: .125rem .375rem;
  border-radius: var(--radius-full);
  background: rgba(255,107,53,.25);
  color: var(--accent-orange);
}
.toggle-btn.is-active .toggle-badge { background: rgba(255,107,53,.15); }

.pricing-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .2s;
}
.plan-card:hover { background: rgba(255,255,255,.08); }
.plan-card--popular {
  background: var(--white) !important;
  border: 2px solid var(--brand-medium);
  box-shadow: var(--shadow-xl);
}

.plan-card__popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent-orange); color: var(--white);
  font-size: .6875rem; font-weight: 700;
  padding: .25rem .875rem;
  border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: .05em;
  white-space: nowrap; box-shadow: var(--shadow-sm);
}

.plan-card__header { margin-bottom: 1rem; padding-top: .5rem; }
.plan-card__tier-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: .25rem; }
.plan-card__tier-label {
  font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.5);
}
.plan-card--popular .plan-card__tier-label { color: var(--brand-medium); }
.plan-card__agents-badge {
  font-size: .6875rem; font-weight: 500;
  padding: .125rem .625rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
}
.plan-card--popular .plan-card__agents-badge { background: rgba(181,212,191,.3); color: var(--brand-darkest); }

.plan-card__user-select {
  display: flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  padding: .5rem .75rem;
  margin-bottom: 1rem;
}
.plan-card--popular .plan-card__user-select { border-color: var(--neutral-300); background: rgba(238,242,238,.6); }
.plan-card__user-select svg { width: 13px; height: 13px; color: rgba(255,255,255,.5); flex-shrink: 0; }
.plan-card--popular .plan-card__user-select svg { color: var(--neutral-300); }
.plan-card__user-select select {
  flex: 1; font-size: .875rem; font-weight: 500;
  background: transparent; border: none; outline: none;
  color: rgba(255,255,255,.8);
  cursor: pointer; appearance: none;
}
.plan-card--popular .plan-card__user-select select { color: var(--brand-darkest); }
.plan-card__user-select .chevron { width: 13px; height: 13px; color: rgba(255,255,255,.4); flex-shrink: 0; }
.plan-card--popular .plan-card__user-select .chevron { color: var(--neutral-300); }

.plan-card__price { margin-bottom: 1.25rem; }
.plan-card__amount { display: flex; align-items: baseline; gap: .25rem; }
.plan-card__amount-value {
  font-size: 2.25rem; font-weight: 700; letter-spacing: -.03em;
  color: var(--white);
}
.plan-card--popular .plan-card__amount-value { color: var(--brand-darkest); }
.plan-card__amount-period { font-size: .875rem; color: rgba(255,255,255,.5); }
.plan-card--popular .plan-card__amount-period { color: var(--neutral-300); }
.plan-card__price-note { font-size: .75rem; margin-top: .25rem; color: rgba(255,255,255,.4); line-height: 1.5; }
.plan-card--popular .plan-card__price-note { color: var(--neutral-500); }
.plan-card__saving { font-weight: 600; color: var(--accent-orange); margin-left: .375rem; }
.plan-card__contact { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.plan-card--popular .plan-card__contact { color: var(--brand-darkest); }

.plan-card__cta {
  width: 100%; padding: .625rem;
  border-radius: var(--radius-md);
  font-size: .875rem; font-weight: 600;
  transition: all .2s;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white); background: transparent;
}
.plan-card__cta:hover { background: rgba(255,255,255,.1); }
.plan-card--popular .plan-card__cta {
  background: var(--brand-darkest); color: var(--white);
  border-color: var(--brand-darkest);
}
.plan-card--popular .plan-card__cta:hover { background: var(--brand-dark); }
.plan-card__contact-cta {
  border-color: rgba(255,255,255,.3); color: var(--white);
}
.plan-card__trial {
  text-align: center; font-size: .6875rem;
  color: rgba(255,255,255,.35); margin-top: .5rem;
}
.plan-card--popular .plan-card__trial { color: var(--neutral-300); }

.plan-card__divider {
  height: 1px; background: rgba(255,255,255,.1);
  margin: 1.25rem 0;
}
.plan-card--popular .plan-card__divider { background: var(--neutral-100); }

.feature-group__label {
  font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(181,212,191,.8);
  margin-top: 1rem; margin-bottom: .5rem;
  display: block;
}
.plan-card--popular .feature-group__label { color: var(--brand-medium); }

.feature-item {
  display: flex; align-items: flex-start; gap: .625rem;
  margin-bottom: .5rem;
}
.feature-item__check { flex-shrink: 0; margin-top: 2px; }
.feature-item__check svg { width: 13px; height: 13px; color: var(--brand-medium); }
.feature-item__text { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.plan-card--popular .feature-item__text { color: var(--neutral-700); }

.pricing-footnote {
  text-align: center; font-size: .75rem;
  color: rgba(255,255,255,.35); margin-top: 2rem;
}

/* ─── LEGAL PAGES ─────────────────────────────────────────────────────────── */
.legal-hero {
  background: var(--brand-darkest);
  padding: 7rem 1.5rem 3rem;
}
.legal-hero__badge {
  display: inline-block;
  font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--brand-medium);
  background: rgba(74,124,89,.1);
  border: 1px solid rgba(74,124,89,.25);
  border-radius: var(--radius-full);
  padding: .25rem .875rem;
  margin-bottom: 1.25rem;
}
.legal-hero__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600; color: var(--white);
  letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: .75rem;
}
.legal-hero__meta {
  display: flex; flex-wrap: wrap; gap: .75rem;
  color: rgba(255,255,255,.4); font-size: .8125rem;
}
.legal-hero__meta span::before { content: '· '; }
.legal-hero__meta span:first-child::before { content: ''; }

.legal-body { background: var(--surface-white); padding: 3rem 1.5rem 5rem; }
.legal-content { max-width: 800px; }

.legal-back {
  display: inline-flex; align-items: center;
  font-size: .875rem; color: var(--brand-medium); font-weight: 500;
  margin-bottom: 2rem;
  transition: color .2s;
}
.legal-back:hover { color: var(--brand-dark); }

.legal-draft {
  background: rgba(255,107,53,.06);
  border: 1px solid rgba(255,107,53,.2);
  border-radius: var(--radius-md);
  padding: .875rem 1rem;
  font-size: .8125rem; color: var(--accent-orange);
  margin-bottom: 2rem; line-height: 1.5;
}

.legal-section { margin-bottom: 2.5rem; }
.legal-section__title {
  font-size: 1.125rem; font-weight: 600; color: var(--brand-darkest);
  margin-bottom: 1rem; line-height: 1.3;
}
.legal-section__sub {
  font-size: 1rem; font-weight: 600; color: var(--brand-darkest);
  margin: 1.25rem 0 .5rem;
}
.legal-p { font-size: .9375rem; color: var(--neutral-700); line-height: 1.75; margin-bottom: .875rem; }
.legal-ul {
  padding-left: 1.25rem; margin-bottom: .875rem;
}
.legal-ul li {
  font-size: .9375rem; color: var(--neutral-700);
  line-height: 1.75; margin-bottom: .375rem;
  list-style: disc;
}

.legal-table {
  width: 100%; border-collapse: collapse;
  font-size: .875rem; margin-bottom: 1.25rem;
  border-radius: var(--radius-md); overflow: hidden;
}
.legal-table th {
  background: var(--brand-darkest); color: var(--white);
  padding: .75rem 1rem; text-align: left; font-weight: 600;
}
.legal-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--neutral-100); color: var(--neutral-700); }
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: var(--surface-white); }

.legal-info-box {
  background: rgba(74,124,89,.06);
  border-left: 3px solid var(--brand-medium);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  font-size: .9375rem; color: var(--neutral-700);
  line-height: 1.7; margin-bottom: 1.25rem;
}
.legal-warn-box {
  background: rgba(255,107,53,.06);
  border-left: 3px solid var(--accent-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  font-size: .9375rem; color: var(--neutral-700);
  line-height: 1.7; margin-bottom: 1.25rem;
}

.rights-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.right-item { display: flex; gap: .875rem; }
.right-label {
  font-weight: 600; color: var(--brand-darkest);
  font-size: .9375rem; white-space: nowrap;
  min-width: 120px;
}
.right-text { font-size: .9375rem; color: var(--neutral-700); line-height: 1.7; }

.legal-contact-card {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  font-size: .9375rem;
}
.legal-contact-card strong { display: block; font-size: 1rem; margin-bottom: .5rem; color: var(--brand-darkest); }
.legal-contact-card p { color: var(--neutral-700); margin-bottom: .25rem; }
.legal-contact-card a { color: var(--brand-medium); text-decoration: underline; }

/* ─── HIDDEN (for JS toggling) ───────────────────────────────────────────── */
.is-hidden { display: none !important; }

/* ─── CONTACT / INFO-REQUEST FORM ────────────────────────────────────────── */
.contact-section {
  background: var(--brand-darkest);
  padding: 5rem 0 6rem;
}
@media (min-width: 1024px) { .contact-section { padding: 7rem 0 8rem; } }

.contact-section .section-label { color: rgba(255,255,255,.5); }
.contact-section .section-h2   { color: var(--white); }
.contact-section .section-sub  { color: rgba(255,255,255,.65); }

.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 600px) { .contact-card { padding: 3rem 3rem; } }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }

.contact-form__field { display: flex; flex-direction: column; gap: .375rem; }

.contact-form__label {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .01em;
}

.contact-form__input {
  font-family: inherit;
  font-size: .9375rem;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.contact-form__input::placeholder { color: rgba(255,255,255,.3); }
.contact-form__input:focus {
  border-color: var(--brand-medium);
  box-shadow: 0 0 0 3px rgba(126,175,142,.25);
  background: rgba(255,255,255,.10);
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
  padding: .875rem 2rem;
  background: var(--accent-orange);
  color: var(--white);
  font-family: inherit;
  font-size: .9375rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background .18s, transform .1s;
  align-self: flex-start;
}
.contact-form__submit:hover { background: #e05a28; }
.contact-form__submit:active { transform: scale(.98); }
.contact-form__submit:disabled { opacity: .6; cursor: not-allowed; }

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 0;
}
.contact-success__icon {
  width: 56px; height: 56px;
  background: var(--brand-medium);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.contact-success__icon svg { width: 28px; height: 28px; }
.contact-success__title {
  font-size: 1.25rem; font-weight: 700; color: var(--white); margin: 0;
}
.contact-success__body {
  font-size: .9375rem; color: rgba(255,255,255,.65); margin: 0; line-height: 1.7;
}