/* ═══════════════════════════════════════════════
   HINES & ASSOCIATES — Shared Styles
   Brand: #001f3d / #b6cbe1 / #e87a00
   Fonts: DM Serif Display + Manrope
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #001f3d;
  --navy-90: rgba(0, 31, 61, 0.92);
  --navy-70: rgba(0, 31, 61, 0.7);
  --navy-40: rgba(0, 31, 61, 0.4);
  --navy-15: rgba(0, 31, 61, 0.15);
  --navy-08: rgba(0, 31, 61, 0.08);
  --navy-04: rgba(0, 31, 61, 0.04);
  --blue: #b6cbe1;
  --blue-light: #dce8f2;
  --blue-wash: #eef4f9;
  --orange: #e87a00;
  --orange-light: rgba(232, 122, 0, 0.1);
  --orange-hover: #d06e00;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --cream: #faf8f5;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 31, 61, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 31, 61, 0.1);
  --shadow-lg: 0 12px 48px rgba(0, 31, 61, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 32px;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 14px 32px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: transform var(--transition);
}

.nav-logo:hover img { transform: scale(1.04); }

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

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--orange-hover) !important;
  transform: translateY(-1px);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

/* Mobile overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--orange); }

.mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
}

/* ═══════════════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════════════ */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 122, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy-15);
}

.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}

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

/* Section containers */
.section {
  padding: 100px 32px;
}

.section-narrow {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

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

/* Section headers */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 16px;
}

.section-subhead {
  font-size: 16px;
  color: var(--navy-70);
  max-width: 560px;
  line-height: 1.7;
}

.section-dark .section-subhead {
  color: var(--blue);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--navy-08);
  transition: all var(--transition);
}

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

/* Badge */
.badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* Divider accent */
.accent-bar {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 32px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--blue);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-brand img {
  height: 48px;
  width: auto;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--blue);
  padding: 5px 0;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px; height: 18px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════
   PAGE-SPECIFIC: HOME
   ═══════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--navy);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  animation: fadeUp 0.8s ease-out both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--orange);
}

.hero-desc {
  font-size: 16px;
  color: var(--navy-70);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.hero-stat .number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--orange);
  display: block;
  line-height: 1.2;
}

.hero-stat .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-40);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-visual-accent {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(232, 122, 0, 0.08);
  top: -30px; right: -30px;
  z-index: 0;
}

/* Value props strip */
.value-strip {
  background: var(--white);
  border-top: 1px solid var(--navy-08);
  border-bottom: 1px solid var(--navy-08);
  padding: 48px 32px;
}

.value-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-item {
  text-align: center;
  padding: 0 16px;
}

.value-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 22px; height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.value-item h3 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 13px;
  color: var(--navy-70);
  line-height: 1.5;
}

/* Services preview on home */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--navy-08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-preview-card:hover::before { transform: scaleX(1); }
.service-preview-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.service-preview-card .icon {
  width: 52px; height: 52px;
  background: var(--blue-wash);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-preview-card .icon svg {
  width: 24px; height: 24px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}

.service-preview-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}

.service-preview-card p {
  font-size: 14px;
  color: var(--navy-70);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-preview-card .learn-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-preview-card:hover .learn-more { gap: 10px; }

/* CTA banner */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 122, 0, 0.1) 0%, transparent 70%);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner h2 em {
  font-style: normal;
  color: var(--orange);
}

.cta-banner p {
  font-size: 16px;
  color: var(--blue);
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ═══════════════════════════════════════════════
   PAGE-SPECIFIC: SERVICES
   ═══════════════════════════════════════════════ */
.page-hero {
  padding: 160px 32px 80px;
  text-align: center;
  position: relative;
}

.page-hero .section-heading {
  font-size: 46px;
  max-width: 640px;
  margin: 0 auto 16px;
}

.page-hero .section-subhead {
  margin: 0 auto;
  text-align: center;
}

/* Tier cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--navy-08);
  position: relative;
  transition: all var(--transition);
}

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

.tier-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.tier-card.featured .tier-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 6px;
}

.tier-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}

.tier-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-40);
}

.tier-desc {
  font-size: 14px;
  color: var(--navy-70);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--navy-08);
}

.tier-features {
  list-style: none;
  margin-bottom: 32px;
}

.tier-features li {
  font-size: 14px;
  padding: 7px 0 7px 28px;
  position: relative;
  color: var(--navy-70);
  line-height: 1.5;
}

.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.tier-card .btn { width: 100%; justify-content: center; }

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.addon-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.addon-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--orange);
}

.addon-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.addon-item p {
  font-size: 13px;
  color: var(--blue);
  line-height: 1.5;
}

.addon-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 14px;
  margin-top: 8px;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

.process-step::after {
  content: '→';
  position: absolute;
  top: 28px; right: -22px;
  font-size: 20px;
  color: var(--navy-15);
  font-weight: 700;
}

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

.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: var(--navy-70);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   PAGE-SPECIFIC: ABOUT
   ═══════════════════════════════════════════════ */
.about-hero {
  padding: 160px 32px 80px;
}

.about-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo-wrapper {
  position: relative;
}

.about-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-photo-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 200px; height: 200px;
  border-radius: var(--radius-lg);
  background: var(--orange-light);
  z-index: 0;
}

.about-content .section-heading {
  font-size: 38px;
}

.about-bio {
  font-size: 15px;
  color: var(--navy-70);
  line-height: 1.8;
  margin-bottom: 16px;
}

.credentials-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.credential-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-wash);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.credential-chip svg {
  width: 16px; height: 16px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

/* Timeline */
.timeline {
  margin-top: 48px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--navy-08);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--orange);
}

.timeline-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-text p {
  font-size: 14px;
  color: var(--navy-70);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   PAGE-SPECIFIC: CONTACT
   ═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--navy-08);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--navy-15);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

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

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-info-text {
  font-size: 15px;
  color: var(--navy-70);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px; height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.contact-detail h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--navy-70);
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}

.form-success.active { display: block; }

.form-success .checkmark {
  width: 64px; height: 64px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--navy-70);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav { display: flex; }

  .hero::before { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-right { order: -1; }
  .hero-visual { max-width: 320px; }
  .hero-title { font-size: 38px; }

  .value-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .services-preview-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .tier-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .addons-grid { grid-template-columns: 1fr; }

  .about-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .about-photo-wrapper { display: flex; justify-content: center; }
  .about-photo { max-width: 300px; }
  .about-photo-accent { display: none; }
  .about-content .section-subhead { margin-left: auto; margin-right: auto; }
  .credentials-row { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .section { padding: 72px 24px; }
  .section-heading { font-size: 32px; }
  .page-hero .section-heading { font-size: 36px; }
  .cta-banner { padding: 48px 32px; }
  .cta-banner h2 { font-size: 28px; }
}

@media (max-width: 600px) {
  .value-strip-inner { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; margin-top: 48px; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stat .number { font-size: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-title { font-size: 32px; }
  .nav { padding: 16px 20px; }
}
