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

:root {
  --blue-dark: #0D47A1;
  --blue: #1565C0;
  --blue-mid: #2979C0;
  --blue-light: #90CAF9;
  --blue-pale: #BBDEFB;
  --blue-bg: #E3F0FC;
  --white: #FFFFFF;
  --charcoal: #1E2D3D;
  --muted: #5A7085;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── WAVE HEADER ── */
.wave-header {
  position: relative;
  background: linear-gradient(180deg, #EEF5FC 0%, #D6EAFC 30%, #A8D4F7 60%, #5BA3DE 85%, #1565C0 100%);
  padding: 2.5rem 3rem 0;
  overflow: hidden;
}
.wave-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #90CAF9, #1565C0, #0D47A1);
}
.wave-header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.wave-header .phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: #fff;
  padding: 0.75rem 1.8rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s;
}
.wave-header .phone-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.wave-header-curves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
}
.wave-bottom-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── LOGO CENTER ── */
.logo-center {
  text-align: center;
  padding: 0.5rem 2rem 0;
  margin-top: -5.5rem;
  position: relative;
  z-index: 3;
}
.logo-center img {
  height: 320px;
  width: auto;
  max-width: 95%;
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 1rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--blue); font-style: italic; }
.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-secondary {
  color: var(--blue);
  padding: 0.9rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid var(--blue-light);
  transition: border-color 0.25s, background 0.25s;
}
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-bg); }

/* ── PRICING TABLE ── */
.pricing-section {
  padding: 4rem 2rem;
  background: var(--blue-bg);
}
.pricing-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}
.pricing-section .sub {
  text-align: center;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.price-table {
  max-width: 650px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(21,101,192,0.1);
}
.price-table thead th {
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 1rem 1.5rem;
  text-align: left;
}
.price-table thead th:last-child { text-align: right; }
.price-table tbody td {
  padding: 1.1rem 1.5rem;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--blue-bg);
}
.price-table tbody td:last-child {
  text-align: right;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--blue-bg); }
.price-table tbody td.price-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
}
.price-table .section-row td {
  background: var(--blue-bg);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
}
.price-table .popular-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── BENEFITS ── */
.benefits-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.benefits-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--charcoal);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--blue-bg);
  border-radius: 1rem;
}
.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}
.benefit-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.benefit-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── TESTIMONIAL ── */
.testimonial-section {
  padding: 3.5rem 2rem;
  background: var(--white);
  text-align: center;
}
.testimonial-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 2rem;
  color: var(--charcoal);
}
.testimonials-wrap {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-quote {
  flex: 1 1 280px;
  max-width: 420px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-style: italic;
  font-weight: 300;
  position: relative;
  padding: 1.5rem 2rem;
  background: var(--blue-bg);
  border-radius: 1rem;
  border-left: 4px solid var(--blue);
}
.testimonial-author {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  font-style: normal;
}

/* ── CTA + FOOTER (unified) ── */
.cta-footer {
  overflow: hidden;
}
.cta-footer-top {
  background: var(--blue);
  padding: 3.5rem 2rem 3rem;
  text-align: center;
}
.cta-footer-top h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.6rem;
}
.cta-footer-top p {
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  padding: 0.9rem 2.5rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.cta-footer-wave {
  display: block;
  width: 100%;
  height: auto;
  background: var(--blue);
  margin-bottom: -1px;
}
.cta-footer-bottom {
  background: #0D47A1;
  padding: 1.5rem 3rem 1.2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  opacity: 0.85;
}
.footer-brand span {
  color: var(--blue-light);
  font-style: italic;
}
.footer-info {
  text-align: right;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.footer-info a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
.footer-info a:hover {
  text-decoration: underline;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.3rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p, .hero-btns {
  opacity: 0;
  animation: fadeUp 0.6s forwards;
}
.hero h1 { animation-delay: 0.1s; }
.hero p { animation-delay: 0.25s; }
.hero-btns { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .logo-center { margin-top: -3.5rem; }
  .logo-center img { height: 220px; }
}

@media (max-width: 700px) {
  .wave-header { padding: 1.2rem 1.2rem 0; }
  .wave-header-inner { padding-bottom: 2.5rem; }
  .wave-header .phone-btn { font-size: 0.85rem; padding: 0.5rem 1.1rem; }
  .logo-center { margin-top: 0; padding: 0.2rem 1rem 0; }
  .logo-center img { height: 220px; }
  .hero { padding: 0.5rem 1.5rem 2.5rem; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 0.95rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .price-table thead th,
  .price-table tbody td { padding: 0.7rem 0.8rem; font-size: 0.9rem; }
  .price-table tbody td:last-child { font-size: 1.1rem; }
  .section-row td { font-size: 0.95rem; }
  .testimonial-section { padding: 2rem 1.2rem; }
  .testimonial-section h2 { margin-bottom: 1rem; }
  .testimonials-wrap { flex-direction: column; align-items: center; gap: 0.8rem; }
  .testimonial-quote { max-width: 100%; padding: 1rem 1.2rem; font-size: 1rem; line-height: 1.6; }
  .testimonial-author { margin-top: 0.5rem; }
  .cta-footer-top { padding: 2.5rem 1.5rem; }
  .cta-footer-top h2 { font-size: 1.4rem; }
  .cta-footer-bottom { padding: 1.2rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-info { text-align: center; }
}
