/* ============================================================
   AI Targeted Solutions — site.css
   ------------------------------------------------------------
   Shared chrome: design tokens, reset, typography, buttons,
   header/nav, footer, mobile menu, dropdowns. Loaded once and
   browser-cached across the site.

   Auto-generated from rules appearing in >= 4 of
   7 main pages. Page-specific styles remain inline.
   ============================================================ */

:root {
  --charcoal: #0F0F10;
  --charcoal-soft: #1A1A1C;
  --rose: #E94E77;
  --rose-dark: #C93660;
  --rose-soft: rgba(233, 78, 119, 0.12);
  --soft-white: #F8F9FB;
  --white: #FFFFFF;
  --gray: #5A5E66;
  --gray-light: #8B8F97;
  --border: #E1E3E8;
  --shadow-sm: 0 4px 14px rgba(15, 15, 16, 0.06);
  --shadow: 0 18px 45px rgba(15, 15, 16, 0.10);
  --shadow-lg: 0 30px 70px rgba(15, 15, 16, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

a:focus-visible,
    button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible { outline-offset: 4px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 200;
}

.skip-link:focus { left: 16px; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.btn-primary {
  background: var(--rose);
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(233, 78, 119, 0.32);
}

.btn-primary:link, .btn-primary:visited, .btn-primary:active {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--rose-dark);
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 78, 119, 0.42);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-arrow:hover::after { transform: translateX(3px); }

.section { padding: 96px 0; }

.section-label {
  color: var(--rose);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--rose);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

p {
  color: var(--gray);
  font-size: 1.05rem;
}

p + p { margin-top: 14px; }

header {
  background: rgba(248, 249, 251, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.logo span {
  font-size: 0.72rem;
  color: var(--rose);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  list-style: none;
}

.nav-links a:hover { color: var(--rose); }

.nav-links .btn {
  padding: 11px 22px;
  font-size: 0.92rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
        radial-gradient(circle at 85% 20%, rgba(233, 78, 119, 0.18), transparent 38%),
        radial-gradient(circle at 10% 90%, rgba(233, 78, 119, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-eyebrow span { color: var(--rose); }

.trust-line {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-line::before {
  content: '';
  width: 38px;
  height: 2px;
  background: var(--charcoal);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
        linear-gradient(135deg, #FCE5EC 0%, #F8F9FB 60%, #FFFFFF 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.final-cta {
  text-align: center;
  background:
        radial-gradient(circle at center, rgba(233, 78, 119, 0.14), transparent 50%),
        var(--soft-white);
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
}

.center-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

footer h4 {
  color: var(--white);
  margin-bottom: 16px;
}

footer p,
    footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

footer a:hover { color: var(--rose); }

.footer-logo strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a, .nav-links > li > button.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, background 0.2s;
}

.nav-links > li > a:hover, .nav-links > li > button.dropdown-trigger:hover,
    .nav-links > li > a.active, .nav-links > li > button.dropdown-trigger[aria-expanded="true"] {
  color: var(--rose);
  background: var(--rose-soft);
}

.dropdown-trigger::after {
  content: '▾';
  font-size: 0.7rem;
  margin-left: 2px;
  transition: transform 0.25s;
}

.dropdown-trigger[aria-expanded="true"]::after { transform: rotate(180deg); }

.nav-links .nav-cta {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--rose);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(233, 78, 119, 0.32);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(233, 78, 119, 0.42);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 15, 16, 0.12);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 110;
}

.nav-links > li:hover > .dropdown-menu,
    .dropdown-trigger[aria-expanded="true"] + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu li a:hover {
  background: var(--rose-soft);
  color: var(--rose);
}

.dropdown-menu li a strong {
  display: block;
  font-weight: 700;
}

.dropdown-menu li a small {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 2px;
}

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 210;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100%);
  background: var(--white);
  box-shadow: -8px 0 24px rgba(15, 15, 16, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 88px 24px 32px;
  z-index: 150;
  overflow-y: auto;
  visibility: hidden;
}

.mobile-menu[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 16, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 140;
}

.mobile-menu-backdrop[data-open="true"] {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-section { margin-bottom: 8px; }

.mobile-menu-section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  padding: 16px 14px 6px;
}

.mobile-menu a {
  display: block;
  padding: 14px 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  border-radius: 10px;
  transition: background 0.15s;
}

.mobile-menu a:hover, .mobile-menu a:focus-visible {
  background: var(--rose-soft);
  color: var(--rose);
}

.mobile-menu .mobile-cta {
  display: block;
  margin-top: 16px;
  padding: 16px;
  background: var(--rose);
  color: var(--white);
  text-align: center;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(233, 78, 119, 0.32);
}

.mobile-menu .mobile-cta:hover { background: var(--rose-dark); }

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(233, 78, 119, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.2s;
  z-index: 90;
}

.back-to-top[data-visible="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--rose-dark);
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .nav-links { display: none; }
        .hamburger { display: block; }
}

@media (max-width: 480px) { .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; } }

body[data-menu-open="true"] { overflow: hidden; }

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

.footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-grid-v2 .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-grid-v2 .footer-brand .footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.footer-grid-v2 .footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid-v2 .footer-contact-block a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-grid-v2 .footer-contact-block a:hover { color: #E94E77; }

.footer-grid-v2 .footer-contact-block .label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 8px;
}

.footer-grid-v2 .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  background: #E94E77;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(233, 78, 119, 0.32);
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  margin-top: 4px;
}

.footer-grid-v2 .footer-cta:hover {
  background: #C93660;
  color: #fff !important;
  transform: translateY(-1px);
}

.footer-grid-v2 h4 {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

.footer-grid-v2 .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid-v2 .footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-grid-v2 .footer-links a:hover { color: #E94E77; }

@media (max-width: 880px) {
  .footer-grid-v2 {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .footer-grid-v2 .footer-brand {
          grid-column: 1 / -1;
        }
}

@media (max-width: 540px) {
  .footer-grid-v2 {
          grid-template-columns: 1fr;
          gap: 28px;
        }
}

#aits-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 16, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#aits-popup-overlay[data-visible="true"] {
  opacity: 1;
  visibility: visible;
}

.aits-popup-card {
  background: #fff;
  border-radius: 18px;
  width: min(480px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px 28px 24px;
  position: relative;
  box-shadow: 0 24px 64px rgba(15, 15, 16, 0.32);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#aits-popup-overlay[data-visible="true"] .aits-popup-card { transform: translateY(0); }

.aits-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #5A5E66;
  font-size: 1.5rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aits-popup-close:hover {
  background: #F8F9FB;
  color: #0F0F10;
}

.aits-popup-close:focus-visible {
  outline: 2px solid #E94E77;
  outline-offset: 2px;
}

.aits-popup-eyebrow {
  color: #E94E77;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin-bottom: 10px;
}

.aits-popup-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #0F0F10;
  font-weight: 600;
}

.aits-popup-title em {
  font-style: italic;
  color: #E94E77;
  font-weight: 500;
}

.aits-popup-subtitle {
  color: #5A5E66;
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0 0 22px;
}

.aits-popup-form .aits-popup-row { margin-bottom: 12px; }

.aits-popup-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0F0F10;
  margin-bottom: 4px;
}

.aits-popup-form input[type="text"],
    .aits-popup-form input[type="email"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #E1E3E8;
  border-radius: 10px;
  font-size: 0.96rem;
  font-family: inherit;
  color: #0F0F10;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.aits-popup-form input:focus {
  outline: none;
  border-color: #E94E77;
  box-shadow: 0 0 0 4px rgba(233, 78, 119, 0.1);
}

.aits-popup-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 18px;
  cursor: pointer;
  padding: 4px 0;
}

.aits-popup-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #E94E77;
  cursor: pointer;
}

.aits-popup-consent span {
  font-size: 0.78rem;
  color: #5A5E66;
  line-height: 1.45;
}

.aits-popup-consent a {
  color: #E94E77;
  font-weight: 600;
  text-decoration: underline;
}

.aits-popup-submit {
  width: 100%;
  padding: 13px 20px;
  background: #E94E77;
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 22px rgba(233, 78, 119, 0.32);
  transition: background 0.2s, transform 0.2s;
}

.aits-popup-submit:hover {
  background: #C93660;
  transform: translateY(-1px);
}

.aits-popup-submit:focus-visible {
  outline: 2px solid #0F0F10;
  outline-offset: 3px;
}

.aits-popup-submit:disabled {
  background: #8B8F97;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.aits-popup-terms {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #E1E3E8;
  font-size: 0.72rem;
  color: #8B8F97;
  line-height: 1.5;
}

.aits-popup-terms summary {
  cursor: pointer;
  font-weight: 600;
  color: #5A5E66;
  padding: 2px 0;
  list-style: none;
}

.aits-popup-terms summary::-webkit-details-marker { display: none; }

.aits-popup-terms summary::before {
  content: '+ ';
  color: #E94E77;
  font-weight: 700;
}

.aits-popup-terms[open] summary::before { content: '− '; }

.aits-popup-terms p { margin: 8px 0 0; }

.aits-popup-error {
  background: #FFF5F7;
  border-left: 3px solid #E94E77;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  color: #C93660;
  margin-bottom: 12px;
  display: none;
}

.aits-popup-error[data-visible="true"] { display: block; }

@media (max-width: 480px) {
  .aits-popup-card {
          padding: 26px 20px 20px;
          border-radius: 14px;
        }
        .aits-popup-title { font-size: 1.4rem; }
}

.footer-social {
  display: flex;
  gap: 10px;
  margin: 4px 0 6px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: #E94E77;
  color: #fff;
  border-color: #E94E77;
  transform: translateY(-2px);
}

.nav-links a { transition: color 0.2s; }

.hero p.lead {
  font-size: 1.2rem;
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--gray);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--soft-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-arrow::after { content: '→'; transition: transform 0.2s; }

.section-dark .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.section-dark .btn-secondary:hover {
  background: var(--white);
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  font-weight: 700;
}

h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

footer a { transition: color 0.2s; }

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

h2 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

.section-dark h2,
    .section-dark h3 { color: var(--white); }

.section-dark p { color: rgba(255, 255, 255, 0.74); }

.nav-links a.active { color: var(--rose); }

.hero {
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--soft-white);
}

.section-white { background: var(--white); }

.section-dark { background: var(--charcoal); color: var(--white); position: relative; overflow: hidden; }

.section-dark::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--rose);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
}

.section-dark > .container { position: relative; z-index: 1; }
