:root {
  --ink: #091426;
  --muted: #536174;
  --blue: #087ef5;
  --blue-dark: #0062d6;
  --blue-soft: #eaf4ff;
  --paper: #f8f7f2;
  --white: #ffffff;
  --line: #dbe2e9;
  --shadow: 0 20px 60px rgba(10, 35, 70, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

svg {
  width: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  width: min(1380px, calc(100% - 32px));
  min-height: 104px;
  margin: 14px auto 0;
  padding: 10px 14px 10px 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(206, 215, 224, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(20, 38, 61, 0.08);
  backdrop-filter: blur(18px);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-brand img {
  width: 72px;
  height: 84px;
  padding: 2px;
  border-radius: 10px;
  background: #000;
  object-fit: contain;
  object-position: center;
}

.header-brand span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.header-brand b {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.header-brand small {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.desktop-nav .nav-cta {
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
}

.hero {
  display: grid;
  width: min(1380px, calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  grid-template-columns: 44% 56%;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 80px 0 70px 28px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(56px, 5.4vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.55;
}

.business-welcome {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 9px 13px;
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
  color: #23415f;
  font-size: 15px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 28px rgba(8, 126, 245, 0.26);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
}

.button.whatsapp {
  border-color: #1faa59;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.2);
  color: #062b16;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: #394b5e;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: 650px;
}

.blueprint {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.floating-card {
  position: absolute;
  display: grid;
  min-width: 190px;
  padding: 15px 17px;
  grid-template-columns: 10px 1fr;
  border: 1px solid rgba(8, 126, 245, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-card i {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(8, 126, 245, 0.12);
}

.floating-card span,
.floating-card small {
  grid-column: 2;
}

.floating-card span {
  font-size: 14px;
  font-weight: 800;
}

.floating-card small {
  margin-top: 4px;
  color: var(--muted);
}

.card-network {
  top: 30%;
  right: 1%;
}

.card-service {
  right: 9%;
  bottom: 7%;
}

.audience-strip {
  display: grid;
  width: min(1240px, calc(100% - 48px));
  margin: -8px auto 0;
  padding: 0 12px 32px;
  grid-template-columns: repeat(4, 1fr);
}

.audience-strip span {
  padding: 14px;
  border-right: 1px solid var(--line);
  color: #405166;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.audience-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: 1fr 1fr;
  gap: 25px 80px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.business-copy > p,
.about-card > p,
.pricing-section > div > p,
.contact-section > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 126, 245, 0.35);
  box-shadow: var(--shadow);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #a7b5c5;
  font-size: 12px;
  font-weight: 800;
}

.service-icon {
  display: flex;
  width: 56px;
  height: 56px;
  margin-bottom: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b9d9ff;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

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

.service-card a,
.text-link {
  display: inline-flex;
  margin-top: 10px;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.business-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
}

.business-copy ul {
  display: grid;
  margin: 28px 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.business-copy li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.business-copy li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue);
}

.business-panel {
  padding: 30px;
  border: 1px solid #26354a;
  border-radius: 22px;
  background: #081525;
  box-shadow: 0 30px 70px rgba(4, 21, 43, 0.2);
  color: var(--white);
}

.panel-top {
  display: flex;
  padding-bottom: 26px;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #243447;
}

.panel-top span {
  color: #55acff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.panel-top b {
  font-size: 30px;
}

.panel-line {
  display: flex;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #243447;
}

.panel-line i {
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(8, 126, 245, 0.14);
  color: #71b8ff;
  font-size: 12px;
  font-style: normal;
}

.panel-status {
  display: flex;
  padding-top: 25px;
  align-items: center;
  gap: 10px;
  color: #aebdcd;
  font-size: 13px;
}

.panel-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(8, 126, 245, 0.14);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
}

.about-card,
.logo-showcase {
  border-radius: 24px;
}

.about-card {
  padding: clamp(36px, 5vw, 72px);
  background: var(--white);
  box-shadow: 0 10px 38px rgba(31, 49, 72, 0.08);
}

.about-label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 11px;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.signature {
  margin-top: 30px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
}

.logo-showcase {
  display: flex;
  min-height: 620px;
  padding: 28px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.logo-showcase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.price-card {
  display: grid;
  padding: clamp(28px, 4vw, 46px);
  grid-template-columns: 1fr auto;
  gap: 26px 34px;
  align-items: center;
  border: 1px solid #1a344e;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(8, 126, 245, 0.13), transparent 48%),
    #071422;
  box-shadow: 0 28px 70px rgba(7, 20, 34, 0.18);
  color: var(--white);
}

.price-heading {
  min-width: 220px;
}

.price-heading > span {
  display: block;
  margin-bottom: 10px;
  color: #75b9ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-heading strong {
  display: block;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-heading strong small {
  display: block;
  margin-top: 8px;
  color: #9eb0c3;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  color: #c6d3df;
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}

.price-card li::before {
  margin-right: 9px;
  color: #55acff;
  content: "✓";
}

.price-card .button {
  grid-column: 1 / -1;
}

.contact-section {
  display: grid;
  width: min(1380px, calc(100% - 32px));
  margin: 50px auto 18px;
  padding: clamp(45px, 6vw, 90px);
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(45px, 6vw, 90px);
  border-radius: 26px;
  background: #071422;
  color: var(--white);
}

.contact-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.contact-intro > p {
  color: #a9b9cb;
}

.contact-direct {
  display: grid;
  margin-top: 38px;
  gap: 12px;
}

.contact-direct > * {
  display: flex;
  min-height: 82px;
  padding: 17px 19px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #26364a;
  border-radius: 12px;
  background: #0d1d2e;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-direct a:hover {
  transform: translateY(-2px);
  border-color: #3b8fe8;
}

.contact-direct span {
  margin-bottom: 7px;
  color: #75b9ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow-wrap: anywhere;
  font-size: clamp(15px, 1.3vw, 19px);
}

.contact-form {
  display: grid;
  padding: clamp(25px, 4vw, 46px);
  gap: 20px;
  border: 1px solid #29405b;
  border-radius: 22px;
  background: #0d1d2e;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.form-heading {
  display: flex;
  margin-bottom: 5px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.form-heading > span {
  font-size: 24px;
  font-weight: 800;
}

.form-heading small {
  color: #91a4b8;
  font-size: 13px;
}

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

.contact-form label:not(.privacy-check):not(.honeypot) {
  display: grid;
  gap: 9px;
  color: #d8e3ef;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #31475f;
  border-radius: 10px;
  outline: none;
  background: #081523;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  line-height: 1.55;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #55acff;
  box-shadow: 0 0 0 3px rgba(85, 172, 255, 0.14);
}

.contact-form textarea::placeholder {
  color: #6f8196;
}

.file-field {
  padding: 16px;
  border: 1px dashed #3a5775;
  border-radius: 12px;
  background: rgba(8, 21, 35, 0.45);
}

.file-field input[type="file"] {
  height: auto;
  padding: 9px;
  border: 0;
  background: transparent;
  color: #b8c8d9;
}

.file-field input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 9px 12px;
  border: 0;
  border-radius: 8px;
  background: #1d3854;
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.file-field small {
  color: #8295aa;
  font-weight: 500;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: #aebdcd;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.privacy-check a {
  color: #75b9ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 15px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-submit.is-loading svg {
  animation: form-spin 700ms linear infinite;
}

.form-status {
  min-height: 0;
  margin: -4px 0 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.success,
.form-status.error {
  min-height: 48px;
  padding: 13px 15px;
  border-radius: 10px;
}

.form-status.success {
  border: 1px solid rgba(78, 170, 255, 0.35);
  background: rgba(8, 126, 245, 0.13);
  color: #bdddff;
}

.form-status.error {
  border: 1px solid rgba(255, 127, 127, 0.35);
  background: rgba(255, 90, 90, 0.1);
  color: #ffb5b5;
}

@keyframes form-spin {
  to {
    transform: rotate(360deg);
  }
}

footer {
  display: grid;
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 15px;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  color: var(--ink);
  letter-spacing: 0.07em;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 1050px) {
  .desktop-nav a:not(.nav-cta) {
    display: none;
  }

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

  .hero-copy {
    padding: 80px 20px 0;
  }

  .hero-visual {
    height: 540px;
  }

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

  .business-section,
  .about-section,
  .pricing-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .logo-showcase {
    min-height: 480px;
  }

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

@media (max-width: 700px) {
  .site-header {
    min-height: 88px;
  }

  .header-brand img {
    width: 58px;
    height: 68px;
  }

  .header-brand small {
    display: none;
  }

  .desktop-nav .nav-cta {
    padding: 11px 14px;
  }

  .hero {
    width: min(100% - 28px, 1380px);
  }

  .hero-copy {
    padding: 68px 2px 0;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-visual {
    height: 390px;
  }

  .floating-card {
    display: none;
  }

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

  .audience-strip span:nth-child(2) {
    border-right: 0;
  }

  .section,
  .contact-section {
    width: calc(100% - 28px);
    padding: 75px 0;
  }

  .contact-section {
    padding: 42px 24px;
    gap: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-heading {
    flex-direction: column;
    gap: 6px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

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

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

  .business-section,
  .pricing-section {
    gap: 45px;
  }

  .logo-showcase {
    min-height: 440px;
    padding: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
