:root {
  --ink: #0d1720;
  --muted: #5d6b78;
  --paper: #f7f9fb;
  --soft: #eef4f8;
  --line: #dbe3ea;
  --navy: #102b47;
  --blue: #1769aa;
  --teal: #10a99a;
  --gold: #e7b85a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(13, 23, 32, .15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(13, 23, 32, .08);
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

.site-header.is-scrolled {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(13, 23, 32, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
}

.brand-logo {
  width: 186px;
  height: 72px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

.brand strong {
  font-size: 15px;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: .72;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 2.2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.site-header.is-scrolled .header-call {
  border-color: var(--line);
  background: var(--navy);
  color: var(--white);
}

.call-action::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-right: 8px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 14, 26, .84), rgba(9, 30, 48, .58) 44%, rgba(9, 30, 48, .12)),
    linear-gradient(0deg, rgba(4, 14, 26, .52), transparent 58%);
}

.hero-content {
  position: relative;
  width: min(840px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.timeline strong,
.brand {
  font-family: "Plus Jakarta Sans", Manrope, ui-sans-serif, system-ui, sans-serif;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  width: min(700px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  color: #17202a;
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .12);
}

.btn.whatsapp-icon {
  width: 58px;
  min-width: 58px;
  padding: 0;
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.wa-icon {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin-top: 44px;
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 18px;
  background: rgba(7, 21, 35, .58);
  backdrop-filter: blur(12px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 24px;
}

.hero-stats span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-band span {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  color: var(--navy);
  font-weight: 800;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) 1.28fr;
  gap: clamp(32px, 6vw, 78px);
}

.section-intro h2,
.proof h2,
.contact h2,
.narrative h2,
.service-hero h1 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

.wide {
  width: min(920px, 100%);
}

.narrative {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 78px);
  background: var(--white);
}

.rich-copy {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.rich-copy p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-suite {
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

.service-grid.deep {
  margin-top: 34px;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 43, 71, .06);
}

.service-card.featured {
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.service-card span {
  color: var(--teal);
  font-weight: 900;
}

.service-card h3 {
  margin: 32px 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.service-card ul,
.deliverable-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.service-card li,
.deliverable-list li {
  position: relative;
  padding-left: 22px;
}

.service-card li::before,
.deliverable-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.service-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.service-card p,
.timeline p,
.proof-panel span,
.form-note,
address,
.channel-table span,
.channel-table em,
.service-page-card p,
.faq-grid p,
.deliverable-list li {
  color: var(--muted);
}

.market-map {
  background: var(--white);
}

.channel-table {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.channel-table div {
  display: grid;
  grid-template-columns: 180px 1.2fr .9fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--white);
}

.channel-table strong {
  color: var(--navy);
  font-size: 20px;
}

.channel-table em {
  font-style: normal;
}

.process {
  background: #0d1720;
  color: var(--white);
}

.narrow {
  width: min(760px, 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .12);
}

.timeline div {
  padding: 28px;
  background: #102234;
}

.timeline strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 22px;
}

.timeline p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .74);
}

.proof {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--white);
}

.proof-panel {
  display: grid;
  gap: 14px;
}

.proof-panel div {
  padding: 24px;
  border-left: 4px solid var(--teal);
  background: var(--paper);
  border-radius: 0 8px 8px 0;
}

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

.proof-panel strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.faq {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(16, 43, 71, .05);
}

summary {
  cursor: pointer;
  padding: 22px;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.service-hero {
  position: relative;
  padding: 150px clamp(18px, 5vw, 72px) 78px;
  color: var(--white);
  overflow: hidden;
  background: #0d1720;
}

.service-hero .hero-media,
.service-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.service-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-content {
  position: relative;
  width: min(900px, 100%);
}

.service-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2vw, 22px);
}

.service-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 116px;
  padding: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.sticky-note p {
  color: rgba(255, 255, 255, .76);
}

.sticky-note .btn {
  width: 100%;
  margin-top: 12px;
}

.service-page-grid {
  display: grid;
  gap: 16px;
}

.service-page-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-page-card h2,
.service-page-card h3 {
  margin-bottom: 12px;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

address {
  margin: 28px 0 14px;
  font-style: normal;
  font-size: 18px;
}

.map-link,
.form-note a {
  color: var(--blue);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
}

textarea {
  resize: vertical;
}

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

.form-note {
  margin: 0;
  font-size: 14px;
}

.site-footer {
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, .76);
}

.site-footer span:first-child,
.site-footer a {
  color: var(--white);
  font-weight: 900;
}

.mobile-call {
  display: none;
}

@media (max-width: 920px) {
  .nav-links,
  .header-call {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 146px;
    height: 57px;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 18px 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 14, 26, .84), rgba(4, 14, 26, .52) 54%, rgba(4, 14, 26, .24)),
      linear-gradient(90deg, rgba(4, 14, 26, .72), rgba(4, 14, 26, .18));
  }

  h1 {
    font-size: clamp(40px, 12vw, 60px);
  }

  .hero-stats,
  .trust-band,
  .split,
  .proof,
  .contact,
  .narrative,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .trust-band span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .timeline,
  .faq-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .channel-table div {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 18px;
  }

  .service-hero {
    padding: 116px 18px 56px;
  }

  .sticky-note {
    position: static;
  }

  .site-footer {
    display: grid;
    gap: 8px;
    padding-bottom: 86px;
  }

  .mobile-call {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 6px;
    background: var(--navy);
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(13, 23, 32, .24);
  }
}

@media (min-width: 921px) and (max-height: 760px) {
  .hero {
    min-height: 88vh;
    padding-top: 104px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(42px, 6vw, 72px);
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 20px;
  }

  .hero-stats {
    display: none;
  }
}

@media (max-width: 560px) {
  .eyebrow {
    font-size: 11px;
    letter-spacing: .04em;
    line-height: 1.35;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .hero-content {
    width: min(342px, 100%);
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(32px, 9vw, 36px);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 16px;
  }

  .hero-stats {
    display: none;
  }

  .hero-stats div,
  .service-card,
  .timeline div {
    padding: 20px;
  }
}
