:root {
  --navy: #0e334e;
  --teal: #e76d2a;
  --teal-dark: #c55a1e;
  --bg: #f8f7f5;
  --text: #2d3b42;
  --muted: #5f7480;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(27, 58, 75, 0.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
header {
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.nav-links a:hover { color: var(--teal); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-small { padding: 10px 22px; font-size: 0.9rem; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal-dark);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #16466b 100%);
  color: var(--white);
  padding: 80px 0 72px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
}
.hero p.sub {
  font-size: 1.15rem;
  color: #d7e2ea;
  max-width: 620px;
  margin: 0 auto 32px;
}
.trust-row {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px; font-size: 0.9rem; color: #c3d3de;
}
.trust-row div::before { content: "✓ "; color: var(--teal); font-weight: 700; }

/* ===== Sub-page hero ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #16466b 100%);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; }
.page-hero p { color: #d7e2ea; max-width: 620px; margin: 12px auto 0; }

/* ===== Sections ===== */
section { padding: 72px 0; }
.section-title { text-align: center; font-size: 1.9rem; color: var(--navy); margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 48px; }

/* ===== Cards & grids ===== */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }

/* ===== Price lists ===== */
.price-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.price-card .cat-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #eee5dc; font-size: 0.95rem;
}
.price-row:last-child { border-bottom: 0; }
.price-row .item { color: var(--text); }
.price-row .cost { color: var(--navy); font-weight: 700; white-space: nowrap; }
.price-row .cost small { color: var(--muted); font-weight: 400; }

/* ===== Subscription plans ===== */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; align-items: stretch; }
.plan {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  display: flex; flex-direction: column;
}
.plan.popular { border: 2px solid var(--teal); }
.plan .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 14px; border-radius: 20px; text-transform: uppercase;
}
.plan h3 { color: var(--navy); font-size: 1.2rem; }
.plan .freq { color: var(--muted); font-size: 0.9rem; }
.plan .amount { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin: 12px 0 2px; }
.plan .amount small { font-size: 0.95rem; font-weight: 400; color: var(--muted); }
.plan .save {
  background: #fdf0e7; color: var(--teal-dark);
  font-size: 0.85rem; font-weight: 600;
  border-radius: 8px; padding: 6px 12px; display: inline-block; margin: 8px auto 0;
}
.plan ul { list-style: none; margin: 18px 0 22px; text-align: left; flex-grow: 1; }
.plan ul li { padding: 5px 0; color: var(--text); font-size: 0.93rem; }
.plan ul li::before { content: "✓ "; color: var(--teal); font-weight: 700; }

/* ===== Dark info panel ===== */
.info-panel {
  background: var(--navy); color: #d7e2ea;
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); margin-top: 40px;
}
.info-panel h3 { color: var(--white); margin-bottom: 6px; }
.info-panel .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 18px; }
.info-panel h4 { color: var(--teal); font-size: 0.98rem; margin-bottom: 4px; }
.info-panel p { font-size: 0.92rem; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step { text-align: center; padding: 0 12px; }
.step .num {
  width: 48px; height: 48px; line-height: 48px;
  background: var(--teal); color: var(--white);
  border-radius: 50%; font-weight: 700; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.step h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ===== About ===== */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: center; }
.about-photo {
  background: #e8e2db;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.9rem; text-align: center; padding: 16px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about h2 { color: var(--navy); font-size: 1.7rem; margin-bottom: 16px; }
.about p { color: var(--muted); margin-bottom: 14px; }
.creds { list-style: none; margin-top: 8px; }
.creds li { padding: 6px 0; color: var(--text); }
.creds li::before { content: "✓ "; color: var(--teal); font-weight: 700; }

/* ===== Testimonials ===== */
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  font-size: 0.98rem;
}
.quote p { font-style: italic; color: var(--text); margin-bottom: 14px; }
.quote .who { font-weight: 600; color: var(--navy); font-style: normal; font-size: 0.9rem; }
.stars { color: #f4b400; letter-spacing: 2px; margin-bottom: 10px; }

/* ===== Booking ===== */
.booking { background: var(--white); }
.booking-frame-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid #e7e1d9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking-frame-wrap iframe { display: block; border: 0; }

/* ===== Map ===== */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 32px; }
.map-wrap iframe { display: block; border: 0; width: 100%; height: 420px; }

/* ===== Footer ===== */
footer {
  background: var(--navy);
  color: #c3d3de;
  padding: 48px 0 32px;
  font-size: 0.9rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 32px; }
footer h4 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
footer a { color: #c3d3de; text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; text-align: center; font-size: 0.8rem; }

/* ===== Social icons ===== */
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-row a:hover { background: var(--teal); }
.social-row svg { width: 18px; height: 18px; }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
