:root {
  --bg: #07111f;
  --bg-soft: #0c1729;
  --surface: rgba(10, 20, 35, 0.78);
  --surface-strong: #0d1b2f;
  --card: rgba(255, 255, 255, 0.04);
  --text: #f8fbff;
  --muted: #aab8cf;
  --line: rgba(96, 165, 250, 0.16);
  --line-strong: rgba(96, 165, 250, 0.34);
  --primary: #60a5fa;
  --primary-deep: #2563eb;
  --accent: #dbeafe;
  --shadow: 0 24px 80px rgba(2, 8, 23, 0.45);
  --shadow-soft: 0 18px 40px rgba(2, 8, 23, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.3), transparent 24%),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 28%),
    linear-gradient(180deg, #020817 0%, #07111f 44%, #0b1628 100%);
}

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
}

.orb-one {
  top: -40px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(37, 99, 235, 0.24);
}

.orb-two {
  top: 160px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: rgba(96, 165, 250, 0.18);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 82%);
}

.hero,
main {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 22px 0 0;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(5, 13, 24, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #03101f;
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  box-shadow: 0 10px 30px rgba(96, 165, 250, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.nav-links a:hover,
.nav-cta:hover {
  color: #ffffff;
}

.menu-toggle,
.nav-cta-mobile {
  display: none;
}

.menu-toggle {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  color: #03101f;
  background: linear-gradient(135deg, #ffffff, #bfdbfe);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 30px;
  align-items: stretch;
  padding: 74px 0 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.lead,
.section-copy,
.info-card p,
.process-list p,
.service-item span,
.hero-panel p,
.contact-copy,
.contact-form label,
.trust-row span {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.lead {
  max-width: 66ch;
  margin-top: 22px;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #03101f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0)) top/100% 50% no-repeat,
    linear-gradient(135deg, #ffffff, #93c5fd 58%, #60a5fa 100%);
  box-shadow:
    0 18px 38px rgba(96, 165, 250, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.button-primary:hover,
.button-primary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0)) top/100% 50% no-repeat,
    linear-gradient(135deg, #ffffff, #60a5fa 58%, #3b82f6 100%);
  box-shadow:
    0 22px 42px rgba(96, 165, 250, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.button-inline {
  width: fit-content;
}

.button-cta {
  padding-left: 26px;
  padding-right: 18px;
}

.button-arrow {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(3, 16, 31, 0.12);
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button-cta:hover .button-arrow,
.button-cta:focus-visible .button-arrow {
  transform: translate(2px, -1px);
  background: rgba(3, 16, 31, 0.18);
}

.button:disabled {
  cursor: wait;
  opacity: 0.85;
  transform: none;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.quick-contact-link,
.contact-link-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-contact-link:hover,
.quick-contact-link:focus-visible,
.contact-link-card:hover,
.contact-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.4);
  box-shadow: 0 18px 34px rgba(2, 8, 23, 0.34);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 10px 18px rgba(2, 8, 23, 0.28);
}

.contact-icon-whatsapp {
  background: linear-gradient(160deg, #4ade80 0%, #16a34a 100%);
}

.contact-icon-instagram {
  background: linear-gradient(160deg, #fb7185 0%, #ec4899 45%, #7c3aed 100%);
}

.contact-icon-email {
  background: linear-gradient(160deg, #93c5fd 0%, #2563eb 100%);
}

.contact-chip-copy,
.contact-card-copy {
  display: grid;
  gap: 2px;
}

.contact-chip-copy strong,
.contact-card-copy strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.contact-chip-copy small,
.contact-card-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.trust-row div,
.hero-panel,
.info-card,
.process-list article,
.highlight-banner,
.service-panel,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.trust-row div,
.info-card,
.process-list article {
  padding: 20px;
  border-radius: 22px;
}

.trust-row strong,
.panel-stats strong,
.process-list strong,
.service-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.hero-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 20, 35, 0.88), rgba(9, 23, 41, 0.92));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(96, 165, 250, 0.14);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-panel p {
  margin: 18px 0 0;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.metric-card {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(96, 165, 250, 0.12);
}

.metric-card strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: #ffffff;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.panel-stats {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.panel-stats article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(96, 165, 250, 0.1);
}

.section {
  padding: 96px 0 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: end;
}

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

.section-copy-tight {
  margin-top: 22px;
  max-width: 780px;
}

.highlight-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(10, 20, 35, 0.94), rgba(19, 42, 74, 0.88));
}

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

.cards-grid .info-card span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.info-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-card h3 {
  margin-top: 16px;
  font-size: 1.38rem;
}

.info-card p {
  margin-top: 12px;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.service-panel {
  padding: 28px;
  border-radius: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-panel-head h3 {
  margin-top: 8px;
  font-size: 1.7rem;
  line-height: 1.2;
}

.service-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.service-item {
  padding: 18px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid rgba(96, 165, 250, 0.1);
}

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

.process-list article {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.example-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  margin-top: 30px;
}

.example-preview,
.example-item {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.example-preview {
  padding: 22px;
  border-radius: 28px;
}

.example-window {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.12);
  background: linear-gradient(180deg, rgba(10, 20, 35, 0.98), rgba(13, 27, 47, 0.94));
}

.example-window-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.example-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.example-layout {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.example-hero-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(96, 165, 250, 0.08));
  border: 1px solid rgba(96, 165, 250, 0.14);
}

.example-hero-card strong {
  display: block;
  font-size: 1.05rem;
}

.example-hero-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.example-mini-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(96, 165, 250, 0.12);
  color: #e5f0ff;
  font-weight: 700;
  text-align: center;
}

.example-points {
  display: grid;
  gap: 16px;
}

.example-item {
  padding: 22px;
  border-radius: 24px;
}

.example-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.example-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.faq-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  margin-top: 30px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(10, 20, 35, 0.95), rgba(8, 19, 34, 0.92));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-links-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-kicker {
  margin: 0 0 10px;
  color: #dbeafe;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-location,
.footer-location {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(170, 184, 207, 0.86);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(96, 165, 250, 0.2);
  border-color: var(--primary);
}

.contact-form textarea {
  resize: vertical;
  min-height: 148px;
}

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

.service-choice {
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.service-choice:hover,
.service-choice:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(96, 165, 250, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.service-choice.is-selected {
  color: #03101f;
  border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  box-shadow: 0 14px 28px rgba(96, 165, 250, 0.18);
}

.toast-message {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  max-width: min(360px, calc(100% - 32px));
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(7, 17, 31, 0.92);
  box-shadow: 0 22px 48px rgba(2, 8, 23, 0.42);
  color: #dbeafe;
  font-weight: 700;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

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

.toast-message.is-success {
  border-color: rgba(74, 222, 128, 0.28);
  color: #b7f7cc;
}

.toast-message.is-error {
  border-color: rgba(248, 113, 113, 0.28);
  color: #fecaca;
}

.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 90px auto 28px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 28px;
}

.brand-footer {
  margin-bottom: 14px;
}

.footer-brand p,
.footer-note,
.footer-links a {
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  color: #ffffff;
}

.footer-note {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  font-size: 0.95rem;
}

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

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

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .tilt-card:hover {
    box-shadow: 0 22px 50px rgba(2, 8, 23, 0.42);
    border-color: rgba(96, 165, 250, 0.28);
  }
}

@media (max-width: 960px) {
  .hero-layout,
  .intro,
  .cards-grid,
  .process-list,
  .example-showcase,
  .trust-row,
  .metrics-row,
  .service-columns,
  .service-picker,
  .contact-panel,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .topbar,
  .highlight-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero,
  main {
    width: min(100% - 18px, 100%);
  }

  .topbar {
    padding: 16px;
    border-radius: 20px;
    align-items: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 13, 24, 0.96);
  }

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

  .menu-toggle,
  .nav-cta-mobile {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-layout {
    padding: 48px 0 30px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-panel,
  .info-card,
  .process-list article,
  .highlight-banner,
  .service-panel,
  .contact-panel {
    border-radius: 22px;
  }

  .section {
    padding-top: 72px;
  }

  .toast-message {
    right: 10px;
    left: 10px;
    bottom: 12px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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