:root {
  --navy: #071a33;
  --blue: #0b3d73;
  --blue-2: #145ca8;
  --sky: #eaf3fb;
  --ink: #10233a;
  --muted: #617188;
  --line: #dbe5ef;
  --white: #ffffff;
  --soft: #f6f9fc;
  --shadow: 0 20px 60px rgba(7, 26, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219,229,239,.8);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand strong { display: block; font-family: "Manrope", sans-serif; letter-spacing: .08em; font-size: 15px; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: -2px; }
.brand-mark { position: relative; width: 38px; height: 38px; display: flex; align-items: flex-end; gap: 3px; padding: 8px; background: var(--navy); border-radius: 10px; }
.bar { display: block; width: 5px; background: white; border-radius: 3px 3px 0 0; }
.bar-1 { height: 8px; opacity: .65; }
.bar-2 { height: 14px; opacity: .8; }
.bar-3 { height: 21px; }
.arrow { position: absolute; right: 3px; top: -8px; color: var(--blue-2); font-size: 22px; font-weight: 700; }
.menu { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.menu a:hover { color: var(--blue-2); }
.nav-cta { padding: 11px 18px; border-radius: 9px; background: var(--navy); color: white !important; }
.menu-button { display: none; border: 0; background: none; font-size: 24px; color: var(--navy); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 95px;
  background:
    linear-gradient(115deg, rgba(234,243,251,.55), rgba(255,255,255,.96) 45%),
    radial-gradient(circle at 90% 20%, rgba(20,92,168,.13), transparent 35%);
}
.hero-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(20,92,168,.08); right: -180px; top: -130px; filter: blur(10px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; align-items: center; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .15em; color: var(--blue-2); margin-bottom: 18px; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 72px); letter-spacing: -.045em; margin-bottom: 24px; max-width: 850px; }
.hero-text { font-size: 19px; color: var(--muted); max-width: 690px; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 10px; font-weight: 700; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 12px 30px rgba(11,61,115,.22); }
.button-secondary { border: 1px solid var(--line); background: white; }
.trust-row { display: flex; gap: 38px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-size: 15px; }
.trust-row span { color: var(--muted); font-size: 12px; }

.hero-card { background: var(--navy); color: white; padding: 34px; border-radius: 22px; box-shadow: var(--shadow); transform: translateY(18px); }
.card-top { display: flex; justify-content: space-between; gap: 20px; font-size: 10px; letter-spacing: .12em; opacity: .82; }
.status-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #6ee7a8; margin-right: 6px; }
.hero-card h2 { font-size: 29px; margin: 32px 0; }
.hero-card ul { list-style: none; padding: 0; margin: 0 0 30px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-card li { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 14px; }
.hero-card li span { color: #88bff2; margin-right: 18px; font-size: 12px; }
.hero-card > a { color: #9ecdf8; font-weight: 700; font-size: 14px; }

.section { padding: 100px 0; }
.section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .contact h2 { font-size: clamp(34px, 4vw, 50px); letter-spacing: -.035em; margin-bottom: 0; }
.section-heading > p { max-width: 410px; color: var(--muted); margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 290px; padding: 28px; border: 1px solid var(--line); border-radius: 16px; display: flex; flex-direction: column; background: white; transition: .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-card.featured { background: var(--sky); border-color: transparent; }
.service-number { font-size: 12px; font-weight: 800; color: var(--blue-2); }
.service-card h3 { font-size: 23px; margin: 48px 0 12px; }
.service-card p { color: var(--muted); margin: 0 0 28px; }
.service-tag { margin-top: auto; width: fit-content; padding: 6px 10px; border-radius: 30px; background: var(--soft); font-size: 11px; font-weight: 700; color: var(--blue); }
.contact-card { background: var(--blue); color: white; border-color: var(--blue); }
.contact-card p { color: rgba(255,255,255,.78); }
.contact-card .service-number { color: #a8d3fb; }
.contact-card a { margin-top: auto; font-weight: 700; }

.about { background: var(--soft); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 85px; align-items: center; }
.about-panel { min-height: 470px; background: linear-gradient(145deg, var(--navy), var(--blue)); border-radius: 22px; color: white; display: flex; flex-direction: column; justify-content: space-between; padding: 38px; box-shadow: var(--shadow); }
.monogram { width: 108px; height: 108px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-family: "Manrope"; font-size: 34px; font-weight: 800; }
.about-data span, .about-data small { display: block; color: rgba(255,255,255,.72); }
.about-data span { font-size: 11px; letter-spacing: .14em; margin-bottom: 8px; }
.about-data strong { display: block; font-family: "Manrope"; font-size: 25px; }
.about-copy p { color: var(--muted); font-size: 17px; }
.quote { margin-top: 30px; padding: 22px 0 0 22px; border-left: 3px solid var(--blue-2); font-family: "Manrope"; font-size: 20px; font-weight: 700; }

.centered { display: block; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.steps article { padding: 25px 24px 28px; border-top: 2px solid var(--line); }
.steps span { color: var(--blue-2); font-weight: 800; font-size: 13px; }
.steps h3 { margin: 32px 0 10px; font-size: 20px; }
.steps p { color: var(--muted); font-size: 14px; margin: 0; }

.contact { padding-top: 20px; }
.contact-box { background: var(--navy); color: white; border-radius: 24px; padding: 58px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.contact-box p { color: rgba(255,255,255,.72); }
.light { color: #92c8f8; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }
.button-light { background: white; color: var(--navy); }
.button-outline-light { color: white; border: 1px solid rgba(255,255,255,.35); }

footer { padding: 35px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; color: var(--muted); font-size: 13px; }
.footer-grid div { display: flex; flex-direction: column; }
.footer-grid strong { color: var(--ink); }

.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: white; font-weight: 800; box-shadow: 0 12px 30px rgba(0,0,0,.18); }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .menu { display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 22px; background: white; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .menu.open { display: flex; }
  .hero { padding: 72px 0; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-card { transform: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand small { display: none; }
  h1 { font-size: 42px; }
  .hero-text { font-size: 17px; }
  .trust-row { gap: 18px; flex-wrap: wrap; }
  .trust-row div { width: calc(50% - 10px); }
  .section { padding: 72px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 18px; }
  .service-grid, .steps { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .about-panel { min-height: 390px; }
  .contact-box { padding: 36px 25px; }
  .contact-actions { width: 100%; min-width: 0; }
  .footer-grid { flex-direction: column; }
}

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro h2 { font-size: clamp(34px, 4vw, 50px); letter-spacing: -.035em; }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 42px 24px 0;
  position: relative;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  font-size: 25px;
  color: var(--blue-2);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { color: var(--muted); margin: -4px 0 24px; padding-right: 35px; }
.legal-note { max-width: 500px; margin-top: 5px; font-size: 11px; }
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  flex: 0 0 auto;
}
.about-logo {
  width: min(280px, 82%);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}
@media (max-width: 620px) {
  .brand-logo { width: 42px; height: 42px; }
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}
.about-highlights article {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
}
.about-highlights strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--ink);
}
.about-highlights span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
