:root {
  --bg: #050505;
  --bg-soft: #0d0d12;
  --panel: #111119;
  --panel-strong: #171722;
  --text: #ffffff;
  --muted: #cfcfd6;
  --pink: #ff3ea5;
  --purple: #9b4dff;
  --blue: #19b5ff;
  --cyan: #39d5ff;
  --whatsapp: #25d366;
  --whatsapp-dark: #159947;
  --border: rgba(255, 255, 255, 0.12);
  --shadow-pink: 0 0 30px rgba(255, 62, 165, 0.24);
  --shadow-blue: 0 0 34px rgba(25, 181, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 62, 165, 0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(25, 181, 255, 0.13), transparent 26%),
    var(--bg);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
}

.has-scrolled .site-header {
  background: rgba(5, 5, 5, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.brand-logo {
  width: 76px;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter:
    drop-shadow(0 0 12px rgba(255, 62, 165, 0.3))
    drop-shadow(0 0 16px rgba(25, 181, 255, 0.24))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.36));
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(57, 213, 255, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--text);
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.service-card:hover,
.feature-grid div:hover {
  transform: translateY(-4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 28px rgba(255, 62, 165, 0.34);
}

.btn-whatsapp {
  color: #031407;
  background: linear-gradient(135deg, #7dffb1, var(--whatsapp));
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.34);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
}

.btn-outline-neon {
  margin-left: clamp(8px, 2vw, 28px);
  color: var(--text);
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(8, 8, 12, 0.84), rgba(8, 8, 12, 0.84)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--purple), var(--pink)) border-box;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.04);
}

.btn-outline-neon:hover {
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.18), 0 0 30px rgba(236, 72, 153, 0.16);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
}

.full {
  width: 100%;
}

.section {
  padding: 88px 0;
}

.section-glow {
  position: relative;
  overflow: hidden;
}

.section-glow::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -160px;
  background: radial-gradient(circle, rgba(255, 62, 165, 0.26), transparent 65%);
  pointer-events: none;
}

.section-glow::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(25, 181, 255, 0.22), transparent 65%);
  pointer-events: none;
}

.hero {
  padding: 132px 0 80px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.78), rgba(13, 13, 18, 0.96)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::before {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1,
.section-heading h2,
.split h2,
.callout h2,
.final-box h2 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  background: linear-gradient(100deg, #fff 18%, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(255, 62, 165, 0.12);
}

.hero-copy p {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.hero-badges span {
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(57, 213, 255, 0.22);
  border-radius: 999px;
}

.hero-card,
.text-panel,
.service-card,
.steps article,
.feature-grid div,
blockquote,
.callout,
.final-box {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(23, 23, 34, 0.92), rgba(13, 13, 18, 0.9));
  border-radius: 22px;
  box-shadow: 0 0 28px rgba(155, 77, 255, 0.14), 0 0 32px rgba(25, 181, 255, 0.1);
}

.hero-card {
  padding: 30px;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-weight: 900;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.12), 0 0 22px rgba(37, 211, 102, 0.8);
}

.hero-card h2 {
  margin-top: 18px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.hero-card p {
  margin: 16px 0 24px;
  color: var(--muted);
}

.problem-section {
  background: var(--bg);
}

.split h2,
.section-heading h2,
.callout h2,
.final-box h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  background: linear-gradient(100deg, var(--text), var(--pink), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-panel {
  padding: 30px;
}

.text-panel p,
.section-heading p,
.service-card p,
.steps p,
.feature-grid span,
blockquote,
.callout p,
.final-box p,
.site-footer p {
  color: var(--muted);
}

.inline-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--cyan);
  font-weight: 900;
}

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

.section-heading p {
  margin-top: 14px;
  font-size: 1.04rem;
}

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

.service-card {
  min-height: 230px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.feature-grid div:hover {
  border-color: rgba(255, 62, 165, 0.6);
  box-shadow: 0 0 34px rgba(255, 62, 165, 0.2), 0 0 30px rgba(25, 181, 255, 0.12);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 62, 165, 0.85), rgba(25, 181, 255, 0.82));
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(155, 77, 255, 0.28);
}

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

.dark-band {
  background:
    radial-gradient(circle at 20% 10%, rgba(155, 77, 255, 0.14), transparent 30%),
    var(--bg-soft);
}

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

.steps article {
  padding: 24px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--pink);
  font-weight: 900;
  font-size: 1.3rem;
  text-shadow: 0 0 18px rgba(255, 62, 165, 0.55);
}

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

.feature-grid div {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.feature-grid strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hours-section {
  padding-top: 30px;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-color: rgba(37, 211, 102, 0.34);
}

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

.feedback-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.feedback-card {
  position: relative;
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 12px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(57, 213, 255, 0.24);
  background: linear-gradient(145deg, rgba(23, 23, 34, 0.92), rgba(13, 13, 18, 0.9));
  border-radius: 22px;
  box-shadow: 0 0 28px rgba(155, 77, 255, 0.14), 0 0 32px rgba(25, 181, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feedback-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 62, 165, 0.6);
  box-shadow: 0 0 34px rgba(255, 62, 165, 0.2), 0 0 30px rgba(25, 181, 255, 0.12);
}

.feedback-card img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  background: var(--bg);
}

.feedback-card span {
  display: inline-flex;
  justify-content: center;
  color: var(--cyan);
  font-weight: 900;
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.feedback-modal.is-open {
  display: flex;
}

.feedback-modal img {
  max-width: min(92vw, 760px);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(57, 213, 255, 0.36);
  border-radius: 18px;
  box-shadow: 0 0 42px rgba(25, 181, 255, 0.2), 0 0 46px rgba(255, 62, 165, 0.18);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--text);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

blockquote {
  margin: 0;
  padding: 26px;
  border-color: rgba(57, 213, 255, 0.24);
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--cyan);
  font-style: normal;
  font-weight: 900;
}

.final-cta {
  padding: 90px 0;
}

.final-box {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 42px;
  text-align: center;
  border-color: rgba(255, 62, 165, 0.4);
}

.final-box p {
  max-width: 650px;
  margin: 18px auto 0;
}

.phone {
  display: block;
  margin: 22px 0;
  color: var(--cyan);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  text-shadow: 0 0 20px rgba(57, 213, 255, 0.45);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 34px;
}

.footer-brand .brand-logo {
  width: 110px;
  height: auto;
}

.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--cyan);
}

.floating-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 30;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #031407;
  background: linear-gradient(135deg, #7dffb1, var(--whatsapp));
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.44);
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .hero-grid,
  .split,
  .footer-grid,
  .callout {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split {
    gap: 34px;
  }

  .callout {
    display: grid;
    align-items: stretch;
  }

  .feature-grid,
  .testimonial-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .nav {
    min-height: 76px;
  }

  .brand-logo {
    width: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(13, 13, 18, 0.98);
    border: 1px solid rgba(57, 213, 255, 0.28);
    border-radius: 18px;
    box-shadow: 0 0 34px rgba(25, 181, 255, 0.18);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-links .btn {
    margin-top: 8px;
  }

  .hero {
    padding: 108px 0 58px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-actions .btn,
  .callout .btn,
  .final-box .btn {
    width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .feedback-card img {
    max-height: 520px;
    object-fit: contain;
  }

  .section {
    padding: 62px 0;
  }

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

  .hero-card,
  .text-panel,
  .callout,
  .final-box {
    padding: 24px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    border-radius: 16px;
  }
}
