:root {
  --bg: #ffffff;
  --surface: #f0f2f5;
  --surface-2: #e7f0ff;
  --text: #1c1e21;
  --muted: #444950;
  --border: #d8dadf;
  --accent: #1877f2;
  --accent-2: #166fe5;
  --focus: #f7b928;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  --gold: #f7b928;
  --gold-2: #e6a800;
  --gold-border: #c88b00;
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: radial-gradient(900px 420px at 12% 0%, rgba(24, 119, 242, 0.10), transparent 55%),
    radial-gradient(700px 360px at 88% 6%, rgba(247, 185, 40, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 55%, #f6f8ff 100%);
}

 body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(24, 119, 242, 0.07) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.45;
  z-index: -1;
 }

a { color: var(--accent); }
a:hover { color: var(--accent-2); }
a.button,
a.button:hover,
a.button:visited {
  color: #ffffff;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  background: var(--focus);
  color: #000;
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus { left: 10px; }

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(240, 242, 245, 0.85));
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 22px;
}

.brand-tagline {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main { padding-bottom: 24px; }

.hero {
  padding: 28px 0 10px;
}

 .hero-copy h1 {
  position: relative;
 }

 .hero-copy h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 6px;
  border-radius: 999px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(24, 119, 242, 0.9), rgba(247, 185, 40, 0.9));
 }

.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: start;
}

h1 {
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}

h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 0 12px;
}

h3, .h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

p { margin: 0 0 12px; }

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 72ch;
}

.micro {
  font-size: 14px;
  color: var(--muted);
}

.button {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  background: #25D366;  /* WhatsApp green */
  border: 2px solid #128C7E;  /* Darker green border */
  color: white;
  transition: all 0.2s ease;
}

.button:hover {
  background: #128C7E;  /* Darker green on hover */
  border-color: #075E54;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Primary button styles */
.button {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  background: #25D366;  /* WhatsApp green */
  border: 2px solid #128C7E;  /* Darker green border */
  color: white;  /* White text for primary button */
  transition: all 0.2s ease;
}

.button:hover {
  background: #128C7E;  /* Darker green on hover */
  border-color: #075E54;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Button - Modern Design */
.button-secondary {
  background: white !important;
  color: #075E54 !important;
  border: 2px solid #25D366 !important;
  font-weight: 600 !important;
  font-size: 0.95em;
  letter-spacing: 0.3px;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none !important;
  opacity: 1 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* WhatsApp icon */
.button-secondary::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23075E54'%3E%3Cpath d='M17.5 6.5a7.5 7.5 0 10-7.5 7.5c.5 0 1-.06 1.5-.17v-2.5a1 1 0 01.3-.71l5-5a1 1 0 011.4 1.42l-4.8 4.8v.09a6 6 0 104.6-4.84z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.button-secondary:hover {
  background: #f8fff8 !important;
  color: #05483e !important;
  border-color: #25D366 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2) !important;
}

.button-secondary:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Ripple effect */
.button-secondary::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.2) 1%, transparent 1%) center/15000%;
  opacity: 0;
  transition: opacity 0.5s, background-size 0.5s;
  border-radius: 50px;
}

.button-secondary:active::after {
  background-size: 100%;
  opacity: 1;
  transition: 0s;
}

/* Ensure the floating WhatsApp button is visible */
.wa-panel-body .button {
  background: #25D366;
  color: white;
  border: 2px solid #25D366;
  font-weight: 600;
  margin-top: 1rem;
}

.wa-panel-body .button:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: white;
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 10px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

 .hero-card,
 .panel,
 .icon-card,
 .quote,
 .callout,
 .cta-card,
 .step {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
 }

.illustration {
  width: 100%;
  margin-bottom: 12px;
}

.illustration svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

 .illustration img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
 }

 .hero-card .illustration img {
  height: 220px;
  object-fit: cover;
 }

.checklist {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 28px 0;
}

 .section:not(.alt) {
  position: relative;
 }

 .section:not(.alt)::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 218, 223, 0.95), transparent);
  margin: 0 0 22px;
 }

.section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.icon-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

 .panel,
 .icon-card,
 .quote,
 .step {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
 }

 .panel:hover,
 .icon-card:hover,
 .quote:hover,
 .step:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 119, 242, 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
 }

 .icon-card-large {
  grid-template-columns: 150px 1fr;
 }

 .icon-card-large .icon {
  width: 150px;
  height: 150px;
 }

.icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.icon svg {
  display: block;
}

 .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
 }

.inline-media {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

 .trust-illustration {
  width: 150px;
  height: 150px;
  flex: 0 0 auto;
  object-fit: contain;
 }

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.panel {
  background: #fff;
  border: 1px solid rgba(216, 218, 223, 0.85);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.callout {
  margin-top: 16px;
  background: #fff;
  border: 2px solid rgba(24, 119, 242, 0.25);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

blockquote {
  margin: 0;
  color: var(--muted);
}

figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.wa-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
}

.wa-fab {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #25d366;
  color: #073b1d;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.wa-fab:hover {
  filter: brightness(0.98);
}

.wa-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(320px, calc(100vw - 36px));
  border: 1px solid rgba(216, 218, 223, 0.95);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.wa-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  background: linear-gradient(90deg, rgba(37, 211, 102, 0.18), rgba(24, 119, 242, 0.10));
  border-bottom: 1px solid rgba(216, 218, 223, 0.9);
}

.wa-title {
  font-weight: 800;
}

.wa-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.wa-panel-body {
  padding: 12px;
}

.wa-panel-body .button {
  background: #25D366;  /* WhatsApp green */
  color: white;
  border: 2px solid #25D366;
  font-weight: 600;
  text-align: center;
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 15px;
}

.wa-panel-body .button:hover {
  background: #128C7E;  /* Darker green on hover */
  border-color: #128C7E;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wa-message {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.price {
  font-size: 22px;
  font-weight: 800;
  margin: 6px 0 10px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .icon-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }
}
