:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #e5e7eb;

  --accent: #ff7a18;   /* highlight keyword */
  --accent-2: #2563eb; /* primary CTA */
  --success: #16a34a;

  --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);

  --radius: 18px;
  --container: 1120px;
  --header-h: 72px;
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

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

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  background: #111827;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
}

.skip-link:focus {
  left: 16px;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 16px;
}

.brand-tagline {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* Nav */
.nav {
  justify-self: center;
}

.nav ul {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid transparent;
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent-2);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow-sm);
}

.btn-small {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 12px;
}

.w-full {
  width: 100%;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  margin: 4px 0;
  border-radius: 999px;
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.36);
  z-index: 90;
}

.nav-overlay.is-open {
  display: block;
}

/* Sections */
.section {
  padding: 72px 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section-soft {
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.02));
  border-top: 1px solid rgba(229, 231, 235, 0.65);
  border-bottom: 1px solid rgba(229, 231, 235, 0.65);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 68ch;
}

/* Hero */
.hero {
  padding-top: calc(var(--header-h) + 34px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  top: -160px;
  right: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 122, 24, 0.22), rgba(37, 99, 235, 0.14), transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  bottom: -220px;
  left: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.14), rgba(255, 122, 24, 0.14), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: var(--accent-2);
  font-weight: 850;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.hero-title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-line {
  display: block;
}

.highlight {
  color: var(--accent);
  position: relative;
  z-index: 0;
}

.highlight::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -4px;
  height: 14px;
  background: rgba(255, 122, 24, 0.18);
  border-radius: 10px;
  z-index: -1;
}

.hero-sub {
  margin: 14px 0 22px;
  color: var(--muted);
  max-width: 60ch;
  font-size: 16px;
}

.hero-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.desktop-only {
  display: inline-flex;
}

.trust {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}

.trust-icon {
  width: 22px;
  height: 22px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: var(--success);
  font-weight: 900;
}

.hero-figure {
  margin: 0;
  position: relative;
}

.hero-figure img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 9 / 10;
  background: #f8fafc;
}

.hero-badge {
  position: absolute;
  left: -14px;
  bottom: 18px;
  max-width: 240px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.hero-badge strong {
  display: block;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.hero-badge span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  color: var(--accent);
  background: rgba(255, 122, 24, 0.14);
  border: 1px solid rgba(255, 122, 24, 0.22);
}

.divider {
  height: 1px;
  background: rgba(229, 231, 235, 0.92);
  margin: 14px 0;
}

/* Package card */
.package-name {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.package-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.package-price {
  margin: 12px 0 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.package-focus {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.list-title {
  margin: 10px 0 6px;
  font-weight: 850;
  font-size: 13px;
  color: var(--text);
}

.ul-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.ul-clean li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}

.ul-include li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: var(--success);
  font-weight: 900;
  flex: none;
  margin-top: 1px;
}

.ul-exclude li::before {
  content: "—";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #64748b;
  font-weight: 900;
  flex: none;
  margin-top: 1px;
}

.card-actions {
  margin-top: 16px;
}

/* Testimonials */
.testimonial .testi-quote {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.testi-meta {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}

.testi-name {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.testi-sub {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 650;
}

/* Expect */
.expect-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--accent-2);
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.timeline-item h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.timeline-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.card-title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.checklist li {
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  font-weight: 650;
  display: flex;
  gap: 10px;
  align-items: center;
}

.checklist li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: none;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.about-lead {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  max-width: 68ch;
}

.about-actions {
  margin-top: 16px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.about-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}

.about-points li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--accent-2);
  font-weight: 900;
  flex: none;
  margin-top: 2px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f8fafc;
}

.gallery-item::after {
  content: "Zoom";
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 231, 235, 0.92);
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: 160ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.65);
}

.modal.is-open {
  display: flex;
}

.modal-dialog {
  width: min(980px, 100%);
  position: relative;
}

.modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.modal-media {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  background: #0b1220;
}

.modal-media img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  background: #0b1220;
}

body.modal-open {
  overflow: hidden;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--muted);
  font-weight: 900;
}

.faq details[open] summary::after {
  content: "–";
}

.faq .answer {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.faq .answer p {
  margin: 0;
}

/* Lead */
.lead-wrap {
  padding: 18px;
}

.selected-package {
  margin: 0 0 12px;
  font-weight: 950;
  color: var(--accent-2);
  display: none;
}

.selected-package.is-visible {
  display: block;
}

.lead-iframe-wrap iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 16px;
  background: #f8fafc;
}

.lead-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.lead-actions {
  margin-top: 16px;
}

/* Footer */
.footer {
  padding: 28px 0 46px;
  border-top: 1px solid rgba(229, 231, 235, 0.7);
}

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

.footer .muted {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.92);
  box-shadow: var(--shadow);
}

.wa-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

.wa-text {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* Mobile sticky CTA bar */
.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 110;
  display: none;
}

.mobile-cta.is-visible {
  display: block;
}

.mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 18px;
  padding: 12px 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-cta-text {
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}

body.has-mobile-cta .wa-float {
  bottom: 88px;
}

/* Responsive */
@media (max-width: 1000px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .expect-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero-badge {
    left: 14px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
    position: fixed;
    top: calc(var(--header-h) + 10px);
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    z-index: 95;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 6px;
  }

  .nav a {
    padding: 12px 12px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .desktop-only {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .checklist {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 721px) {
  .mobile-cta {
    display: none !important;
  }
}
