:root {
  --ink: #111d2b;
  --muted: #5d6876;
  --paper: #f5f7fa;
  --surface: #ffffff;
  --line: #dfe5ea;
  --navy: #071827;
  --navy-soft: #102a44;
  --navy-light: #193a5a;
  --gold: #f3c869;
  --gold-dark: #c99a32;
  --gold-soft: #fff3d4;
  --shadow: 0 18px 55px rgba(7, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Garet", "Avenir Next", Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  height: 84px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: rgba(7, 24, 39, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(260px, 28vw, 390px);
  height: 84px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a:hover {
  color: #ffffff;
}

.external-link {
  color: var(--gold);
  font-weight: 800;
}

.external-link:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px clamp(20px, 5vw, 72px) 68px;
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.74) 42%, rgba(7, 24, 39, 0.12) 78%),
    linear-gradient(0deg, rgba(7, 24, 39, 0.48), rgba(7, 24, 39, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1;
}

.hero-title {
  display: grid;
  gap: 12px;
}

.typing-word {
  display: inline-flex;
  align-items: baseline;
  min-width: 12ch;
  color: var(--gold);
  white-space: nowrap;
}

.typing-text {
  display: inline-block;
}

.typing-word::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.06em;
  background: currentColor;
  transform: translateY(0.08em);
  animation: caretBlink 760ms steps(1, end) infinite;
}

@keyframes caretBlink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.section-heading p,
.feature-band > div > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
}

.button.primary:hover {
  background: var(--gold-dark);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 12px;
  max-width: 760px;
  margin-top: 22px;
  align-items: center;
}

.hero-panel span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-panel span:not(:last-child)::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats article {
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 4px solid transparent;
  background: var(--surface);
}

.stats strong {
  display: block;
  color: var(--navy-light);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.section,
.quote-section,
.feature-band,
.process-section {
  padding: 92px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(7, 24, 39, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7, 24, 39, 0.12);
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(243, 200, 105, 0.35);
  border-radius: 8px;
  color: var(--gold);
  background: var(--navy);
  font-weight: 900;
}

.service-card p,
.feature-list p,
.quote-copy p,
.site-footer p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(243, 200, 105, 0.18), rgba(25, 58, 90, 0.42)),
    var(--navy);
  color: #ffffff;
}

.feature-band > div > p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-list article:last-child {
  border-bottom: 0;
}

.feature-list p {
  color: rgba(255, 255, 255, 0.72);
}

.process-section {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7f9fa);
}

.process-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(7, 24, 39, 0.16);
}

.trust-strip span {
  display: flex;
  min-height: 92px;
  align-items: center;
  padding: 22px;
  color: #ffffff;
  background: var(--navy-soft);
  font-weight: 800;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #eef3f8;
}

.quote-copy {
  max-width: 620px;
}

.quote-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.quote-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
}

.quote-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-link {
  justify-self: center;
  color: var(--navy-light);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-title {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.form-title strong {
  font-size: 1.18rem;
}

.form-title span {
  color: var(--muted);
  font-size: 0.94rem;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd8df;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(243, 200, 105, 0.32);
  border-color: var(--gold-dark);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px) 102px;
  color: #ffffff;
  background: var(--navy);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-logo {
  display: block;
  width: min(280px, 70vw);
  height: auto;
  margin-bottom: 14px;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  text-align: right;
}

address span {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.68);
}

.social-link {
  justify-self: end;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(243, 200, 105, 0.42);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  color: #ffffff;
  border-color: var(--gold);
  background: rgba(243, 200, 105, 0.16);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 16px 36px rgba(7, 24, 39, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #1fb85a;
  box-shadow: 0 20px 42px rgba(7, 24, 39, 0.32);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    display: flex;
    height: 76px;
    align-items: center;
    padding: 0 20px;
  }

  .main-nav {
    display: flex;
    margin-left: auto;
  }

  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .brand {
    width: min(240px, 50vw);
    height: 76px;
  }

  .hero {
    min-height: 88vh;
    padding: 110px 20px 54px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 24, 39, 0.94), rgba(7, 24, 39, 0.48)),
      linear-gradient(0deg, rgba(7, 24, 39, 0.72), rgba(7, 24, 39, 0.18));
  }

  .stats,
  .service-grid,
  .feature-band,
  .quote-section,
  .process-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section,
  .quote-section,
  .feature-band,
  .process-section {
    padding: 62px 20px;
  }

  .trust-strip {
    padding: 0;
  }

  .service-card,
  .process-grid article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
    padding-bottom: 108px;
  }

  address {
    justify-items: start;
    text-align: left;
  }

  .social-link {
    justify-self: start;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 460px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 100%;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
