:root {
  --ink: #101828;
  --muted: #5b6475;
  --line: rgba(16, 24, 40, 0.12);
  --brand: #285aa8;
  --brand-2: #16b6c9;
  --accent: #ffb84d;
  --violet: #7c3aed;
  --bg: #f6fbff;
  --card: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(22, 36, 70, 0.15);
}
html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(22, 182, 201, 0.16), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(124, 58, 237, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f8fbff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(40, 90, 168, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 90, 168, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.7), transparent 72%);
  z-index: -2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(40, 90, 168, 0.12);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(40, 90, 168, 0.22));
}

.brand span { display: grid; line-height: 1.05; }
.brand small { color: var(--muted); font-weight: 700; font-size: 0.72rem; margin-top: 4px; }

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.navbar a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #314056;
  font-weight: 750;
  font-size: 0.95rem;
}

.navbar a:hover,
.navbar a.active {
  color: var(--brand);
  background: rgba(40, 90, 168, 0.09);
}

.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: min(520px, calc(100vw - 32px));
  height: 28px;
}

.has-dropdown > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  width: min(520px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(40, 90, 168, 0.12);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  min-height: 38px;
  border-radius: 14px;
  padding: 0 12px;
  font-size: .88rem;
  background: rgba(40, 90, 168, 0.04);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 850;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 30px rgba(40, 90, 168, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(40, 90, 168, 0.32); }
.btn.secondary { color: var(--brand); background: #fff; border: 1px solid rgba(40, 90, 168, 0.18); box-shadow: none; }
.btn.dark { background: #101828; }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--brand);
  cursor: pointer;
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30px -30px auto auto;
  width: 310px;
  height: 310px;
  background: conic-gradient(from 90deg, rgba(22, 182, 201, 0.25), rgba(124, 58, 237, 0.2), rgba(255, 184, 77, 0.22), rgba(22, 182, 201, 0.25));
  border-radius: 42%;
  filter: blur(30px);
  animation: floatSpin 12s linear infinite;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  background: rgb(212 228 247);;
  border: 1px solid rgba(40, 90, 168, 0.12);
  padding: 9px 12px;
  border-radius: 999px;
}

.hero h1, .page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 5.7rem);
  line-height: 0.94;
  margin: 18px 0 18px;
  letter-spacing: 0;
}

.gradient-text {
  background: linear-gradient(120deg, var(--brand), var(--brand-2), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.03rem, 1.8vw, 1.28rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-card {
  position: absolute;
  inset: 34px 0 0 34px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  animation: floatCard 6s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  opacity: 0.5;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 40, 0.58), rgba(16, 24, 40, 0.08));
}

.orbit {
  position: absolute;
  border: 1px solid rgba(40, 90, 168, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 184, 77, 0.18);
}

.orbit-one {
  width: 360px;
  height: 360px;
  right: 22px;
  top: 22px;
  animation: floatSpin 18s linear infinite;
}

.orbit-one::after { top: 16px; left: 78px; }

.orbit-two {
  width: 250px;
  height: 250px;
  left: 12px;
  top: 104px;
  animation: floatSpin 14s linear infinite reverse;
}

.orbit-two::after { right: 24px; bottom: 42px; background: var(--brand-2); }

.glass-metric {
  position: absolute;
  z-index: 4;
  width: 168px;
  padding: 15px;
  border-radius: 18px;
  color: #fff;
  background: rgba(8, 20, 45, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(8, 20, 45, 0.22);
  animation: floatSoft 5.5s ease-in-out infinite;
}

.glass-metric b { display: block; font-size: 1.5rem; }
.glass-metric span { display: block; color: rgba(255,255,255,.78); font-size: .86rem; line-height: 1.35; margin-top: 4px; }
.metric-a { top: 76px; left: 0; }
.metric-b { right: 6px; bottom: 116px; animation-delay: -2s; }

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 30px 0 0;
    border-top: 1px solid rgba(40,90,168,.1);
    border-bottom: 1px solid rgba(40,90,168,.1);
    background: rgba(255,255,255,.58);
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;

    width: fit-content;
    min-width: 100%;

    gap: 14px;
    padding: 16px 0;

    animation: marquee 24s linear infinite;

    will-change: transform;
}

.marquee-track span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(40,90,168,.12);
    color: #344054;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(16,24,40,.06);
}

.floating-panel {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(360px, 86%);
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-panel strong { display: block; font-size: 1.2rem; margin-bottom: 8px; }
.floating-panel p { margin: 0; color: var(--muted); line-height: 1.55; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(40, 90, 168, 0.1);
}

.stat b { display: block; font-size: 1.75rem; color: var(--brand); }
.stat span { color: var(--muted); font-weight: 700; font-size: 0.9rem; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title h2 { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; margin: 0; }
.section-title p { color: var(--muted); line-height: 1.65; max-width: 560px; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 24px;
  background: rgb(44 171 197);
  border: 1px solid rgba(40, 90, 168, 0.12);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 182, 201, 0.45);
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 182, 201, 0.18), transparent 68%);
  transition: transform .35s ease;
}

.service-card:hover::after { transform: scale(1.45); }

.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.card h3 { margin: 18px 0 10px; font-size: 1.34rem; }
.card p, .card li { color: rgb(47 54 68); line-height: 1.65; }
.card ul { margin: 14px 0 0; padding-left: 19px; }

.band {
  background:
    linear-gradient(135deg, rgba(40, 90, 168, 0.96), rgba(22, 182, 201, 0.9)),
    url("../images/programming-background-collage.jpg") center / cover;
  color: #fff;
  margin: 40px 0;
}

.band-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.band p { color: rgba(255, 255, 255, 0.78); line-height: 1.7; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 9px 12px; background: rgba(255,255,255,.1); font-weight: 800; }

.tech-console {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(8, 20, 45, 0.94), rgba(12, 36, 72, 0.94)),
    url("../images/saas-concept-collage.jpg") center / cover;
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
}

.console-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.console-head span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.console-head span:nth-child(2) { background: #ffbd2e; }
.console-head span:nth-child(3) { background: #28c840; }
.console-head strong { margin-left: 8px; color: rgba(255,255,255,.76); font-size: .9rem; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}

.tech-grid div {
  padding: 28px;
  min-height: 155px;
  background: rgba(8, 20, 45, 0.72);
  transition: background .25s ease, transform .25s ease;
}

.tech-grid div:hover {
  background: rgba(22, 182, 201, 0.2);
  transform: translateY(-3px);
}

.tech-grid b { display: block; font-size: 1.18rem; margin-bottom: 10px; color: #fff; }
.tech-grid span { color: rgba(255,255,255,.72); line-height: 1.6; }

.process {
  counter-reset: step;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(40, 90, 168, 0.16);
  font-weight: 1000;
  font-size: 2.4rem;
}

.industry-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(40, 90, 168, 0.12);
  background: rgba(40, 90, 168, 0.12);
  box-shadow: var(--shadow);
}

.industry-map article {
  min-height: 230px;
  padding: 28px;
  background: rgba(255,255,255,.86);
  transition: transform .25s ease, background .25s ease;
}

.industry-map article:hover {
  background: #fff;
  transform: translateY(-4px);
}

.industry-map span {
  color: var(--brand-2);
  font-weight: 1000;
}

.industry-map h3 { margin: 18px 0 10px; }
.industry-map p { color: var(--muted); line-height: 1.65; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.commit-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(40, 90, 168, 0.12);
  box-shadow: 0 14px 38px rgba(16, 24, 40, 0.08);
}

.commit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40, 90, 168, 0.1), transparent 42%);
}

.commit-card b {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: var(--brand);
}

.commit-card h3,
.commit-card p { position: relative; }
.commit-card p { color: var(--muted); line-height: 1.65; }

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(40, 90, 168, 0.12);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 1.2rem;
}

.faq-item.open button::after { content: "-"; }
.faq-item p {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-item.open p { display: block; animation: fadeInUp .25s ease; }

.landing-page .site-header {
  background: rgba(255, 255, 255, 0.86);
}

.lp-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 20, 45, 0.94), rgba(40, 90, 168, 0.86)),
    url("../images/programming-background-collage.jpg") center / cover;
  color: #fff;
}

.lp-hero::before,
.lp-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lp-hero::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(22, 182, 201, .32), transparent 70%);
  animation: floatSoft 7s ease-in-out infinite;
}

.lp-hero::after {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: 10%;
  border: 1px solid rgba(255,255,255,.16);
  animation: floatSpin 20s linear infinite;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
  padding: 72px 0;
}

.lp-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 5vw, 5.35rem);
  line-height: .96;
}

.lp-hero .lead {
  color: rgba(255,255,255,.78);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.trust-list span {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 850;
}

.lp-visual-card {
  position: relative;
  min-height: 480px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
  transform: rotate(1deg);
}

.lp-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.lp-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8,20,45,.72));
}

.lp-floating-proof {
  position: absolute;
  right: -8px;
  bottom: 30px;
  z-index: 2;
  width: min(330px, 88%);
  padding: 18px;
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.lp-proof-strip {
  background: #fff;
  border-bottom: 1px solid rgba(40, 90, 168, 0.12);
}

.lp-proof-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-proof-grid article {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(40,90,168,.08), rgba(22,182,201,.08));
  border: 1px solid rgba(40,90,168,.1);
}

.lp-proof-grid b {
  display: block;
  color: var(--brand);
  font-size: 2rem;
  margin-bottom: 6px;
}

.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.problem-solution .card:first-child {
  background: linear-gradient(135deg, rgba(255, 184, 77, .12), #fff);
}

.problem-solution .card:last-child {
  background: linear-gradient(135deg, rgba(22, 182, 201, .14), #fff);
}

.lp-benefit-card {
  min-height: 210px;
}

.lp-benefit-card .icon-badge {
  font-size: .9rem;
}

.lp-portfolio-card {
  padding: 0;
}

.lp-portfolio-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.lp-portfolio-card div {
  padding: 20px;
}

.lp-portfolio-card small {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lp-process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: lpstep;
}

.lp-step {
  position: relative;
  padding: 24px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(40,90,168,.12);
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.07);
}

.lp-step::before {
  counter-increment: lpstep;
  content: counter(lpstep);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 1000;
}

.lp-testimonial {
  background:
    linear-gradient(135deg, rgba(8,20,45,.92), rgba(40,90,168,.82)),
    url("../images/saas-concept-collage.jpg") center / cover;
  color: #fff;
  border-radius: 32px;
  padding: clamp(30px, 6vw, 70px);
  box-shadow: var(--shadow);
}

.lp-testimonial blockquote {
  margin: 0;
  max-width: 880px;
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
  line-height: 1.35;
}

.lp-testimonial cite {
  display: block;
  margin-top: 22px;
  color: rgba(255,255,255,.72);
  font-style: normal;
  font-weight: 850;
}

.lp-final-cta {
  margin-top: 30px;
  padding: 70px 24px;
  border-radius: 34px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(22,182,201,.36), transparent 34%),
    linear-gradient(135deg, #08142d, #285aa8);
  box-shadow: var(--shadow);
}

.lp-final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.lp-final-cta p {
  color: rgba(255,255,255,.78);
  margin-bottom: 24px;
}

.landing-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.landing-index-grid a {
  display: block;
}

.gallery-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  border: 1px solid rgba(40, 90, 168, 0.15);
  background: #fff;
  color: #314056;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 850;
}

.filter-btn.active { color: #fff; background: var(--brand); }

.work-card {
  cursor: pointer;
  padding: 0;
}

.work-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.work-card div { padding: 20px; }
.work-card h3 { margin: 0 0 8px; }
.work-card p { margin: 0; }

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 78px 0 46px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.page-hero img {
  border-radius: 28px;
  min-height: 360px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
}

.form-card label {
  display: block;
  color: #344054;
  font-weight: 850;
  margin: 14px 0 7px;
}

.form-card input,
.form-card textarea,
.form-card select,
#whatsapp-form input,
#whatsapp-form textarea,
#whatsapp-form select {
  width: 100%;
  border: 1px solid rgba(40, 90, 168, 0.16);
  border-radius: 14px;
  background: #fff;
  padding: 10px 11px;
  outline: none;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus,
#whatsapp-form input:focus,
#whatsapp-form textarea:focus,
#whatsapp-form select:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(22, 182, 201, 0.13);
}

.form-status { min-height: 24px; color: var(--brand); font-weight: 850; margin-top: 12px; }

.blog-card img { height: 210px; width: 100%; object-fit: cover; border-radius: 18px; }
.blog-meta { color: var(--brand); font-weight: 850; font-size: 0.9rem; margin-top: 14px; }

.site-footer {
  margin-top: 60px;
  background: #08142d;
  color: #fff;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: 28px;
}

.site-footer p, .site-footer a { color: rgba(255,255,255,.72); line-height: 1.65; }
.site-footer h3 { margin-top: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 18px; color: rgba(255,255,255,.66); }

#whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(320px, calc(100% - 32px));
  z-index: 100;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.22);
  border: 1px solid rgba(37, 211, 102, 0.22);
  animation: fadeInUp 0.45s ease both;
}

#whatsapp-widget.is-hidden {
  display: none;
}

#whatsapp-header {
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
  cursor: pointer;
}

#whatsapp-form { padding: 13px; display: grid; gap: 8px; }
#whatsapp-form button { width: 100%; }
.minimize-btn, .close-btn {
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  padding: 2px 6px;
}

.widget-reopen {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  display: none;
  border: 0;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  padding: 12px 15px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.35);
  animation: pulse 2s infinite;
}

.widget-reopen.is-visible {
  display: inline-flex;
}

.ads-page {
  background:
    radial-gradient(circle at 18% 10%, rgba(36, 69, 223, 0.18), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(255, 184, 77, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 48%, #eef6ff 100%);
}

.ads-header {
  background: rgba(255,255,255,.9);
}

.ads-hero {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: center;
  padding: 54px 0;
}

.ads-hero-copy h1 {
  font-size: clamp(3rem, 6vw, 6.7rem);
  line-height: .9;
  margin: 18px 0;
  max-width: 760px;
  color: #080b24;
}

.offer-pill,
.plan-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd21f, #ffb000);
  color: #111;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 12px 26px rgba(255, 176, 0, .25);
}

.ads-actions,
.ads-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ads-trust-row span,
.benefit-stack span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(40, 90, 168, .12);
  background: rgba(255,255,255,.84);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 850;
  color: #22304b;
}

.ads-hero-visual {
  position: relative;
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(40, 90, 168, .18), rgba(255, 184, 77, .24));
  box-shadow: 0 30px 90px rgba(8, 20, 45, .16);
  transform: rotate(1deg);
}

.ads-hero-visual img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(8, 20, 45, .12);
  animation: float 5s ease-in-out infinite;
}

.ads-proof {
  width: min(1180px, calc(100% - 32px));
  margin: -8px auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ads-proof article,
.price-card,
.consultation-grid,
.ads-split {
  border: 1px solid rgba(40, 90, 168, .12);
  background: rgba(255,255,255,.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.ads-proof article {
  padding: 22px;
}

.ads-proof strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
}

.ads-proof span {
  display: block;
  color: var(--muted);
  font-weight: 760;
  margin-top: 8px;
}

.ads-section {
  padding-top: 76px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--accent));
}

.price-card.popular {
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 210, 31, .28), transparent 24%),
    linear-gradient(145deg, #060b35, #1b0c64 58%, #050a20);
  transform: translateY(-14px);
}

.price-card h3 {
  margin: 18px 0 8px;
  font-size: 1.55rem;
}

.price {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 1000;
  color: var(--brand);
  line-height: 1;
}

.popular .price,
.popular p,
.popular li {
  color: #fff;
}

.popular .price {
  color: #ffd21f;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .38);
}

.popular h3,
.popular p,
.popular li {
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.popular li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .15);
}

.price-card ul {
  padding: 0;
  margin: 20px 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.price-card li {
  font-weight: 760;
}
.original li {
  color: #344054;
}
.popular li {
  color: #dce4f1;
}

.price-card li::before,
.benefit-stack span::before,
.ads-trust-row span::before {
  content: "✓";
  color: #16a34a;
  margin-right: 8px;
  font-weight: 1000;
}

.popular li::before {
  color: #ffd21f;
}

.ads-split,
.consultation-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.ads-split h2,
.consultation-grid h2 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: .98;
  margin: 18px 0;
}

.ads-split img {
  border-radius: 22px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(8, 20, 45, .14);
}

.benefit-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-proof {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #08142d;
  color: #fff;
}

.mini-proof span {
  color: rgba(255,255,255,.72);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(8, 20, 45, 0.84);
  padding: 24px;
}

.lightbox.show { display: grid; }
.lightbox img { max-height: 82vh; border-radius: 20px; box-shadow: var(--shadow); }
.lightbox button { position: fixed; top: 20px; right: 20px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
  70% { transform: scale(1.04); box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-14px) rotate(-0.8deg); }
}
@keyframes floatSpin {
  to { transform: rotate(360deg); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .navbar {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .navbar.show { display: block; }
  .navbar ul { display: grid; gap: 6px; }
  .has-dropdown > a::after { margin-left: auto; }
  .has-dropdown::after { display: none; }
  .dropdown-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(40, 90, 168, 0.05);
  }
  .nav-cta { display: none; }
  .hero, .page-hero, .band-inner, .contact-panel, .lp-hero-inner, .problem-solution, .ads-hero, .ads-split, .consultation-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 50px; }
  .hero-visual { min-height: 420px; }
  .stats-row, .grid-3, .grid-2, .footer-grid, .tech-grid, .industry-map, .grid-4, .faq-layout, .lp-proof-grid, .lp-process-line, .landing-index-grid, .pricing-grid, .ads-proof { grid-template-columns: 1fr 1fr; }
  .ads-hero { min-height: auto; }
  .price-card.popular { transform: none; }
}

@media (max-width: 640px) {
  .nav-wrap, .hero, .section, .page-hero, .band-inner, .footer-grid, .ads-hero, .ads-proof, .ads-split, .consultation-grid { width: min(100% - 22px, 1180px); }
  .brand span { font-size: 0.9rem; }
  .brand small { display: none; }
  .hero h1, .page-hero h1 { font-size: 2.55rem; }
  .hero-visual { min-height: 340px; }
  .hero-card { inset: 8px 0 0 0; border-radius: 22px; }
  .hero-card img { min-height: 330px; }
  .floating-panel { left: 12px; bottom: 4px; }
  .stats-row, .grid-3, .grid-2, .footer-grid, .tech-grid, .industry-map, .grid-4, .faq-layout, .lp-proof-grid, .lp-process-line, .landing-index-grid, .trust-list, .pricing-grid, .ads-proof { grid-template-columns: 1fr; }
  .lp-hero-inner { width: min(100% - 22px, 1180px); min-height: auto; padding: 54px 0; }
  .lp-visual-card, .lp-visual-card img { min-height: 330px; }
  .lp-floating-proof { right: 10px; bottom: 10px; }
  .section { padding: 64px 0; }
  .section-title { display: block; }
  .dropdown-menu { grid-template-columns: 1fr; }
  .glass-metric { width: 136px; padding: 12px; }
  .metric-a { top: 22px; }
  .metric-b { bottom: 98px; }
  #whatsapp-widget { right: 12px; bottom: 12px; }
  .widget-reopen { right: 12px; bottom: 12px; }
  .ads-hero { padding: 34px 0; }
  .ads-hero-copy h1 { font-size: 3.15rem; }
  .ads-hero-visual { transform: none; border-radius: 20px; padding: 8px; }
  .ads-split, .consultation-grid { padding: 18px; border-radius: 20px; }
  .price-card { padding: 22px; }
}

@media (min-width: 900px) {
  .lp-visual-card img {
      min-width: 700px;
  }
}