﻿:root {
  --navy: #0b2142;
  --navy-2: #123866;
  --orange: #f47b20;
  --orange-dark: #d9650f;
  --white: #ffffff;
  --soft: #f5f8fc;
  --line: #dfe7f1;
  --text: #172033;
  --muted: #64748b;
  --shadow: 0 18px 45px rgba(11, 33, 66, 0.12);
  --shadow-strong: 0 24px 70px rgba(11, 33, 66, 0.18);
  --glow: 0 0 0 1px rgba(244, 123, 32, 0.18), 0 18px 55px rgba(11, 33, 66, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius);
  flex-shrink: 0;
}

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

.brand strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 700;
  color: var(--navy);
}

.main-nav a,
.nav-link {
  padding: 26px 0;
}

.main-nav a:hover,
.nav-link:hover {
  color: var(--orange);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-link span {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 40;
  width: 292px;
  padding: 10px;
  border: 1px solid rgba(223, 231, 241, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.submenu a::after {
  content: "→";
  color: var(--orange);
  font-weight: 900;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.submenu a:hover {
  background: var(--soft);
}

.submenu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-submenu-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.has-submenu:hover .nav-link span,
.has-submenu:focus-within .nav-link span,
.has-submenu.is-submenu-open .nav-link span {
  transform: rotate(180deg);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-call,
.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-call:hover,
.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-whatsapp,
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

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

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.breadcrumb {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(244, 123, 32, 0.22) 0, rgba(244, 123, 32, 0) 28%),
    linear-gradient(115deg, rgba(7, 23, 45, 0.98) 0%, rgba(11, 33, 66, 0.9) 42%, rgba(11, 33, 66, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 23, 45, 0.18) 0%, rgba(7, 23, 45, 0.72) 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.76) 42%, transparent 78%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  padding: 86px 0 110px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 740px;
  margin: 12px 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  font-size: 14px;
}

.service-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 123, 32, 0.18), transparent 28%),
    linear-gradient(120deg, #07172d 0%, var(--navy) 58%, var(--navy-2) 100%);
  color: var(--white);
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
}

.service-hero .container {
  position: relative;
  z-index: 1;
  padding: 84px 0 78px;
}

.service-hero h1 {
  max-width: 820px;
  margin: 10px 0 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.service-hero p {
  max-width: 760px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.content-panel,
.service-sidebar,
.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 33, 66, 0.06);
}

.content-panel {
  padding: 30px;
}

.service-detail-image {
  margin: -30px -30px 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  background: #fff;
}

.service-detail-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.content-panel + .content-panel {
  margin-top: 18px;
}

.content-panel h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
}

.content-panel h3 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-size: 21px;
}

.content-panel p {
  margin: 0 0 14px;
  color: var(--muted);
}

.issue-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.issue-list li,
.check-list li {
  position: relative;
  padding: 13px 14px 13px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--text);
}

.issue-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.district-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.district-mini a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.district-mini a:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

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

.contact-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 33, 66, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(244, 123, 32, 0.5);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(244, 123, 32, 0.12);
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
}

.contact-card strong {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.15;
}

.contact-card small {
  color: var(--muted);
  font-size: 15px;
}

.contact-card em {
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
}

.service-sidebar {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.service-sidebar h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 20px;
}

.service-sidebar a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.service-sidebar a::after {
  content: "→";
  color: var(--orange);
}

.service-sidebar a:last-child {
  border-bottom: 0;
}

.service-sidebar a:hover {
  color: var(--orange);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(11, 33, 66, 0.96), rgba(18, 56, 102, 0.94)),
    var(--navy);
  color: var(--white);
}

.cta-band h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 25px;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.hub-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(11, 33, 66, 0.05);
  overflow: hidden;
}

.hub-card summary {
  min-height: 74px;
  padding-right: 48px;
}

.hub-card summary span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hub-links {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}

.hub-links a,
.hub-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
}

.hub-links a::after,
.hub-services a::after {
  content: "→";
  color: var(--orange);
}

.hub-links a:hover,
.hub-services a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

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

.quick-search {
  margin-top: -58px;
  position: relative;
  z-index: 2;
}

.quick-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: end;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-panel h2 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.2;
}

.service-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  padding: 0 12px;
  font: inherit;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100% - 32px, var(--container));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(11, 33, 66, 0.12), transparent);
}

.section > .container {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .section > .container {
  opacity: 0;
  transform: translateY(18px);
}

.js .section.is-visible > .container {
  opacity: 1;
  transform: translateY(0);
}

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

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.18;
}

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

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

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

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

.service-card,
.blog-card {
  position: relative;
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.16), rgba(18, 56, 102, 0) 36%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 123, 32, 0.42);
  box-shadow: var(--glow);
}

.service-card:hover::before,
.blog-card:hover::before {
  opacity: 1;
}

.service-card .icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(244, 123, 32, 0.14), rgba(18, 56, 102, 0.08));
  box-shadow: inset 0 0 0 1px rgba(244, 123, 32, 0.22);
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
  transition: transform 0.24s ease, background 0.24s ease;
}

.service-card:hover .icon {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(145deg, var(--orange), #ff9b4a);
  color: var(--white);
}

.service-card-media {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  border-radius: 12px;
}

.service-card-image {
  overflow: hidden;
  background: #fff;
}

.service-card-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: transform 0.28s ease;
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-card-content .icon {
  margin: 0;
}

.service-card-content p {
  flex-grow: 1;
}

.service-card-buttons {
  display: flex;
  gap: 0;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(244, 123, 32, 0.28);
  border-radius: var(--radius);
}

.service-card-buttons a {
  flex: 1;
  padding: 13px 10px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.service-card-buttons a:first-child {
  background: rgba(244, 123, 32, 0.1);
  color: var(--orange);
}

.service-card-buttons a:last-child {
  background: var(--orange);
  color: #fff;
}

.service-card-media:hover .service-card-image img {
  transform: scale(1.02);
}

.service-card h3,
.blog-card h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.service-card p,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.district-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.district-list a {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 94px;
  padding: 18px 42px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  color: var(--navy);
  text-align: left;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.district-list strong {
  font-size: 17px;
  line-height: 1.2;
}

.district-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.district-list em {
  position: absolute;
  top: 18px;
  right: 16px;
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
  transition: transform 0.22s ease;
}

.district-list a:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(11, 33, 66, 0.1);
}

.district-list a:hover em {
  transform: translateX(3px);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

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

.benefit-grid div {
  padding: 22px;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: var(--soft);
}

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

.benefit-grid strong {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 18px;
}

.benefit-grid span {
  color: var(--muted);
}

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

.process-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.process-grid h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.narrow {
  max-width: 860px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 33, 66, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

details[open] {
  border-color: rgba(244, 123, 32, 0.32);
  box-shadow: 0 18px 42px rgba(11, 33, 66, 0.08);
}

summary {
  position: relative;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.22s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  animation: accordionIn 0.28s ease;
}

@keyframes accordionIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card {
  padding: 0;
}

.blog-card > span,
.blog-card h3,
.blog-card p,
.blog-card a {
  margin-left: 24px;
  margin-right: 24px;
}

.blog-thumb {
  position: relative;
  display: grid;
  height: 142px;
  place-items: center;
  margin-bottom: 22px;
  background:
    linear-gradient(135deg, rgba(11, 33, 66, 0.94), rgba(18, 56, 102, 0.78)),
    linear-gradient(45deg, rgba(244, 123, 32, 0.24), transparent);
  overflow: hidden;
}

.blog-thumb::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.blog-thumb::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(244, 123, 32, 0.16);
  right: -48px;
  bottom: -58px;
}

.blog-thumb span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  font-size: 34px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.blog-thumb-washer {
  background:
    linear-gradient(135deg, rgba(11, 33, 66, 0.92), rgba(31, 84, 120, 0.78)),
    linear-gradient(45deg, rgba(244, 123, 32, 0.18), transparent);
}

.blog-thumb-clima {
  background:
    linear-gradient(135deg, rgba(8, 34, 58, 0.93), rgba(30, 90, 112, 0.74)),
    linear-gradient(45deg, rgba(244, 123, 32, 0.18), transparent);
}

.blog-card > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  background: #07172d;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
  padding: 54px 0 34px;
}

.footer-brand .brand-mark {
  background: var(--orange);
}

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

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 9px;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.mobile-cta {
  display: none;
}

