:root {
  --navy: #08213f;
  --blue: #1266d6;
  --green: #16a36b;
  --orange: #f28c28;
  --ink: #172231;
  --muted: #637083;
  --line: #dfe6ef;
  --paper: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 33, 63, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.brand-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 8px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 230, 239, 0.9);
  backdrop-filter: blur(14px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo img {
  display: block;
  width: auto;
  height: clamp(58px, 6vw, 82px);
  max-width: min(430px, 44vw);
  object-fit: contain;
}

.brand-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  font-weight: 800;
}

.brand-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--navy);
  border-radius: 6px;
  font-size: 0.94rem;
}

.brand-nav a:hover,
.brand-nav a.active {
  color: var(--blue);
  background: #e9f2ff;
}

.hero {
  padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(8, 33, 63, 0.95), rgba(18, 102, 214, 0.74)),
    url("../../assets/resource-dashboard.png") center / cover;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
}

.hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffd6a3;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.section.alt {
  background: #f7f9fc;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-heading p {
  color: var(--muted);
}

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

.card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 310px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.card-content {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
}

.card.blue {
  border-top: 5px solid var(--blue);
}

.card.green {
  border-top: 5px solid var(--green);
}

.card.orange {
  border-top: 5px solid var(--orange);
}

.card.steel {
  border-top: 5px solid #31566b;
}

.card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
}

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

.tag {
  width: fit-content;
  padding: 6px 9px;
  color: var(--navy);
  background: #e9f2ff;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 7px;
  font-weight: 900;
}

.card.green .btn {
  background: var(--green);
}

.card.orange .btn {
  background: var(--orange);
}

.card.steel .btn {
  background: #31566b;
}

.btn.secondary {
  color: var(--navy);
  background: #e9f2ff;
}

.footer {
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #04111f;
}

@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .brand-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding-block: 12px;
  }

  .brand-logo img {
    height: 58px;
    max-width: 280px;
  }

  .brand-nav {
    justify-content: flex-start;
  }

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

/* Final Stitch override: keep this block last. */
:root {
  --navy: #0a0a0a;
  --blue: #4b8eff;
  --green: #ccff00;
  --orange: #ccff00;
  --ink: #e5e2e1;
  --muted: #c4c9ac;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #131313;
  --white: #ffffff;
  --surface: #1c1b1b;
  --surface-2: #201f1f;
  --accent: #ccff00;
  --shadow: none;
}

body {
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", Arial, Helvetica, sans-serif;
}

.brand-header {
  background: rgba(14, 14, 14, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand-logo img {
  border-radius: 0;
}

.brand-nav a {
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 0;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-nav a:hover,
.brand-nav a.active {
  color: #161e00;
  background: var(--accent);
}

.hero {
  background:
    linear-gradient(90deg, rgba(19, 19, 19, 0.96), rgba(19, 19, 19, 0.76)),
    linear-gradient(rgba(204, 255, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.12) 1px, transparent 1px),
    url("../../assets/resource-dashboard.png") center / cover;
  background-size: auto, 56px 56px, 56px 56px, cover;
  border-bottom: 1px solid var(--line);
}

.hero p,
.section-heading p,
.card p {
  color: var(--muted);
}

.eyebrow,
.tag {
  color: var(--accent);
  font-family: "JetBrains Mono", Consolas, monospace;
  letter-spacing: 0.08em;
}

.section,
.section.alt {
  background: transparent;
}

.section-heading h2,
.card h3 {
  color: var(--ink);
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.card.blue,
.card.green,
.card.orange,
.card.steel {
  border-top: 1px solid var(--accent);
}

.card img {
  filter: saturate(0.82) contrast(1.08);
}

.tag {
  color: #161e00;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0;
}

.btn,
.card.green .btn,
.card.orange .btn,
.card.steel .btn {
  color: #161e00;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0;
  font-family: "JetBrains Mono", Consolas, monospace;
  text-transform: uppercase;
}

.btn:hover,
.btn:focus-visible {
  color: var(--accent);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.footer {
  background: #0e0e0e;
  border-top: 1px solid var(--line);
}

/* Stitch exact target: "Soluciones Numerikas - Home Tipografia Corregida". */
:root {
  --navy: #000a1b;
  --blue: #4e8eff;
  --green: #28a745;
  --orange: #ff8a00;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.1);
  --paper: #03080f;
  --surface: rgba(255, 255, 255, 0.05);
  --accent: #4e8eff;
  --shadow: 0 20px 40px rgba(78, 142, 255, 0.2);
}

* {
  font-family: "Space Grotesk", "Segoe UI", Arial, Helvetica, sans-serif;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 18%, rgba(78, 142, 255, 0.22), transparent 28%),
    radial-gradient(circle at 18% 60%, rgba(255, 138, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #03080f 0%, #071323 46%, #03080f 100%);
  background-attachment: fixed;
}

.brand-header {
  min-height: 80px;
  background: rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-logo img {
  height: clamp(48px, 5vw, 64px);
  filter: brightness(0) invert(1);
}

.brand-nav {
  gap: 18px;
}

.brand-nav a {
  color: rgba(255, 255, 255, 0.7);
  border: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-nav a:hover,
.brand-nav a.active {
  color: #ffffff;
  background: transparent;
}

.hero {
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.96), rgba(3, 8, 15, 0.66)),
    url("../../assets/resource-dashboard.png") center / cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eyebrow,
.tag {
  width: fit-content;
  padding: 6px 14px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.section,
.section.alt {
  background: rgba(0, 0, 0, 0.18);
}

.section-heading h2,
.card h3 {
  color: #ffffff;
}

.hero p,
.section-heading p,
.card p {
  color: rgba(255, 255, 255, 0.64);
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: none;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.card.blue,
.card.green,
.card.orange,
.card.steel {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag {
  color: var(--accent);
}

.btn,
.card.green .btn,
.card.orange .btn,
.card.steel .btn {
  min-height: 46px;
  color: #ffffff;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 999px;
  letter-spacing: 0.12em;
}

.btn:hover,
.btn:focus-visible {
  color: #ffffff;
  background: #e67e00;
  border-color: #e67e00;
  box-shadow: 0 20px 44px rgba(255, 138, 0, 0.22);
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #02050a;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  min-width: 260px;
  display: grid;
  gap: 2px;
  padding: 12px;
  background: rgba(3, 8, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  min-height: auto;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.brand-cta {
  color: #ffffff !important;
  background: #ff8a00 !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
}

.brand-cta:hover,
.brand-cta:focus-visible {
  background: #e67e00 !important;
}

/* Header aligned with the main dark site navigation. */
.brand-header {
  min-height: 80px !important;
  padding: 16px clamp(18px, 3vw, 40px) !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.brand-logo img {
  height: 54px !important;
  max-width: 240px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
}

.brand-nav {
  gap: 32px !important;
  flex-wrap: nowrap !important;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-nav a {
  min-height: auto !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  border-radius: 0 !important;
  font-size: 0.75rem !important;
}

.brand-nav a:hover,
.brand-nav a.active {
  color: #ffffff !important;
  background: transparent !important;
}

.nav-dropdown-menu {
  top: 100% !important;
  min-width: 280px !important;
  padding: 12px !important;
  background: rgba(3, 8, 15, 0.96) !important;
  border-radius: 18px !important;
}

.nav-dropdown-menu a {
  display: block !important;
  padding: 12px 16px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  border-radius: 12px !important;
  letter-spacing: 0;
  text-transform: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.brand-cta {
  padding: 8px 24px !important;
  color: #ffffff !important;
  background: #ff8a00 !important;
  border-radius: 999px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.btn.secondary {
  color: #ffffff;
  background: #08213f;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 18px;
  vertical-align: middle;
}

.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  color: #ffffff;
  border-color: #4e8eff;
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary span {
  font-family: "Material Symbols Outlined", sans-serif;
  font-size: 28px;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 90;
  width: min(86vw, 340px);
  padding: 16px;
  background: rgba(3, 8, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.mobile-nav-panel a {
  display: block;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
}

.mobile-nav-panel a:hover,
.mobile-nav-panel a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-panel .mobile-cta {
  margin-top: 10px;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  background: #ff8a00;
  border-radius: 999px;
}

@media (max-width: 767px) {
  .brand-header {
    min-height: 72px !important;
  }

  .brand-nav {
    display: none !important;
  }

  .mobile-nav {
    display: block;
  }

  .brand-logo img {
    height: 40px !important;
    max-width: 220px !important;
  }
}

a[aria-label="WhatsApp Soluciones Numerikas"] {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #16a36b;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(22, 163, 107, 0.28);
  transition: transform 180ms ease;
}

a[aria-label="WhatsApp Soluciones Numerikas"]:hover,
a[aria-label="WhatsApp Soluciones Numerikas"]:focus-visible {
  transform: translateY(-2px) scale(1.03);
}

a[aria-label="WhatsApp Soluciones Numerikas"] svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 767px) {
  a[aria-label="WhatsApp Soluciones Numerikas"] {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}



.footer-symbol {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 14px;
}

/* Final site-alignment override: Recursos must match the main Numerikas pages. */
:root {
  --navy: #000a1b;
  --blue: #4e8eff;
  --green: #28a745;
  --orange: #ff8a00;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.1);
  --paper: #01040a;
  --surface: rgba(255, 255, 255, 0.05);
  --accent: #4e8eff;
  --shadow: 0 20px 40px rgba(78, 142, 255, 0.18);
}

* {
  font-family: "Space Grotesk", "Segoe UI", Arial, Helvetica, sans-serif !important;
  box-sizing: border-box;
}

.material-symbols-outlined,
.mobile-nav summary span {
  font-family: "Material Symbols Outlined" !important;
}

body {
  min-width: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 75% 18%, rgba(78, 142, 255, 0.18), transparent 28%),
    radial-gradient(circle at 18% 60%, rgba(255, 138, 0, 0.1), transparent 26%),
    linear-gradient(180deg, #01040a 0%, #071323 48%, #01040a 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.brand-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px !important;
  padding: 16px 40px !important;
  background: rgba(0, 0, 0, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(18px);
}

.brand-logo img {
  height: 54px !important;
  max-width: 220px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
}

.brand-nav {
  display: flex;
  align-items: center;
  gap: 32px !important;
  flex-wrap: nowrap !important;
  margin-left: auto;
  font-weight: 700;
}

.brand-nav a,
.nav-dropdown > a {
  min-height: auto !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}

.brand-nav a:hover,
.brand-nav a.active,
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  color: #ffffff !important;
  background: transparent !important;
}

.brand-cta {
  padding: 8px 24px !important;
  color: #ffffff !important;
  background: #ff8a00 !important;
  border-radius: 999px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.brand-cta:hover,
.brand-cta:focus-visible {
  background: #e67e00 !important;
}

.nav-dropdown-menu {
  top: 100% !important;
  min-width: 280px !important;
  padding: 12px !important;
  background: rgba(3, 8, 15, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32) !important;
  backdrop-filter: blur(18px);
}

.nav-dropdown-menu a {
  display: block !important;
  padding: 12px 16px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  border-radius: 12px !important;
  font-size: 0.86rem !important;
  letter-spacing: 0 !important;
  line-height: 1.25;
  text-transform: none !important;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 40px 86px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(1, 4, 10, 0.84), rgba(7, 19, 35, 0.58)),
    url("../../assets/resource-dashboard.png") center / cover;
  border: 0;
}

.hero h1 {
  max-width: 900px;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
}

.hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
}

.eyebrow,
.tag {
  width: fit-content;
  padding: 0;
  color: #4e8eff;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section,
.section.alt {
  max-width: 1280px;
  margin: 0 auto;
  padding: 76px 40px;
  background: transparent;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading h2 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.section-heading p,
.card p {
  color: rgba(255, 255, 255, 0.62);
}

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

.card {
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px;
  box-shadow: none;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #4e8eff;
  box-shadow: 0 20px 40px rgba(78, 142, 255, 0.18);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.card-content {
  min-height: 230px;
  padding: 24px;
}

.card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.22;
}

.actions {
  align-items: center;
}

.btn,
.card.green .btn,
.card.orange .btn,
.card.steel .btn,
.btn.secondary {
  min-height: 46px;
  padding: 12px 18px;
  color: #ffffff;
  background: #ff8a00;
  border: 1px solid #ff8a00;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.btn:hover,
.btn:focus-visible {
  color: #ffffff;
  background: #e67e00;
  border-color: #e67e00;
  box-shadow: 0 20px 44px rgba(255, 138, 0, 0.22);
  transform: none;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 48px 40px;
  color: rgba(255, 255, 255, 0.58);
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-symbol {
  width: 42px;
  height: 42px;
  margin: 0;
}

.social-icons {
  margin-left: 0;
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  color: #ffffff;
}

.mobile-nav-panel {
  right: 0;
  background: rgba(3, 8, 15, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.mobile-nav-panel a {
  color: rgba(255, 255, 255, 0.72);
}

.mobile-nav-panel .mobile-cta {
  color: #ffffff;
  background: #ff8a00;
}

@media (max-width: 1080px) {
  .brand-nav {
    gap: 18px !important;
  }

  .brand-nav a,
  .nav-dropdown > a {
    font-size: 0.68rem !important;
    letter-spacing: 0.14em !important;
  }

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

@media (max-width: 767px) {
  .brand-header {
    align-items: center;
    flex-direction: row;
    min-height: 72px !important;
    padding: 14px 20px !important;
  }

  .brand-nav {
    display: none !important;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .brand-logo img {
    height: 42px !important;
    max-width: min(220px, 68vw) !important;
  }

  .hero,
  .section,
  .section.alt {
    padding-inline: 20px;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 64px;
  }

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

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

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

  .actions,
  .btn {
    width: 100%;
  }

  .footer {
    padding: 40px 20px 92px;
  }
}
