:root {
  --bg: #05080f;
  --bg-2: #0a111d;
  --panel: rgba(11, 19, 34, 0.78);
  --panel-strong: rgba(16, 27, 46, 0.92);
  --line: rgba(179, 211, 255, 0.18);
  --line-strong: rgba(76, 166, 255, 0.48);
  --text: #f7fbff;
  --muted: #a8b7ca;
  --silver: #d7e2ef;
  --blue: #1687ff;
  --blue-2: #00c2ff;
  --black: #02040a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 80% 0%, rgba(22, 135, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 8% 18%, rgba(215, 226, 239, 0.09), transparent 24rem),
    linear-gradient(180deg, #05080f 0%, #080d17 52%, #03050a 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 8, 15, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.26);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  background: #05080f;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-top: 64px;
  padding-bottom: 60px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.55rem, 6vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-text,
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
}

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

.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  padding: 12px 14px;
  border: 1px solid rgba(51, 220, 107, 0.4);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.16), rgba(22, 135, 255, 0.1));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.whatsapp-inline::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #25d366 0 48%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(215, 226, 239, 0.6));
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.44);
}

.whatsapp-inline span,
.whatsapp-inline strong {
  display: block;
}

.whatsapp-inline span {
  color: #69f296;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.whatsapp-inline strong {
  color: var(--text);
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 42px rgba(22, 135, 255, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 18px 54px rgba(22, 135, 255, 0.48);
}

.btn-secondary {
  border-color: var(--line-strong);
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  background: rgba(22, 135, 255, 0.12);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.metric-row div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row strong {
  display: block;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signal-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 8, 15, 0.72);
  backdrop-filter: blur(14px);
}

.signal-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.signal-panel strong {
  display: block;
  margin-top: 4px;
}

.logo-band {
  width: min(calc(100% - 32px), 920px);
  margin: -24px auto 32px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(218, 230, 244, 0.9));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.logo-band img {
  max-height: 190px;
  width: 100%;
  object-fit: contain;
}

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

.card-grid,
.project-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.process-step,
.project-card,
.price-card,
.testimonial,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), rgba(5, 8, 15, 0.78));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card,
.project-card,
.price-card,
.testimonial {
  padding: 24px;
}

.service-card:hover,
.project-card:hover,
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, var(--panel-strong), rgba(5, 8, 15, 0.86));
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 36px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: #fff;
  background: rgba(22, 135, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.process-step p,
.project-card p,
.price-card p,
.testimonial p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: start;
}

.whatsapp-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.whatsapp-media {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(22, 135, 255, 0.08)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.whatsapp-media::after {
  content: "WhatsApp ready";
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 8px 11px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 999px;
  color: #dfffe8;
  background: rgba(5, 8, 15, 0.74);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
}

.whatsapp-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-list div {
  padding: 18px;
  border-left: 2px solid var(--blue);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 0 var(--radius) var(--radius) 0;
}

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

.feature-list span {
  color: var(--muted);
  margin-top: 4px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.process-step {
  padding: 20px;
  min-height: 230px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue-2);
  font-weight: 900;
}

.project-grid,
.pricing-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-art {
  height: 170px;
  margin: -8px -8px 22px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(22, 135, 255, 0.8), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px),
    #0d1727;
}

.project-art.alt {
  background:
    radial-gradient(circle at 72% 30%, rgba(0, 194, 255, 0.55), transparent 6rem),
    linear-gradient(135deg, rgba(215, 226, 239, 0.28), transparent),
    #08101d;
}

.project-art.third {
  background:
    linear-gradient(90deg, rgba(22, 135, 255, 0.62), transparent 38%),
    linear-gradient(180deg, transparent 42%, rgba(255, 255, 255, 0.12) 43%, transparent 44%),
    #091525;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card.featured {
  border-color: rgba(0, 194, 255, 0.62);
  background: linear-gradient(180deg, rgba(16, 37, 64, 0.96), rgba(5, 8, 15, 0.88));
}

.badge {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(22, 135, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-card strong {
  color: var(--text);
  font-size: 2rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  color: var(--silver);
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-right: 11px;
  border-right: 2px solid var(--blue-2);
  border-bottom: 2px solid var(--blue-2);
  transform: rotate(42deg) translateY(-1px);
}

.price-card .btn {
  margin-top: auto;
}

.testimonial {
  min-height: 210px;
}

.testimonial p {
  color: var(--silver);
  font-size: 1.08rem;
}

.testimonial cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(2, 4, 10, 0.74);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.12);
}

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

.form-note {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: var(--blue-2);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 150px;
  height: 76px;
  object-fit: cover;
  border-radius: 6px;
  background: #05080f;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1rem;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.whatsapp-bot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 10px;
  align-items: center;
  gap: 12px;
  width: min(310px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.22), rgba(22, 135, 255, 0.18)),
    rgba(5, 8, 15, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.44), 0 0 30px rgba(37, 211, 102, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-bot:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 102, 0.72);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.52), 0 0 42px rgba(37, 211, 102, 0.3);
}

.whatsapp-bot img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: 28% 38%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.bot-copy {
  min-width: 0;
}

.bot-copy strong,
.bot-copy small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bot-copy small {
  color: #69f296;
  font-size: 0.78rem;
  font-weight: 800;
}

.bot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.84);
}

@media (max-width: 1060px) {
  .hero,
  .split-section,
  .contact-section,
  .whatsapp-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .project-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand span {
    max-width: 170px;
    white-space: normal;
    line-height: 1.1;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 8, 15, 0.96);
  }

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

  .section-shell {
    width: min(calc(100% - 24px), var(--max));
    padding: 68px 0;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

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

  .whatsapp-inline {
    width: 100%;
  }

  .metric-row,
  .feature-list,
  .process-line,
  .services-grid,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metric-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-row div:last-child {
    border-bottom: 0;
  }

  .hero-visual img {
    aspect-ratio: 0.9 / 1;
  }

  .logo-band {
    margin-top: 0;
  }

  .contact-form {
    padding: 18px;
  }

  .whatsapp-bot {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

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