:root {
  --red: #d20a10;
  --red-dark: #a7070b;
  --blue: #0b2f63;
  --blue-dark: #061c3e;
  --yellow: #f7c928;
  --green: #168848;
  --ink: #101828;
  --muted: #526070;
  --line: #dfe5ec;
  --surface: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 47, 99, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

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

a {
  color: inherit;
}

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

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

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

.section {
  padding: 100px 0;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
}

.skip-link:focus {
  transform: none;
}

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

.eyebrow--light {
  color: var(--yellow);
}

.section-heading::after {
  display: block;
  width: 118px;
  height: 4px;
  margin-top: 25px;
  content: "";
  background: linear-gradient(90deg, var(--red) 0 32%, var(--blue) 32% 66%, var(--yellow) 66% 100%);
  border-radius: 999px;
}

.section-heading--center::after {
  margin-inline: auto;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.7vw, 5rem);
}

h1 span {
  color: var(--red);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.25rem;
}

.top-strip {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(90deg, var(--blue-dark), var(--blue) 55%, #092651);
  font-size: 0.82rem;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.top-strip a {
  padding-left: 18px;
  color: var(--yellow);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 750;
  text-decoration: none;
}

.top-strip__promise,
.top-strip__contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-strip__promise i {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(247, 201, 40, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 47, 99, 0.12);
  box-shadow: 0 8px 30px rgba(6, 28, 62, 0.06);
  backdrop-filter: blur(14px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--red) 0 33%, var(--blue) 33% 67%, var(--yellow) 67% 100%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  display: grid;
  flex: 0 0 auto;
  width: 205px;
  text-decoration: none;
}

.brand img {
  width: 172px;
  height: 56px;
  object-fit: contain;
}

.brand span {
  margin-top: -4px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 19px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #263548;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
  transition: 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 10px;
  font-size: 0.86rem;
}

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(210, 10, 16, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 16px 34px rgba(210, 10, 16, 0.3);
}

.button--ghost {
  color: var(--blue);
  background: var(--white);
  border: 1px solid #bdc9d7;
}

.button--whatsapp {
  color: var(--white);
  background: var(--green);
}

.button--light {
  color: var(--blue-dark);
  background: var(--white);
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  background:
    radial-gradient(circle at 5% 20%, rgba(210, 10, 16, 0.08), transparent 28%),
    radial-gradient(circle at 90% 60%, rgba(11, 47, 99, 0.11), transparent 31%),
    linear-gradient(180deg, #fff, #f7f9fc);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  content: "";
  border: 46px solid rgba(247, 201, 40, 0.28);
  border-radius: 50%;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 54px;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 30px 0 0;
  padding: 0;
  color: #36485e;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
}

.hero__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 47, 99, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  height: auto;
}

.brand-values {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 65px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 47, 99, 0.12);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 34px rgba(11, 47, 99, 0.07);
}

.brand-values::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--red) 0 33%, var(--blue) 33% 67%, var(--yellow) 67% 100%);
}

.brand-value {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 104px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.brand-value:last-child {
  border-right: 0;
}

.brand-value__icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  border-radius: 13px;
  font-size: 1.25rem;
  font-weight: 900;
  place-items: center;
}

.brand-value:nth-child(2) .brand-value__icon {
  background: var(--red);
}

.brand-value:nth-child(3) .brand-value__icon {
  color: var(--blue-dark);
  background: var(--yellow);
}

.brand-value:nth-child(4) .brand-value__icon {
  background: var(--green);
}

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

.brand-value strong {
  color: var(--blue-dark);
  font-size: 0.92rem;
}

.brand-value small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-intro {
  position: relative;
  overflow: hidden;
}

.service-intro::before {
  position: absolute;
  top: 65px;
  left: -45px;
  width: 210px;
  height: 210px;
  content: "";
  opacity: 0.45;
  background-image: radial-gradient(circle, rgba(11, 47, 99, 0.22) 2px, transparent 2.5px);
  background-size: 18px 18px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 18%, transparent 72%);
}

.service-intro .container {
  position: relative;
  z-index: 1;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(11, 47, 99, 0.07);
}

.service-card--featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  border-color: transparent;
}

.service-card__number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(11, 47, 99, 0.13);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, 0.14);
}

.service-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 52px;
  color: var(--red);
  background: #fff0f0;
  border-radius: 14px;
  font-size: 1.7rem;
  font-weight: 900;
  place-items: center;
}

.service-card--featured .service-card__icon {
  color: var(--blue-dark);
  background: var(--yellow);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.48rem;
}

.service-card p {
  margin-bottom: 25px;
  color: var(--muted);
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.service-card--featured a {
  color: var(--yellow);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.service-tags span {
  padding: 9px 15px;
  color: #34455b;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

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

.process__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 82px;
}

.process__visual {
  max-width: 460px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.process__visual img {
  width: 100%;
}

.steps {
  display: grid;
  gap: 18px;
  margin: 35px 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.steps li > span {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
  place-items: center;
}

.steps li:nth-child(2) > span {
  background: var(--red);
}

.steps li:nth-child(3) > span {
  color: var(--blue-dark);
  background: var(--yellow);
}

.steps h3 {
  margin-bottom: 5px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  color: var(--red);
  font-weight: 850;
  text-decoration: none;
}

.promo {
  padding-block: 78px;
  background: var(--white);
}

.promo-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 55px 60px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 93% 20%, rgba(247, 201, 40, 0.3), transparent 24%),
    linear-gradient(135deg, var(--red), #a4050a 50%, var(--blue-dark));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.promo-card::after {
  position: absolute;
  right: -85px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  content: "";
  border: 28px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.promo-card h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.promo-card p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.promo-card__action {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 15px;
}

.status-pill {
  padding: 7px 13px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tips {
  background: var(--surface);
}

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

.tip-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(11, 47, 99, 0.1);
  cursor: zoom-in;
}

.tip-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 250ms ease;
}

.tip-card span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(6, 28, 62, 0.9);
  border-radius: 10px;
  font-weight: 800;
  text-align: left;
  backdrop-filter: blur(7px);
}

.tip-card:hover img,
.tip-card:focus-visible img {
  transform: scale(1.025);
}

.future-gallery {
  margin-top: 36px;
  padding: 30px 34px;
  background: var(--white);
  border: 1px dashed #aab8c8;
  border-radius: 20px;
}

.future-gallery__label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.future-gallery h3 {
  margin-bottom: 7px;
}

.future-gallery p {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
}

.learn {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(210, 10, 16, 0.2), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(247, 201, 40, 0.14), transparent 25%),
    linear-gradient(145deg, #061c3e, #0b2f63 60%, #082752);
}

.learn__decoration {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.learn__decoration--one {
  top: -110px;
  right: -80px;
  width: 340px;
  height: 340px;
  box-shadow: inset 0 0 0 40px rgba(255, 255, 255, 0.018), inset 0 0 0 80px rgba(255, 255, 255, 0.018);
}

.learn__decoration--two {
  bottom: -120px;
  left: -100px;
  width: 280px;
  height: 280px;
  border: 35px solid rgba(210, 10, 16, 0.1);
}

.learn .container {
  position: relative;
  z-index: 1;
}

.learn .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

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

.knowledge-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.knowledge-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--red);
}

.knowledge-card--oil::before {
  background: var(--yellow);
}

.knowledge-card--compact::before {
  background: var(--blue);
}

.knowledge-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.knowledge-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--blue);
  background: #eef4fb;
  border: 1px solid #dae5f1;
  border-radius: 17px;
  place-items: center;
}

.knowledge-card--oil .knowledge-card__icon {
  color: var(--red);
  background: #fff4f2;
  border-color: #f3d9d6;
}

.knowledge-card__icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.knowledge-card__category {
  padding: 7px 12px;
  color: var(--blue);
  background: #eef4fb;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.knowledge-card__category--soon {
  color: #755d00;
  background: #fff6cf;
}

.knowledge-card h3 {
  margin-bottom: 13px;
  color: var(--blue-dark);
  font-size: 1.5rem;
}

.knowledge-card > p {
  color: var(--muted);
}

.knowledge-card--compact {
  min-height: 245px;
}

.signal-list {
  display: grid;
  gap: 11px;
  margin: 24px 0;
}

.signal-list > div {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 11px;
  padding: 12px 14px;
  color: #415063;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.88rem;
}

.signal {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 24, 40, 0.05);
}

.signal--red {
  background: var(--red);
}

.signal--yellow {
  background: #f4b400;
}

.signal--green {
  background: var(--green);
}

.knowledge-card .knowledge-card__note {
  margin-bottom: 0;
  padding-left: 13px;
  color: #6b7786;
  border-left: 3px solid var(--yellow);
  font-size: 0.78rem;
}

.factor-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 29px;
  padding: 0;
  color: #415063;
  list-style: none;
}

.factor-list li {
  position: relative;
  padding-left: 27px;
}

.factor-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.knowledge-card__link {
  color: var(--red);
  font-weight: 850;
  text-decoration: none;
}

.learn-update {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 25px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.learn-update__mark {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 14px;
  font-size: 1.8rem;
  font-weight: 600;
  place-items: center;
}

.learn-update strong {
  color: var(--white);
}

.learn-update p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

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

.quote__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 70px;
}

.quote__content {
  position: sticky;
  top: 135px;
}

.quote__content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-mini {
  display: grid;
  gap: 3px;
  margin-top: 32px;
  padding: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 16px;
}

.contact-mini a {
  color: var(--yellow);
  font-weight: 800;
}

.quote-form {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: #26384c;
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form label span {
  color: #6a7786;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.quote-form textarea {
  min-height: 125px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 47, 99, 0.1);
}

.form-note {
  margin: 14px 0 0;
  color: #687587;
  font-size: 0.78rem;
  text-align: center;
}

.contact {
  color: var(--white);
  background: var(--blue-dark);
}

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

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

.contact-card {
  min-height: 315px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
}

.contact-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 35px;
  color: var(--blue-dark);
  background: var(--yellow);
  border-radius: 13px;
  font-size: 1.5rem;
  font-weight: 900;
  place-items: center;
}

.contact-card h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card a {
  color: var(--yellow);
  font-weight: 800;
}

.contact-card__muted {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.site-footer {
  padding: 58px 0 25px;
  color: #c9d3df;
  background: #031127;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr;
  gap: 60px;
}

.site-footer__grid img {
  width: 160px;
  height: 64px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: grayscale(1) brightness(4);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin-top: 9px;
  font-size: 0.9rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  color: #8090a4;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.floating-whatsapp span {
  font-size: 1.3rem;
}

.image-modal {
  width: min(92vw, 780px);
  max-width: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.image-modal::backdrop {
  background: rgba(3, 17, 39, 0.88);
  backdrop-filter: blur(5px);
}

.image-modal img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
}

.image-modal__close {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -13px;
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--blue-dark);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  font-size: 1.8rem;
  cursor: pointer;
  place-items: center;
}

@media (max-width: 1060px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 119px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .main-nav > a:not(.button) {
    padding: 7px 3px;
  }

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

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    max-width: 850px;
  }

  .brand-values {
    grid-template-columns: 1fr 1fr;
  }

  .brand-value:nth-child(2) {
    border-right: 0;
  }

  .brand-value:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-card:first-child {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .process__grid,
  .quote__grid {
    gap: 45px;
  }

  .promo-card {
    grid-template-columns: 1fr;
  }

  .promo-card__action {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .top-strip__inner span {
    display: none;
  }

  .top-strip__inner {
    justify-content: center;
  }

  .top-strip a {
    padding-left: 0;
    border-left: 0;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    width: 145px;
  }

  .brand img {
    width: 145px;
    height: 54px;
  }

  .brand span {
    display: none;
  }

  .main-nav {
    top: 103px;
  }

  .hero {
    padding: 58px 0 0;
  }

  .hero__grid {
    gap: 35px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 6px;
  }

  .brand-values {
    grid-template-columns: 1fr;
    margin-top: 45px;
    border-bottom: 1px solid rgba(11, 47, 99, 0.12);
    border-radius: 18px;
  }

  .brand-value,
  .brand-value:nth-child(2) {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-value:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .process__grid,
  .tips-grid,
  .knowledge-grid,
  .quote__grid,
  .contact-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .service-card:first-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 340px;
    padding: 28px;
  }

  .service-card__icon {
    margin-bottom: 38px;
  }

  .process__visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .process__content {
    order: -1;
  }

  .promo-card {
    padding: 38px 26px;
  }

  .tips-grid {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }

  .tip-card {
    border-radius: 14px;
  }

  .tip-card span {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 7px 9px;
    font-size: 0.75rem;
  }

  .knowledge-card {
    padding: 26px;
  }

  .knowledge-card--compact {
    min-height: 0;
  }

  .learn-update {
    grid-template-columns: 44px 1fr;
    padding: 22px;
  }

  .learn-update__mark {
    width: 42px;
    height: 42px;
  }

  .quote__content {
    position: static;
  }

  .quote-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-card {
    min-height: 0;
  }

  .contact-card__icon {
    margin-bottom: 24px;
  }

  .site-footer__grid {
    gap: 28px;
  }

  .site-footer__bottom {
    display: grid;
    gap: 5px;
  }

  .floating-whatsapp {
    right: 13px;
    bottom: 13px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp b {
    display: none;
  }
}

@media (max-width: 430px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 40px 1fr;
    gap: 13px;
    padding: 17px;
  }

  .steps li > span {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
