﻿:root {
  --bg-deep: #040b17;
  --bg-deep-alt: #071327;
  --bg-panel: #0b1f3b;
  --bg-light: #f4f7fc;
  --text-strong: #ffffff;
  --text-body: #c7d3e8;
  --text-dark: #0f1b30;
  --brand-blue: #1739d7;
  --brand-blue-light: #2f58ff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(1, 9, 24, 0.35);
  --container: min(1140px, calc(100% - 3rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #08172e 30%, var(--bg-light) 30%);
  color: var(--text-dark);
  line-height: 1.55;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.promo-bar {
  background: #111a2a;
  color: #fff;
  text-align: center;
  font-size: 0.56rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
  font-weight: 800;
  padding: 0.16rem 0.55rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(4, 11, 23, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0.42rem 0;
  gap: 1rem;
}

.brand img {
  width: 84px;
  height: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 0.46rem 0.82rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: #dbe6ff;
  font-weight: 600;
  font-size: 0.86rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

.hero {
  padding: 4.2rem 0 5.4rem;
  background: radial-gradient(circle at 70% 20%, rgba(47, 88, 255, 0.28), transparent 45%),
    linear-gradient(180deg, rgba(4, 11, 23, 0.88) 0%, rgba(7, 19, 39, 0.96) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 1rem;
  min-height: 630px;
}

.kicker {
  display: inline-block;
  color: #ffffff;
  letter-spacing: 0.04em;
  font-size: 0.96rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.hero h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.015em;
  color: var(--brand-blue-light);
  max-width: 12ch;
}

.hero p {
  margin-top: 1.25rem;
  color: var(--text-body);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue));
  box-shadow: 0 14px 30px rgba(26, 61, 255, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(26, 61, 255, 0.45);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-block {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-bg-word {
  position: absolute;
  right: 1%;
  top: 8%;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(8rem, 22vw, 15rem);
  line-height: 0.9;
  color: rgba(35, 68, 230, 0.6);
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.hero-image {
  position: absolute;
  right: -18%;
  bottom: -170px;
  width: min(1180px, 130%);
  max-width: none;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45));
}

.about {
  background: #071327;
  color: #fff;
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
}

.about-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
}

.about-card h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 0.98;
}

.about-card p {
  color: #d4def0;
}

.about-closure {
  color: #ffffff;
  font-weight: 700;
}

.pillar-list {
  display: grid;
  gap: 0.75rem;
}

.pillar-list article {
  background: rgba(12, 33, 66, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.2rem;
}

.pillar-list h3 {
  margin: 0;
  color: #fff;
}

.pillar-list p {
  margin: 0.3rem 0 0;
  color: #d4def0;
}

.models,
.lines,
.differentials,
.audience,
.social-proof,
.final-cta {
  padding: 5rem 0;
  background: var(--bg-light);
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-head h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.section-head p {
  margin-top: 0.75rem;
  color: #40506d;
}

.section-head-split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.mini-link {
  flex: 0 0 auto;
  color: var(--brand-blue);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.15rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

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

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

.model-card,
.line-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #dbe4f5;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(16, 36, 76, 0.12);
}

.model-card img,
.line-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  background: #edf3ff;
}

.model-content,
.line-content {
  padding: 1.2rem;
}

.model-content h3,
.line-content h3 {
  margin: 0;
  color: #10213f;
  font-size: 1.24rem;
}

.model-content p,
.line-content p,
.line-content li {
  color: #40506d;
}

.line-content ul {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
}

.line-lead {
  margin: 0.55rem 0 0;
  font-weight: 700;
  color: #1c2f52;
}

.line-card-placeholder .line-media {
  background: linear-gradient(150deg, #e7efff, #ceddff);
}

.line-card-placeholder .line-media img {
  object-fit: contain;
  padding: 1rem;
}

.lines {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f7fc 0%, #eaf1ff 100%);
}

.line-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 1rem;
  align-items: stretch;
}

.line-feature,
.line-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid #d7e2f6;
  box-shadow: 0 18px 38px rgba(14, 32, 72, 0.14);
}

.line-feature {
  min-height: 540px;
  color: #fff;
  background:
    repeating-linear-gradient(115deg, transparent 0 28px, rgba(255, 255, 255, 0.07) 28px 29px),
    linear-gradient(135deg, #061225 0%, #0d2c86 52%, #244cff 100%);
  border-radius: 18px;
}

.line-feature::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -12%;
  width: 78%;
  height: 44%;
  background: rgba(255, 255, 255, 0.12);
  transform: skewX(-18deg);
}

.line-copy {
  position: relative;
  z-index: 2;
  width: min(360px, 48%);
  padding: 2rem;
}

.line-tag {
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.line-feature .line-tag {
  color: #ffffff;
}

.line-copy h3,
.proof-copy h2,
.trust h2 {
  margin: 0.75rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.line-copy h3 {
  font-size: 3.4rem;
}

.line-copy p {
  color: #d9e5ff;
}

.line-points {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.line-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #f7fbff;
  font-weight: 700;
}

.line-points li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.line-cta {
  display: inline-flex;
  margin-top: 1.2rem;
  color: #061225;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 900;
}

.line-figure {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.line-figure img {
  position: absolute;
  right: 2%;
  bottom: -36px;
  width: 60%;
  max-height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.35));
  animation: uniform-float 6s ease-in-out infinite;
}

.line-watermark {
  position: absolute;
  right: -1rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Bebas Neue", sans-serif;
  font-size: 7rem;
  line-height: 1;
}

.line-side-grid {
  display: grid;
  gap: 1rem;
}

.line-mini {
  min-height: 170px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 165px;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem;
  background: #ffffff;
  border-radius: 14px;
}

.line-mini::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--line-accent, var(--brand-blue));
}

.line-mini h3 {
  margin: 0.35rem 0 0;
  color: #061225;
  font-size: 1.05rem;
}

.line-mini p {
  margin: 0.45rem 0 0;
  color: #445572;
  font-size: 0.92rem;
}

.line-mini img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}

.line-mini:hover img {
  transform: translateY(0) scale(1.04);
}

.line-business {
  --line-accent: #1b42e8;
}

.line-force {
  --line-accent: #0c7899;
}

.line-agro {
  --line-accent: #23a45a;
}

@keyframes uniform-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.differentials {
  background: linear-gradient(180deg, #f4f7fc 0%, #ebf2fe 100%);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.diff-grid article {
  background: #fff;
  border: 1px solid #dbe4f5;
  border-radius: 16px;
  padding: 1rem;
}

.diff-grid h3 {
  margin: 0;
  color: #10213f;
}

.diff-grid p {
  margin-top: 0.5rem;
  color: #40506d;
}

.support-copy {
  margin-top: 1rem;
  color: #24385c;
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.audience-grid article {
  border: 1px solid #dbe4f5;
  background: #fff;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  text-align: center;
  font-weight: 700;
  color: #1c2f52;
}

.social-proof {
  background:
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(255, 255, 255, 0.035) 34px 35px),
    linear-gradient(135deg, #061225 0%, #0d1730 100%);
  color: #fff;
  overflow: hidden;
}

.proof-board {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1rem;
  align-items: center;
}

.proof-copy h2 {
  max-width: 10ch;
  color: #fff;
  font-size: 3.35rem;
}

.proof-copy p {
  max-width: 46ch;
  color: #c7d3e8;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 205px);
  gap: 0.85rem;
}

.proof-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #eff4ff;
}

.proof-shot-tall {
  grid-row: span 2;
}

.proof-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.proof-shot:hover img {
  transform: scale(1.04);
}

.proof-shot figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  color: #fff;
  background: rgba(6, 18, 37, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-weight: 800;
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
}

.trust {
  padding: 2.5rem 0;
  background: #ffffff;
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.trust h2 {
  color: #061225;
  font-size: 2.1rem;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: logo-marquee 26s linear infinite;
}

.logo-track span {
  width: 148px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #687999;
  background: #f4f7fc;
  border: 1px dashed #c8d5ec;
  border-radius: 10px;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.final-cta {
  background: #0a1730;
  color: #fff;
}

.final-cta-box {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 2.2rem;
  background: radial-gradient(circle at 70% 20%, rgba(47, 88, 255, 0.25), rgba(255, 255, 255, 0.01));
}

.final-cta h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
}

.final-cta p {
  color: #d7e2f7;
  max-width: 66ch;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  background: #17a84b;
  color: #fff;
  border-radius: 999px;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(6, 84, 34, 0.4);
}

.footer {
  background: #050d1b;
  color: #9daac2;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.3rem;
  font-size: 0.92rem;
}

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

.js-ready .section-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-ready .section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1090px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: initial;
    gap: 2rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-bg-word {
    top: 0;
    right: 5%;
  }

  .hero-image {
    right: -22%;
    width: min(900px, 130%);
    bottom: -135px;
  }

  .cards-3,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .line-showcase,
  .proof-board,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .line-feature {
    min-height: 500px;
  }

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

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

@media (max-width: 780px) {
  body {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #08172e 24%, var(--bg-light) 24%);
  }

  .promo-bar {
    font-size: 0.52rem;
    padding: 0.12rem 0.45rem;
  }

  .nav-wrap {
    min-height: 50px;
    padding: 0.32rem 0;
  }

  .brand img {
    width: 76px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.5rem 1.2rem;
    background: #091629;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header.menu-open .nav {
    display: flex;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

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

  .hero-bg-word {
    font-size: clamp(4rem, 20vw, 9rem);
    right: 0;
  }

  .hero-image {
    width: min(760px, 160%);
    right: -55%;
    bottom: -118px;
  }

  .section-head-split {
    display: grid;
    align-items: start;
  }

  .line-showcase,
  .proof-board,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .line-feature {
    min-height: 630px;
    border-radius: 14px;
  }

  .line-copy {
    width: 100%;
    padding: 1.35rem;
  }

  .line-copy h3,
  .proof-copy h2 {
    font-size: 2.45rem;
  }

  .line-figure img {
    width: 88%;
    right: -17%;
    bottom: -18px;
    max-height: 56%;
  }

  .line-watermark {
    font-size: 4.8rem;
    right: -0.2rem;
    top: auto;
    bottom: 14.5rem;
  }

  .line-mini {
    grid-template-columns: minmax(0, 1fr) 110px;
    min-height: 148px;
    padding: 1rem;
  }

  .line-mini img {
    height: 122px;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .proof-shot,
  .proof-shot-tall {
    grid-row: auto;
    height: 220px;
  }

  .trust h2 {
    font-size: 1.8rem;
  }

  .logo-track span {
    width: 132px;
    height: 52px;
  }

  .cards-3,
  .cards-4,
  .audience-grid,
  .social-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .model-card img,
  .line-media img,
  .social-grid img,
  .social-grid .placeholder div {
    height: 195px;
  }

  .final-cta-box {
    padding: 1.4rem;
  }

  .whatsapp-float {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 0.35rem;
  }
}



