:root {
  --primary: #3b2e7e;
  --secondary: #3fa9f5;
  --secondary-soft: #e6f4ff;
  --accent: #f36f21;
  --white: #ffffff;
  --text: #1c1f2a;
  --muted: #5f6880;
  --surface: #f7f9ff;
  --shadow-soft: 0 12px 30px rgba(30, 42, 89, 0.12);
  --shadow-hover: 0 20px 40px rgba(30, 42, 89, 0.18);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8f9ff 0%, #eef6ff 40%, #ffffff 100%);
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 4.4rem 0;
}

.section-title {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.4rem);
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.section-subtitle {
  max-width: 640px;
  margin-bottom: 2rem;
}

.top-strip {
  background: var(--primary);
  color: var(--white);
  font-size: 0.86rem;
}

.top-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59, 46, 126, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 20px rgba(59, 46, 126, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 4px 10px rgba(25, 45, 99, 0.2));
}

.brand-text {
  font-weight: 800;
  color: var(--primary);
  font-size: 0.92rem;
  max-width: 210px;
  line-height: 1.25;
}

@media (max-width: 420px) {
  .brand-logo {
    width: 26px;
    height: 26px;
  }

  .brand-text {
    font-size: 0.8rem;
    max-width: 170px;
  }
}

.nav-toggle {
  border: 0;
  background: var(--secondary-soft);
  color: var(--primary);
  font-size: 1.35rem;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-content: center;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 4vw;
  right: 4vw;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  color: var(--primary);
  font-weight: 700;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--secondary-soft);
}

.header-cta {
  display: none;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #2d68ca);
  color: var(--white);
  box-shadow: 0 12px 20px rgba(59, 46, 126, 0.26);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(59, 46, 126, 0.2);
}

.hero {
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  filter: brightness(0.7) saturate(1.05);
  transition: opacity 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(59, 46, 126, 0.52), rgba(63, 169, 245, 0.4)),
    linear-gradient(180deg, rgba(26, 22, 57, 0.35), rgba(26, 22, 57, 0.35));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(11, 23, 55, 0.35);
  backdrop-filter: blur(6px);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero::before {
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(63, 169, 245, 0.3), rgba(63, 169, 245, 0));
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(243, 111, 33, 0.25), rgba(243, 111, 33, 0));
}

.hero-grid {
  display: grid;
  gap: 1.7rem;
}

.eyebrow {
  display: inline-block;
  background: var(--secondary-soft);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.83rem;
  padding: 0.4rem 0.8rem;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.6rem);
  color: var(--white);
  margin-bottom: 0.9rem;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-panel {
  background: linear-gradient(150deg, var(--primary), #224ca7 65%, var(--secondary));
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.hero-panel h3 {
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
}

.quick-list {
  display: grid;
  gap: 0.8rem;
}

.quick-list li {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

.trust-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-chip {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.card h3 {
  color: var(--primary);
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.why-grid,
.testimonial-grid,
.service-grid,
.fee-grid {
  display: grid;
  gap: 1rem;
}

.quote-block {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: linear-gradient(120deg, #eef6ff, #fff6ef);
  border: 1px dashed rgba(59, 46, 126, 0.2);
}

.quote-block p {
  color: var(--primary);
  font-weight: 800;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 1.5vw + 0.75rem, 1.5rem);
}

.page-hero {
  padding: 3.8rem 0 2.8rem;
}

.page-hero .section-title {
  margin-bottom: 0.7rem;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid rgba(63, 169, 245, 0.2);
  font-weight: 700;
  color: var(--primary);
}

.fee-total {
  background: linear-gradient(140deg, var(--primary), #244ca6);
  color: var(--white);
}

.footer {
  margin-top: 2rem;
  background: linear-gradient(145deg, #261d57, #143f95);
  color: var(--white);
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 1.3rem;
}

.footer h4 {
  margin-bottom: 0.55rem;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer ul {
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-content: center;
  font-size: 1.55rem;
  box-shadow: 0 15px 24px rgba(37, 211, 102, 0.42);
  z-index: 1100;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 699px) {
  .hero {
    min-height: 640px;
  }

  .hero-slide {
    transform: scale(1.02);
  }

  .hero-indicators {
    bottom: 0.6rem;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: flex;
    align-items: center;
    box-shadow: none;
    padding: 0;
    background: transparent;
    gap: 0.3rem;
  }

  .header-cta {
    display: inline-flex;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid,
  .testimonial-grid,
  .fee-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
