@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #0b0f14;
  --muted: #5d6675;
  --line: #e1e6ee;
  --paper: #f8fafc;
  --white: #ffffff;
  --blue: #1267b3;
  --blue-dark: #083f73;
  --orange: #e14b15;
  --green: #2f8f6b;
  --shadow: 0 20px 50px rgba(20, 34, 55, 0.13);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "ss01";
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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: 16px;
  min-height: 52px;
  padding: 5px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(225, 230, 238, 0.86);
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(108px, 13vw, 148px);
  height: auto;
}

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

.site-nav a {
  padding: 7px 10px;
  border-radius: 6px;
  color: #2f3744;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a:hover {
  background: #edf4fb;
  color: var(--blue-dark);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-switch a {
  min-width: 34px;
  padding: 5px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 750;
}

.lang-switch a.is-active {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101827;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 20, 35, 0.92), rgba(7, 20, 35, 0.58), rgba(7, 20, 35, 0.2)),
    linear-gradient(0deg, rgba(7, 20, 35, 0.82), rgba(7, 20, 35, 0.04) 58%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 94px;
  color: var(--white);
}

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

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 8vw, 86px);
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--orange);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 40px));
  margin: -44px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.signal-bar div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.signal-bar div:last-child {
  border-right: 0;
}

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

.signal-bar strong {
  color: var(--blue);
  font-size: 28px;
}

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

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.section-head {
  max-width: 760px;
}

.section h2,
.contact h2 {
  font-size: clamp(34px, 4.8vw, 56px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20, 34, 55, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card h3,
.steps h3 {
  margin: 0;
  font-size: 20px;
}

.service-card p,
.copy-stack p,
.steps p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 0;
  align-items: stretch;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94)),
    var(--white);
  box-shadow: 0 22px 60px rgba(20, 34, 55, 0.12);
}

.product-copy {
  padding: clamp(30px, 5vw, 56px);
}

.product-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-logo-tile {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #122033;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-logo-tile img {
  width: 30px;
  height: 34px;
  object-fit: contain;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(18, 103, 179, 0.2);
  border-radius: 8px;
  background: #eef6ff;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.product-title-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.product-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-features {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 22px;
  color: #263141;
  font-weight: 650;
}

.product-features li::before {
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.product-link {
  margin-top: 30px;
  background: #122033;
  color: var(--white);
}

.product-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) 88px;
  background:
    linear-gradient(145deg, rgba(18, 32, 51, 0.96), rgba(22, 74, 147, 0.9) 58%, rgba(225, 75, 21, 0.86));
}

.product-screenshot {
  position: relative;
  z-index: 1;
  width: auto;
  height: min(440px, 78vw);
  max-width: 86%;
  object-fit: contain;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(7, 17, 31, 0.34);
}

.product-visual-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.product-visual-caption strong,
.product-visual-caption span {
  display: block;
}

.product-visual-caption strong {
  color: var(--blue-dark);
  font-size: 18px;
}

.product-visual-caption span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.copy-stack {
  padding-top: 8px;
  font-size: 18px;
}

.process {
  width: 100%;
  padding: 96px clamp(20px, 4vw, 64px) 0;
}

.process .section-head,
.steps {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 36px;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.steps li {
  padding: 26px;
  background: var(--white);
}

.steps span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 900;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.reference-grid div {
  min-height: 118px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 800;
}

.reference-grid div:nth-child(2) {
  background: var(--blue);
}

.reference-grid div:nth-child(3) {
  background: var(--green);
}

.reference-grid div:nth-child(4) {
  background: var(--orange);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  width: min(1120px, calc(100% - 40px));
  margin: 96px auto 0;
  padding: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #edf2f7;
  color: var(--ink);
}

.contact p {
  color: var(--muted);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-lines a,
.contact-lines span {
  color: var(--ink);
  font-weight: 800;
}

.contact-lines .whatsapp-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  width: fit-content;
  font-size: 15px;
  line-height: 1.35;
}

.whatsapp-line svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: #25d366;
}

.whatsapp-line span {
  overflow-wrap: anywhere;
}

.company-info {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.company-info strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-info dl {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
}

.company-info div {
  display: grid;
  gap: 4px;
}

.company-info dt,
.company-info dd {
  margin: 0;
}

.company-info dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-info dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

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

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.form-alert.is-success {
  background: rgba(47, 143, 107, 0.18);
  color: #d8fff1;
}

.form-alert.is-error {
  background: rgba(225, 75, 21, 0.18);
  color: #ffe4dc;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 42px auto 0;
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #f5f7fb;
    --muted: #a7b2c2;
    --line: #263445;
    --paper: #0b1118;
    --white: #ffffff;
    --blue: #5ca8f2;
    --blue-dark: #9dcbff;
    --orange: #ff7a45;
    --green: #64d09d;
    --shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
  }

  .site-header {
    border-bottom-color: rgba(38, 52, 69, 0.9);
    background: rgba(11, 17, 24, 0.9);
  }

  .site-nav a {
    color: #d7deea;
  }

  .site-nav a:hover {
    background: #182535;
    color: var(--blue-dark);
  }

  .lang-switch {
    background: rgba(18, 27, 38, 0.78);
  }

  .lang-switch a.is-active {
    background: #f5f7fb;
    color: #0b1118;
  }

  .nav-toggle {
    background: #121b26;
  }

  .nav-toggle span {
    background: #f5f7fb;
  }

  .signal-bar,
  .service-card,
  .steps li {
    background: #121b26;
  }

  .service-card {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  }

  .product-showcase {
    background:
      linear-gradient(115deg, rgba(18, 27, 38, 0.98), rgba(13, 28, 46, 0.94)),
      #121b26;
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.34);
  }

  .product-badge {
    border-color: rgba(92, 168, 242, 0.36);
    background: rgba(92, 168, 242, 0.14);
    color: var(--blue-dark);
  }

  .product-features li {
    color: #dbe4f0;
  }

  .product-link {
    background: #f5f7fb;
    color: #0b1118;
  }

  .product-visual-caption {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(11, 17, 24, 0.76);
  }

  .contact {
    border-color: #263445;
    background: #121b26;
    color: #f5f7fb;
  }

  .contact p {
    color: #a7b2c2;
  }

  .contact-lines a,
  .contact-lines span {
    color: #f5f7fb;
  }

  .contact-form label {
    color: #a7b2c2;
  }

  .contact-form input,
  .contact-form textarea {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #f5f7fb;
  }

  @media (max-width: 720px) {
    .site-nav {
      background: #121b26;
    }
  }
}

@media (max-width: 960px) {
  .service-grid,
  .steps,
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .contact,
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 320px;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .lang-switch {
    margin-left: 0;
    width: fit-content;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-bottom: 72px;
  }

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

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

  .signal-bar div:last-child {
    border-bottom: 0;
  }

  .section,
  .process,
  .contact {
    padding-top: 72px;
  }

  .contact {
    margin-top: 72px;
    padding: 28px;
  }

  .contact-lines .whatsapp-line {
    gap: 7px;
    font-size: 14px;
  }

  .whatsapp-line svg {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-color-scheme: dark) and (max-width: 720px) {
  .site-nav {
    background: #121b26;
  }
}
