/* =====================================================
   TelemedAddress.com — Global Stylesheet
   Brand Colors:
     Navy:       #0e3a52
     Blue:       #2196c4
     Light Blue: #3cb8e0
     BG Light:   #f4f3ef
     White:      #ffffff
   Fonts: Plus Jakarta Sans (300,400,600) + DM Sans (300,400,500)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600&family=DM+Sans:wght@300;400;500&display=swap');

/* ---- Reset & Base ---------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: #0e3a52;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Typography ------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0e3a52;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1.0625rem; color: #2a4e62; line-height: 1.7; }
p.lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: #3a6178;
}

/* ---- Layout Utilities ------------------------------ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--light {
  background: #f4f3ef;
}

.section--white {
  background: #ffffff;
}

.section--navy {
  background: #0e3a52;
}

.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy p,
.section--navy p.lead {
  color: #ffffff;
}

.section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2196c4;
  margin-bottom: 12px;
}

.section--navy .section-label {
  color: #3cb8e0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-header p {
  margin-top: 12px;
}

.text-center { text-align: center; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Buttons --------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #2196c4;
  color: #ffffff;
  border-color: #2196c4;
}

.btn-primary:hover {
  background: #155f8a;
  border-color: #155f8a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(33,150,196,0.3);
}

.btn-outline {
  background: transparent;
  color: #2196c4;
  border-color: #2196c4;
}

.btn-outline:hover {
  background: #2196c4;
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #0e3a52;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

/* ---- Navigation ------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(14, 58, 82, 0.08);
  padding: 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo mark */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 52px;
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-wordmark__main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.logo-wordmark__main .w-telemed {
  font-weight: 600;
  color: #0e3a52;
}

.logo-wordmark__main .w-dot {
  font-weight: 400;
  color: #2196c4;
  margin: 0 3px;
}

.logo-wordmark__main .w-address {
  font-weight: 300;
  color: #2196c4;
}

.logo-wordmark__tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  color: #6b8fa3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.925rem;
  font-weight: 400;
  color: #0e3a52;
  transition: color 0.15s;
}

.nav__links a:hover,
.nav__links a.active {
  color: #2196c4;
}

.nav__links .nav-cta a {
  background: #2196c4;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.nav__links .nav-cta a:hover {
  background: #155f8a;
  color: #ffffff;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0e3a52;
  border-radius: 2px;
  transition: all 0.25s;
}

/* ---- Hero ------------------------------------------ */
.hero {
  background: linear-gradient(135deg, #0e3a52 0%, #1a5474 60%, #155f8a 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  color: #ffffff;
  max-width: 720px;
  margin-bottom: 20px;
}

.hero p.lead {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- What We Do ------------------------------------ */
.what-we-do__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-we-do__text p + p {
  margin-top: 16px;
}

.what-we-do__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .what-we-do__badges {
    grid-template-columns: 1fr;
  }
}

.compliance-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f4f3ef;
  border-left: 3px solid #2196c4;
  padding: 16px 18px;
  border-radius: 0 6px 6px 0;
}

.compliance-badge__icon {
  width: 36px;
  height: 36px;
  background: #2196c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}

.compliance-badge__text strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0e3a52;
}

.compliance-badge__text span {
  font-size: 0.875rem;
  color: #4a7089;
}

/* ---- How It Works ---------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: steps;
}

.step {
  text-align: center;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: #3cb8e0;
}

.step:last-child::after { display: none; }

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2196c4, #3cb8e0);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step p {
  font-size: 0.95rem;
}

/* ---- State Card ------------------------------------ */
.state-card {
  background: linear-gradient(135deg, #2196c4, #155f8a);
  border-radius: 12px;
  padding: 36px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.state-card__info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.state-card__flag {
  font-size: 3rem;
  line-height: 1;
}

.state-card__info h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.state-card__info p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* ---- Survey Section -------------------------------- */
.survey__intro {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.survey__intro p { margin-top: 10px; }

.state-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.state-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #d0dde6;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.15s;
  background: #fff;
  color: #0e3a52;
}

.state-checkbox-grid label:hover {
  border-color: #2196c4;
  background: rgba(33,150,196,0.05);
}

.state-checkbox-grid input[type="checkbox"]:checked + span,
.state-checkbox-grid label:has(input:checked) {
  border-color: #2196c4;
  background: rgba(33,150,196,0.08);
}

.state-checkbox-grid input[type="checkbox"] {
  accent-color: #2196c4;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.survey__submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.survey__success {
  display: none;
  color: #1a7a40;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Chart */
.chart-container {
  margin-top: 40px;
}

.chart-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0e3a52;
  margin-bottom: 20px;
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chart-bar-row {
  display: grid;
  grid-template-columns: 130px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.chart-bar-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0e3a52;
  text-align: right;
}

.chart-bar-track {
  height: 24px;
  background: rgba(33,150,196,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2196c4, #3cb8e0);
  border-radius: 4px;
  transition: width 0.5s ease;
  min-width: 4px;
}

.chart-bar-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2196c4;
}

.chart-empty {
  font-size: 0.9rem;
  color: #8aacbc;
  font-style: italic;
  text-align: center;
  padding: 16px;
}

/* ---- Pricing Table --------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #d0dde6;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: #0e3a52;
  box-shadow: 0 8px 32px rgba(14,58,82,0.18);
}

.pricing-card__header {
  padding: 28px 28px 20px;
  background: rgba(33,150,196,0.06);
  border-bottom: 1px solid #d0dde6;
  position: relative;
}

.pricing-card--featured .pricing-card__header {
  background: #0e3a52;
}

.pricing-card--featured .pricing-card__header h3,
.pricing-card--featured .pricing-card__header .pricing-price,
.pricing-card--featured .pricing-card__header .pricing-subtitle,
.pricing-card--featured .pricing-card__header .pricing-extra {
  color: #ffffff;
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2196c4;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.pricing-card__header h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0e3a52;
  margin-bottom: 10px;
}

.pricing-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #0e3a52;
  line-height: 1;
}

.pricing-price sup {
  font-size: 1.1rem;
  vertical-align: top;
  margin-top: 6px;
}

.pricing-price sub {
  font-size: 0.95rem;
  font-weight: 300;
  vertical-align: bottom;
}

.pricing-subtitle {
  font-size: 0.85rem;
  color: #4a7089;
  margin-top: 6px;
}

.pricing-extra {
  font-size: 0.82rem;
  color: #6b8fa3;
  margin-top: 4px;
}

.pricing-card__features {
  padding: 24px 28px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #2a4e62;
}

.pricing-feature .icon {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.95rem;
}

.pricing-feature.yes .icon { color: #1a9a50; }
.pricing-feature.no .icon { color: #c0cdd6; }
.pricing-feature.no span { color: #8aacbc; }

.pricing-card__footer {
  padding: 20px 28px 24px;
  border-top: 1px solid #edf2f5;
  text-align: center;
}

.pricing-setup-note {
  font-size: 0.8rem;
  color: #8aacbc;
  margin-top: 12px;
}

/* DEA guarantee */
.dea-guarantee {
  background: rgba(33,150,196,0.07);
  border: 1px solid rgba(33,150,196,0.2);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 32px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dea-guarantee strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #0e3a52;
  margin-bottom: 6px;
}

.dea-guarantee p {
  font-size: 0.9rem;
  color: #4a7089;
}

/* ---- Locations ------------------------------------- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.location-card {
  background: #ffffff;
  border: 1px solid #d0dde6;
  border-radius: 10px;
  overflow: hidden;
}

.location-card__map {
  height: 220px;
  overflow: hidden;
  background: #d0dde6;
}

.location-card__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.location-card:hover .location-card__map img {
  transform: scale(1.03);
}

.location-card__body {
  padding: 22px;
}

.location-card__body h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.location-card__body p {
  font-size: 0.9rem;
  color: #4a7089;
  margin-bottom: 4px;
}

/* ---- Testimonials ---------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #d0dde6;
  border-radius: 10px;
  padding: 28px;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: #3a5d72;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-size: 2rem;
  color: #3cb8e0;
  line-height: 0.5;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2196c4, #3cb8e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0e3a52;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: #6b8fa3;
  margin-top: 2px;
}

/* ---- FAQ ------------------------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #d0dde6;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0e3a52;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.15s;
}

.faq-question:hover { color: #2196c4; }

.faq-question .faq-icon {
  font-size: 1.3rem;
  color: #2196c4;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #3a5d72;
}

/* ---- Contact Form ---------------------------------- */
.contact-form {
  background: #ffffff;
  border: 1px solid #d0dde6;
  border-radius: 12px;
  padding: 40px;
  max-width: 780px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0e3a52;
  margin-bottom: 7px;
}

.form-group label .required {
  color: #2196c4;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #c8d9e4;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #0e3a52;
  background: #fafcfd;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2196c4;
  box-shadow: 0 0 0 3px rgba(33,150,196,0.12);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit-row {
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.form-success .success-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.form-success h3 {
  color: #1a7a40;
  margin-bottom: 6px;
}

.form-success p {
  font-size: 0.95rem;
  color: #4a7089;
}

/* ---- Who It's For ---------------------------------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.who-card {
  background: #fff;
  border: 1px solid #d0dde6;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.who-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.who-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.who-card p {
  font-size: 0.875rem;
  color: #4a7089;
}

/* ---- Hero / AZ page variant ------------------------ */
.hero--az {
  background: linear-gradient(135deg, #0e3a52 0%, #155f8a 100%);
}

.hero__price-badge {
  display: inline-block;
  background: rgba(60, 184, 224, 0.2);
  border: 1px solid #3cb8e0;
  color: #3cb8e0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.hero__compliance-tags {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .hero__compliance-tags {
    grid-template-columns: repeat(2, auto);
  }
}

.compliance-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
}

/* ---- Other States page hero ------------------------ */
.hero--other {
  background: linear-gradient(135deg, #155f8a 0%, #2196c4 100%);
  padding: 80px 0;
  text-align: center;
}

.hero--other h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #ffffff;
  max-width: 640px;
  margin: 0 auto 18px;
}

.hero--other p.lead {
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto;
}

/* Other-states interest form */
.interest-form {
  background: #fff;
  border: 1px solid #d0dde6;
  border-radius: 12px;
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
}

.interest-form h3 {
  margin-bottom: 24px;
}

/* ---- Footer ---------------------------------------- */
.footer {
  background: #0e3a52;
  padding: 40px 0;
  text-align: center;
}

.footer p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}

.footer a {
  color: #3cb8e0;
  text-decoration: none;
}

.footer a:hover { color: #ffffff; }

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.footer__links a:hover { color: #fff; }

.footer__divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 16px auto;
}

/* ---- Utility --------------------------------------- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.text-blue  { color: #2196c4; }
.text-light { color: #3cb8e0; }

/* ---- Responsive ------------------------------------ */
@media (max-width: 900px) {
  .what-we-do__grid  { grid-template-columns: 1fr; gap: 40px; }
  .steps             { grid-template-columns: 1fr; }
  .step::after       { display: none; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 440px; }
  .locations-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .who-grid          { grid-template-columns: 1fr 1fr; }
  .form-row          { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero    { padding: 64px 0 60px; }

  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(14,58,82,0.1);
    box-shadow: 0 8px 24px rgba(14,58,82,0.08);
  }

  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(14,58,82,0.06);
    font-size: 1rem;
  }

  .nav__links .nav-cta a {
    background: none;
    color: #2196c4;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: none;
  }

  .nav__hamburger { display: flex; }

  .who-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__compliance-tags { justify-content: flex-start; }

  .contact-form,
  .interest-form { padding: 24px; }

  .state-checkbox-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  .chart-bar-row { grid-template-columns: 90px 1fr 36px; }
}
