:root {
  --ink: #111827;
  --muted: #647083;
  --line: #dfe6ee;
  --paper: #ffffff;
  --soft: #f6f9fc;
  --dark: #0b1220;
  --dark-2: #141b2d;
  --green: #14a647;
  --green-2: #0f8a3c;
  --blue: #2563eb;
  --cyan: #10b8c7;
  --amber: #f6bd24;
  --coral: #f25c54;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 166, 71, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

a {
  color: inherit;
}

.whatsapp-popup {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  min-height: 100vh;
  padding: 24px;
  place-items: center;
  background: rgba(7, 12, 24, 0.82);
  backdrop-filter: blur(12px);
  animation: popupIn 0.4s ease both;
}

.whatsapp-popup.is-hidden {
  display: none;
}

.whatsapp-popup::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 20%, rgba(242, 92, 84, 0.3), transparent 25%),
    radial-gradient(circle at 78% 26%, rgba(16, 184, 199, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(20, 166, 71, 0.2));
}

.popup-card {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: clamp(34px, 6vw, 70px);
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}

.popup-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--amber), var(--coral));
}

.popup-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  cursor: pointer;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.popup-label {
  margin: 0 0 16px;
  color: #8ff0b0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-popup h2 {
  margin: 0 auto 18px;
  color: #fff;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.whatsapp-popup p:not(.popup-label) {
  max-width: 610px;
  margin: 0 auto 30px;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.6;
}

.whatsapp-popup .btn {
  width: min(400px, 100%);
  min-height: 64px;
  margin: 0 auto;
  font-size: 19px;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 74px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(223, 230, 238, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3e4a5f;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

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

.header-whatsapp,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.header-whatsapp,
.btn-whatsapp {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    var(--green-2);
  box-shadow: 0 16px 34px rgba(15, 138, 60, 0.28);
}

.btn-whatsapp:hover,
.header-whatsapp:hover,
.floating-whatsapp:hover {
  background: #0c7632;
  transform: translateY(-2px);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  min-height: 760px;
  padding: clamp(66px, 8vw, 118px) clamp(18px, 5vw, 74px) 88px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(11, 18, 32, 0.96) 0%, rgba(21, 33, 53, 0.94) 48%, rgba(15, 138, 60, 0.72) 100%),
    var(--dark);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 48vw;
  min-width: 360px;
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle, rgba(246, 189, 36, 0.24), transparent 58%),
    radial-gradient(circle at 35% 40%, rgba(16, 184, 199, 0.26), transparent 45%);
}

.hero-content,
.repair-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: #8ff0b0;
}

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

h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(44px, 6.7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 650px;
  color: #d9e5f7;
  font-size: 19px;
  line-height: 1.75;
}

.split-section p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 30px;
}

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

.trust-strip span {
  padding: 11px 15px;
  color: #eaf4ff;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.repair-visual {
  display: flex;
  justify-content: center;
}

.workbench {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 255, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(37, 99, 235, 0.05) 22px 23px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.workbench::before {
  position: absolute;
  inset: 20px;
  content: "";
  border: 1px dashed rgba(37, 99, 235, 0.28);
  border-radius: 8px;
}

.visual-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  padding: 11px 14px;
  color: #0b1220;
  font-size: 13px;
  font-weight: 900;
  background: var(--amber);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(246, 189, 36, 0.28);
}

.phone {
  position: absolute;
  top: 13%;
  left: 23%;
  width: 43%;
  height: 72%;
  background: #0d1422;
  border: 10px solid #1d2738;
  border-radius: 30px;
  box-shadow: 0 36px 58px rgba(15, 23, 42, 0.32);
  transform: rotate(-8deg);
}

.phone::before {
  position: absolute;
  inset: 18px 12px;
  content: "";
  background:
    linear-gradient(145deg, rgba(16, 184, 199, 0.86), rgba(37, 99, 235, 0.85) 48%, rgba(20, 166, 71, 0.78)),
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.45), transparent 28%);
  border-radius: 18px;
}

.speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 48px;
  height: 5px;
  background: #0b1220;
  border-radius: 99px;
  transform: translateX(-50%);
}

.screen-crack {
  position: absolute;
  z-index: 3;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.55);
  transform-origin: top;
}

.crack-one {
  top: 28%;
  left: 54%;
  height: 120px;
  transform: rotate(28deg);
}

.crack-two {
  top: 43%;
  left: 54%;
  height: 80px;
  transform: rotate(-46deg);
}

.crack-three {
  top: 28%;
  left: 54%;
  height: 65px;
  transform: rotate(-24deg);
}

.status-chip {
  position: absolute;
  right: -84px;
  bottom: 72px;
  z-index: 4;
  width: 164px;
  padding: 13px 14px;
  color: #073b1a;
  font-size: 13px;
  font-weight: 900;
  background: #d8ffe5;
  border: 1px solid #82eaa3;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(15, 138, 60, 0.18);
}

.tool {
  position: absolute;
  background: #243044;
  border-radius: 99px;
}

.tool-a {
  right: 12%;
  top: 25%;
  width: 144px;
  height: 12px;
  transform: rotate(36deg);
}

.tool-b {
  right: 16%;
  bottom: 18%;
  width: 116px;
  height: 14px;
  background: var(--coral);
  transform: rotate(-24deg);
}

.part-card {
  position: absolute;
  left: 7%;
  bottom: 9%;
  width: 184px;
  padding: 17px;
  background: #fff;
  border: 1px solid rgba(223, 230, 238, 0.94);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.part-card span {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 11px;
  background:
    linear-gradient(135deg, var(--amber), #fff1b8),
    var(--amber);
  border-radius: 8px;
}

.part-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -48px clamp(18px, 5vw, 74px) 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats-bar div {
  padding: 26px;
  background: #fff;
}

.stats-bar strong,
.stats-bar span {
  display: block;
}

.stats-bar strong {
  margin-bottom: 4px;
  font-size: 30px;
}

.stats-bar span {
  color: var(--muted);
  font-weight: 800;
}

.quick-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 28px clamp(18px, 5vw, 74px) 0;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-cta strong {
  font-size: 25px;
}

.quick-cta p {
  margin: 7px 0 0;
  color: #cbd7e8;
}

.section {
  padding: clamp(76px, 8vw, 118px) clamp(18px, 5vw, 74px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

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

.service-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.service-card::after {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 92px;
  height: 92px;
  content: "";
  background: linear-gradient(135deg, rgba(16, 184, 199, 0.16), rgba(20, 166, 71, 0.18));
  border-radius: 50%;
}

.service-card:hover {
  border-color: rgba(20, 166, 71, 0.42);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.service-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    var(--blue);
  border-radius: 8px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-2);
  font-weight: 900;
  text-decoration: none;
}

.process-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 166, 71, 0.86), rgba(37, 99, 235, 0.9)),
    var(--blue);
}

.process-section .eyebrow {
  color: #dbfff0;
}

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

.process-grid div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 10px;
  color: #0b1220;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--amber);
  border-radius: 8px;
}

.process-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.process-grid p {
  margin: 0;
  color: #eef7ff;
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  background: var(--soft);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.feature-list strong {
  font-size: 18px;
}

.feature-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  padding: clamp(78px, 8vw, 120px) clamp(18px, 5vw, 74px);
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(242, 92, 84, 0.16), transparent 46%),
    linear-gradient(140deg, #09101e, #111b2e 58%, #0b3320);
}

.final-cta p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: #d8e4f5;
}

.btn-large {
  min-height: 58px;
  margin-top: 14px;
  padding: 0 30px;
  font-size: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  background: var(--green-2);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(15, 138, 60, 0.35);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 74px);
  color: #cbd7e8;
  background: #070c18;
}

.site-footer p {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.site-footer a {
  color: #8ff0b0;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .repair-visual {
    order: -1;
  }

  .workbench {
    max-width: 430px;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-whatsapp {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy,
  .split-section p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-actions,
  .quick-cta,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .stats-bar {
    margin-top: 0;
  }

  .stats-bar div,
  .quick-cta,
  .service-card,
  .process-grid div,
  .feature-list div {
    padding: 22px;
  }

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

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

  .status-chip {
    right: -44px;
    width: 132px;
    font-size: 12px;
  }

  .visual-badge {
    top: 16px;
    right: 16px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .whatsapp-popup {
    padding: 18px;
  }

  .popup-card {
    padding: 34px 20px;
  }

  .whatsapp-popup h2 {
    font-size: 40px;
  }

  .whatsapp-popup p:not(.popup-label) {
    font-size: 17px;
  }

  .popup-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }
}
