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

:root {
  --ink: #1c1c1e;
  --paper: #ffffff;
  --mist: #eceef2;
  --mist-2: #f6f6f8;
  --accent: #7b83eb;
  --accent-dark: #5c63d6;
  --accent-tint: #eeeffd;
  --line: #e4e4e9;
  --muted: #74747c;
  --pop: #ff5d7a;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  overflow-x: hidden;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--ink);
  color: #cfcfd6;
  font-size: 12px;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
}
.topbar-links { display: flex; align-items: center; gap: 26px; }
.topbar-links a { text-decoration: none; color: #cfcfd6; transition: color .2s; }
.topbar-links a:hover { color: #fff; }
.topbar span.divider { opacity: .3; }

/* ============ NAV ============ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 56px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 2px 10px rgba(28,28,30,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo span { font-weight: 500; color: var(--muted); }
.nav-links { display: flex; gap: 42px; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { border-color: var(--accent); color: var(--accent-dark); }
.nav-right { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.nav-cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 11px 24px;
  border-radius: 100px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  padding: 6px 4px;
  margin-left: 8px;
}
.nav-cta-mobile { display: none; }

@media (max-width: 900px) {
  .topbar { padding: 10px 20px; font-size: 11px; }
  .topbar-links { display: none; }
  nav { padding: 16px 18px; gap: 10px; }
  .nav-logo { font-size: 17px; letter-spacing: 0.2px; }
  .nav-right { gap: 10px; }
  .nav-right .nav-cta { display: inline-block; padding: 9px 16px; font-size: 12.5px; }
  .nav-toggle { display: block; flex-shrink: 0; font-size: 24px; padding: 4px; margin-left: 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 4px;
    padding: 10px 24px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); width: 100%; font-size: 15px; }
  .nav-links a:last-child { border-bottom: none; }
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--ink);
  padding: 72px 48px 64px;
  text-align: center;
}
.page-hero .eyebrow-tag { justify-content: center; color: #b9bcf2; }
.page-hero .eyebrow-tag::before { background: var(--accent); }
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 16px;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { color: #d7d7de; max-width: 560px; margin: 0 auto; font-size: 15px; line-height: 1.8; }

/* ============ HERO (home) ============ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,24,0.62) 0%, rgba(20,20,24,0.4) 45%, rgba(20,20,24,0.75) 100%);
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 15px;
  color: #e8e8ef;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: #fff;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: #d7d7de;
  max-width: 480px;
  margin: 0 auto 34px;
}
.btn-pill {
  display: inline-block;
  width: fit-content;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 17px 38px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 10px 26px rgba(123,131,235,0.35);
}
.btn-pill:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(92,99,214,0.4); }
.btn-pill-outline {
  display: inline-block;
  width: fit-content;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 34px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: all .25s;
}
.btn-pill-outline:hover { background: var(--ink); color: #fff; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-btns .btn-pill-outline { color: #fff; border-color: #fff; }
.hero-btns .btn-pill-outline:hover { background: #fff; color: var(--ink); }

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 44px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat-num {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}
.hero-stats .stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cfcfd8;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero { min-height: 520px; }
  .hero-copy { padding: 48px 24px; }
}

/* ============ SERVICE LIST (bullet style, home preview) ============ */
.service-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 48px 20px;
  display: flex;
  flex-direction: column;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: opacity .3s;
}
.service-item:first-child { border-top: 1px solid var(--line); }
.service-item:hover { opacity: 0.7; }
.service-dash { width: 28px; height: 1.5px; background: var(--accent); margin-top: 15px; flex-shrink: 0; }
.service-copy h3 { font-family: "Playfair Display", serif; font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.service-copy p { font-size: 13.5px; color: var(--muted); }

@media (max-width: 900px) {
  .service-list { padding: 48px 24px 10px; }
}

/* ============ GENERIC SECTION ============ */
section.block { padding: 96px 48px; }
.block-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.eyebrow-tag::before { content:""; width: 22px; height: 1.5px; background: var(--accent); }
h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 14px;
}
h2 em { font-style: italic; color: var(--accent-dark); }
.block-header p { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ============ WHY US ============ */
.why { background: var(--mist-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}
.feature-card { padding: 0; }
.feature-title { font-family: "Poppins", sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* ============ FULL SERVICES GRID (services page, Pro-Lec style cards) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 28px;
  cursor: pointer;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.service-card:hover, .service-card:focus-visible {
  box-shadow: 0 20px 40px rgba(28,28,30,0.08);
  transform: translateY(-4px);
  border-color: var(--accent);
  outline: none;
}
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.service-card-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card-icon svg { width: 22px; height: 22px; }
.service-card-tag {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--mist-2);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.service-card h3 { font-family: "Playfair Display", serif; font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.service-card-benefit { font-size: 13.5px; color: var(--ink); font-weight: 500; line-height: 1.5; margin-bottom: 16px; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.service-card li { font-size: 13px; color: var(--muted); line-height: 1.5; padding-left: 18px; position: relative; }
.service-card li::before { content:"—"; position: absolute; left: 0; color: var(--accent); }
.service-card-cta {
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============ PRICING ============ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
}
.plan-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.plan-card:hover { box-shadow: 0 20px 40px rgba(28,28,30,0.08); transform: translateY(-4px); }
.plan-card.popular { border: 1.5px solid var(--accent); }
.popular-badge {
  position: absolute; top: -13px; left: 30px;
  background: var(--pop);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.plan-name { font-family: "Poppins", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px; }
.plan-price { font-family: "Playfair Display", serif; font-size: 46px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.plan-currency { font-size: 20px; font-weight: 700; vertical-align: top; margin-right: 2px; }
.plan-period { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.plan-best {
  font-size: 12px;
  color: var(--ink);
  background: var(--mist-2);
  border-radius: 4px;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 22px;
}
.plan-divider { height: 1px; background: var(--line); margin: 18px 0 20px; }
.plan-features { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 26px; }
.plan-features li { font-size: 13.5px; color: var(--ink); line-height: 1.6; padding-left: 22px; position: relative; }
.plan-features li::before { content:"✓"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 700; }
.plan-btn {
  text-align: center;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .25s;
}
.plan-btn-filled { background: var(--accent); color: #fff; }
.plan-btn-filled:hover { background: var(--accent-dark); }
.plan-btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.plan-btn-outline:hover { background: var(--ink); color: #fff; }
.ad-note {
  max-width: 800px; margin: 44px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.addon-wrap { max-width: 380px; margin: 56px auto 0; text-align: center; }
.addon-heading {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}
.addon-card { text-align: left; }
.addon-badge {
  display: inline-block;
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-family: "Poppins", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ============ PROCESS ============ */
.process { background: var(--mist-2); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}
.step { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 32px 26px; }
.step-num { font-family: "Playfair Display", serif; font-size: 34px; font-weight: 700; color: var(--accent); margin-bottom: 14px; }
.step-title { font-family: "Poppins", sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

@media (max-width: 900px) {
  .features-grid, .plans-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

/* ============ VALUE / INFO STRIP (used on services & about pages) ============ */
.stat-strip {
  background: var(--ink);
  padding: 56px 48px;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  text-align: center;
}
.stat-strip .stat-num { font-family: "Playfair Display", serif; font-size: 34px; font-weight: 900; color: #fff; }
.stat-strip .stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #cfcfd8; margin-top: 6px; }

/* ============ FAQ (services page) ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.faq-a { font-size: 13.5px; color: var(--muted); line-height: 1.8; }

/* ============ CONTACT ============ */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
}
.contact-info p { color: var(--muted); font-size: 14.5px; line-height: 1.8; margin: 18px 0 34px; max-width: 400px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.c-item { border-left: 2px solid var(--accent); padding-left: 16px; }
.c-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.c-value { font-size: 15px; font-weight: 600; }
.contact-quick { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-form {
  background: var(--mist-2);
  border-radius: 10px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field select { appearance: none; }
.field textarea { resize: vertical; min-height: 100px; }
.submit-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 100px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.submit-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ WHATSAPP / EMAIL BUTTONS (Pro-Lec reference pattern) ============ */
.btn-whatsapp, .btn-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 15px 28px;
  border-radius: 100px;
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1fb856; transform: translateY(-2px); }
.btn-email { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-email:hover { background: var(--ink); color: #fff; }

.enquire-band {
  background: var(--mist-2);
  padding: 72px 48px;
  text-align: center;
}
.enquire-band h2 { margin-bottom: 28px; }
.enquire-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer { background: var(--ink); color: #d6d6db; padding: 48px 48px 28px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo { font-family: "Poppins", sans-serif; font-size: 19px; font-weight: 800; color: #fff; }
.footer-logo span { font-weight: 400; color: #9d9dae; }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a { color: #d6d6db; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-meta { display: flex; flex-direction: column; gap: 4px; font-size: 12.5px; color: #9d9dae; }
.footer-meta a { color: #d6d6db; text-decoration: none; }
.footer-meta a:hover { color: var(--accent); }
.footer-copy { max-width: 1180px; margin: 22px auto 0; font-size: 12px; color: #8f8fa0; text-align: center; }

@media (max-width: 900px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  section.block { padding: 64px 24px; }
  .page-hero { padding: 56px 24px 48px; }
  .stat-strip { padding: 40px 24px; gap: 36px; }
  .enquire-band { padding: 56px 24px; }
  .contact-form { padding: 28px; }
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  z-index: 200;
  text-decoration: none;
  transition: transform .25s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============ MODAL (choose Email or WhatsApp — Pro-Lec reference pattern) ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,20,24,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--paper);
  border-radius: 12px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform .25s;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  transition: background .2s;
}
.modal-close:hover { background: var(--mist-2); }
.modal-box h3 { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.modal-box h3 span { color: var(--accent-dark); font-style: italic; }
.modal-box p.modal-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 26px; line-height: 1.7; }
.modal-actions { display: flex; flex-direction: column; gap: 12px; }
.modal-actions .btn-whatsapp, .modal-actions .btn-email { justify-content: center; width: 100%; }

@media (max-width: 480px) {
  .modal-box { padding: 30px 24px; }
}

