:root {
  --coral: #FF6F59;
  --coral-dark: #E8543D;
  --gold: #F4A340;
  --navy: #1F2A44;
  --cream: #FFF8F1;
  --cream-2: #FFF1E4;
  --text: #3D3A38;
  --text-light: #6B6763;
  --white: #FFFFFF;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(31, 42, 68, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 111, 89, 0.35);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 42, 68, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-light);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--coral-dark); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--coral-dark); }
.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
}
.header-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.header-whatsapp:hover { transform: scale(1.08); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero { padding: 80px 0 60px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.hero-visual { display: flex; justify-content: center; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  width: 100%;
  max-width: 360px;
  border: 1px solid rgba(31,42,68,0.05);
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(31,42,68,0.1);
  font-size: 0.95rem;
}
.hero-card-row:last-of-type { border-bottom: none; }
.hero-card-row strong { color: var(--coral-dark); }
.hero-card-badge {
  margin-top: 20px;
  background: var(--cream-2);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}

/* Sections general */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 2rem; }

/* Services */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { font-size: 1.8rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.05rem; }
.service-card p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 0; }
.service-card-cta {
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-cta h3 { color: var(--white); }
.service-card-cta p { color: rgba(255,255,255,0.9); }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.avatar-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.about-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
}
.about-list li::before { content: "✓ "; color: var(--coral-dark); }

/* How it works */
.how-it-works { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  padding: 24px;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.reviews-grid-2 { grid-template-columns: repeat(2, 1fr); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.review-name { display: block; font-weight: 600; color: var(--navy); font-size: 0.85rem; margin-bottom: 6px; }
.review-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral-dark);
}
.review-link:hover { text-decoration: underline; }
#google-reviews-widget:empty {
  display: none;
}
#google-reviews-widget:not(:empty) {
  margin-bottom: 32px;
}
.reviews-cta {
  text-align: center;
  margin-top: 32px;
}
.reviews-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 12px;
  font-style: italic;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--coral-dark);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 14px; color: var(--text-light); margin-bottom: 0; }

/* Contact */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}
.contact-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.contact-details a:hover { color: var(--coral-dark); }
.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(31,42,68,0.15);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--coral);
}
.form-note { font-size: 0.85rem; color: var(--coral-dark); font-weight: 600; min-height: 1.2em; margin: 0; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 40px 0;
  font-size: 0.8rem;
}
.footer-warning {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.footer-legal { max-width: 900px; margin-bottom: 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    display: none;
    border-bottom: 1px solid rgba(31,42,68,0.08);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-contact { display: none; }
}
@media (max-width: 480px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
}
@media (max-width: 600px) {
  .hero-copy h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
