:root {
  --ink: #071521;
  --ink-2: #102638;
  --text: #2d3d4a;
  --muted: #6d7a86;
  --line: #dce7ed;
  --surface: #ffffff;
  --soft: #f5f9fb;
  --soft-blue: #eaf6fb;
  --blue: #005b9f;
  --blue-2: #063f70;
  --turquoise: #10aabd;
  --red: #c93332;
  --cream: #fbf8ef;
  --shadow-soft: 0 24px 70px rgba(0, 45, 85, 0.12);
  --shadow-strong: 0 38px 110px rgba(0, 45, 85, 0.22);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fbfdfe;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 231, 237, 0.82);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 44px rgba(10, 32, 50, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 238px;
  color: var(--ink);
}

.brand-logo {
  width: 214px;
  height: 54px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #344857;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: var(--soft-blue);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(7, 21, 33, 0.16);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 64px;
  background:
    radial-gradient(circle at 84% 12%, rgba(16, 170, 189, 0.22), transparent 28%),
    radial-gradient(circle at 8% 22%, rgba(201, 51, 50, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f1f8fb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 42%;
  background: linear-gradient(135deg, transparent, rgba(0, 91, 159, 0.08));
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 840px;
  font-size: clamp(2.7rem, 5.15vw, 4.85rem);
}

h2 {
  font-size: clamp(2.05rem, 4.25vw, 4rem);
}

h3 {
  font-size: clamp(1.18rem, 1.5vw, 1.36rem);
}

.hero-text {
  max-width: 720px;
  margin: 22px 0 0;
  color: #3d5060;
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 34px rgba(0, 91, 159, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-2);
  box-shadow: 0 20px 40px rgba(0, 91, 159, 0.32);
}

.btn-secondary {
  color: var(--blue-2);
  background: #fff;
  border-color: #cbdde6;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--blue);
  background: #f7fbfd;
}

.decision-list {
  display: grid;
  gap: 11px;
  max-width: 690px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-weight: 760;
}

.decision-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 15px;
  height: 8px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 14px;
}

.hero-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  background: var(--ink);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-stack {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 14px;
}

.proof-item {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(0, 91, 159, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.proof-item:first-child {
  grid-row: span 2;
}

.proof-item span,
.proof-item strong {
  display: block;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-item strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.12;
}

.proof-item-dark {
  color: #fff;
  background:
    linear-gradient(160deg, rgba(16, 170, 189, 0.28), transparent 38%),
    linear-gradient(135deg, var(--ink), var(--blue-2));
}

.proof-item-dark span,
.proof-item-dark strong {
  color: #fff;
}

.signal-bar {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid div {
  min-height: 150px;
  padding: 28px 26px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.signal-grid div + div {
  padding-left: 26px;
}

.signal-grid div:last-child {
  border-right: 0;
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  font-size: 1.04rem;
}

.signal-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.section {
  padding: 104px 0;
}

.intro-section {
  background: #fff;
}

.intro-grid,
.process-layout,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: start;
}

.section-lead h2,
.process-copy h2,
.faq-layout h2,
.contact-copy h2 {
  max-width: 720px;
}

.text-flow p,
.section-heading p,
.evidence-top p,
.process-copy p,
.contact-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.founder-card,
.contact-panel {
  margin-top: 30px;
  padding: 26px;
  border: 1px solid rgba(0, 91, 159, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff, #eef8fb);
  box-shadow: var(--shadow-soft);
}

.founder-card span,
.contact-panel strong {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.founder-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.24rem;
}

.section-ink {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 10% 18%, rgba(16, 170, 189, 0.2), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(201, 51, 50, 0.12), transparent 24%),
    linear-gradient(135deg, #061827, #0b2b45 56%, #063f70);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading-invert h2,
.section-heading-invert .section-kicker {
  color: #fff;
}

.section-heading-invert p {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 336px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 170, 189, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.service-card h3 {
  color: #fff;
}

.service-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-card a {
  margin-top: auto;
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 170, 189, 0.26);
  font-size: 0.78rem;
  font-weight: 850;
}

.service-card-featured {
  background: #fff;
}

.service-card-featured h3,
.service-card-featured p,
.service-card-featured a {
  color: var(--ink);
}

.service-card-featured .service-number {
  background: var(--red);
}

.evidence-section {
  background: linear-gradient(180deg, #fff, #f4f9fb);
}

.evidence-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  align-items: end;
  gap: 46px;
  margin-bottom: 38px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
}

.evidence-card {
  position: relative;
  overflow: hidden;
  min-height: 376px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.evidence-card-large {
  grid-row: span 2;
  min-height: 770px;
}

.evidence-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.evidence-card:hover img {
  transform: scale(1.035);
}

.evidence-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 17px 18px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(7, 21, 33, 0.84);
  backdrop-filter: blur(16px);
}

.evidence-card strong,
.evidence-card span {
  display: block;
}

.evidence-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.process-section {
  background: #fff;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-list li span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 850;
  font-size: 0.8rem;
}

.process-list li strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.process-list li p {
  margin: 6px 0 0;
  color: var(--muted);
}

.decision-section {
  background:
    linear-gradient(90deg, rgba(16, 170, 189, 0.14), transparent 32%),
    var(--soft);
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.decision-cards {
  display: grid;
  gap: 14px;
}

.decision-cards article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.decision-cards strong,
.decision-cards span {
  display: block;
}

.decision-cards strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.decision-cards span {
  margin-top: 8px;
  color: var(--muted);
}

.faq-section {
  background: #fff;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 21px 22px;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 14%, rgba(16, 170, 189, 0.25), transparent 26%),
    linear-gradient(135deg, #061827, #063f70 58%, #005b9f);
}

.contact-section h2,
.contact-section .section-kicker {
  color: #fff;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.contact-panel strong {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel a {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-weight: 820;
}

address {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

address strong {
  color: #fff;
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading strong,
.form-heading span {
  display: block;
}

.form-heading strong {
  color: var(--ink);
  font-size: 1.28rem;
}

.form-heading span {
  margin-top: 4px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
}

.form-row label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 820;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #cbd9e1;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfe;
  outline: none;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 91, 159, 0.12);
}

.contact-form .btn {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #061827;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.45fr) minmax(220px, 0.55fr);
  gap: 42px;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-logo {
  width: 236px;
  height: 64px;
  padding: 4px;
}

.site-footer p {
  max-width: 430px;
  margin: 18px 0 0;
}

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

.site-footer strong {
  margin-bottom: 12px;
  color: #fff;
}

.site-footer a,
.site-footer span {
  margin-top: 8px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: var(--radius);
  color: #fff;
  background: #1fa855;
  box-shadow: 0 16px 34px rgba(31, 168, 85, 0.34);
  font-weight: 850;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #168747;
  outline: none;
}

@media (max-width: 1040px) {
  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero-shell,
  .intro-grid,
  .process-layout,
  .faq-layout,
  .contact-layout,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 36px;
  }

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

  .evidence-top,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .evidence-card-large {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    min-width: 184px;
  }

  .brand-logo {
    width: 184px;
    height: 48px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav a:not(.nav-cta) {
    display: block;
    padding: 13px 14px;
  }

  .site-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero {
    padding: 66px 0 48px;
  }

  h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .proof-stack,
  .signal-grid,
  .services-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item:first-child {
    grid-row: auto;
  }

  .signal-grid div,
  .signal-grid div + div {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .signal-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .intro-grid,
  .process-layout,
  .faq-layout,
  .contact-layout,
  .decision-grid {
    gap: 32px;
  }

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

  .evidence-card,
  .evidence-card-large {
    min-height: 420px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-list li span {
    grid-row: auto;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px;
  }
}

@media (max-width: 420px) {
  .hero-photo img {
    aspect-ratio: 1 / 1;
  }

  .evidence-card,
  .evidence-card-large {
    min-height: 360px;
  }

  .evidence-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }
}
