:root {
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --teal-dark: #0f766e;
  --teal-pale: #f0fdfa;
  --teal-50: #f6fffe;
  --slate: #334155;
  --slate-light: #64748b;
  --slate-lighter: #94a3b8;
  --slate-lightest: #e2e8f0;
  --slate-50: #f8fafc;
  --cream: #fefdf8;
  --white: #ffffff;
  --warm: #faf8f5;
  --rose-pale: #fff1f2;
  --lavender-pale: #faf5ff;
  --peach-pale: #fff7ed;
  --mint-pale: #f0fdf4;
  --sky-pale: #f0f9ff;
  --shadow-sm: 0 1px 3px rgba(51,65,85,.06), 0 1px 2px rgba(51,65,85,.04);
  --shadow-md: 0 4px 16px rgba(51,65,85,.07), 0 2px 6px rgba(51,65,85,.05);
  --shadow-lg: 0 12px 40px rgba(51,65,85,.1), 0 4px 12px rgba(51,65,85,.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254,253,248,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13,148,136,.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(254,253,248,.95);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--slate);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
}
.nav-logo-accent { color: var(--teal); }
.nav-logo:hover { color: var(--teal-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  color: var(--slate-light);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--teal); background: var(--teal-pale); }
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  border-radius: var(--radius-xl) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; color: white !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,148,136,.82) 0%,
    rgba(15,118,110,.72) 40%,
    rgba(51,65,85,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-accent {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.85);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-primary:hover {
  background: var(--teal-pale);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: white;
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION COMMON ─── */
section { padding: 100px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ─── SERVICES ─── */
.services { background: var(--white); }
.services .container { text-align: center; }
.services .section-subtitle { margin: 0 auto 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--slate-lightest);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--white);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.service-card:nth-child(1) .service-icon { background: var(--teal-pale); }
.service-card:nth-child(2) .service-icon { background: var(--rose-pale); color: #be185d; }
.service-card:nth-child(3) .service-icon { background: var(--lavender-pale); color: #7c3aed; }
.service-card:nth-child(4) .service-icon { background: var(--peach-pale); color: #c2410c; }
.service-card:nth-child(5) .service-icon { background: var(--mint-pale); color: #16a34a; }
.service-card:nth-child(6) .service-icon { background: var(--sky-pale); color: #0284c7; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .925rem;
  color: var(--slate-light);
  line-height: 1.75;
}

/* ─── ABOUT ─── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }
.about-stats {
  position: absolute;
  top: -24px;
  left: -24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-stat .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}
.about-stat .stat-label {
  font-size: .75rem;
  color: var(--slate-light);
  font-weight: 500;
}
.about-content .section-title { margin-top: 8px; }
.about-text {
  font-size: 1rem;
  color: var(--slate-light);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-value strong {
  display: block;
  font-size: .95rem;
  color: var(--slate);
  margin-bottom: 2px;
}
.about-value span {
  font-size: .875rem;
  color: var(--slate-light);
  line-height: 1.6;
}

/* ─── APPROACH ─── */
.approach {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.approach::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.approach .container { position: relative; z-index: 1; }
.approach-header { text-align: center; margin-bottom: 64px; }
.approach-header .section-label { color: rgba(255,255,255,.6); }
.approach-header .section-label::before { background: rgba(255,255,255,.6); }
.approach-header .section-title { color: white; }
.approach-header .section-subtitle { color: rgba(255,255,255,.75); margin: 0 auto; }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.approach-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.approach-step:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  margin-bottom: 16px;
}
.approach-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}
.approach-step p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}

/* ─── INSURANCE ─── */
.insurance {
  background: var(--slate);
  padding: 72px 0;
}
.insurance-content { text-align: center; max-width: 700px; margin: 0 auto; }
.insurance-content .section-title { color: white; margin-bottom: 16px; }
.insurance-text {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 40px;
}
.insurance-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.ins-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 14px 24px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.ins-badge svg { color: var(--teal-light); }

/* ─── CONTACT ─── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text {
  font-size: 1rem;
  color: var(--slate-light);
  line-height: 1.85;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-lighter);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--teal); }

.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--slate-lightest);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate-lightest);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .925rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--mint-pale);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 16px;
  color: #16a34a;
  font-weight: 500;
  font-size: .9rem;
}
.form-success.show { display: flex; }

/* ─── MAP ─── */
.map-section { height: 320px; filter: grayscale(30%); }
.map-section iframe { width: 100%; height: 100%; }

/* ─── FOOTER ─── */
.footer {
  background: var(--slate);
  color: rgba(255,255,255,.6);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  line-height: 1.3;
}
.footer-logo:hover { color: white; }
.footer-col strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254,253,248,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--slate-lightest);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { padding: 12px 16px; width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { right: 16px; bottom: -24px; }
  .about-stats { left: 16px; top: -16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 20px 60px; }
  .container { padding: 0 20px; }
  .about-img-main img { height: 280px; }
  .about-img-float img { height: 160px; }
}
