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

:root {
  --primary:      #0d9488;
  --primary-dark: #0f766e;
  --primary-light:#f0fdfa;
  --dark:         #0f172a;
  --dark2:        #1e293b;
  --text:         #0f172a;
  --text2:        #475569;
  --text3:        #94a3b8;
  --bg:           #ffffff;
  --bg2:          #f8fafc;
  --bg3:          #f1f5f9;
  --border:       #e2e8f0;
  --card:         #ffffff;
  --radius:       16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:       0 4px 20px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:    0 20px 48px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1rem; color: var(--text);
}
.nav-brand-emoji {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); display: flex;
  align-items: center; justify-content: center; font-size: 17px;
}
.nav-brand-img {
  width: 36px; height: 36px; border-radius: 10px; object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--text2);
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg3); }
.nav-links a.active { color: var(--primary); background: var(--primary-light); }
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text2); font-size: 22px; cursor: pointer;
  padding: 4px 8px;
}

/* ── Hero ── */
.hero {
  background: var(--bg);
  padding: 80px 32px 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, #ccfbf1 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px; background: var(--primary);
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 20px;
}
.hero h1 .hl { color: var(--primary); }
.hero-sub {
  font-size: 1.05rem; color: var(--text2);
  max-width: 480px; margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-stat-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 18px;
}
.hero-stat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.hero-stat-val {
  font-size: 1.7rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1;
}
.hero-stat-lbl { font-size: 13px; color: var(--text3); margin-top: 3px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  transition: all 0.15s; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark2); transform: translateY(-1px); }
.btn-light { background: var(--bg3); color: var(--text); border: 1.5px solid var(--border); }
.btn-light:hover { background: var(--bg2); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { border-color: #fff; }

/* ── Page header (inner pages) ── */
.page-header {
  background: var(--primary-light);
  padding: 72px 32px 64px; text-align: center;
  border-bottom: 1px solid #b2f5ea;
}
.page-header-inner { max-width: 640px; margin: 0 auto; }
.page-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.page-header h1 {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800;
  color: var(--text); letter-spacing: -0.02em; margin-bottom: 14px;
}
.page-header p { font-size: 1rem; color: var(--text2); line-height: 1.7; }

/* ── Sections ── */
.section { padding: 96px 32px; }
.section-alt { background: var(--bg2); }
.section-dark { background: var(--dark); }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.section-label span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.025em; margin-bottom: 14px; line-height: 1.12;
}
.section-sub { font-size: 1rem; color: var(--text2); max-width: 520px; line-height: 1.7; }

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 52px;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow); transform: translateY(-3px);
  border-color: #b2f5ea;
}
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 52px;
}
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
}
.price-card h3 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.price-card li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--text2);
}
.price-card li strong { color: var(--text); font-weight: 700; }

/* ── Process ── */
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 52px;
}
.process-step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p  { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── Review cards ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 52px;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; }
.review-text {
  font-size: 14px; color: var(--text2); line-height: 1.7; flex: 1;
}
.review-author {
  font-size: 13px; font-weight: 700; color: var(--text);
  padding-top: 14px; border-top: 1px solid var(--border);
}

/* ── Review summary bar ── */
.review-summary {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  background: var(--primary-light); border: 1px solid #b2f5ea;
  border-radius: var(--radius); padding: 28px 32px; margin-bottom: 52px;
}
.review-big-num { font-size: 4rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.review-big-sub { font-size: 13px; color: var(--text3); margin-top: 4px; }
.review-stars-lg { color: #f59e0b; font-size: 22px; letter-spacing: 2px; margin-bottom: 4px; }
.review-summary-cta { margin-left: auto; }

/* ── Contact ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 52px; align-items: start;
}
.contact-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-item-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); margin-bottom: 3px; }
.contact-item-val { font-size: 15px; font-weight: 600; color: var(--text); }

.hours-table { width: 100%; }
.hours-table tr td { padding: 11px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--text2); }

.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.social-btn:hover { border-color: var(--primary); background: var(--primary-light); }
.social-btn svg { width: 18px; height: 18px; fill: var(--text2); }

.book-cta-box {
  background: var(--primary); border-radius: var(--radius);
  padding: 36px; color: #fff;
}
.book-cta-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.book-cta-box p  { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.6; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 88px 32px; text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800;
  color: #fff; letter-spacing: -0.025em; margin-bottom: 14px;
}
.cta-band p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* ── Footer ── */
.footer {
  background: var(--dark); padding: 56px 32px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { color: rgba(255,255,255,0.9); }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-brand-sub  { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.25);
}

/* ── SPA pages ── */
.page { display: none; animation: pageIn 0.22s ease both; }
.page.active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-sm); transition: all 0.2s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon { font-size: 28px; margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── Pricing note ── */
.pricing-note { font-size: 13px; color: var(--text2); margin-top: 8px; }

/* ── Social tags (contact page) ── */
.social-tag {
  display: inline-flex; padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--border); font-size: 13px; font-weight: 600;
  color: var(--text2); transition: all 0.15s;
}
.social-tag:hover { border-color: var(--primary); color: var(--primary); }

/* ── Mobile ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero::before { display: none; }
  .hero { text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-right { flex-direction: row; flex-wrap: wrap; }
  .hero-stat-card { flex: 1; min-width: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .hero { padding: 60px 20px 56px; }
  .page-header { padding: 52px 20px 48px; }
  .nav-inner { padding: 0 20px; }
  .hero-right { flex-direction: column; }
  .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 12px 20px 20px; border-bottom: 1px solid var(--border); gap: 2px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .navbar { position: relative; }
  .review-summary-cta { margin-left: 0; width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
