:root {
  --navy: #173e5d;
  --navy-dark: #0e2c43;
  --blue-soft: #eaf2f7;
  --green: #16834b;
  --green-dark: #0d6b3b;
  --ink: #18242d;
  --muted: #5f6f7a;
  --line: #d9e2e8;
  --paper: #ffffff;
  --off-white: #f7f9fa;
  --shadow: 0 20px 50px rgba(23, 62, 93, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(217, 226, 232, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: white;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.15;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(22, 131, 75, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fb 56%, #edf4f7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: -320px;
  border: 1px solid rgba(23, 62, 93, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(23, 62, 93, 0.03),
    0 0 0 140px rgba(23, 62, 93, 0.02);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 32px 0 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(22, 131, 75, 0.2);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-outline {
  border-color: var(--line);
  background: white;
}

.button-outline:hover {
  border-color: var(--navy);
}

.button-light {
  color: var(--navy-dark);
  background: white;
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 0.94rem;
}

.text-link {
  font-weight: 750;
  text-underline-offset: 4px;
}

.trust-list {
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  flex-wrap: wrap;
}

.trust-list li {
  position: relative;
  padding-left: 20px;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.hero-card {
  padding: 34px;
  border: 1px solid rgba(23, 62, 93, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.card-label {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--blue-soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.professional-id {
  margin: -8px 0 18px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card h2 {
  font-size: 2rem;
}

.hero-card p {
  color: var(--muted);
}

.contact-box {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 14px;
  color: white;
  background: var(--navy);
}

.contact-box span,
.contact-box strong {
  display: block;
}

.contact-box span {
  opacity: 0.72;
  font-size: 0.84rem;
}

.contact-box strong {
  margin-top: 2px;
  font-size: 1.3rem;
}


.hero-profile {
  overflow: hidden;
  border: 1px solid rgba(23, 62, 93, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-profile-photo {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  background: var(--blue-soft);
}

.hero-profile-photo img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  object-position: 58% 33%;
}

.photo-credential {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 13px;
  color: white;
  background: rgba(14, 44, 67, 0.82);
  backdrop-filter: blur(8px);
}

.photo-credential strong,
.photo-credential span {
  display: block;
}

.photo-credential span {
  margin-top: 2px;
  font-size: 0.86rem;
  opacity: 0.84;
}

.hero-profile-body {
  padding: 28px 30px 30px;
}

.hero-profile-body h2 {
  margin-bottom: 14px;
  font-size: 1.85rem;
}

.hero-profile-body > p {
  color: var(--muted);
}

.hero-profile .card-label {
  margin-bottom: 16px;
}

.hero-profile .contact-box {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-profile .contact-box:hover {
  transform: translateY(-1px);
  background: var(--navy-dark);
}

.section-field {
  background: white;
}

.field-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: center;
}

.field-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}

.field-photo img {
  width: 100%;
  max-height: 590px;
  display: block;
  object-fit: cover;
}

.field-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  color: white;
  background: rgba(14, 44, 67, 0.84);
  font-size: 0.84rem;
  backdrop-filter: blur(7px);
}

.field-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.field-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 28px;
  list-style: none;
}

.field-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--off-white);
  font-weight: 700;
}

.field-list li::before {
  content: "✓";
  position: absolute;
  left: 17px;
  top: 13px;
  color: var(--green);
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 68px;
  align-items: center;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.about-photo img {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  object-position: 50% 38%;
}

.about-copy {
  font-size: 1.08rem;
}

.about-copy > p {
  color: var(--muted);
}

.about-tags {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(23, 62, 93, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: white;
  font-size: 0.84rem;
  font-weight: 750;
}


.section {
  padding: 92px 0;
}

.section-light {
  background: var(--off-white);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

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

.info-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.info-card .number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue-soft);
  font-weight: 800;
}

.info-card p,
.prose p,
.regions p,
.faq-list p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0 0 54px;
  list-style: none;
}

.steps li {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 0 24px;
}

.steps li:first-child {
  padding-left: 0;
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 21px;
  right: -8px;
  width: 16px;
  height: 1px;
  background: var(--line);
}

.steps li > span {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--navy);
  font-weight: 800;
}

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

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius);
  color: white;
  background: var(--navy);
}

.cta-band .eyebrow {
  color: #a8d4ee;
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.prose {
  font-size: 1.12rem;
}

.regions {
  padding: 30px;
  border-left: 4px solid var(--green);
  background: var(--off-white);
}

.regions strong {
  display: block;
  margin-bottom: 4px;
}

.regions p:not(:last-child) {
  margin-bottom: 20px;
}

.section-faq {
  background: var(--navy-dark);
  color: white;
}

.section-faq .eyebrow {
  color: #a8d4ee;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.faq-list summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 750;
}

.faq-list p {
  padding: 0 22px 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta {
  padding: 72px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta-inner > div {
  max-width: 760px;
}

.site-footer {
  padding: 48px 0 110px;
  border-top: 1px solid var(--line);
  background: var(--off-white);
}

.footer-inner,
.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-contact {
  text-align: right;
}

.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-contact span {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-contact a {
  font-weight: 800;
}

.footer-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.footer-note p {
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 10px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(22, 131, 75, 0.28);
  text-decoration: none;
}

.floating-whatsapp span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: white;
  font-size: 0.72rem;
  font-weight: 900;
}

@media (max-width: 940px) {
  .hero-grid,
  .split-grid,
  .field-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-profile {
    max-width: 620px;
  }

  .field-grid,
  .about-grid {
    gap: 38px;
  }

  .field-photo {
    max-width: 520px;
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .steps li {
    padding: 0;
  }

  .steps li::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header .button {
    display: none;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero-card,
.hero-profile {
    padding: 26px;
  }

  .section {
    padding: 68px 0;
  }

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

  .info-card {
    min-height: auto;
  }

  .info-card .number {
    margin-bottom: 28px;
  }

  .cta-band,
  .final-cta-inner,
  .footer-inner,
  .footer-note {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band {
    padding: 30px;
  }

  .footer-contact {
    text-align: left;
  }

  .floating-whatsapp strong {
    display: none;
  }

  .floating-whatsapp {
    width: 56px;
    padding: 0;
    justify-content: center;
  }
}
