/* ============================================================
   WOLFGANG ADVISORY — styles.css
   Professional bookkeeping & financial advisory website
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --navy:       #0A2540;
  --navy-mid:   #0F3460;
  --teal:       #0A7E6A;
  --teal-light: #0D9E86;
  --teal-faint: #EAF5F3;
  --gold:       #B8943F;
  --white:      #FFFFFF;
  --cream:      #F8F6F1;
  --gray-50:    #F7F8FA;
  --gray-100:   #ECEEF2;
  --gray-200:   #D8DBE4;
  --gray-400:   #9AA0AF;
  --gray-600:   #5A6070;
  --gray-800:   #2D3340;
  --text:       #1A2033;
  --text-light: #5A6070;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;

  --shadow-sm:  0 1px 3px rgba(10,37,64,0.08);
  --shadow-md:  0 4px 16px rgba(10,37,64,0.10);
  --shadow-lg:  0 8px 32px rgba(10,37,64,0.12);

  --max-w: 1160px;
  --nav-h: 72px;
  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--alt { background: var(--cream); }

.break-desktop { display: none; }
@media (min-width: 900px) { .break-desktop { display: block; } }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; line-height: 1.3; }

p { max-width: 64ch; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 680px;
}

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

.section-sub {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 56ch;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  box-shadow: 0 4px 14px rgba(10,126,106,0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(10,37,64,0.04);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-full { width: 100%; }

/* ---------- NAVIGATION ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.nav-logo-img--footer {
  height: 200px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.logo-advisory {
  font-weight: 400;
  color: var(--gray-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--gray-50);
}

.nav-links .nav-cta {
  background: var(--navy);
  color: var(--white);
  margin-left: 8px;
  padding: 9px 18px;
}
.nav-links .nav-cta:hover {
  background: var(--teal);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  background: var(--navy);
  padding: clamp(72px, 10vw, 140px) 0 clamp(64px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(10,126,106,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}

.hero-heading {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-actions .btn-ghost {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
}
.hero-actions .btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

.dot-sep { margin: 0 10px; opacity: 0.4; }

.hero-rule {
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, transparent 60%);
  margin-top: clamp(48px, 7vw, 80px);
}

/* ---------- SERVICES ---------- */
.services-tier {
  margin-bottom: 56px;
}
.services-tier:last-of-type { margin-bottom: 0; }

.tier-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Last row: if only 1 card remains, span full width; if 2, span half each */
.services-grid .service-card:last-child:nth-child(3n - 2) {
  grid-column: 1 / -1;
}
.services-grid .service-card:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 1 / 2;
}
.services-grid .service-card:last-child:nth-child(3n - 1) {
  grid-column: 2 / 4;
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid .service-card:last-child:nth-child(3n - 2),
  .services-grid .service-card:nth-last-child(2):nth-child(3n + 1),
  .services-grid .service-card:last-child:nth-child(3n - 1) {
    grid-column: 1;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid .service-card:last-child:nth-child(3n - 2),
  .services-grid .service-card:nth-last-child(2):nth-child(3n + 1),
  .services-grid .service-card:last-child:nth-child(3n - 1) {
    grid-column: 1;
  }
  .services-grid .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

.service-card {
  background: var(--white);
  padding: 28px 28px 32px;
  transition: background var(--transition);
  position: relative;
}

.service-card:hover {
  background: var(--teal-faint);
}

.services-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 700px) {
  .services-grid--2col {
    grid-template-columns: 1fr;
  }
}

.service-card--wide {
  grid-column: 1 / -1;
}

@media (max-width: 700px) {
  .service-card--wide { grid-column: 1; }
}

.service-card--premium {
  background: var(--gray-50);
}
.service-card--premium:hover {
  background: var(--teal-faint);
}

.card-icon {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  opacity: 0.7;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 100%;
}

.services-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-100);
}

.services-cta p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0 auto 20px;
  max-width: none;
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 16px;
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-400);
  font-family: var(--font-sans);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.55;
  max-width: 100%;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--teal-faint);
  border-radius: 50%;
  position: relative;
  top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l2.5 2.5L12 5' stroke='%230A7E6A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ---------- ABOUT ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 800px) {
  .about-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
}

.about-content { max-width: 520px; }

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.975rem;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 8px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 32px;
}

.why-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-faint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 100%;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.testimonial-card p {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  max-width: 100%;
}

.testimonial-card p::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  font-style: normal;
}

.testimonial-card footer cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.testimonial-card footer strong {
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 600;
}

.testimonial-card footer span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ---------- CONTACT ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 800px) {
  .contact-inner {
    grid-template-columns: 1fr 1.3fr;
  }
}

.contact-content h2 {
  margin-bottom: 16px;
}

.contact-content > p {
  color: var(--text-light);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.contact-item a,
.contact-item span {
  font-size: 0.925rem;
  color: var(--text);
}

.contact-item a:hover { color: var(--teal); }

/* ---------- FORM ---------- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6070' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,126,106,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: -8px;
  max-width: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.4fr 2fr;
    align-items: start;
  }
}

.footer .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer .logo-advisory {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 32ch;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a, .footer-col li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ---------- MOBILE NAV ---------- */
@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 0.975rem;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- FOCUS / A11Y ---------- */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---------- CONSULTATION PRICING ---------- */
.pricing-consult {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
}

.pricing-consult-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 700px) {
  .pricing-consult-inner {
    grid-template-columns: 1.6fr 1fr;
  }
}

.pricing-consult-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
}

.pricing-consult-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.consult-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consult-points li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consult-points li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l2.5 2.5L12 5' stroke='%230D9E86' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.pricing-consult-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (min-width: 700px) {
  .pricing-consult-action {
    align-items: center;
    text-align: center;
  }
}

.consult-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: none;
}

/* ---------- WHO WE SERVE ---------- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}

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

@media (min-width: 701px) and (max-width: 900px) {
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}

.serve-category {
  background: var(--white);
  padding: 24px 24px 28px;
}

.serve-category-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.serve-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.serve-list li {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.4;
  padding-left: 12px;
  position: relative;
}

.serve-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gray-200);
}

.serve-note {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  max-width: none;
}

.serve-note a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.serve-note a:hover {
  color: var(--teal-light);
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .nav-toggle, .hero-actions, .contact-form { display: none; }
  .section { padding: 32px 0; }
}
