:root {
  --navy: #0f2d57;
  --navy-2: #123a70;
  --navy-dark: #08264d;
  --orange: #ef7130;
  --orange-dark: #d95c1c;
  --blue-light: #e6f5fc;
  --blue-soft: #f2f9fd;
  --text: #1f365c;
  --muted: #536a8a;
  --white: #ffffff;
  --line: #d9e6f0;
  --shadow: 0 18px 38px rgba(13, 45, 87, 0.10);
  --shadow-soft: 0 12px 24px rgba(13, 45, 87, 0.08);
  --radius: 18px;
  --radius-sm: 999px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

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

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

.narrow {
  max-width: 740px;
}

.center {
  text-align: center;
}

.section-white,
.section-blue-light,
.section-navy,
.about {
  padding: 92px 0;
}

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

.section-navy {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.08), transparent 32%),
    linear-gradient(135deg, #0d315f 0%, var(--navy-dark) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(217,230,240,.7);
  backdrop-filter: blur(12px);
}

.nav-wrapper {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(15,45,87,.16);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.btn-small {
  min-height: 40px;
  padding: 0 20px;
  font-size: 13px;
}

.hero {
  padding-top: 84px;
  padding-bottom: 98px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 74px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 610px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: .92;
  letter-spacing: -.04em;
}

h1 span,
.final-cta strong {
  color: var(--orange);
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.06;
  letter-spacing: -.025em;
}

.section-navy h2,
.final-cta h2 {
  color: var(--white);
}

h3 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -.01em;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: 8% -2% -4% 8%;
  content: "";
  background: linear-gradient(135deg, rgba(239,113,48,.08), rgba(18,58,112,.08));
  border-radius: 36px;
  filter: blur(22px);
}

.hero-media img {
  position: relative;
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.method .narrow,
.modalities .narrow {
  margin-bottom: 44px;
}

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

.card {
  background: var(--white);
  border: 1px solid rgba(217,230,240,.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.step-card {
  min-height: 260px;
  padding: 30px 32px 34px;
  text-align: center;
}

.step-number {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
}

.step-number.orange {
  background: var(--orange);
}

.step-number.navy {
  background: var(--navy);
}

.step-card .tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 12px;
  color: var(--navy-2);
  background: #f1f6fb;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.step-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.section-action {
  margin-top: 42px;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 96px;
  align-items: center;
}

.tablet-wrap img {
  max-height: 560px;
  width: auto;
  margin-inline: auto;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.18));
}

.deliverable-copy {
  max-width: 620px;
}

.deliverable-copy .eyebrow {
  color: #ff9a65;
}

.check-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.note {
  margin-bottom: 30px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.modality-grid {
  align-items: stretch;
}

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

.modality-card--visual {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,1));
  transition: transform .22s ease, box-shadow .22s ease;
}

.modality-card--visual:hover,
.modality-card--visual:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(13,45,87,.14);
}

.modality-figure {
  position: relative;
  margin: 0;
  height: 100%;
}

.modality-figure::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  content: "";
  background: linear-gradient(180deg, rgba(9,36,77,0) 0%, rgba(9,36,77,.78) 100%);
  pointer-events: none;
}

.modality-figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.modality-figure figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 10px 16px;
  color: var(--white);
  background: rgba(15,45,87,.88);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0,0,0,.16);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  backdrop-filter: blur(8px);
}

.about {
  padding-top: 96px;
  padding-bottom: 96px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 460px) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.profile-card {
  margin: 0;
}

.profile-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.profile-card figcaption {
  display: grid;
  gap: 2px;
  margin-top: 22px;
  color: var(--navy);
}

.profile-name {
  display: block;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: .08em;
}

.profile-title {
  display: block;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.3;
  letter-spacing: .02em;
}

.about-copy {
  max-width: 620px;
}

.about-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(22px, 2.05vw, 30px);
  line-height: 1.18;
}

.plain-list {
  margin: 0 0 28px 22px;
  padding: 0;
  color: var(--navy);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.75;
}

.plain-list li::marker {
  color: var(--navy);
  font-size: .8em;
}

.role {
  margin: 4px 0 22px;
  color: var(--orange);
  font-size: clamp(15px, 1.02vw, 18px);
  font-weight: 850;
  letter-spacing: .02em;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(15px, 1.02vw, 18px);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  max-width: 100%;
  transition: color .2s ease;
}

.contact-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
}

.contact-icon-mail svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-linkedin {
  color: var(--white);
  background: var(--navy);
  border-radius: 3px;
  font-size: 16px;
  font-weight: 850;
  font-family: Arial, sans-serif;
  line-height: 1;
}

.about-actions {
  margin-top: 20px;
}

.about-actions .btn-whatsapp {
  min-height: 64px;
  padding-inline: 34px;
  gap: 14px;
  font-size: clamp(18px, 1.25vw, 22px);
  box-shadow: 0 12px 22px rgba(239,113,48,.24);
}

.btn-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.contact-lines a:hover,
.footer-col a:hover,
.microcopy a:hover {
  color: var(--orange);
}

.final-cta {
  padding: 82px 0;
  color: var(--white);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, var(--navy-dark), #092f61);
}

.final-cta h2 {
  max-width: 980px;
  margin: 0 auto 26px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.12;
}

.final-cta h2 span {
  color: var(--white);
}

.final-cta p {
  color: rgba(255,255,255,.9);
  font-size: 20px;
}

.microcopy {
  margin: 22px 0 0;
  color: rgba(255,255,255,.72) !important;
  font-size: 13px !important;
}

.microcopy a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 60px 0 26px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1.1fr;
  gap: 58px;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 220px;
  color: var(--muted);
  font-size: 15px;
}

.footer-col h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--navy);
  background: #edf4fa;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  color: #7890aa;
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 60;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 34px rgba(0,0,0,.26);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}


@media (max-width: 1240px) {
  .about-copy h2 {
    white-space: normal;
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .deliverable-grid,
  .about-grid {
    gap: 46px;
  }

  .cards-grid {
    gap: 20px;
  }

  .site-nav {
    gap: 22px;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .nav-wrapper {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 142px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .site-header.is-open .site-nav a {
    padding: 12px 10px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .deliverable-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 560px;
    margin-inline: auto;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .step-card,
  .modality-card {
    min-height: auto;
  }

  .modality-grid {
    max-width: 720px;
  }

  .deliverable-copy {
    max-width: none;
  }

  .about-grid {
    align-items: start;
  }

  .profile-card {
    max-width: 520px;
  }

  .profile-card img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .section-white,
  .section-blue-light,
  .section-navy,
  .about,
  .final-cta {
    padding: 68px 0;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-text,
  .section-lead,
  .plain-list,
  .final-cta p {
    font-size: 16px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}


@media (max-width: 560px) {
  .modality-figure figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 9px 14px;
    font-size: 16px;
  }
}
