:root {
  --slate-950: #0f172a;
  --slate-900: #111827;
  --slate-800: #1e293b;
  --slate-600: #64748b;
  --slate-100: #f1f5f9;
  --green: #10b981;
  --teal: #14b8a6;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --rose: #f43f5e;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--slate-950);
  background: linear-gradient(to bottom, #f8fafc, #fff);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1280px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(896px, calc(100% - 32px)); }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { left: 8px; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e2e8f0;
}
.nav-inner {
  width: min(1280px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: transparent; background: linear-gradient(90deg, #059669, #0d9488); -webkit-background-clip: text; background-clip: text; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  font-size: 12px;
  font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; color: #475569; }
.nav-links a:hover { color: #059669; }
.call-btn {
  color: #fff !important;
  background: linear-gradient(135deg, var(--green), var(--teal));
  padding: 10px 16px;
  border-radius: 8px;
}
.menu-toggle { display: none; border: 0; background: transparent; font-weight: 700; color: #0f172a; }

.hero, .contact-hero, .cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero img, .contact-hero img, .cta-section img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.full-hero { min-height: calc(100vh - 64px); display: flex; align-items: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(15,23,42,.95) 0%, rgba(15,23,42,.70) 50%, rgba(16,185,129,.40) 100%);
}
.hero-content { padding: 128px 0; max-width: 1280px; }
.hero-content.small { padding: 96px 0; }
.hero-content h1, .contact-hero h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
h1 span, h2 span, .cta-content span {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content p, .contact-hero p { max-width: 680px; margin: 0 0 32px; color: rgba(255,255,255,.9); font-size: 20px; line-height: 1.7; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 600;
}
.pill.green { color: var(--green); background: rgba(16,185,129,.10); border-color: transparent; }
.pill.pale { color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 0;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--green), var(--teal)); box-shadow: 0 10px 40px rgba(16,185,129,.40); }
.btn.glass { color: #fff; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.30); backdrop-filter: blur(16px); }
.btn.large { min-height: 64px; padding: 18px 42px; font-size: 20px; }
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  width: 32px;
  height: 48px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 20px;
  transform: translateX(-50%);
}
.scroll-cue:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 4px;
  background: var(--green);
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

.section { padding: 96px 0; }
.white { background: #fff; }
.pale-section { background: #f8fafc; }
.about-band { color: #fff; background: linear-gradient(135deg, var(--slate-950), var(--slate-800)); }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.top-align { align-items: start; }
h2 { margin: 0 0 24px; color: var(--slate-950); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.18; }
.about-band h2, .values-band h2, .dark-services h2, .included-band h2 { color: #fff; }
p { color: var(--slate-600); line-height: 1.8; font-size: 18px; }
.about-band p, .values-band p, .dark-services p, .included-band p { color: rgba(255,255,255,.74); }
.image-stack { position: relative; }
.image-stack img { width: 100%; height: 420px; object-fit: cover; border-radius: 24px; box-shadow: 0 25px 50px rgba(0,0,0,.35); }
.image-stack.light img { box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.stat-card {
  position: absolute;
  color: #fff;
  padding: 18px 24px;
  border-radius: 16px;
  background: rgba(15,23,42,.62);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.stat-card strong { display: block; font-size: 30px; color: var(--green); }
.stat-card span { color: rgba(255,255,255,.82); }
.big-stat { left: 0; right: 0; bottom: 0; border-radius: 0 0 24px 24px; }
.top-stat { top: -24px; right: -20px; }
.bottom-stat { right: -20px; bottom: -24px; background: linear-gradient(135deg, var(--green), var(--teal)); }
.bottom-stat strong { color: #fff; font-size: 40px; }

.values-band, .included-band { background: linear-gradient(135deg, var(--green), var(--slate-950)); }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head p { max-width: 620px; margin: 0 auto; }
.section-head.light h2, .section-head.light p { color: #fff; }
.feature-grid { display: grid; gap: 24px; }
.feature-grid.four { grid-template-columns: repeat(4, 1fr); }
.glass-card {
  padding: 24px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(18px);
}
.glass-card h3 { margin: 0 0 8px; }

.services-intro { background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.service-card {
  display: grid;
  grid-template-columns: 45% 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.service-card img { width: 100%; height: 280px; object-fit: cover; }
.service-card div { padding: 32px; }
.service-card h3, .package-card h3, .photo-grid h3, .testimonial-grid h3 { margin: 0 0 10px; font-size: 24px; }
.service-card p { margin: 0; font-size: 16px; }

.package-title { display: flex; align-items: center; gap: 18px; margin-bottom: 48px; }
.package-title h2 { margin-bottom: 8px; }
.package-title p { margin: 0; }
.package-icon { width: 48px; height: 48px; border-radius: 16px; background: linear-gradient(135deg, var(--green), var(--teal)); box-shadow: 0 4px 20px rgba(16,185,129,.3); }
.package-icon.pink { background: linear-gradient(135deg, var(--pink), var(--rose)); }
.package-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.package-card img { width: 100%; height: 180px; object-fit: cover; }
.package-card div { padding: 24px; }
.package-card p { margin: 0 0 14px; font-size: 14px; color: var(--slate-600); }
.package-card small { display: block; color: #475569; line-height: 1.6; }
.price {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  font-size: 14px;
  font-weight: 800;
}
.pink-price .price { background: linear-gradient(135deg, var(--pink), var(--rose)); }

.dark-services { background: linear-gradient(135deg, var(--slate-950), var(--slate-800)); }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.photo-grid article { position: relative; min-height: 360px; overflow: hidden; border-radius: 24px; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.photo-grid article:after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.95), rgba(15,23,42,.25)); }
.photo-grid div { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; padding: 24px; border-radius: 16px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20); backdrop-filter: blur(18px); }
.photo-grid h3 { color: #fff; }
.photo-grid p { margin: 0; color: rgba(255,255,255,.82); font-size: 16px; }
.included-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.included-list span { padding: 16px; border-radius: 16px; color: #fff; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-grid article { padding: 28px; border-radius: 24px; background: #f8fafc; border: 1px solid #e2e8f0; }
.testimonial-grid img { width: 58px; height: 58px; object-fit: cover; border-radius: 999px; margin-bottom: 16px; }
.testimonial-grid p { font-size: 16px; margin: 0 0 18px; }
.testimonial-grid strong, .testimonial-grid span { display: block; }
.testimonial-grid span { color: var(--slate-600); font-size: 14px; margin-top: 4px; }
.faq-section details { margin-bottom: 16px; padding: 0 24px; border: 1px solid #e2e8f0; border-radius: 16px; background: #f8fafc; }
.faq-section summary { padding: 22px 0; cursor: pointer; color: var(--slate-950); font-weight: 700; }
.faq-section details p { margin: 0 0 22px; font-size: 16px; }

.contact-hero { min-height: 420px; display: flex; align-items: center; }
.contact-cards { position: relative; z-index: 2; margin-top: -80px; padding-bottom: 48px; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-grid article {
  min-height: 168px;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.contact-grid h3 { margin: 0 0 8px; }
.contact-grid p { margin: 0 0 10px; font-size: 14px; }
.contact-grid a { color: #059669; font-weight: 700; font-size: 14px; }
.contact-form { display: grid; gap: 22px; margin-top: 32px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 8px; color: var(--slate-950); font-size: 14px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  color: var(--slate-950);
  background: #fff;
  font: inherit;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.10); }
.form-submit { width: 100%; }
.contact-photo img { width: 100%; height: 320px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.why-box { margin-top: 28px; padding: 28px; border-radius: 24px; color: #fff; background: linear-gradient(135deg, var(--slate-950), var(--slate-800)); }
.why-box h3 { margin-top: 0; }
.why-box ul { margin: 0; padding-left: 20px; line-height: 2; }

.cta-section { min-height: 430px; display: grid; place-items: center; text-align: center; color: #fff; }
.cta-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(15,23,42,.95), rgba(16,185,129,.80)); }
.cta-content { position: relative; padding: 88px 0; }
.cta-content h2 { color: #fff; margin: 0 auto 20px; max-width: 900px; font-size: clamp(2rem, 5vw, 3.5rem); }
.cta-content p { margin: 0 auto 32px; max-width: 660px; color: rgba(255,255,255,.9); font-size: 20px; }
.checks { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 28px; color: rgba(255,255,255,.9); }

.footer { padding: 64px 0 32px; color: #fff; background: #0f172a; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 32px; }
.footer-brand { color: #fff; background: none; margin-bottom: 14px; }
.footer p, .footer a { display: block; margin: 0 0 10px; color: #94a3b8; font-size: 14px; line-height: 1.7; }
.footer h3 { margin: 0 0 16px; font-size: 18px; }
.footer a:hover { color: #34d399; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 42px; padding-top: 26px; border-top: 1px solid #1e293b; }
.footer-bottom div { display: flex; gap: 24px; }

@keyframes scroll {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@media (max-width: 1024px) {
  .split, .service-grid, .package-grid, .feature-grid.four, .contact-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { gap: 18px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; }
  .call-btn { text-align: center; }
  .hero-content { padding: 92px 0; }
  .split, .service-grid, .package-grid, .feature-grid.four, .photo-grid, .testimonial-grid, .contact-grid, .form-row, .footer-grid, .footer-bottom { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .service-card img { height: 220px; }
  .section { padding: 72px 0; }
  .top-stat, .bottom-stat { right: 12px; }
  .footer-bottom, .footer-bottom div { flex-direction: column; }
}
