:root {
  --blue-900: #1e3a5f;
  --blue-700: #2563eb;
  --blue-500: #60a5fa;
  --text: #1a2e45;
  --muted: #5a7089;
  --white: #ffffff;
  --border: rgba(30, 58, 95, 0.10);
  --shadow: 0 14px 34px rgba(30, 58, 95, 0.10);
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f0f6ff 0%, #f8fbff 100%);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo-wrap { flex: 0 0 auto; }
.logo-wrap img { width: 180px; max-width: 32vw; height: auto; max-height: 64px; object-fit: contain; }

.nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  flex: 1 1 auto;
}
.nav a {
  width: 100%;
  text-align: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--blue-900);
  transition: 0.2s;
}
.nav a:hover, .nav a.active { background: rgba(37,99,235,0.09); }
.nav-book {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500)) !important;
  color: #fff !important;
  border-radius: 999px;
}
.header-phone {
  font-weight: 800;
  color: var(--blue-900);
  white-space: nowrap;
  font-size: 0.95rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 56px 0 48px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,45,90,0.85) 0%, rgba(20,45,90,0.68) 45%, rgba(20,45,90,0.35) 100%),
    url('assets/img/hero-bg.jpg') center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 78%, #f0f6ff 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.hero-copy {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 42px;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}
h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
}
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── HERO FORM PANEL ── */
.hero-form {
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.97rem;
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-dark {
  background: var(--blue-900);
  color: #fff;
}
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-full { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* ── SECTIONS ── */
section { padding: 72px 0; }
.section-alt { background: linear-gradient(180deg, #eaf1fb 0%, #f8fbff 100%); }

.section-title { text-align: center; max-width: 820px; margin: 0 auto 40px; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-700);
  margin-bottom: 10px;
}
.section-title h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--blue-900); margin-bottom: 10px; }
.section-title p { color: var(--muted); font-size: 1.04rem; }

/* ── STAT BAR ── */
.stat-bar {
  background: linear-gradient(135deg, var(--blue-900), #1a4080);
  color: #fff;
  padding: 24px 0;
}
.stat-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 10px 32px;
  flex: 1 1 200px;
}
.stat-num { font-size: 2rem; font-weight: 900; color: var(--blue-500); }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-top: 2px; }
.stat-sep { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }

/* ── PROOF / CONTACT STRIP ── */
.proof-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.proof-item { padding: 6px 24px; font-weight: 700; font-size: 0.9rem; color: var(--blue-900); }
.proof-sep { width: 1px; height: 24px; background: var(--border); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card .svc-icon { font-size: 2.5rem; margin-bottom: 14px; }
.service-card h3 { color: var(--blue-900); font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.95rem; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step-card h3 { color: var(--blue-900); font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.92rem; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.price-card.featured {
  border-color: var(--blue-700);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.15);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { color: var(--blue-900); font-size: 1.4rem; margin-bottom: 8px; }
.price-card .price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-700);
  line-height: 1;
  margin: 14px 0 4px;
}
.price-card .price-amount span {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
}
.price-card .price-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.price-includes { list-style: none; text-align: left; display: grid; gap: 10px; margin-bottom: 24px; }
.price-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: var(--text); }
.price-includes li::before { content: "✅"; flex-shrink: 0; }
.price-card .btn { width: 100%; }

/* ── SCARCITY BAR ── */
.scarcity-bar {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 1px solid #f59e0b;
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  margin-bottom: 40px;
}
.scarcity-bar p { font-weight: 800; color: #92400e; font-size: 1rem; }
.scarcity-bar span { color: #b45309; }
.progress-bar-wrap { margin: 12px auto 0; max-width: 300px; background: #fde68a; border-radius: 999px; height: 10px; }
.progress-bar-fill { width: 10%; height: 10px; border-radius: 999px; background: linear-gradient(90deg, #f59e0b, #d97706); }

/* ── FAQ ── */
.faq-grid { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 22px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-q { font-weight: 800; color: var(--blue-900); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-icon { font-size: 1.3rem; color: var(--blue-700); flex-shrink: 0; transition: transform 0.2s; }
.faq-a { display: none; color: var(--muted); margin-top: 12px; font-size: 0.97rem; line-height: 1.65; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── WHY US GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.why-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.why-card h3 { color: var(--blue-900); margin-bottom: 8px; font-size: 1.1rem; }
.why-card p { color: var(--muted); font-size: 0.93rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900), #1a4080);
  color: #fff;
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), #1a4080);
  color: #fff;
  padding: 48px 0 40px;
}
.page-breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.page-breadcrumb a { color: rgba(255,255,255,0.65); }
.page-breadcrumb span { margin: 0 6px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 620px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-img { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 360px; object-fit: cover; }
.about-img-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border: 2px dashed #93c5fd;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  gap: 10px;
}
.about-text h2 { color: var(--blue-900); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 14px; font-size: 1rem; }
.result-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #93c5fd;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
}
.result-box p { color: var(--blue-900); font-weight: 700; margin-bottom: 0; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 26px; align-items: start; }
.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.panel h3 { color: var(--blue-900); font-size: 1.35rem; margin-bottom: 16px; }
.contact-item { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.contact-item:last-child { border-bottom: none; }
.contact-label { color: var(--blue-700); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 800; margin-bottom: 4px; }
.contact-btn {
  display: block;
  padding: 13px;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
  transition: opacity 0.15s;
}
.contact-btn:hover { opacity: 0.88; }
.cta-call { background: var(--blue-900); color: #fff; }
.cta-wa { background: #25D366; color: #fff; }
.contact-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }

/* ── FORM ── */
form { display: grid; gap: 14px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 13px 16px;
  font: inherit;
  color: var(--text);
  background: #f8faff;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--blue-700); }
textarea { min-height: 130px; resize: vertical; }
.privacy-note { font-size: 0.88rem; color: var(--muted); }
.privacy-note a { color: var(--blue-700); font-weight: 700; text-decoration: underline; }
.submit-btn { border: none; cursor: pointer; width: 100%; padding: 15px; font-size: 1.05rem; }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, var(--blue-900), #0f2a4a);
  color: #fff;
  padding: 48px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 36px; }
.footer-brand img { width: 160px; max-height: 56px; object-fit: contain; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-col h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.78); margin-bottom: 8px; font-size: 0.93rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: underline; }

/* ── STICKY BAR (mobile) ── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 16px 14px;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.sticky-bar-inner { display: flex; gap: 10px; }
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.95rem;
}
.sticky-btn.cta-call { background: var(--blue-900); color: #fff; }
.sticky-btn.cta-wa { background: #25D366; color: #fff; }

/* ── NAV TOGGLE (mobile) ── */
.nav-toggle { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .sticky-bar { display: block; }
  body { padding-bottom: 70px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span { display: block; width: 26px; height: 3px; background: var(--blue-900); border-radius: 2px; }
  .nav { display: none; }
  .nav.open { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
  .nav a { background: #fff; border: 1px solid rgba(0,0,0,0.08); padding: 12px 10px; font-size: 0.95rem; }

  .header-inner { flex-wrap: wrap; padding: 14px 0 10px; }
  .logo-wrap img { width: 160px; }

  .hero { padding: 26px 0 34px; }
  .hero-copy { padding: 26px 22px; }
  .hero-form { padding: 22px; }
  h1 { font-size: 2rem; }

  .services-grid, .steps-grid, .why-grid { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stat-bar-inner { flex-direction: column; gap: 10px; }
  .stat-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cta-row { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 4px; }
  .proof-sep { display: none; }
}
