/* =============================================
   SEA Morris Enterprises — Main Stylesheet
   ============================================= */

:root {
  --navy:      #1a4480;
  --navy-dark: #0d2a57;
  --gold:      #7c3aed;
  --gold-light:#9d5cf8;
  --white:     #ffffff;
  --lavender:  #c4b5fd;
  --off-white: #f5f7ff;
  --gray-100:  #f0eef8;
  --gray-200:  #e2e6ec;
  --gray-400:  #9aa3b0;
  --gray-600:  #5a6474;
  --gray-800:  #2c3340;
  --text:      #1e2530;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.logo { display: flex; align-items: center; }
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-accent { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--navy); background: var(--gray-100); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #2153a0 80%, #3b1fa8 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: -10%;
  background: url('atlanta-skyline.jpg') center/cover no-repeat;
  mix-blend-mode: multiply;
  animation: heroZoom 16s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroZoom {
  from { transform: scale(1);    }
  to   { transform: scale(1.15); }
}

.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");
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-badges li {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-visual { flex-shrink: 0; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.hero-card-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.hero-card-stat {
  color: var(--lavender);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }

.service-card--cta {
  background: var(--navy);
  border-color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--cta:hover { border-color: var(--gold); }
.service-card--cta h3 { color: var(--white); }
.service-card--cta p { color: rgba(255,255,255,0.65); margin-bottom: 20px; }

/* =============================================
   WHY US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
  transition: all var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
}
.gallery-note a { color: var(--gold); font-weight: 500; }
.gallery-note a:hover { text-decoration: underline; }

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.area-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.areas-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
}
.areas-note a { color: var(--gold); font-weight: 500; }
.areas-note a:hover { text-decoration: underline; }

/* =============================================
   FAQ
   ============================================= */
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner .section-header { margin-bottom: 40px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-question[aria-expanded="true"] { background: var(--gray-100); color: var(--gold); }

.faq-arrow {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--gray-400);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--gold); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}
.faq-answer.open { display: block; }
.faq-answer p { color: var(--gray-600); line-height: 1.7; font-size: 0.95rem; }

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--navy); }
.contact .section-eyebrow { color: var(--lavender); }
.contact h2 { color: var(--white); }
.contact > .container > p { color: rgba(255,255,255,0.7); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { padding-top: 8px; }
.contact-info .section-eyebrow { margin-bottom: 10px; }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.contact-info > p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 32px; }

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-details a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.contact-details a:hover { color: var(--gold); }

.contact-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 2px;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,42,0.12);
}

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

.form-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.82rem;
  margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
}

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

.footer-brand .logo-text { font-size: 1.1rem; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 240px; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-links a, .footer-contact a {
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.875rem; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

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

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

@media (max-width: 720px) {
  .section { padding: 56px 0; }

  .main-nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; border-radius: var(--radius); }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; justify-content: center; }

  .hamburger { display: flex; }

  .site-header { position: relative; }

  .hero { padding: 48px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

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

  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-badges { flex-direction: column; gap: 8px; }
  .section-header { margin-bottom: 36px; }
}

/* =============================================
   FORMSPREE BANNERS & FIELD ERRORS
   ============================================= */
.form-banner {
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.95rem;
}
.form-banner--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  font-size: 1rem;
  line-height: 1.6;
  padding: 20px 24px;
}
.form-banner--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.form-field-error {
  display: block;
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  min-height: 1em;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #dc2626 !important;
}

/* =============================================
   APP SECTION
   ============================================= */
.app-section { background: var(--white); }

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.app-content .section-eyebrow { margin-bottom: 10px; }

.app-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.app-sub {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.app-features li {
  color: var(--gray-800);
  font-size: 0.93rem;
  font-weight: 500;
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
  min-width: 148px;
}
.app-badge:hover { background: var(--gold); transform: translateY(-2px); }
.app-badge span { display: flex; flex-direction: column; }
.app-badge-icon { font-size: 1.4rem; flex-shrink: 0; }
.app-badge-sub { font-size: 0.68rem; opacity: 0.75; }
.app-badge-main { font-size: 0.95rem; font-weight: 700; }

.app-note { font-size: 0.8rem; color: var(--gray-400); }

/* Phone mockup */
.app-visual { display: flex; justify-content: center; }

.app-mockup {
  width: 260px;
  background: var(--navy-dark);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(13,42,87,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}
.app-mockup-bar {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin: 0 auto 12px;
}
.app-mockup-screen {
  background: #0f1c38;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.app-mockup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.app-mockup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}
.app-mockup-row.active { background: rgba(124,58,237,0.2); color: var(--white); }
.app-mockup-status { font-size: 0.7rem; flex-shrink: 0; }
.app-mockup-status.done { color: #4ade80; }
.app-mockup-status.prog { color: var(--lavender); }
.app-mockup-status.wait { color: rgba(255,255,255,0.3); }
.app-mockup-btn {
  margin-top: 6px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .app-inner { grid-template-columns: 1fr; gap: 40px; }
  .app-visual { order: -1; }
}

/* =============================================
   AI CALLOUT STRIP
   ============================================= */
.ai-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #2d1070 60%, var(--navy) 100%);
  padding: 56px 0;
}

.ai-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ai-strip-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.ai-strip-text { flex: 1; min-width: 240px; }
.ai-strip-text h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.ai-strip-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  line-height: 1.7;
}

.ai-strip .btn-primary { flex-shrink: 0; white-space: nowrap; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }
.fade-in:nth-child(7) { transition-delay: 0.6s; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #3b1fa8 100%);
  padding: 40px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 40px;
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--lavender);
  margin-left: 2px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-inner { gap: 8px; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { display: none; }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--off-white); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--gray-400);
}

@media (max-width: 840px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* =============================================
   MOBILE STICKY CALL BAR
   ============================================= */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy-dark);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sticky-call-btn {
  flex: 1;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: var(--radius);
  text-align: center;
  transition: background var(--transition);
}
.sticky-call-btn:hover { background: var(--gold-light); }

.sticky-quote-btn {
  flex: 1;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition);
}
.sticky-quote-btn:hover { background: rgba(255,255,255,0.18); }

@media (max-width: 720px) {
  .sticky-call-bar { display: flex; }
  /* Push chatbot widget up so it doesn't overlap the bar */
  .chat-widget { bottom: 80px; }
  /* Add bottom padding to page so content isn't hidden behind bar */
  body { padding-bottom: 72px; }
}

/* =============================================
   CHATBOT TYPING INDICATOR
   ============================================= */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 16px 16px 16px 4px;
  width: fit-content;
}
.chat-typing span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
  animation: typingBounce 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.4; }
  30%            { transform: translateY(-5px); opacity: 1;   }
}

/* =============================================
   CHATBOT WIDGET
   ============================================= */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chat-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,68,128,0.4);
  transition: all var(--transition);
}
.chat-toggle:hover {
  background: var(--gold);
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  transform: translateY(-2px);
}
.chat-icon { font-size: 1.1rem; }

.chat-box {
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 480px;
}
.chat-box.open { display: flex; }

.chat-header {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.chat-name { font-size: 0.9rem; font-weight: 600; }
.chat-status { font-size: 0.75rem; color: #a8f0c6; }
.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.chat-close:hover { color: var(--white); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg { max-width: 88%; }
.chat-msg p {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}
.chat-msg.bot p {
  background: var(--gray-100);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  align-self: flex-end;
}
.chat-msg.user p {
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.chat-suggestion {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}
.chat-suggestion:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.chat-input-row {
  display: flex;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.chat-input-row input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
}
#chat-send {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
}
#chat-send:hover { background: var(--gold); }
