/*
Theme Name:  Hernando Senior Wellness Child
Theme URI:   https://serenitysenirowellness.com
Description: Child theme for Hernando Senior Wellness — Hernando County, Florida
Author:      Hernando Senior Wellness
Template:    hello-elementor
Version:     1.0.0
License:     GPL-2.0-or-later
Text Domain: ssw-child
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (Brand Tokens)
   ============================================================ */
:root {
  --ssw-sage:        #7aab8a;
  --ssw-sage-dark:   #5a8c6a;
  --ssw-sage-light:  #a8c9b4;
  --ssw-gold:        #e8b86d;
  --ssw-gold-dark:   #c9963a;
  --ssw-cream:       #fdf8f1;
  --ssw-cream-dark:  #f0e8d8;
  --ssw-sky:         #a8c8e8;
  --ssw-sky-dark:    #7aaed4;
  --ssw-charcoal:    #2d3748;
  --ssw-gray:        #718096;
  --ssw-gray-light:  #e2e8f0;
  --ssw-white:       #ffffff;

  --ssw-font-serif:  'Playfair Display', Georgia, serif;
  --ssw-font-body:   'Nunito', 'Lato', system-ui, sans-serif;

  --ssw-radius:      12px;
  --ssw-radius-sm:   6px;
  --ssw-shadow:      0 4px 24px rgba(0,0,0,.08);
  --ssw-shadow-lg:   0 8px 40px rgba(0,0,0,.12);
  --ssw-transition:  0.25s ease;

  --ssw-max-width:   1200px;
  --ssw-section-pad: 80px 0;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ssw-font-body);
  color: var(--ssw-charcoal);
  background: var(--ssw-cream);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ssw-sage-dark); text-decoration: none; transition: color var(--ssw-transition); }
a:hover { color: var(--ssw-sage); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--ssw-font-serif);
  line-height: 1.25;
  color: var(--ssw-charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1.25rem; color: var(--ssw-gray); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.ssw-container {
  max-width: var(--ssw-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ssw-section { padding: var(--ssw-section-pad); }
.ssw-section--cream  { background: var(--ssw-cream); }
.ssw-section--white  { background: var(--ssw-white); }
.ssw-section--sage   { background: var(--ssw-sage); }
.ssw-section--charcoal { background: var(--ssw-charcoal); }

.ssw-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.ssw-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.ssw-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

.ssw-text-center { text-align: center; }
.ssw-text-sm     { font-size: .875rem; }

.ssw-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--ssw-gold);
  color: var(--ssw-charcoal);
}
.ssw-badge--sage { background: var(--ssw-sage); color: #fff; }

/* ============================================================
   BUTTONS
   ============================================================ */
.ssw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--ssw-font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ssw-transition);
  text-decoration: none;
}
.ssw-btn--primary {
  background: var(--ssw-sage);
  color: #fff;
  border-color: var(--ssw-sage);
}
.ssw-btn--primary:hover {
  background: var(--ssw-sage-dark);
  border-color: var(--ssw-sage-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122,171,138,.35);
}
.ssw-btn--outline {
  background: transparent;
  color: var(--ssw-sage-dark);
  border-color: var(--ssw-sage-dark);
}
.ssw-btn--outline:hover {
  background: var(--ssw-sage-dark);
  color: #fff;
}
.ssw-btn--gold {
  background: var(--ssw-gold);
  color: var(--ssw-charcoal);
  border-color: var(--ssw-gold);
}
.ssw-btn--gold:hover {
  background: var(--ssw-gold-dark);
  border-color: var(--ssw-gold-dark);
  transform: translateY(-2px);
}
.ssw-btn--sm { padding: 10px 22px; font-size: .875rem; }
.ssw-btn--lg { padding: 18px 40px; font-size: 1.1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.ssw-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,248,241,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ssw-cream-dark);
  padding: 0 24px;
}
.ssw-navbar__inner {
  max-width: var(--ssw-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.ssw-navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.ssw-navbar__logo-mark {
  width: 40px; height: 40px;
  background: var(--ssw-sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; font-size: .75rem;
  letter-spacing: .04em;
}
.ssw-navbar__logo-text { line-height: 1.2; }
.ssw-navbar__logo-name {
  font-family: var(--ssw-font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ssw-charcoal);
  display: block;
}
.ssw-navbar__logo-tagline {
  font-size: .7rem;
  color: var(--ssw-sage);
  font-style: italic;
}
.ssw-navbar__nav { display: flex; align-items: center; gap: 8px; }
.ssw-navbar__nav a {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ssw-gray);
  border-radius: var(--ssw-radius-sm);
  transition: all var(--ssw-transition);
}
.ssw-navbar__nav a:hover,
.ssw-navbar__nav a.current-menu-item { color: var(--ssw-sage-dark); background: var(--ssw-cream-dark); }
.ssw-navbar__cta { margin-left: 16px; }
.ssw-navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none; padding: 8px;
}
.ssw-navbar__hamburger span {
  width: 24px; height: 2px;
  background: var(--ssw-charcoal);
  border-radius: 2px;
  transition: all var(--ssw-transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ssw-hero {
  position: relative;
  background: linear-gradient(135deg, var(--ssw-cream) 0%, var(--ssw-cream-dark) 100%);
  overflow: hidden;
  padding: 80px 24px 100px;
}
.ssw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%237aab8a" fill-opacity="0.04" d="M0,192L48,181.3C96,171,192,149,288,160C384,171,480,213,576,218.7C672,224,768,192,864,176C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') bottom/cover no-repeat;
}
.ssw-hero__inner {
  max-width: var(--ssw-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.ssw-hero__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ssw-sage);
  margin-bottom: 16px;
  display: block;
}
.ssw-hero__title { margin-bottom: 24px; }
.ssw-hero__title em { font-style: normal; color: var(--ssw-sage); }
.ssw-hero__subtitle { font-size: 1.1rem; margin-bottom: 40px; max-width: 500px; }
.ssw-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.ssw-hero__image-wrap { position: relative; }
.ssw-hero__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--ssw-shadow-lg);
}
.ssw-hero__image img { width: 100%; height: 420px; object-fit: cover; }
.ssw-hero__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--ssw-white);
  border-radius: var(--ssw-radius);
  padding: 16px 20px;
  box-shadow: var(--ssw-shadow);
  display: flex; align-items: center; gap: 12px;
}
.ssw-hero__badge-icon { font-size: 2rem; }
.ssw-hero__badge-text { font-size: .8rem; color: var(--ssw-gray); }
.ssw-hero__badge-text strong { display: block; color: var(--ssw-charcoal); font-size: 1.1rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.ssw-trustbar {
  background: var(--ssw-sage);
  padding: 20px 24px;
}
.ssw-trustbar__inner {
  max-width: var(--ssw-max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}
.ssw-trustbar__item {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-size: .85rem; font-weight: 600;
}
.ssw-trustbar__item::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; flex-shrink: 0;
}

/* ============================================================
   FEATURE CARDS ("What We Do")
   ============================================================ */
.ssw-card {
  background: var(--ssw-white);
  border-radius: var(--ssw-radius);
  padding: 36px 28px;
  box-shadow: var(--ssw-shadow);
  transition: transform var(--ssw-transition), box-shadow var(--ssw-transition);
}
.ssw-card:hover { transform: translateY(-6px); box-shadow: var(--ssw-shadow-lg); }
.ssw-card__icon {
  width: 56px; height: 56px;
  background: var(--ssw-cream-dark);
  border-radius: var(--ssw-radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 20px;
}
.ssw-card__title { margin-bottom: 12px; }
.ssw-card--highlighted { border-top: 4px solid var(--ssw-sage); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.ssw-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.ssw-section-header__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ssw-sage);
  margin-bottom: 12px;
  display: block;
}
.ssw-section-header__title { margin-bottom: 16px; }
.ssw-section-header__subtitle { font-size: 1.05rem; }

/* ============================================================
   PULLQUOTE
   ============================================================ */
.ssw-pullquote {
  background: var(--ssw-cream-dark);
  border-left: 4px solid var(--ssw-sage);
  border-radius: 0 var(--ssw-radius) var(--ssw-radius) 0;
  padding: 28px 36px;
  font-family: var(--ssw-font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ssw-charcoal);
  margin: 40px 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.ssw-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.ssw-step { text-align: center; position: relative; }
.ssw-step__number {
  width: 64px; height: 64px;
  background: var(--ssw-sage);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ssw-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.ssw-step + .ssw-step::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--ssw-sage-light), transparent);
  z-index: 0;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.ssw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}
.ssw-pricing-card {
  background: var(--ssw-white);
  border-radius: var(--ssw-radius);
  padding: 36px 28px;
  box-shadow: var(--ssw-shadow);
  position: relative;
  border: 2px solid transparent;
  transition: all var(--ssw-transition);
}
.ssw-pricing-card:hover { transform: translateY(-4px); box-shadow: var(--ssw-shadow-lg); }
.ssw-pricing-card--popular {
  border-color: var(--ssw-sage);
  transform: scale(1.03);
}
.ssw-pricing-card--popular:hover { transform: scale(1.03) translateY(-4px); }
.ssw-pricing-card--best {
  border-color: var(--ssw-gold);
}
.ssw-pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.ssw-pricing-card__name {
  font-family: var(--ssw-font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ssw-charcoal);
}
.ssw-pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--ssw-font-serif);
  color: var(--ssw-sage-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.ssw-pricing-card__price sup { font-size: 1.2rem; vertical-align: super; }
.ssw-pricing-card__period { font-size: .85rem; color: var(--ssw-gray); margin-bottom: 20px; }
.ssw-pricing-card__desc { font-size: .9rem; color: var(--ssw-gray); margin-bottom: 16px; min-height: 60px; }
.ssw-pricing-card__cta { width: 100%; text-align: center; margin-top: auto; }

/* Feature list inside pricing card */
.ssw-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: .85rem;
  color: var(--ssw-gray);
}
.ssw-pricing-card__features li {
  padding: 5px 0 5px 22px;
  position: relative;
  border-bottom: 1px solid var(--ssw-gray-light);
}
.ssw-pricing-card__features li:last-child { border-bottom: none; }
.ssw-pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ssw-sage);
  font-weight: 700;
}

/* Highlighted variant — pre-selected on enrollment page */
.ssw-pricing-card--highlighted {
  border: 2px solid var(--ssw-sage);
  box-shadow: 0 0 0 4px rgba(122, 171, 138, .12);
}
.ssw-pricing-disclaimer {
  text-align: center;
  font-size: .8rem;
  color: var(--ssw-gray);
  margin-top: 32px;
  padding: 16px;
  background: var(--ssw-cream-dark);
  border-radius: var(--ssw-radius-sm);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ssw-testimonial {
  background: var(--ssw-white);
  border-radius: var(--ssw-radius);
  padding: 32px;
  box-shadow: var(--ssw-shadow);
  position: relative;
}
.ssw-testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 5rem;
  font-family: var(--ssw-font-serif);
  color: var(--ssw-sage-light);
  line-height: 1;
}
.ssw-testimonial__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--ssw-charcoal);
  margin-bottom: 20px;
  margin-top: 32px;
}
.ssw-testimonial__author { display: flex; align-items: center; gap: 12px; }
.ssw-testimonial__avatar {
  width: 44px; height: 44px;
  background: var(--ssw-cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--ssw-sage-dark);
}
.ssw-testimonial__name { font-weight: 700; font-size: .9rem; }
.ssw-testimonial__location { font-size: .8rem; color: var(--ssw-gray); }
.ssw-testimonial__stars { color: var(--ssw-gold); font-size: .9rem; margin-bottom: 4px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.ssw-faq { max-width: 800px; margin: 0 auto; }
.ssw-faq__item {
  border-bottom: 1px solid var(--ssw-gray-light);
  margin-bottom: 4px;
}
.ssw-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--ssw-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ssw-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ssw-faq__question::after {
  content: '+';
  width: 28px; height: 28px;
  background: var(--ssw-cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--ssw-transition);
}
.ssw-faq__item.open .ssw-faq__question::after { content: '−'; background: var(--ssw-sage); color: #fff; }
.ssw-faq__answer {
  display: none;
  padding: 0 0 20px;
  font-size: .95rem;
  color: var(--ssw-gray);
}
.ssw-faq__item.open .ssw-faq__answer { display: block; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.ssw-cta-banner {
  background: linear-gradient(135deg, var(--ssw-sage-dark) 0%, var(--ssw-sage) 100%);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}
.ssw-cta-banner h2, .ssw-cta-banner p { color: #fff; }
.ssw-cta-banner p { opacity: .88; }
.ssw-cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.ssw-cta-banner .ssw-btn--outline { border-color: rgba(255,255,255,.6); color: #fff; }
.ssw-cta-banner .ssw-btn--outline:hover { background: rgba(255,255,255,.15); }

/* ============================================================
   FOOTER
   ============================================================ */
.ssw-footer {
  background: var(--ssw-charcoal);
  color: var(--ssw-gray-light);
  padding: 64px 24px 32px;
}
.ssw-footer__grid {
  max-width: var(--ssw-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ssw-footer__brand h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.ssw-footer__brand p { font-size: .85rem; opacity: .7; max-width: 280px; }
.ssw-footer__tagline { color: var(--ssw-sage-light); font-style: italic; font-size: .85rem; margin-bottom: 16px; }
.ssw-footer__social { display: flex; gap: 12px; margin-top: 20px; }
.ssw-footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ssw-gray-light);
  font-size: .8rem;
  transition: all var(--ssw-transition);
}
.ssw-footer__social a:hover { background: var(--ssw-sage); color: #fff; }
.ssw-footer h4 { font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ssw-sage-light); margin-bottom: 16px; }
.ssw-footer__links { list-style: none; }
.ssw-footer__links li { margin-bottom: 8px; }
.ssw-footer__links a { font-size: .85rem; color: rgba(255,255,255,.65); }
.ssw-footer__links a:hover { color: var(--ssw-sage-light); }
.ssw-footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; margin-bottom: 10px; opacity: .75; }
.ssw-footer__contact-item a { color: inherit; }
.ssw-footer__bottom {
  max-width: var(--ssw-max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  opacity: .5;
}

/* ============================================================
   FORMS
   ============================================================ */
.ssw-form-group { margin-bottom: 20px; }
.ssw-form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ssw-charcoal);
}
.ssw-form-group label .ssw-required { color: var(--ssw-gold-dark); }
.ssw-input,
.ssw-select,
.ssw-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--ssw-gray-light);
  border-radius: var(--ssw-radius-sm);
  font-family: var(--ssw-font-body);
  font-size: .95rem;
  background: var(--ssw-white);
  color: var(--ssw-charcoal);
  transition: border-color var(--ssw-transition);
  outline: none;
}
.ssw-input:focus, .ssw-select:focus, .ssw-textarea:focus {
  border-color: var(--ssw-sage);
  box-shadow: 0 0 0 3px rgba(122,171,138,.2);
}
.ssw-textarea { resize: vertical; min-height: 100px; }
.ssw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ssw-form-section-title {
  font-family: var(--ssw-font-serif);
  font-size: 1.1rem;
  color: var(--ssw-charcoal);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ssw-cream-dark);
  margin-bottom: 20px;
  margin-top: 32px;
}
.ssw-form-card {
  background: var(--ssw-white);
  border-radius: var(--ssw-radius);
  padding: 40px;
  box-shadow: var(--ssw-shadow);
}

/* Multi-step form */
.ssw-step-indicator { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; }
.ssw-step-indicator__step {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  background: var(--ssw-cream-dark);
  color: var(--ssw-gray);
  position: relative;
}
.ssw-step-indicator__step.active { background: var(--ssw-sage); color: #fff; }
.ssw-step-indicator__step.done { background: var(--ssw-sage-dark); color: #fff; }
.ssw-step-indicator__step + .ssw-step-indicator__step::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  width: 8px;
  height: 2px;
  background: var(--ssw-cream-dark);
  margin-right: 0;
}

/* Service agreement scroll box */
.ssw-agreement-box {
  height: 260px;
  overflow-y: scroll;
  border: 1.5px solid var(--ssw-gray-light);
  border-radius: var(--ssw-radius-sm);
  padding: 20px;
  font-size: .85rem;
  line-height: 1.8;
  margin-bottom: 16px;
  background: var(--ssw-cream);
}
.ssw-agreement-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.ssw-agreement-checkbox input[type="checkbox"] {
  margin-top: 3px; flex-shrink: 0;
  width: 18px; height: 18px;
  accent-color: var(--ssw-sage);
}
.ssw-agreement-checkbox:has(input:disabled) label { opacity: .5; }

/* ============================================================
   PORTAL STYLES
   ============================================================ */
.ssw-portal-layout { display: flex; min-height: 100vh; }

.ssw-portal-sidebar {
  width: 260px;
  background: var(--ssw-charcoal);
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
}
.ssw-portal-sidebar__logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 10px;
}
.ssw-portal-sidebar__logo span {
  font-family: var(--ssw-font-serif);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.3;
}
.ssw-portal-sidebar__section { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.ssw-portal-sidebar__section-label {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: 0 20px 8px;
}
.ssw-portal-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  border-radius: 0;
  transition: all var(--ssw-transition);
}
.ssw-portal-nav a:hover, .ssw-portal-nav a.active {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.ssw-portal-nav a.active { border-right: 3px solid var(--ssw-sage); }
.ssw-portal-nav a span:first-child { font-size: 1rem; }
.ssw-portal-sidebar__footer {
  margin-top: auto;
  padding: 16px 20px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.ssw-portal-content {
  margin-left: 260px;
  flex: 1;
  background: #f4f6f9;
  min-height: 100vh;
}
.ssw-portal-topbar {
  background: var(--ssw-white);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--ssw-gray-light);
  position: sticky;
  top: 0;
  z-index: 10;
}
.ssw-portal-topbar__greeting { font-weight: 600; color: var(--ssw-charcoal); }
.ssw-portal-topbar__actions { display: flex; gap: 12px; align-items: center; }
.ssw-portal-main { padding: 32px; }

/* Summary stat cards */
.ssw-stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.ssw-stat-card {
  background: var(--ssw-white);
  border-radius: var(--ssw-radius);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ssw-stat-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--ssw-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ssw-stat-card__icon--sage  { background: rgba(122,171,138,.15); }
.ssw-stat-card__icon--gold  { background: rgba(232,184,109,.15); }
.ssw-stat-card__icon--sky   { background: rgba(168,200,232,.15); }
.ssw-stat-card__icon--coral { background: rgba(232,120,100,.15); }
.ssw-stat-card__value { font-size: 2rem; font-weight: 800; font-family: var(--ssw-font-serif); color: var(--ssw-charcoal); }
.ssw-stat-card__label { font-size: .8rem; color: var(--ssw-gray); }

/* Portal data tables */
.ssw-portal-card {
  background: var(--ssw-white);
  border-radius: var(--ssw-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  overflow: hidden;
  margin-bottom: 28px;
}
.ssw-portal-card__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--ssw-gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ssw-portal-card__title { font-weight: 700; color: var(--ssw-charcoal); }
.ssw-portal-card__body { padding: 24px; }
.ssw-table-wrap { overflow-x: auto; }
.ssw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.ssw-table th {
  background: #f8fafc;
  padding: 10px 14px;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ssw-gray);
  border-bottom: 1px solid var(--ssw-gray-light);
  white-space: nowrap;
}
.ssw-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ssw-gray-light);
  vertical-align: middle;
}
.ssw-table tr:hover td { background: #fafbfc; }
.ssw-table tr:last-child td { border-bottom: none; }

.ssw-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}
.ssw-status--active    { background: rgba(122,171,138,.15); color: var(--ssw-sage-dark); }
.ssw-status--inactive  { background: rgba(113,128,150,.12); color: var(--ssw-gray); }
.ssw-status--pastdue   { background: rgba(232,100,80,.12); color: #c0392b; }
.ssw-status--new       { background: rgba(168,200,232,.2); color: var(--ssw-sky-dark); }
.ssw-status--contacted { background: rgba(232,184,109,.2); color: var(--ssw-gold-dark); }
.ssw-status--converted { background: rgba(122,171,138,.15); color: var(--ssw-sage-dark); }

/* Portal search & filters */
.ssw-portal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.ssw-search-input {
  flex: 1;
  min-width: 200px;
  padding: 9px 14px 9px 36px;
  border: 1.5px solid var(--ssw-gray-light);
  border-radius: var(--ssw-radius-sm);
  font-size: .875rem;
  outline: none;
  background: var(--ssw-white) url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E") 12px 50% no-repeat;
}
.ssw-search-input:focus { border-color: var(--ssw-sage); }

/* Employee folder grid */
.ssw-folder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.ssw-folder-item {
  background: var(--ssw-white);
  border: 1.5px solid var(--ssw-gray-light);
  border-radius: var(--ssw-radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--ssw-transition);
}
.ssw-folder-item:hover { border-color: var(--ssw-sage); box-shadow: var(--ssw-shadow); }
.ssw-folder-item__icon { font-size: 2.5rem; margin-bottom: 10px; }
.ssw-folder-item__name { font-weight: 700; font-size: .875rem; color: var(--ssw-charcoal); }
.ssw-folder-item__meta { font-size: .75rem; color: var(--ssw-gray); margin-top: 4px; }

/* Upload dropzone */
.ssw-dropzone {
  border: 2px dashed var(--ssw-sage-light);
  border-radius: var(--ssw-radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all var(--ssw-transition);
  background: rgba(122,171,138,.04);
}
.ssw-dropzone:hover, .ssw-dropzone.drag-over {
  border-color: var(--ssw-sage);
  background: rgba(122,171,138,.08);
}
.ssw-dropzone__icon { font-size: 2.5rem; margin-bottom: 12px; }
.ssw-dropzone__text { font-size: .95rem; color: var(--ssw-gray); }
.ssw-dropzone__text strong { color: var(--ssw-sage-dark); }

/* Notification dot */
.ssw-notif-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ssw-gold);
  margin-left: 6px;
}

/* ============================================================
   PAGES: ABOUT / SERVICES
   ============================================================ */
.ssw-page-hero {
  background: linear-gradient(to bottom, var(--ssw-cream-dark), var(--ssw-cream));
  padding: 80px 24px 60px;
  text-align: center;
}
.ssw-page-hero--sm { padding: 48px 24px 40px; }
.ssw-page-hero__eyebrow { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ssw-sage); font-weight: 700; margin-bottom: 12px; }

/* ── Prose (Privacy Policy / Terms of Service) ─────────────── */
.ssw-prose {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--ssw-charcoal);
}
.ssw-prose h2 {
  font-size: 1.3rem;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ssw-cream-dark);
  color: var(--ssw-charcoal);
}
.ssw-prose h3 { font-size: 1.05rem; margin: 24px 0 8px; color: var(--ssw-charcoal); }
.ssw-prose p  { margin: 0 0 16px; }
.ssw-prose ul, .ssw-prose ol { padding-left: 24px; margin: 0 0 16px; }
.ssw-prose li { margin-bottom: 6px; }
.ssw-prose a  { color: var(--ssw-sage-dark); }
.ssw-prose strong { color: var(--ssw-charcoal); }

.ssw-service-block { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start; margin-bottom: 48px; }
.ssw-service-block__icon-col .ssw-card__icon { margin-bottom: 0; }
.ssw-service-block__title { margin-bottom: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ssw-footer__grid { grid-template-columns: 1fr 1fr; }
  .ssw-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .ssw-hero__image-wrap { display: none; }
  .ssw-portal-content { margin-left: 0; }
  .ssw-portal-sidebar { transform: translateX(-100%); transition: transform .3s ease; }
  .ssw-portal-sidebar.open { transform: translateX(0); }
}

@media (max-width: 768px) {
  :root { --ssw-section-pad: 56px 0; }
  .ssw-navbar__nav, .ssw-navbar__cta { display: none; }
  .ssw-navbar__hamburger { display: flex; }
  .ssw-navbar__nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--ssw-cream);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--ssw-cream-dark);
    box-shadow: var(--ssw-shadow);
  }
  .ssw-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ssw-form-row { grid-template-columns: 1fr; }
  .ssw-pricing-card--popular { transform: scale(1); }
  .ssw-step + .ssw-step::before { display: none; }
  .ssw-portal-main { padding: 20px 16px; }
  .ssw-portal-topbar { padding: 12px 16px; }
}
