:root {
  --bg: #f6f3ee;
  --surface: #fcfaf6;
  --surface-2: #f0ebe2;
  --text: #2a2a26;
  --muted: #6d6b63;
  --line: #e6dfd5;
  --accent: #667b5b;
  --accent-dark: #56674d;
  --shadow: 0 16px 40px rgba(70, 58, 38, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  max-width: 460px;
  margin-bottom: 20px;
}

p {
  margin: 0;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 223, 213, 0.8);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.96rem;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, background 0.18s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

/* Hero */

.hero {
  padding: 34px 0;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.45));
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  align-items: center;
}

.hero-copy {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, rgba(252,250,246,0.96) 0%, rgba(252,250,246,0.88) 75%, rgba(252,250,246,0.72) 100%);
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b776d;
  margin-bottom: 18px;
  font-weight: 700;
}



.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 470px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-note {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 26px;
}

.hero-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #5f5d55;
  font-size: 0.95rem;
}

.hero-points span::before {
  content: "✦";
  margin-right: 8px;
  color: var(--accent);
}

.hero-image {
  background: #f6f3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px; /* gives breathing space */
}

.hero-image img {
  max-width: 100%;
  max-height: 520px; /* 🔥 this controls size */
  width: auto;
  height: auto;
}

/* Sections */

section {
  padding: 28px 0;
}

.section-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: stretch;
}

.split.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.split-copy {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin-bottom: 16px;
  max-width: 520px;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7c776e;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-intro {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.split-image {
  min-height: 420px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cards and lists */

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  min-height: 176px;
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.ticks {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.ticks div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.ticks div::before {
  content: "●";
  color: var(--accent);
  font-size: 0.78rem;
  flex: 0 0 auto;
  margin-top: 0.38em;
}

/* Pricing toggle */

.pricing-toggle {
  margin-top: 18px;
}

.pricing-guide {
  display: none;
}

.pricing-guide.active {
  display: block;
}

.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.96rem;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background: #f4efe7;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f5d55;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Results */

.results-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.result-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.result-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.result-card .label {
  padding: 14px 14px 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Reviews */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.review {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  min-height: 210px;
}

.stars {
  color: #7a8a5b;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.review p {
  color: var(--text);
}

.review strong {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* CTA */

.cta {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.cta-copy {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.cta-copy p {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 560px;
}

/* Contact modal */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 34, 34, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  width: min(100%, 440px);
  background: #fcfaf6;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
}

.modal-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.modal-box h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.modal-text {
  color: var(--muted);
  margin-bottom: 22px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Chat widget */

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  font-family: Arial, Helvetica, sans-serif;
}

.chat-toggle {
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 0.98rem;
}

.chat-panel {
  display: none;
  width: min(320px, calc(100vw - 32px));
  margin-bottom: 12px;
  background: #fcfaf6;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.chat-panel.active {
  display: block;
}

.chat-header {
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--line);
  background: #f4efe7;
}

.chat-header strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.chat-header span {
  color: var(--muted);
  font-size: 0.92rem;
}

.chat-body {
  padding: 16px 18px 18px;
}

.chat-options {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.chat-option {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  border-radius: 14px;
  padding: 11px 12px;
  cursor: pointer;
  font-size: 0.94rem;
}

.chat-option:hover {
  border-color: var(--accent);
}

.chat-answer {
  display: none;
  margin: 6px 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f6f3ee;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chat-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

/* Footer */

footer {
  padding: 28px 0 60px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 1024px) {
  .cards,
  .reviews-grid,
  .results-row {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split.reverse,
  .cta,
  

.hero-copy {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

}


@media (max-width: 680px) {
  .container {
    width: min(100% - 16px, 1160px);
  }

  .nav {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 12px 16px;
  }

  .cards,
  .reviews-grid,
  .results-row {
    grid-template-columns: 1fr;
  }


  .hero {
    padding: 12px 0 18px;
  }

  

  .hero-copy,
  .split-copy,
  .cta-copy {
    padding: 26px 20px;
  }

  .hero-copy {
    order: 2;
  }



 .hero-sub {
    font-size: 1.1rem;
    margin-bottom: 22px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .button.secondary {
    width: 100%;
  }

  .hero-note {
    margin-bottom: 16px;
    font-size: 0.93rem;
  }

  .hero-points {
    display: grid;
    gap: 8px;
    font-size: 0.91rem;
  }

  .split-image {
    min-height: 220px;
  }

  .split-image img,
  .cta-image img,
  .result-card img {
    height: 220px;
  }

  .review {
    min-height: auto;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .chat-toggle {
    padding: 13px 16px;
  }
}
