:root {
  --black: #050505;
  --black-2: #0c0b0a;
  --panel: #14110f;
  --panel-2: #1b1713;
  --red: #e31b23;
  --red-2: #9f1118;
  --yellow: #ffc928;
  --text: #f8f5ef;
  --muted: #c8c0b3;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(227, 27, 35, .2), transparent 32rem),
    radial-gradient(circle at 90% 20%, rgba(255, 201, 40, .08), transparent 22rem),
    var(--black);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.eyebrow {
  color: var(--yellow);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

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

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5.6rem);
  max-width: 920px;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.45rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 760px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(227, 27, 35, .28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(227, 27, 35, .36);
}

.btn.secondary {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: none;
}

.btn.small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: .9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, .72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, .94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .32);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}

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

.brand span {
  display: none;
}

.nav-links {
  position: fixed;
  inset: 72px 0 auto 0;
  padding: 18px 16px 24px;
  background: rgba(10, 9, 8, .98);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}

.menu-open .nav-links {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  padding: 12px 10px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 10px;
  transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle span {
  transform: translateY(0);
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(0) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(0) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 38px 0 42px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: #050505;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .82) 46%, rgba(5, 5, 5, .42) 100%),
    radial-gradient(circle at 20% 18%, rgba(227, 27, 35, .34), transparent 24rem);
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .98)),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 18px);
  opacity: .72;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(1.12) contrast(1.05);
}

.hero-grid {
  min-height: calc(100vh - 172px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .45));
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-kicker span {
  color: var(--yellow);
  font-weight: 1000;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  max-width: 240px;
}

.hero .eyebrow {
  display: none;
}

.hero p {
  max-width: 720px;
  color: #eee8dc;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

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

.chip {
  padding: 8px 12px;
  border: 1px solid rgba(255, 201, 40, .35);
  color: #fff0b5;
  background: rgba(5, 5, 5, .38);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
}

.hero-proof {
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-proof div {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(5, 5, 5, .5);
  backdrop-filter: blur(14px);
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: .9rem;
}

.trust-bar {
  border-block: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(90deg, rgba(227, 27, 35, .15), transparent 40%, rgba(255, 201, 40, .08)),
    rgba(255, 255, 255, .03);
}

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

.trust-item {
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.trust-item strong {
  display: block;
  color: #fff;
}

.trust-item span {
  color: var(--muted);
  font-size: .9rem;
}

.split {
  display: grid;
  gap: 24px;
  align-items: center;
}

.benefit-panel {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(227, 27, 35, .18), rgba(255, 201, 40, .08)),
    var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.benefit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255, 255, 255, .04) 14px 15px);
  pointer-events: none;
}

.check-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: -24px;
  margin-top: 8px;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 201, 40, .14);
}

.cards-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    radial-gradient(circle at 12% 0%, rgba(227, 27, 35, .16), transparent 16rem);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 201, 40, .38);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .3);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #160d02;
  background: linear-gradient(135deg, var(--yellow), #ff8d1a);
  font-weight: 1000;
}

.card h3,
.plan-card h3,
.testimonial h3 {
  margin-bottom: 0;
}

.card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.card p,
.plan-card p,
.testimonial p,
.faq-panel p {
  color: var(--muted);
}

.services-showcase {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.service-card {
  position: relative;
  min-height: 270px;
  padding: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  background:
    linear-gradient(160deg, rgba(20, 17, 15, .96), rgba(5, 5, 5, .78)),
    url("../../nico_img3.jpg") center / cover;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: end;
  row-gap: 12px;
  grid-template-areas:
    "top"
    "copy"
    "action";
  align-items: end;
  justify-items: start;
  box-shadow: 0 20px 54px rgba(0, 0, 0, .22);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 201, 40, .46);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .78)),
    radial-gradient(circle at 18% 20%, rgba(227, 27, 35, .22), transparent 20rem);
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:nth-child(2) {
  background-image: linear-gradient(160deg, rgba(20, 17, 15, .95), rgba(5, 5, 5, .78)), url("../../nico_img1.jpg");
}

.service-card:nth-child(3) {
  background-image: linear-gradient(160deg, rgba(20, 17, 15, .95), rgba(5, 5, 5, .78)), url("../../nico_img2.jpg");
}

.service-card:nth-child(4) {
  background-image: linear-gradient(160deg, rgba(20, 17, 15, .95), rgba(5, 5, 5, .78)), url("../../nico_img3.jpg");
}

.service-card h3 {
  max-width: 360px;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 4vw, 2.15rem);
}

.service-card p {
  max-width: 460px;
  color: #e2dbce;
  margin-bottom: 0;
}

.service-copy {
  grid-area: copy;
  align-self: end;
}

.service-card .btn {
  grid-area: action;
  align-self: end;
}

.service-top {
  grid-area: top;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.service-mark {
  color: var(--yellow);
  font-weight: 1000;
  font-size: .9rem;
  letter-spacing: .08em;
}

.service-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #1a1000;
  font-weight: 1000;
  font-size: .78rem;
}

.plan-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.plan-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    var(--panel-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, .22);
}

.plan-card.featured {
  border-color: rgba(255, 201, 40, .72);
  box-shadow: 0 22px 60px rgba(227, 27, 35, .18);
}

.recommended {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #1a1000;
  font-size: .78rem;
  font-weight: 1000;
}

.price {
  color: var(--yellow);
  font-size: 2.25rem;
  font-weight: 1000;
  margin-bottom: 0;
}

.price span {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.plan-card ul {
  padding-left: 18px;
  color: var(--muted);
  margin: 0 0 10px;
}

.plan-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.gallery-shell {
  margin-top: 30px;
  overflow: visible;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  position: relative;
  min-width: 84%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: #111;
  padding: 0;
  color: #fff;
  cursor: zoom-in;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .28);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 201, 40, .62);
  box-shadow: 0 30px 76px rgba(0, 0, 0, .42);
  outline: none;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72)),
    radial-gradient(circle at 82% 12%, rgba(255, 201, 40, .16), transparent 12rem);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .68);
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 900;
}

.gallery-item span::after {
  content: "Ampliar";
  display: inline-flex;
  margin-left: 8px;
  color: var(--yellow);
  font-size: .76rem;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-frame {
  width: min(1100px, 100%);
  margin: 0;
}

.lightbox-frame img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .16);
  background: #080808;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .54);
}

.lightbox-frame figcaption {
  margin-top: 12px;
  color: var(--yellow);
  font-weight: 1000;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.step {
  counter-increment: step;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
}

.step::before {
  content: counter(step);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  margin-bottom: 14px;
  background: var(--red);
  font-weight: 1000;
}

.testimonials-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.testimonial {
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025)),
    radial-gradient(circle at 100% 0%, rgba(255, 201, 40, .09), transparent 12rem);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stars {
  color: var(--yellow);
  letter-spacing: .08em;
  margin-bottom: 12px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  min-height: 58px;
  padding: 16px;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-button::after {
  content: "+";
  color: var(--yellow);
  font-size: 1.4rem;
}

.faq-item.is-open .faq-button::after {
  content: "-";
}

.faq-panel {
  display: none;
  padding: 0 16px 16px;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.final-cta {
  padding: 70px 0;
  background:
    linear-gradient(135deg, rgba(227, 27, 35, .32), rgba(0, 0, 0, .72)),
    url("../../nico_img2.jpg") center / cover;
}

.cta-box {
  max-width: 760px;
}

.site-footer {
  padding: 44px 0 88px;
  background: #030303;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-logo {
  width: 92px;
  margin-bottom: 14px;
}

.footer-links,
.social-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.social-links a,
.contact-link {
  color: var(--muted);
  text-decoration: none;
}

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

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: #19b95f;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .36);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  background: #20c767;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .42);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: none;
  transition: transform .28s ease, box-shadow .28s ease;
}

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

.internal-hero {
  padding: 76px 0 54px;
  background:
    linear-gradient(135deg, rgba(227, 27, 35, .2), rgba(5, 5, 5, .92)),
    url("../../nico_img1.jpg") center / cover;
}

.internal-content {
  display: grid;
  gap: 18px;
}

@media (min-width: 700px) {
  .brand span { display: inline; }

  .hero-actions,
  .cta-actions {
    flex-direction: row;
  }

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

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

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

  .plan-grid,
  .steps,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-track {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: repeat(2, minmax(230px, 1fr));
    overflow: visible;
  }

  .gallery-item {
    min-width: 0;
    aspect-ratio: auto;
  }

  .gallery-feature {
    grid-row: span 2;
  }

  .gallery-controls {
    display: none;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 96px 0;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    inset: auto;
    padding: 0;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: .9rem;
  }

  .hero-grid {
    min-height: calc(100vh - 190px);
    justify-content: center;
  }

  .split {
    grid-template-columns: .9fr 1.1fr;
  }

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

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

  .service-card {
    min-height: 360px;
  }

  .service-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 420px) {
  .nav-actions .btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
