:root{
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;

  /* Clean professional color scheme */
  --surface-page: #ffffff;
  --surface-elev-1: #ffffff;
  --surface-elev-2: #f8f9fa;
  --surface-warm: #f1f3f5;
  --surface-strong: #1a1a1a;

  --text-strong: #1a1a1a;
  --text-body: #495057;
  --text-muted: #6c757d;

  --border-soft: #dee2e6;
  --border-strong: #ced4da;

  /* Primary brand - professional blue */
  --brand-400: #4dabf7;
  --brand-500: #339af0;
  --brand-600: #2563eb;
  --brand-700: #1d4ed8;

  /* Secondary accent - subtle teal */
  --accent-400: #3bc9db;
  --accent-500: #22b8cf;
  --accent-600: #15aabf;

  /* Supporting colors */
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;

  /* Violet/Purple shades */
  --violet-500: #a78bfa;
  --violet-600: #8b5cf6;

  --success-500: #22c55e;
  --danger-500: #ef4444;
  --warning-500: #f59e0b;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(26, 35, 50, 0.05);
  --shadow-sm: 0 4px 12px rgba(26, 35, 50, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 35, 50, 0.1);
  --shadow-lg: 0 24px 56px rgba(26, 35, 50, 0.14);

  --ring: 0 0 0 3px rgba(30, 90, 158, 0.25);
}

html{
  font-family: var(--font-sans);
}

body.site-body{
  background: var(--surface-page);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.site-body p{
  color: var(--text-body);
  line-height: 1.55;
}

body.site-body h1,
body.site-body h2,
body.site-body h3,
body.site-body h4{
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

body.site-body a{
  color: inherit;
  text-decoration: none;
}

body.site-body a.btn-primary,
body.site-body a.site-nav-cta,
body.site-body .btn-primary,
body.site-body a.advisor-cta{
  color: #fff !important;
}

body.site-body :focus-visible{
  outline: none;
  box-shadow: var(--ring);
}

.site-main{
  padding-top: 0;
  padding-bottom: var(--space-5);
}

.skip-link{
  position: absolute;
  left: var(--space-3);
  top: var(--space-2);
  z-index: 9999;
  transform: translateY(-180%);
  transition: transform 160ms ease;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--surface-strong);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-xs);
}

.skip-link:focus-visible{
  transform: translateY(0);
}

.mobile-only{
  display: inline-flex;
}

@media (min-width: 768px){
  .mobile-only{
    display: none !important;
  }
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  will-change: transform;
}

@supports not (backdrop-filter: blur(10px)) {
  .site-header { background: rgba(255, 255, 255, 0.98); }
}

.site-nav-shell{
  position: relative;
}

.site-nav-row{
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.site-brand{
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.site-brand-mark{
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  background: #64748b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.site-brand-mark--admin{
  background: linear-gradient(135deg, #0f172a, #1f2937);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.site-brand-mark--client{
  background: #64748b;
}

.site-brand-copy{
  display: grid;
  gap: 0.05rem;
}

.site-brand-title{
  font-size: 1.12rem;
  line-height: 1;
  font-weight: 800;
  color: var(--text-strong);
}

.site-brand-subtitle{
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.2;
}

@media (max-width: 767px){
  .site-brand-subtitle{
    display: none;
  }
  .site-brand-title{
    font-size: 1rem;
  }
  .site-nav-row{
    min-height: 4.1rem;
  }
}

.site-nav-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.1rem;
  padding: 0 0.72rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--text-body);
  transition: background-color 140ms ease, color 140ms ease;
}

.site-nav-link:hover{
  background: var(--surface-warm);
  color: var(--text-strong);
}

.site-nav-link.is-active{
  background: #f1f5f9;
  color: #334155;
  font-weight: 600;
}

.site-nav-link--danger{
  color: #b91c1c;
}

.site-nav-link--danger:hover{
  color: #991b1b;
  background: #fee2e2;
}

.site-nav-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: var(--radius-pill);
  background: #64748b;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 140ms ease;
}

.site-nav-cta:hover{
  transform: translateY(-1px);
  background: #475569;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-nav-icon-link{
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.62rem;
  color: var(--text-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 140ms ease, color 140ms ease;
}

.site-nav-icon-link:hover{
  background: #ecf3ff;
  color: var(--text-strong);
}

.site-nav-icon-link.is-active{
  background: #e2edff;
  color: #1d4ed8;
}

.site-nav-icon-link--danger{
  color: #b91c1c;
}

.site-nav-icon-link--danger:hover{
  color: #991b1b;
  background: #fee2e2;
}

.site-mobile-toggle{
  align-items: center;
  gap: 0.5rem;
  height: 2.2rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: var(--surface-elev-1);
  color: var(--text-strong);
  font-size: 0.85rem;
  font-weight: 650;
  box-shadow: var(--shadow-xs);
}

.site-mobile-toggle:hover{
  border-color: var(--border-strong);
  background: #f7faff;
}

.site-mobile-toggle-icon{
  width: 1rem;
  height: 0.78rem;
  display: inline-block;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  position: relative;
}

.site-mobile-toggle-icon::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0.29rem;
  border-top: 2px solid currentColor;
}

.mobile-nav-panel{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 0.75rem 0.75rem 0;
  background: transparent;
  max-height: calc(100vh - 4.5rem);
  overflow-y: auto;
}

.mobile-nav-list{
  display: grid;
  gap: 0.5rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.mobile-nav-intro{
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.mobile-nav-link{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 2.6rem;
  padding: 0 0.9rem;
  border-radius: 0.7rem;
  color: var(--text-body);
  border: 1px solid var(--border-soft);
  background: var(--surface-elev-1);
  font-size: 0.86rem;
  font-weight: 600;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus{
  color: var(--text-strong);
  background: #f4f8ff;
  border-color: var(--border-strong);
}

.mobile-nav-cta{
  background: #64748b;
  color: #fff;
  border-color: transparent;
  justify-content: center;
}

.flash-stack{
  display: grid;
  gap: 0.5rem;
}

.flash-banner{
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: var(--surface-elev-1);
  padding: 0.64rem 0.84rem;
  color: var(--text-body);
  font-size: 0.88rem;
  box-shadow: var(--shadow-xs);
}

.flash-error{
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.flash-success{
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.flash-warning{
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.flash-info{
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1e40af;
}

.booking-flow-strip{
  background: #eef4ff;
  border-bottom: 1px solid #dbe7ff;
  color: #1e3a8a;
  font-size: 0.75rem;
}

.site-footer{
  margin-top: 1.8rem;
  padding: 1.8rem 0 1rem;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 247, 252, 0.88));
}

.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

@media (min-width: 768px){
  .footer-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-card{
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow-xs);
}

.footer-title{
  margin: 0 0 0.35rem;
  color: var(--text-strong);
  font-weight: 760;
  font-size: 0.9rem;
}

.footer-text{
  margin: 0.2rem 0;
  color: var(--text-body);
  font-size: 0.88rem;
}

.footer-links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.footer-link{
  color: var(--text-body);
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-link:hover{
  color: var(--brand-700);
}

.footer-bottom{
  margin-top: 0.85rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 0.7rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-division{
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.network-sites-wrap{
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.network-sites-header{
  margin-bottom: 1.2rem;
}

.network-sites-title{
  font-size: 1.6rem;
  font-weight: 760;
  color: var(--text-strong);
  margin: 0 0 0.4rem;
}

.network-sites-subtitle{
  color: var(--text-body);
  font-size: 0.95rem;
  margin: 0;
}

.network-sites-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.network-sites-list li{
  line-height: 1.45;
}

.network-sites-list a{
  font-weight: 700;
  text-decoration: underline;
  color: var(--brand-700);
}

.network-sites-list a:hover{
  color: var(--brand-900, var(--brand-700));
}

.network-sites-list span{
  color: var(--text-muted);
  font-size: 0.9rem;
}

.auth-shell{
  padding: 1rem 0;
}

.auth-panel{
  background: var(--surface-elev-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.auth-subtitle{
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero{
  padding: var(--space-8) 0 var(--space-16);
  background: #ffffff;
}

.hero-banner{
  margin-bottom: var(--space-6);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-banner-img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.hero-banner:hover .hero-banner-img{
  transform: scale(1.02);
}

.hero--centered{
  text-align: center;
}

.hero--centered .hero-content{
  max-width: 720px;
  margin: 0 auto;
}

.hero--centered .hero-kicker{
  margin: 0 auto;
}

.hero--centered .hero-actions{
  justify-content: center;
}

.hero--centered .proof-strip{
  justify-content: center;
}

.home-wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 0.55rem;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

@media (min-width: 960px){
  .hero-grid{
    grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.96fr);
    align-items: start;
    gap: 0.9rem;
  }
}

.hero-inner{
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.hero-kicker{
  display: inline-flex;
  align-items: center;
  min-height: 1.52rem;
  padding: 0 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: var(--surface-elev-1);
  color: var(--brand-600);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-title{
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: var(--text-strong);
}

.hero-lede{
  max-width: 56ch;
  margin: 0 auto;
  color: var(--text-body);
  font-size: 1.15rem;
  line-height: 1.55;
}

.hero-actions{
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.btn-lg{
  min-height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background: #fff;
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before{
  width: 300px;
  height: 300px;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary{
  background: #64748b;
  color: #fff;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.btn-primary:hover{
  background: #475569;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.btn-secondary{
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--border-soft);
  color: #475569;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover{
  background: #fff;
  border-color: #94a3b8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.proof-strip{
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.proof-pill{
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  background: var(--surface-elev-1);
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--text-body);
  box-shadow: var(--shadow-xs);
}

.lifecycle-panel{
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface-elev-1);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-sm);
}

.lifecycle-panel h2{
  margin: 0 0 var(--space-4);
  font-size: 1.15rem;
  font-weight: 760;
  color: var(--text-strong);
}

.lifecycle-panel ol{
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.lifecycle-panel li + li{
  margin-top: 0.4rem;
}

.hero-disclaimers{
  margin-top: 0.62rem;
  display: grid;
  gap: 0.24rem;
}

.hero-disclaimers p{
  margin: 0;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.advisor-shell{
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.advisor-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(to right, #e2e8f0, #f1f5f9);
  color: #334155;
  border-bottom: 1px solid #cbd5e1;
}

.advisor-header-brand{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.advisor-logo{
  width: 2rem;
  height: 2rem;
  border-radius: 0.66rem;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.advisor-title{
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.15;
}

.advisor-subtitle{
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.3;
}

.advisor-header-actions{
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.advisor-header-btn{
  min-height: 1.95rem;
  padding: 0 0.62rem;
  border-radius: 0.62rem;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 600;
}

.advisor-header-btn:hover{
  background: #f8fafc;
}

.advisor-header-btn-primary{
  background: #64748b;
  color: #fff;
  border-color: #64748b;
}

.advisor-tabs{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #dbe5f3;
  background: #fff;
}

.advisor-tab{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 2.2rem;
  padding: 0 0.3rem;
  border: none;
  background: transparent;
  color: #5a6a81;
  font-size: 0.76rem;
  font-weight: 640;
  border-bottom: 2px solid transparent;
}

.advisor-tab:hover{
  color: var(--text-strong);
}

.advisor-tab.is-active{
  color: #334155;
  border-bottom-color: #64748b;
}

.advisor-tab.is-completed{
  color: #047857;
}

.advisor-tab-num{
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5ebf6;
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 760;
}

.advisor-tab.is-active .advisor-tab-num{
  background: #64748b;
  color: #fff;
}

.advisor-tab.is-completed .advisor-tab-num{
  background: #10b981;
  color: #fff;
}

.advisor-main{
  display: grid;
  grid-template-columns: 1fr;
  min-height: 25.5rem;
}

@media (min-width: 768px){
  .advisor-main{
    grid-template-columns: 1fr 260px;
  }
}

.advisor-chat-area{
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
  border-right: 1px solid var(--border-soft);
}

.advisor-messages{
  flex: 1;
  padding: 0.78rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-height: 22rem;
}

.advisor-message{
  display: flex;
  gap: 0.55rem;
  max-width: 95%;
}

.advisor-message.is-user{
  flex-direction: row-reverse;
  align-self: flex-end;
}

.advisor-avatar{
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advisor-avatar.is-ai{
  background: #e0efff;
  color: #2563eb;
}

.advisor-avatar.is-user{
  background: #0ea5e9;
  color: #fff;
}

.advisor-bubble{
  padding: 0.62rem 0.74rem;
  border-radius: 0.86rem;
  font-size: 0.89rem;
  line-height: 1.46;
}

.advisor-message:not(.is-user) .advisor-bubble{
  background: #fff;
  color: #1f2a3d;
  border: 1px solid #dae3f0;
  border-top-left-radius: 0.4rem;
}

.advisor-message.is-user .advisor-bubble{
  background: #64748b;
  color: #fff;
  border-top-right-radius: 0.4rem;
}

.advisor-quick-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.advisor-quick-btn{
  padding: 0.36rem 0.72rem;
  border-radius: var(--radius-pill);
  border: 1px solid #dbe4f1;
  background: #fff;
  font-size: 0.79rem;
  font-weight: 620;
  color: #334155;
}

.advisor-quick-btn:hover{
  border-color: #94a3b8;
  color: #475569;
  background: #f8fafc;
}

.advisor-quick-btn.is-selected{
  background: #64748b;
  color: #fff;
  border-color: #64748b;
}

.advisor-input-bar{
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.62rem 0.78rem;
  background: #fff;
  border-top: 1px solid #dce5f2;
}

.advisor-input{
  flex: 1;
  min-height: 2.25rem;
  padding: 0 0.78rem;
  border: 1px solid #dbe4f1;
  border-radius: 0.72rem;
  font-size: 0.9rem;
  color: #1f2a3d;
  background: #f8fbff;
}

.advisor-input::placeholder{
  color: #7b8ba2;
}

.advisor-input:focus{
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.advisor-input-btn{
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.62rem;
  border: 1px solid #dbe4f1;
  background: #fff;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advisor-input-btn:hover{
  color: #334155;
  border-color: #c8d6ea;
}

.advisor-send-btn{
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.72rem;
  border: none;
  background: #64748b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(30, 86, 153, 0.22);
}

.advisor-send-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(30, 86, 153, 0.32);
}

.advisor-sidebar{
  display: none;
  padding: 0.76rem;
  background: #fff;
  gap: 0.8rem;
  border-left: 1px solid #e2e9f4;
  flex-direction: column;
}

@media (min-width: 768px){
  .advisor-sidebar{
    display: flex;
  }
}

.advisor-sidebar-section{
  padding-bottom: 0.62rem;
  border-bottom: 1px solid #edf2f8;
}

.advisor-sidebar-section:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
}

.advisor-sidebar-title{
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 760;
  color: #1f2a3d;
}

.advisor-sidebar-meta{
  margin: 0;
  font-size: 0.71rem;
  color: #6b7a91;
}

.advisor-profile-list,
.advisor-benefits-list{
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.28rem;
  font-size: 0.78rem;
  color: #334155;
}

.advisor-profile-label{
  color: #5f6f86;
}

.advisor-benefits-list li{
  position: relative;
  padding-left: 0.86rem;
}

.advisor-benefits-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.44rem;
  width: 0.33rem;
  height: 0.33rem;
  border-radius: 999px;
  background: #64748b;
}

.advisor-cta{
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius-md);
  background: #64748b;
  color: #fff;
  padding: 0.72rem 0.82rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.advisor-cta:hover{
  transform: translateY(-1px);
}

.advisor-cta-main{
  font-size: 0.88rem;
  font-weight: 760;
}

.advisor-cta-sub{
  margin-top: 0.1rem;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.74);
}

.advisor-typing{
  display: flex;
  gap: 4px;
  padding: 0.55rem 0.65rem;
  border-radius: 0.8rem;
  border: 1px solid #dae3f0;
  background: #fff;
  width: fit-content;
}

.advisor-typing span{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ea0b8;
  animation: typing-bounce 1.4s ease-in-out infinite;
}

.advisor-typing span:nth-child(2){
  animation-delay: 0.2s;
}

.advisor-typing span:nth-child(3){
  animation-delay: 0.4s;
}

@keyframes typing-bounce{
  0%, 60%, 100%{ transform: translateY(0); }
  30%{ transform: translateY(-5px); }
}

/* Section styles */
.section-process,
.section-values,
.section-advisor,
.section-faq,
.section-cta-final{
  padding: var(--space-10) 0;
}

.section-title{
  margin: 0 0 var(--space-2);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.section-subtitle{
  margin: 0 0 var(--space-6);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.advisor-intro{
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-6);
}

.section-cta-final{
  background: linear-gradient(180deg, var(--surface-page) 0%, var(--surface-warm) 100%);
  padding: var(--space-12) 0;
}

.cta-final-content{
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.cta-final-title{
  margin: 0 0 var(--space-3);
  font-size: 1.75rem;
  font-weight: 820;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.cta-final-text{
  margin: 0 0 var(--space-6);
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.55;
}

.value-grid{
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 860px){
  .value-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.value-card{
  position: relative;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface-elev-1);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.value-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--brand-400), var(--brand-600));
}

.value-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.value-card h3{
  margin: 0 0 var(--space-2);
  font-size: 1.1rem;
  font-weight: 760;
  color: var(--text-strong);
}

.value-card p{
  margin: 0;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-grid{
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 768px){
  .faq-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.faq-item{
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface-elev-1);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 180ms ease;
}

.faq-item:hover{
  box-shadow: var(--shadow-sm);
}

.faq-item h3{
  margin: 0;
  font-size: 1rem;
  font-weight: 720;
  color: var(--text-strong);
}

.faq-item p{
  margin: var(--space-2) 0 0;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.5;
}

.public-shell .text-sm.text-gray-600,
.public-shell .text-gray-600,
.booking-shell .text-sm.text-gray-600,
.booking-shell .text-gray-600,
.client-shell .text-sm.text-gray-600,
.client-shell .text-gray-600,
.admin-shell .text-sm.text-gray-600,
.admin-shell .text-gray-600,
.auth-shell .text-sm.text-gray-600,
.auth-shell .text-gray-600{
  color: var(--text-body) !important;
}

.public-shell .text-gray-500,
.booking-shell .text-gray-500,
.client-shell .text-gray-500,
.admin-shell .text-gray-500,
.auth-shell .text-gray-500{
  color: var(--text-muted) !important;
}

.public-shell .bg-white,
.booking-shell .bg-white,
.client-shell .bg-white,
.admin-shell .bg-white,
.auth-shell .bg-white{
  background-color: var(--surface-elev-1) !important;
}

.public-shell .border,
.public-shell .border-gray-200,
.public-shell .border-gray-300,
.booking-shell .border,
.booking-shell .border-gray-200,
.booking-shell .border-gray-300,
.client-shell .border,
.client-shell .border-gray-200,
.client-shell .border-gray-300,
.admin-shell .border,
.admin-shell .border-gray-200,
.admin-shell .border-gray-300,
.auth-shell .border,
.auth-shell .border-gray-200,
.auth-shell .border-gray-300{
  border-color: var(--border-soft) !important;
}

.public-shell .rounded-lg,
.booking-shell .rounded-lg,
.client-shell .rounded-lg,
.admin-shell .rounded-lg,
.auth-shell .rounded-lg{
  border-radius: var(--radius-md) !important;
}

.public-shell .rounded-xl,
.booking-shell .rounded-xl,
.client-shell .rounded-xl,
.admin-shell .rounded-xl,
.auth-shell .rounded-xl{
  border-radius: var(--radius-lg) !important;
}

.public-shell .shadow-sm,
.booking-shell .shadow-sm,
.client-shell .shadow-sm,
.admin-shell .shadow-sm,
.auth-shell .shadow-sm{
  box-shadow: var(--shadow-xs) !important;
}

.public-shell .shadow-md,
.booking-shell .shadow-md,
.client-shell .shadow-md,
.admin-shell .shadow-md,
.auth-shell .shadow-md,
.public-shell .shadow-lg,
.booking-shell .shadow-lg,
.client-shell .shadow-lg,
.admin-shell .shadow-lg,
.auth-shell .shadow-lg{
  box-shadow: var(--shadow-sm) !important;
}

.public-shell .bg-blue-600,
.booking-shell .bg-blue-600,
.client-shell .bg-blue-600,
.admin-shell .bg-blue-600,
.auth-shell .bg-blue-600{
  background-color: var(--brand-600) !important;
}

.public-shell .hover\:bg-blue-700:hover,
.booking-shell .hover\:bg-blue-700:hover,
.client-shell .hover\:bg-blue-700:hover,
.admin-shell .hover\:bg-blue-700:hover,
.auth-shell .hover\:bg-blue-700:hover{
  background-color: var(--brand-700) !important;
}

.public-shell .text-blue-600,
.booking-shell .text-blue-600,
.client-shell .text-blue-600,
.admin-shell .text-blue-600,
.auth-shell .text-blue-600{
  color: var(--brand-700) !important;
}

.public-shell .bg-indigo-50,
.booking-shell .bg-indigo-50,
.client-shell .bg-indigo-50,
.admin-shell .bg-indigo-50,
.auth-shell .bg-indigo-50{
  background-color: #eef3ff !important;
}

.public-shell .border-indigo-200,
.booking-shell .border-indigo-200,
.client-shell .border-indigo-200,
.admin-shell .border-indigo-200,
.auth-shell .border-indigo-200{
  border-color: #cad9ff !important;
}

.public-shell .bg-green-600,
.booking-shell .bg-green-600,
.client-shell .bg-green-600,
.admin-shell .bg-green-600,
.auth-shell .bg-green-600{
  background-color: #059669 !important;
}

.public-shell .hover\:bg-green-700:hover,
.booking-shell .hover\:bg-green-700:hover,
.client-shell .hover\:bg-green-700:hover,
.admin-shell .hover\:bg-green-700:hover,
.auth-shell .hover\:bg-green-700:hover{
  background-color: #047857 !important;
}

.public-shell .bg-purple-600,
.booking-shell .bg-purple-600,
.client-shell .bg-purple-600,
.admin-shell .bg-purple-600,
.auth-shell .bg-purple-600{
  background-color: var(--violet-600) !important;
}

.public-shell .hover\:bg-purple-700:hover,
.booking-shell .hover\:bg-purple-700:hover,
.client-shell .hover\:bg-purple-700:hover,
.admin-shell .hover\:bg-purple-700:hover,
.auth-shell .hover\:bg-purple-700:hover{
  background-color: #5b21b6 !important;
}

.public-shell .focus\:ring-blue-500:focus,
.booking-shell .focus\:ring-blue-500:focus,
.client-shell .focus\:ring-blue-500:focus,
.admin-shell .focus\:ring-blue-500:focus,
.auth-shell .focus\:ring-blue-500:focus{
  --tw-ring-color: rgba(37, 99, 235, 0.34) !important;
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header, .site-footer, .skip-link, .mobile-nav-panel,
  .site-mobile-toggle, .advisor-shell, .flash-stack,
  .booking-flow-strip, .noscript-banner { display: none !important; }
  .site-main { padding: 0; }
  body { background: white; color: black; font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
  a[href^="#"]::after, a[href^="javascript:"]::after { content: ""; }
}
