@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #020508;
  --panel: #050a10;
  --panel-soft: #07101a;
  --blue: #008cff;
  --cyan: #00c6ff;
  --green: #00e66f;
  --text: #f7f9fc;
  --muted: #aab5c0;
  --line: rgba(0, 157, 255, 0.42);
  --line-green: rgba(0, 230, 111, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 74% 20%, rgba(0, 110, 255, .08), transparent 30%),
    radial-gradient(circle at 86% 30%, rgba(0, 230, 111, .05), transparent 26%),
    #020508;
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 44px 44px;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .07;
}

.glow-blue {
  left: -180px;
  top: 160px;
  background: var(--blue);
}

.glow-green {
  right: -200px;
  top: 270px;
  background: var(--green);
}

a {
  color: inherit;
}

.site-header {
  width: 100%;
  height: 84px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(1, 4, 7, .93);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(90deg, var(--blue) 0 62%, var(--green) 62%);
  -webkit-background-clip: text;
  color: transparent;
}

.brand-name {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: .04em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  text-decoration: none;
  color: #eef4fb;
  transition: color .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: white;
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-replay-btn,
.mobile-replay-btn {
  border: 0;
  background: transparent;
  color: rgba(226,238,249,.7);
  font: 700 11px/1 "Inter", Arial, sans-serif;
  letter-spacing: .08em;
  cursor: pointer;
  transition: color .25s ease, text-shadow .25s ease;
}

.header-replay-btn:hover,
.header-replay-btn:focus-visible,
.mobile-replay-btn:hover,
.mobile-replay-btn:focus-visible {
  color: white;
  text-shadow: 0 0 10px rgba(0,157,255,.8);
  outline: none;
}

.mobile-replay-btn {
  display: none;
}

.language-btn.mobile-language-btn {
  display: none;
}

.language-btn,
.request-btn {
  height: 44px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.language-btn {
  width: 75px;
  color: white;
  background: transparent;
  border: 1px solid var(--green);
}

.request-btn {
  min-width: 220px;
  padding: 0 24px;
  gap: 30px;
  text-decoration: none;
  background: linear-gradient(90deg, #006dff, #00df69);
  box-shadow: 0 0 22px rgba(0, 125, 255, .3);
}

.menu-btn {
  display: none;
  color: white;
  font-size: 25px;
  background: transparent;
  border: 0;
}

.hero {
  max-width: 1460px;
  margin: 0 auto;
  padding: 66px 46px 26px;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(640px, 1.55fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  align-self: center;
}

.kicker {
  margin-bottom: 28px;
  color: var(--blue);
  letter-spacing: .26em;
  font-size: 16px;
}

.kicker span {
  color: var(--green);
}

h1 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(58px, 5vw, 82px);
  line-height: .91;
  letter-spacing: -.035em;
  margin-bottom: 28px;
}

.blue-text {
  color: #0577ff;
}

.green-text {
  color: var(--green);
}

.hero-description {
  color: #c1c9d2;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 38px;
}

.primary-cta,
.secondary-cta {
  min-width: 220px;
  height: 50px;
  padding: 0 25px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.primary-cta {
  background: linear-gradient(90deg, #006bff, #00de69);
  box-shadow: 0 0 26px rgba(0, 116, 255, .28);
}

.secondary-cta {
  border: 1px solid rgba(0, 230, 111, .75);
  background: rgba(2, 7, 12, .72);
}

.secondary-cta span {
  color: var(--green);
  font-size: 22px;
}

.trust-strip {
  border: 1px solid rgba(0, 158, 255, .35);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7,14,22,.82), rgba(2,7,12,.9));
}

.trust-strip article {
  min-height: 110px;
  padding: 18px 10px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}

.trust-strip article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(255,255,255,.12);
}

.trust-icon {
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.trust-icon.green {
  color: var(--green);
}

.trust-strip strong {
  font-size: 11px;
  line-height: 1.55;
}

.carousel-area {
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
}

.carousel-stage {
  position: relative;
  height: 505px;
  overflow: hidden;
  perspective: 1400px;
}

.service-card {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 250px;
  height: 410px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(8,16,25,.88), rgba(2,6,10,.96));
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
  transition:
    transform .65s cubic-bezier(.2,.8,.2,1),
    opacity .55s ease,
    filter .55s ease,
    border-color .55s ease,
    box-shadow .55s ease;
  transform-origin: center;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(0,153,255,.05), transparent 66%);
}

.service-card h3 {
  font-size: 15px;
  margin-bottom: 12px;
}

.card-number {
  position: absolute;
  left: 16px;
  top: 20px;
  color: var(--blue);
  font-weight: 700;
}

.service-card h3 {
  padding-left: 28px;
}

.service-card img {
  width: calc(100% + 36px);
  height: 245px;
  margin-left: -18px;
  object-fit: cover;
  display: block;
}

.service-card p {
  color: #d6dde5;
  font-size: 13px;
  line-height: 1.65;
  margin-top: 14px;
}

.service-card[data-pos="0"] {
  z-index: 5;
  transform: translateX(-50%) translateX(0) translateY(-8px) scale(1.08);
  opacity: 1;
  border-color: #147dff;
  box-shadow:
    0 0 0 1px rgba(0, 132, 255, .35),
    0 0 30px rgba(0, 108, 255, .48),
    0 28px 60px rgba(0,0,0,.56);
}

.service-card[data-pos="-1"] {
  z-index: 4;
  transform: translateX(-50%) translateX(-185px) translateY(10px) scale(.96) rotateY(5deg);
  opacity: .94;
}

.service-card[data-pos="1"] {
  z-index: 4;
  transform: translateX(-50%) translateX(185px) translateY(10px) scale(.96) rotateY(-5deg);
  opacity: .94;
}

.service-card[data-pos="-2"] {
  z-index: 3;
  transform: translateX(-50%) translateX(-340px) translateY(20px) scale(.86) rotateY(7deg);
  opacity: .82;
  filter: brightness(.78);
}

.service-card[data-pos="2"] {
  z-index: 3;
  transform: translateX(-50%) translateX(340px) translateY(20px) scale(.86) rotateY(-7deg);
  opacity: .82;
  filter: brightness(.78);
  border-color: var(--line-green);
}

.service-card[data-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.72);
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 151, 255, .7);
  color: white;
  background: rgba(2, 9, 15, .82);
  font-size: 31px;
  cursor: pointer;
  z-index: 10;
}

.carousel-arrow:hover {
  border-color: var(--green);
  color: var(--green);
}

.carousel-dots {
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: -12px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #3b4650;
  cursor: pointer;
}

.carousel-dots button.active {
  background: #0577ff;
  box-shadow: 0 0 12px rgba(0,119,255,.75);
}

.service-grid {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 46px 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.info-card {
  min-height: 215px;
  padding: 25px 20px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  border: 1px solid rgba(0, 164, 255, .6);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(6,13,21,.8), rgba(2,7,11,.92));
  box-shadow: inset 0 -1px 0 rgba(0,230,111,.26);
}

.info-card:nth-child(even) {
  border-color: rgba(0, 180, 255, .55);
}

.info-icon {
  color: var(--blue);
  font-size: 44px;
  line-height: 1;
}

.info-card h3 {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.info-card p {
  color: #b9c2cb;
  font-size: 13px;
  line-height: 1.7;
  min-height: 83px;
}

.info-card a {
  color: var(--green);
  text-decoration: none;
  font-size: 13px;
}

.content-section {
  max-width: 1368px;
  margin: 0 auto;
  padding: 105px 46px;
}

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

.centered-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}

.section-heading h2,
.assurance-copy h2,
.contact-section h2 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -.02em;
}

.section-heading > p:last-child {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.service-options {
  max-width: none;
  padding-left: max(46px, calc((100vw - 1276px) / 2));
  padding-right: max(46px, calc((100vw - 1276px) / 2));
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(5,12,19,.8), rgba(2,5,8,.3));
}

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

.option-card {
  min-height: 340px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 151, 255, .3);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8,18,28,.94), rgba(2,7,12,.97));
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}

.featured-option {
  border-color: rgba(0,230,111,.48);
  transform: translateY(-14px);
  box-shadow: 0 20px 50px rgba(0,230,111,.08);
}

.option-number {
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(255,255,255,.06);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 80px;
  font-weight: 800;
}

.option-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,198,255,.52);
  border-radius: 50%;
  color: var(--green);
  font-size: 30px;
  box-shadow: 0 0 24px rgba(0,140,255,.14);
}

.option-card h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.option-card p {
  min-height: 92px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.option-card a {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.process-section {
  padding-top: 118px;
  padding-bottom: 118px;
}

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

.process-grid article {
  min-height: 230px;
  padding: 30px;
  position: relative;
  border-top: 1px solid rgba(0,157,255,.45);
  border-bottom: 1px solid rgba(0,157,255,.22);
  background: rgba(4,10,16,.7);
}

.process-grid article:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.1);
}

.process-grid article > span {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #00150a;
  background: var(--green);
  box-shadow: 0 0 22px rgba(0,230,111,.28);
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 15px;
}

.process-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.assurance-section {
  max-width: none;
  padding-left: max(46px, calc((100vw - 1276px) / 2));
  padding-right: max(46px, calc((100vw - 1276px) / 2));
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: radial-gradient(circle at 80% 50%, rgba(0,140,255,.12), transparent 34%), rgba(2,7,11,.68);
}

.assurance-copy h2 span {
  color: var(--green);
}

.assurance-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 25px 0;
  color: var(--muted);
  line-height: 1.8;
}

.assurance-copy ul {
  display: grid;
  gap: 13px;
  list-style: none;
}

.assurance-copy li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--green);
}

.service-area-card {
  padding: 44px;
  border: 1px solid rgba(0,198,255,.48);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8,18,28,.94), rgba(2,6,10,.96));
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.area-pin {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 56px;
}

.service-area-card h3 {
  margin-bottom: 16px;
  font-size: 26px;
}

.service-area-card > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.75;
}

.area-zip {
  margin: 28px 0 10px;
  color: var(--green);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 62px;
  font-weight: 800;
  letter-spacing: .08em;
}

.service-area-card small {
  color: #8f9ba6;
}

.faq-section {
  max-width: 1030px;
}

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

.faq-list details {
  border: 1px solid rgba(0,157,255,.25);
  border-radius: 12px;
  background: rgba(4,10,16,.78);
}

.faq-list summary {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--green);
  font-size: 21px;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  max-width: 1276px;
  margin: 0 auto 105px;
  padding: 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: center;
  border: 1px solid rgba(0,230,111,.45);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(0,109,255,.12), rgba(0,230,111,.1)), #050b12;
  box-shadow: 0 0 60px rgba(0,140,255,.08);
}

.contact-section > div > p:last-child {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions a {
  min-height: 54px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.contact-call {
  border: 1px solid var(--blue);
  background: rgba(0,108,255,.12);
}

.contact-whatsapp {
  color: #00150a;
  background: var(--green);
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #020508;
}

.feature-footer {
  margin-top: 2px;
  padding: 24px 70px;
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, #07101a, #020508);
}

.feature-footer article {
  min-width: 0;
  padding-right: 18px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.12);
}

.footer-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.feature-footer strong {
  font-size: 13px;
}

.feature-footer p {
  margin-top: 6px;
  color: #aab5c0;
  font-size: 12px;
  line-height: 1.55;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #9ca8b3;
  font-size: 12px;
}

.socials a {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  background: #0a61d8;
}

.socials a:nth-of-type(2) {
  background: linear-gradient(135deg, #7344ff, #ff4438);
}

.socials a:nth-of-type(3) {
  background: #0e1116;
}

.socials a:nth-of-type(4) {
  background: #f31328;
}

.footer-main {
  padding: 48px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 45px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-brand span {
  color: var(--blue);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.footer-brand strong {
  font-size: 23px;
  letter-spacing: .06em;
}

.footer-contact {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.footer-contact strong {
  color: white;
  font-size: 13px;
}

.footer-contact a {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.footer-credit {
  padding: 18px 70px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #71808e;
  font-size: 11px;
}

.footer-credit a {
  color: var(--green);
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 11px;
}

.wa-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: #07d96c;
  border: 4px solid rgba(255,255,255,.82);
  box-shadow:
    0 0 0 7px rgba(0, 206, 255, .16),
    0 0 26px rgba(0,230,111,.72);
  font-size: 28px;
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  display: block;
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(255,255,255,.28));
}

@media (max-width: 1250px) {
  .desktop-nav {
    gap: 20px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .carousel-area {
    margin-top: 10px;
  }

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

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .contact-section {
    margin-left: 46px;
    margin-right: 46px;
  }

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

  .socials {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-open .desktop-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(0,157,255,.3);
    background: rgba(1,4,7,.98);
  }

  .site-header.menu-open .desktop-nav a.active::after {
    display: none;
  }

  .site-header.menu-open .mobile-replay-btn {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 12px;
  }

  .site-header.menu-open .mobile-language-btn {
    display: inline-flex;
    width: 72px;
    height: 38px;
    flex: 0 0 auto;
  }

  .menu-btn {
    display: block;
    justify-self: end;
  }

  .carousel-stage {
    height: 455px;
  }

  .service-card {
    width: 230px;
    height: 380px;
  }

  .service-card img {
    height: 220px;
  }

  .service-card[data-pos="-1"] {
    transform: translateX(-50%) translateX(-150px) scale(.94);
  }

  .service-card[data-pos="1"] {
    transform: translateX(-50%) translateX(150px) scale(.94);
  }

  .service-card[data-pos="-2"],
  .service-card[data-pos="2"] {
    opacity: 0;
  }

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

  .featured-option {
    transform: none;
  }

  .assurance-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand-mark {
    font-size: 43px;
  }

  .brand-name {
    font-size: 22px;
  }

  .hero {
    padding: 45px 18px 22px;
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 55px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

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

  .trust-strip article:nth-child(2)::after {
    display: none;
  }

  .carousel-area {
    grid-template-columns: 40px 1fr 40px;
  }

  .carousel-stage {
    height: 430px;
  }

  .service-card {
    width: min(74vw, 260px);
  }

  .service-card[data-pos="-1"],
  .service-card[data-pos="1"],
  .service-card[data-pos="-2"],
  .service-card[data-pos="2"] {
    opacity: 0;
    pointer-events: none;
  }

  .service-grid {
    padding: 0 18px 22px;
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 78px 18px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .option-card,
  .service-area-card {
    padding: 28px 24px;
  }

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

  .process-grid article,
  .process-grid article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .assurance-section {
    gap: 42px;
  }

  .contact-section {
    margin: 0 18px 78px;
    padding: 36px 24px;
    gap: 30px;
  }

  .feature-footer {
    padding: 25px 20px;
    grid-template-columns: 1fr;
  }

  .feature-footer article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: 18px;
  }

  .socials {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .footer-main {
    padding: 38px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-credit {
    padding: 20px;
    flex-direction: column;
  }

  .whatsapp-float small {
    display: none;
  }

  .wa-circle {
    width: 55px;
    height: 55px;
  }
}


/* BFixit Sections 4.26 */
.stack-section {
  max-width: 1460px;
  margin: 0 auto;
  padding: 82px 46px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(1, 5, 9, .58);
}

.stack-heading {
  margin-bottom: 38px;
}

.stack-heading h2 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: .94;
  letter-spacing: -.02em;
}

.stack-heading h2 span {
  background: linear-gradient(90deg, #0788ff, var(--green));
  -webkit-background-clip: text;
  color: transparent;
}

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

.pricing-grid article {
  min-height: 205px;
  padding: 30px 26px;
  border: 1px solid rgba(0,157,255,.42);
  border-radius: 12px;
  background: rgba(3, 10, 17, .88);
}

.pricing-grid .price-highlight {
  border-color: var(--green);
  box-shadow: inset 0 0 28px rgba(0,230,111,.05);
}

.pricing-grid small {
  display: block;
  margin-bottom: 20px;
  color: #8795a3;
  font-size: 11px;
  font-weight: 700;
}

.pricing-grid h3 {
  margin-bottom: 17px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
}

.pricing-grid .price-highlight h3 {
  color: var(--green);
}

.pricing-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.stack-section.process-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.stack-section .process-grid article {
  min-height: 210px;
  border: 1px solid rgba(0,157,255,.42);
  border-radius: 12px;
  background: rgba(3,10,17,.88);
}

.stack-section .process-grid {
  gap: 16px;
}

.stack-section .process-grid article > span {
  width: auto;
  height: auto;
  margin-bottom: 24px;
  display: block;
  color: var(--blue);
  background: none;
  box-shadow: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
}

.stack-section.faq-section {
  max-width: 1460px;
}

.stack-section .faq-list {
  max-width: 900px;
}

.stack-section .faq-list details {
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  border-radius: 0;
  background: transparent;
}

.stack-section .faq-list summary {
  padding: 22px 18px;
}

.about-section > p {
  max-width: 930px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.repair-contact {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.contact-info > a,
.contact-location {
  width: max-content;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
}

.contact-info i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,157,255,.45);
  border-radius: 9px;
  color: var(--green);
  font-style: normal;
}

.contact-info a span,
.contact-location span {
  display: grid;
  gap: 4px;
}

.contact-info small {
  color: #778592;
  font-size: 9px;
  letter-spacing: .06em;
}

.contact-info strong {
  font-size: 14px;
}

.repair-form {
  padding: 30px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(0,157,255,.5);
  border-radius: 14px;
  background: rgba(3,10,17,.92);
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
}

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

.repair-form label {
  display: block;
}

.repair-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.repair-form input,
.repair-form select,
.repair-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  color: white;
  background: #050c13;
  font: 13px Inter, sans-serif;
  outline: none;
}

.repair-form input,
.repair-form select {
  height: 50px;
  padding: 0 16px;
}

.repair-form textarea {
  min-height: 132px;
  padding: 16px;
  resize: vertical;
}

.repair-form input:focus,
.repair-form select:focus,
.repair-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,140,255,.09);
}

.repair-form button {
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  color: white;
  background: linear-gradient(90deg, #087cff, var(--green));
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer .footer-main {
  padding: 58px max(46px, calc((100vw - 1276px) / 2));
  grid-template-columns: 1.7fr repeat(4, 1fr);
  align-items: start;
  gap: 48px;
}

.footer-company > p {
  max-width: 290px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.footer-company .socials {
  grid-column: auto;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
  color: #8f9ca8;
  font-size: 11px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: white;
  font-size: 11px;
  letter-spacing: .14em;
}

.footer-column a {
  color: #8f9ca8;
  text-decoration: none;
}

.site-footer .footer-credit {
  max-width: 1276px;
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-footer .footer-credit span:last-child {
  text-align: right;
}

@media (max-width: 1100px) {
  .pricing-grid,
  .stack-section .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .site-footer .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .site-footer .footer-credit {
    margin: 0 46px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer .footer-credit span:last-child {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .stack-section {
    padding: 68px 18px;
  }

  .pricing-grid,
  .stack-section .process-grid,
  .form-row,
  .site-footer .footer-main {
    grid-template-columns: 1fr;
  }

  .repair-contact {
    gap: 46px;
  }

  .repair-form {
    padding: 20px;
  }

  .site-footer .footer-main {
    padding: 44px 20px;
  }

  .footer-company {
    grid-column: auto;
  }

  .site-footer .footer-credit {
    margin: 0 20px;
  }
}

/* Ultra Instinct energy particles — visual layer only */
body {
  isolation: isolate;
}

#ultra-instinct-particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .95;
  mix-blend-mode: screen;
}

body::before,
.page-glow {
  z-index: -1;
}

main,
.feature-footer,
.whatsapp-float,
.audio-toggle {
  position: relative;
  z-index: 1;
}

.audio-toggle {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(104, 211, 255, .55);
  border-radius: 999px;
  color: #eafaff;
  background: rgba(3, 12, 22, .82);
  box-shadow: 0 0 18px rgba(26, 157, 255, .28), inset 0 0 12px rgba(0, 230, 111, .08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font: 700 11px/1 Arial, sans-serif;
  letter-spacing: 1.4px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.audio-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 230, 111, .8);
  box-shadow: 0 0 22px rgba(0, 230, 111, .28);
}

.audio-toggle-icon {
  font-size: 19px;
  line-height: 1;
}

.audio-toggle.is-muted {
  color: rgba(234, 250, 255, .62);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: none;
}

@media (max-width: 700px) {
  .audio-toggle {
    left: 14px;
    bottom: 18px;
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    padding: 0;
    justify-content: center;
  }

  .audio-toggle-icon {
    font-size: 27px;
  }

  .audio-toggle-text {
    display: none;
  }
}

@media (max-width: 700px) {
  #ultra-instinct-particles {
    opacity: .78;
  }
}

/* Header reference layout */
.site-header {
  height: 88px;
  padding-left: max(32px, calc((100vw - 1420px) / 2));
  padding-right: max(32px, calc((100vw - 1420px) / 2));
  gap: 34px;
  background: rgba(0, 4, 8, .97);
}

.brand {
  width: 270px;
  height: 78px;
  overflow: hidden;
  flex: 0 0 270px;
  position: relative;
}

.header-logo-image {
  width: 270px;
  height: 78px;
  display: block;
  background-image: url("../assets/images/header-reference.png");
  background-repeat: no-repeat;
  background-size: 1897px 103px;
  background-position: -235px -3px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity .22s ease, transform .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.desktop-nav a:hover::after {
  animation: nav-line-sweep .34s ease-out both;
}

@keyframes nav-line-sweep {
  from {
    opacity: 1;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.request-btn,
.primary-cta,
.secondary-cta,
.language-btn,
.repair-form button,
.contact-call,
.contact-whatsapp {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.request-btn::before,
.primary-cta::before,
.secondary-cta::before,
.language-btn::before,
.repair-form button::before,
.contact-call::before,
.contact-whatsapp::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -60%;
  bottom: -60%;
  left: -55%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  filter: blur(2px);
  transform: skewX(-20deg) translateX(-180%);
  animation: button-shine 7.8s cubic-bezier(.4, 0, .2, 1) infinite;
}

@keyframes button-shine {
  0%, 74% {
    transform: skewX(-20deg) translateX(-180%);
    opacity: 0;
  }
  78% {
    opacity: .78;
  }
  90% {
    transform: skewX(-20deg) translateX(520%);
    opacity: .62;
  }
  91%, 100% {
    transform: skewX(-20deg) translateX(520%);
    opacity: 0;
  }
}

.request-btn,
.primary-cta,
.secondary-cta,
.language-btn,
.repair-form button,
.contact-call,
.contact-whatsapp {
  transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease,
    border-color .38s ease, filter .38s ease;
}

.request-btn:hover,
.primary-cta:hover,
.repair-form button:hover,
.contact-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,.18),
    0 0 18px rgba(0,140,255,.52), 0 0 34px rgba(0,230,111,.3);
}

.secondary-cta:hover,
.contact-call:hover {
  transform: translateY(-2px);
  border-color: rgba(0,198,255,.95);
  box-shadow: 0 0 10px rgba(0,140,255,.36), 0 0 28px rgba(0,198,255,.24);
}

.language-btn:hover {
  transform: translateY(-2px);
  border-color: #33ff94;
  box-shadow: 0 0 10px rgba(0,230,111,.5), 0 0 28px rgba(0,230,111,.32);
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.wa-circle {
  position: relative;
}

.wa-circle::before,
.wa-circle::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid rgba(0,230,111,.78);
  border-radius: 50%;
  pointer-events: none;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.wa-circle::after {
  animation-delay: 1.2s;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: .85;
    transform: scale(.86);
  }
  72%, 100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

.footer-column a,
.footer-credit a {
  width: max-content;
  max-width: 100%;
  position: relative;
  transition: color .28s ease, text-shadow .28s ease;
}

.footer-column a::after,
.footer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 8px rgba(0,157,255,.55);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
}

.footer-column a:hover,
.footer-credit a:hover {
  color: white;
  text-shadow: 0 0 10px rgba(0,157,255,.42);
}

.footer-column a:hover::after,
.footer-credit a:hover::after {
  transform: scaleX(1);
}

.footer-company .socials a {
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease,
    filter .3s ease;
}

.footer-company .socials a:hover {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.15);
}

.footer-company .socials a:nth-of-type(1):hover {
  box-shadow: 0 0 8px #1877f2, 0 0 22px rgba(24,119,242,.75);
}

.footer-company .socials a:nth-of-type(2):hover {
  box-shadow: 0 0 8px #ff3f8e, 0 0 22px rgba(255,63,142,.72);
}

.footer-company .socials a:nth-of-type(3):hover {
  box-shadow: 0 0 8px #fff, 0 0 22px rgba(255,255,255,.68);
}

.footer-company .socials a:nth-of-type(4):hover {
  box-shadow: 0 0 8px #ff1635, 0 0 24px rgba(255,22,53,.78);
}

.footer-logo-image {
  width: 245px;
  height: 72px;
  display: block;
  background-image: url("../assets/images/header-reference.png");
  background-repeat: no-repeat;
  background-size: 1720px 93px;
  background-position: -213px -3px;
}

section[id] {
  scroll-margin-top: 88px;
}

body .whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
}

@media (max-width: 1250px) {
  .site-header {
    padding-left: 24px;
    padding-right: 24px;
    gap: 20px;
  }

  .brand {
    width: 230px;
    height: 67px;
    flex-basis: 230px;
  }

  .header-logo-image {
    width: 230px;
    height: 67px;
    background-size: 1613px 88px;
    background-position: -200px -3px;
  }
}

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

  .brand {
    width: 200px;
    height: 58px;
    flex-basis: 200px;
  }

  .header-logo-image {
    width: 200px;
    height: 58px;
    background-size: 1404px 76px;
    background-position: -174px -2px;
  }

  section[id] {
    scroll-margin-top: 76px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  body .whatsapp-float {
    right: 16px;
    bottom: 18px;
    font-size: 12px;
    gap: 10px;
  }

  body .wa-circle {
    width: 76px;
    height: 76px;
    border-width: 4px;
  }

  body .whatsapp-icon {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desktop-nav a:hover::after,
  .request-btn::before,
  .primary-cta::before,
  .secondary-cta::before,
  .language-btn::before,
  .repair-form button::before,
  .contact-call::before,
  .contact-whatsapp::before,
  .wa-circle::before,
  .wa-circle::after {
    animation: none;
  }

  #ultra-instinct-particles {
    display: none;
  }
}
