:root {
  --blue-950: #071326;
  --blue-900: #0a1d38;
  --blue-800: #10345c;
  --brand-blue: #156985;
  --brand-red: #ed1c24;
  --red-dark: #bd141a;
  --ink: #111827;
  --text: #4b5565;
  --soft: #f3f7fb;
  --line: #dce6f1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 19, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[data-scroll-reveal="true"] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-scroll-reveal="true"].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal="true"] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 19, 38, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: 168px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 22px);
  min-width: 0;
  overflow: visible;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-item--dropdown::after {
  position: absolute;
  top: 100%;
  left: -18px;
  width: calc(100% + 36px);
  height: 18px;
  content: "";
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 19, 38, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.nav-dropdown a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 19, 38, 0.98) 0%, rgba(8, 30, 58, 0.9) 38%, rgba(8, 30, 58, 0.52) 69%, rgba(7, 19, 38, 0.8) 100%),
    url("assets/hero-home.png") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 19, 38, 0.92));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 150px 0 86px;
}

.hero__content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-red);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.hero__text {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.55;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--blue-950);
  background: transparent;
  font-weight: 800;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button:focus-visible,
.header-cta:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.button--primary:hover,
.button--secondary:hover {
  background: rgba(7, 19, 38, 0.06);
}

.hero .button,
.review-summary .button {
  color: var(--white);
}

.hero .button--primary:hover,
.hero .button--secondary:hover,
.review-summary .button--primary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 19, 38, 0.64);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-panel p {
  margin: 0 0 12px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.12;
}

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

.hero-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-panel li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(21, 105, 133, 0.22);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(78px, 8vw, 124px) 0;
}

.section__intro {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-bottom: 46px;
  margin-left: auto;
  text-align: center;
}

.section__intro h2,
.split h2,
.contact h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.section__intro .eyebrow,
.split .eyebrow,
.contact .eyebrow {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.section__intro p:last-child,
.split__content p,
.contact p {
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.66;
  font-weight: 500;
}

.section__intro--center {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section__intro p:last-child,
.section__intro--center p:last-child {
  margin-top: 18px;
}

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

.service-card,
.process-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  display: block;
  grid-column: span 2;
  min-height: 260px;
  padding: 28px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.service-card:nth-child(5) {
  grid-column: span 2;
}

.service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-card:hover {
  border-color: rgba(21, 105, 133, 0.32);
  transform: translateY(-4px);
}

.service-card--featured {
  color: inherit;
  background: var(--white);
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-blue);
  overflow: hidden;
  line-height: 1;
}

.card-icon::before {
  display: block;
  width: 23px;
  height: 23px;
  content: "";
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.card-icon--home::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.5 12 3l9 7.5M5.5 9.5V21h13V9.5M9 21v-6h6v6' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.5 12 3l9 7.5M5.5 9.5V21h13V9.5M9 21v-6h6v6' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.card-icon--refinance::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10a7 7 0 0 1 12.3-4.55L19 7M19 7h-5M19 7V2M19 14a7 7 0 0 1-12.3 4.55L5 17M5 17h5M5 17v5' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10a7 7 0 0 1 12.3-4.55L19 7M19 7h-5M19 7V2M19 14a7 7 0 0 1-12.3 4.55L5 17M5 17h5M5 17v5' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.card-icon--personal::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM4.5 21a7.5 7.5 0 0 1 15 0' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM4.5 21a7.5 7.5 0 0 1 15 0' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.card-icon--business::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 21V4h14v17M3 21h18M9 8h2M13 8h2M9 12h2M13 12h2M9 16h2M13 16h2' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 21V4h14v17M3 21h18M9 8h2M13 8h2M9 12h2M13 12h2M9 16h2M13 16h2' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.card-icon--debt::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6.5h16v11H4zM4 10h16M8 14h4M15.5 14h1.5' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6.5h16v11H4zM4 10h16M8 14h4M15.5 14h1.5' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.service-card h3,
.process-grid h3,
.why-list h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.16;
  font-weight: 900;
}

.service-card h3 {
  color: var(--blue-950);
}

.service-card--featured h3 {
  color: var(--blue-950);
}

.service-card p,
.process-grid p,
.why-list p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.service-card--featured p {
  color: var(--text);
}

.why {
  width: 100%;
  max-width: none;
  background: var(--soft);
}

.why__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.why__intro {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.why__intro h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why__intro p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.split__content {
  align-self: center;
}

.split__content p {
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--brand-red);
  font-weight: 900;
}

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

.why-list article {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  gap: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.why-list article:hover {
  border-color: rgba(21, 105, 133, 0.32);
  transform: translateY(-4px);
}

.why-list h3 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: 23px;
  line-height: 1.16;
  font-weight: 900;
}

.why-list p {
  margin: 0;
  max-width: none;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.why-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 44px;
  color: var(--brand-blue);
  background: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.why-icon--experience {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2.7 2.85 5.78 6.38.93-4.62 4.5 1.09 6.36L12 17.27l-5.7 3 1.09-6.36-4.62-4.5 6.38-.93L12 2.7Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2.7 2.85 5.78 6.38.93-4.62 4.5 1.09 6.36L12 17.27l-5.7 3 1.09-6.36-4.62-4.5 6.38-.93L12 2.7Z' fill='black'/%3E%3C/svg%3E");
}

.why-icon--bank {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 21h18v-3H3v3Zm2-5h14v-2H5v2Zm1-4h3V8H6v4Zm5 0h3V8h-3v4Zm5 0h3V8h-3v4ZM3 6.5 12 2l9 4.5V8H3V6.5Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 21h18v-3H3v3Zm2-5h14v-2H5v2Zm1-4h3V8H6v4Zm5 0h3V8h-3v4Zm5 0h3V8h-3v4ZM3 6.5 12 2l9 4.5V8H3V6.5Z' fill='black'/%3E%3C/svg%3E");
}

.why-icon--response {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8 2h7.1l-4.2 7h5.5L9.6 22l1.8-9H6l4.8-11Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8 2h7.1l-4.2 7h5.5L9.6 22l1.8-9H6l4.8-11Z' fill='black'/%3E%3C/svg%3E");
}

.why-icon--tailored {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 3a7 7 0 1 1 0 14 7 7 0 0 1 0-14Zm0 3.2a3.8 3.8 0 1 0 0 7.6 3.8 3.8 0 0 0 0-7.6Zm0 2.4a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 3a7 7 0 1 1 0 14 7 7 0 0 1 0-14Zm0 3.2a3.8 3.8 0 1 0 0 7.6 3.8 3.8 0 0 0 0-7.6Zm0 2.4a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8Z' fill='black'/%3E%3C/svg%3E");
}

.client-experiences {
  width: min(1180px, calc(100% - 48px));
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.review-summary,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-summary {
  display: grid;
  align-content: start;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 38, 0.98), rgba(16, 52, 92, 0.96));
}

.review-summary__source {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.review-summary strong {
  color: var(--white);
  font-size: clamp(54px, 7vw, 86px);
  line-height: 0.9;
  font-weight: 900;
}

.review-stars {
  color: #f7c948;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.review-summary .review-stars {
  margin: 16px 0 18px;
  font-size: 20px;
}

.review-summary p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.review-summary .button {
  width: 100%;
}

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

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 28px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.review-card:hover {
  border-color: rgba(21, 105, 133, 0.32);
  transform: translateY(-4px);
}

.review-card__top {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.review-card__top span {
  color: var(--brand-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-card p {
  margin: 0 0 34px;
  color: var(--blue-950);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.review-card strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.process {
  background: var(--white);
}

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

.process-grid article {
  padding: 28px;
}

.process-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-blue);
  font-weight: 900;
}

.case-stats {
  background: var(--white);
}

.case-stats__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 80px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) 0 clamp(72px, 8vw, 116px);
}

.case-stat {
  text-align: center;
}

.case-stat__number {
  display: block;
  min-height: 0.95em;
  color: var(--ink);
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.case-stat span {
  display: block;
  margin-top: 14px;
  color: var(--blue-950);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.15;
  font-weight: 800;
}

.case-stat p {
  margin: 14px 0 0;
  color: var(--brand-red);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.3;
  font-weight: 700;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 38, 0.98), rgba(16, 52, 92, 0.96));
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.68fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(80px, 8vw, 124px) 0;
}

.contact h2 {
  color: var(--white);
}

.contact p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 900;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(21, 105, 133, 0.12);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  color: var(--blue-950);
}

.contact-form .button:hover {
  background: rgba(7, 19, 38, 0.06);
}

.footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--blue-950);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(150px, 0.55fr) minmax(220px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(52px, 6vw, 78px) 0 28px;
}

.footer__inner--full {
  grid-template-areas:
    "about links contact"
    "disclaimer disclaimer disclaimer"
    "bottom bottom bottom";
}

.footer-about {
  grid-area: about;
}

.footer-links {
  grid-area: links;
}

.footer-contact {
  grid-area: contact;
}

.footer-disclaimer {
  grid-area: disclaimer;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  grid-area: bottom;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo img {
  width: 190px;
}

.footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.footer p,
.footer a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 500;
}

.footer p {
  margin: 18px 0 0;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer span {
  font-size: 14px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.58);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(7, 19, 38, 0.24);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-float::before {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  animation: whatsappPulse 12s ease-out infinite;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 52px rgba(7, 19, 38, 0.3);
  transform: translateY(-2px) scale(1.04);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float__tip {
  position: absolute;
  right: 72px;
  bottom: 8px;
  width: max-content;
  max-width: 220px;
  padding: 11px 14px;
  color: #071326;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  pointer-events: none;
  background: #ffffff;
  border: 1px solid rgba(7, 19, 38, 0.1);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(7, 19, 38, 0.18);
  opacity: 0;
  transform: translateX(8px);
  animation: whatsappTip 12s ease-in-out infinite;
}

.whatsapp-float__tip::after {
  position: absolute;
  right: -6px;
  bottom: 18px;
  width: 12px;
  height: 12px;
  content: "";
  background: #ffffff;
  border-top: 1px solid rgba(7, 19, 38, 0.1);
  border-right: 1px solid rgba(7, 19, 38, 0.1);
  transform: rotate(45deg);
}

.whatsapp-float:hover .whatsapp-float__tip,
.whatsapp-float:focus-visible .whatsapp-float__tip {
  opacity: 1;
  transform: translateX(0);
  animation-play-state: paused;
}

@keyframes whatsappTip {
  0%,
  52%,
  100% {
    opacity: 0;
    transform: translateX(8px);
  }

  8%,
  34% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes whatsappPulse {
  0%,
  52%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }

  8% {
    opacity: 0.8;
    transform: scale(0.92);
  }

  34% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 128px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .service-grid,
  .review-grid,
  .process-grid,
  .contact__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .section__intro,
  .split {
    grid-template-columns: 1fr;
  }

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

  .footer__inner--full {
    grid-template-areas:
      "about"
      "links"
      "contact"
      "disclaimer"
      "bottom";
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 126px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .nav-links {
    flex: 1;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }

  .nav-item {
    position: static;
  }

  .nav-item--dropdown::after {
    display: none;
  }

  .nav-dropdown {
    left: 16px;
    right: 16px;
    min-width: 0;
    transform: translateY(8px);
  }

  .nav-item--dropdown:hover .nav-dropdown,
  .nav-item--dropdown:focus-within .nav-dropdown {
    transform: translateY(0);
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(7, 19, 38, 0.98) 0%, rgba(8, 30, 58, 0.92) 58%, rgba(7, 19, 38, 0.78) 100%),
      url("assets/hero-home.png") 62% center / cover no-repeat;
  }

  .hero__inner,
  .section,
  .why__inner,
  .split,
  .contact__inner,
  .footer__inner {
    width: min(100% - 32px, 1180px);
  }

  .hero__inner {
    min-height: auto;
    padding: 132px 0 64px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .section__intro h2,
  .split h2,
  .contact h2,
  .why__intro p {
    font-size: clamp(28px, 8vw, 38px);
  }

  .section__intro .eyebrow,
  .split .eyebrow,
  .contact .eyebrow,
  .why__intro h2 {
    font-size: clamp(16px, 4.5vw, 19px);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }

  .whatsapp-float__tip {
    right: 64px;
    bottom: 7px;
    max-width: 190px;
    padding: 10px 13px;
    font-size: 13px;
  }

  .button {
    min-height: 52px;
  }

  .service-grid,
  .why-list,
  .review-grid,
  .case-stats__inner,
  .process-grid,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .case-stats__inner {
    width: min(100% - 32px, 1180px);
    padding: 18px 0 66px;
  }

  .section__intro {
    display: block;
  }

  .section__intro p:last-child {
    margin-top: 18px;
  }

  .service-card,
  .why-list article,
  .review-summary,
  .review-card,
  .process-grid article,
  .contact-form {
    padding: 24px;
  }

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

  .contact__inner {
    padding: 66px 0;
  }
}
