:root {
  --navy: #062b5c;
  --navy-2: #0b3a78;
  --green: #08a83f;
  --green-dark: #078a35;
  --facebook: #1877f2;
  --text: #102a4c;
  --muted: #53657e;
  --line: #dce5ef;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 43, 92, 0.10);
  --shadow-card: 0 8px 24px rgba(6, 43, 92, 0.07);
  --radius: 18px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  padding-bottom: env(safe-area-inset-bottom);
}

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

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

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

.section { padding: 88px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,229,239,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 285px;
  height: auto;
  max-height: 57px;
  object-fit: contain;
  object-position: left center;
}
.brand-tagline {
  margin-left: 48px;
  margin-top: -2px;
  font-size: .82rem;
  color: var(--muted);
  white-space: nowrap;
}

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  flex-shrink: 0;
}

.button {
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-weight: 750;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, .facebook-link:focus-visible, .phone-number:focus-visible {
  outline: 3px solid rgba(24,119,242,.35);
  outline-offset: 3px;
}
.button-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #06a43c 0%, #0bb94a 100%);
  box-shadow: 0 10px 24px rgba(8,168,63,.20);
}
.button-whatsapp:hover { background: linear-gradient(135deg, #078f37 0%, #09a843 100%); }
.icon-wrap { width: 22px; height: 22px; display: inline-flex; }
.icon-wrap svg { width: 100%; height: 100%; fill: currentColor; }
.button-large { min-height: 58px; padding: 16px 28px; font-size: 1.05rem; }
.button-header { min-height: 46px; font-size: .92rem; }

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--facebook);
  font-size: .87rem;
  font-weight: 650;
  text-decoration: none;
}
.facebook-link:hover { text-decoration: underline; }
.facebook-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--facebook);
  font-family: Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(30,94,170,.08), transparent 28%),
    radial-gradient(circle at 92% 85%, rgba(8,168,63,.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f9fbfe 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 19px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eaf1fb;
  color: var(--navy);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(3rem, 5.3vw, 5.45rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(1.12rem, 1.7vw, 1.55rem);
  line-height: 1.5;
  color: #18365d;
}

.trust-note {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #264466;
  font-weight: 600;
}
.trust-note svg { width: 23px; height: 23px; fill: var(--navy-2); flex: 0 0 auto; }

.hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(220,229,239,.85);
  background: #eef3f8;
  aspect-ratio: 1.28 / 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.review-section { background: #fff; }

.section-heading {
  max-width: 820px;
  text-align: center;
  margin: 0 auto 42px;
}
.section-heading h2, .final-cta h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.14;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}
.section-heading p, .final-cta > .container > p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.info-card {
  min-height: 380px;
  padding: 25px 23px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 36px rgba(6,43,92,.10);
}

.card-top {
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.card-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #eef4fc;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 800;
}
.card-icon { width: 48px; height: 48px; color: var(--navy-2); }

.info-card h3 {
  color: var(--navy);
  font-size: 1.14rem;
  line-height: 1.25;
  margin-bottom: 15px;
}
.info-card p {
  margin-bottom: 0;
  color: #405775;
  font-size: .96rem;
  line-height: 1.75;
}

.confidentiality {
  margin-top: 48px;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: var(--radius);
  background: linear-gradient(110deg, #f4f8fd 0%, #eaf3fd 100%);
  color: var(--navy);
}
.confidentiality svg { width: 56px; height: 56px; flex: 0 0 auto; }
.confidentiality p { margin: 0; max-width: 760px; font-size: 1.04rem; }

.final-cta {
  text-align: center;
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f8fc 100%);
  border-top: 1px solid #edf2f7;
}
.final-cta-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta-inner > p { margin-bottom: 26px; }
.phone-number {
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
}
.cta-divider {
  width: 280px;
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}
.facebook-link-large { font-size: 1rem; }

.site-footer {
  padding: 0 0 28px;
  background: #f4f8fc;
}
.footer-bar {
  min-height: 145px;
  padding: 24px 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, #052757 0%, #07366f 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-brand img {
  width: 235px;
  height: auto;
  opacity: .98;
}
.footer-brand p {
  margin: 0;
  padding-left: 15px;
  border-left: 1px solid rgba(255,255,255,.35);
  font-size: .92rem;
  line-height: 1.45;
}
.footer-experience {
  margin: 0;
  max-width: 300px;
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
}

.mobile-sticky { display: none; }

@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .brand img { width: 240px; }
  .brand-tagline { margin-left: 40px; font-size: .76rem; }
  .hero-grid { gap: 34px; grid-template-columns: .95fr 1.05fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .info-card { min-height: 330px; }
}

@media (max-width: 760px) {
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 54px 0; }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }
  .brand img { width: 190px; max-height: 45px; }
  .brand-tagline { margin-left: 31px; font-size: .65rem; }
  .header-actions .button,
  .header-actions .facebook-link { display: none; }

  .hero { padding-top: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; aspect-ratio: 1.5 / 1; border-radius: 18px; }

  h1 { font-size: clamp(2.75rem, 14vw, 4.1rem); margin-bottom: 18px; }
  .hero-text { font-size: 1.08rem; margin-bottom: 24px; }
  .eyebrow { margin-bottom: 15px; font-size: .70rem; }
  .button-large { width: 100%; min-height: 56px; padding-inline: 16px; font-size: .98rem; }
  .trust-note { font-size: .90rem; }

  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .final-cta h2 { font-size: 2rem; }
  .section-heading p { font-size: 1rem; }

  .cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .info-card {
    min-height: auto;
    padding: 21px 19px 23px;
  }
  .card-top { min-height: 46px; margin-bottom: 14px; }
  .card-number { width: 42px; height: 42px; font-size: 1rem; }
  .card-icon { width: 42px; height: 42px; }
  .info-card p { font-size: .94rem; line-height: 1.65; }

  .confidentiality {
    margin-top: 30px;
    padding: 23px 20px;
    align-items: flex-start;
    gap: 16px;
  }
  .confidentiality svg { width: 44px; height: 44px; }
  .confidentiality p { font-size: .94rem; }

  .final-cta { padding-bottom: 60px; }
  .phone-number { font-size: 1.25rem; }
  .cta-divider { width: 220px; }

  .footer-bar {
    min-height: 176px;
    padding: 25px 22px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }
  .footer-brand { justify-content: center; flex-direction: column; }
  .footer-brand img { width: 230px; }
  .footer-brand p { padding-left: 0; padding-top: 12px; border-left: 0; border-top: 1px solid rgba(255,255,255,.28); }
  .footer-experience { text-align: center; font-size: .92rem; }

  .mobile-sticky {
    display: block;
    position: fixed;
    z-index: 200;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 15px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(6,43,92,.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .mobile-sticky .button {
    width: 100%;
    min-height: 52px;
    font-size: .94rem;
  }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 24px); }
  .brand img { width: 175px; }
  .brand-tagline { margin-left: 28px; font-size: .59rem; }
  h1 { font-size: 2.7rem; }
  .hero-text { font-size: 1rem; }
  .button-large { font-size: .91rem; }
  .info-card { padding-inline: 17px; }
  .footer-brand img { width: 205px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
