:root {
  --primary: #2563eb;
  --secondary: #7c3aed;
  --accent: #06b6d4;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbeafe;
  --soft: #f8fafc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(37, 99, 235, .14);
  --deep-shadow: 0 38px 120px rgba(37, 99, 235, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 12%, rgba(37, 99, 235, .06), transparent 24%),
    radial-gradient(circle at 94% 18%, rgba(124, 58, 237, .07), transparent 24%),
    #fff;
  line-height: 1.6;
  animation: pageFadeIn .7s ease both;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(37,99,235,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 18%, #000, transparent 68%);
}
body::selection { background: #dbeafe; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 820px; text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(219, 234, 254, .8);
  animation: navDrop .65s ease both;
}
.top-ribbon {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 16px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #06b6d4);
  background-size: 180% 100%;
  animation: ribbonMove 5s ease-in-out infinite;
}
.floating-demo {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  padding: 15px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  box-shadow: 0 22px 60px rgba(37,99,235,.28);
  animation: float 4s ease-in-out infinite;
}
.bg-icons {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-icons span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: rgba(37, 99, 235, .26);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(219, 234, 254, .74);
  box-shadow: 0 18px 50px rgba(37, 99, 235, .08);
  font-weight: 900;
  animation: drift 10s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}
.bg-icons span:nth-child(1) { left: 4%; top: 18%; }
.bg-icons span:nth-child(2) { right: 7%; top: 16%; animation-delay: 1s; color: rgba(124,58,237,.24); }
.bg-icons span:nth-child(3) { left: 13%; top: 58%; animation-delay: 2s; color: rgba(6,182,212,.25); }
.bg-icons span:nth-child(4) { right: 12%; top: 62%; animation-delay: 3s; }
.bg-icons span:nth-child(5) { left: 42%; top: 82%; animation-delay: 4s; color: rgba(124,58,237,.22); }
.bg-icons span:nth-child(6) { right: 34%; top: 30%; animation-delay: 5s; color: rgba(6,182,212,.24); }
.bg-icons span:nth-child(7) { left: 70%; top: 84%; animation-delay: 6s; }
.bg-icons span:nth-child(8) { left: 30%; top: 10%; animation-delay: 7s; color: rgba(124,58,237,.22); }
.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand-logo {
  display: inline-block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
}
.brand-name {
  margin-left: 10px;
}
.brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 30px rgba(124, 58, 237, .28);
}
.nav-menu { margin-left: auto; display: flex; align-items: center; gap: 22px; color: #334155; font-weight: 700; }
.nav-menu a { transition: color .2s ease; }
.nav-menu a {
  position: relative;
  padding: 8px 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform .24s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 28px; color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: 0 16px 34px rgba(37, 99, 235, .25); }
.btn-primary:hover { box-shadow: 0 22px 44px rgba(124, 58, 237, .32); }
.btn-soft { color: var(--primary); background: #eff6ff; }
.btn-demo { color: #fff; background: linear-gradient(135deg, #06b6d4, #2563eb); box-shadow: 0 16px 34px rgba(6, 182, 212, .26); }
.btn-outline { color: var(--primary); border-color: #bfdbfe; background: rgba(255,255,255,.75); }
.btn-light { color: var(--primary); background: #fff; box-shadow: 0 16px 36px rgba(15, 23, 42, .16); }
.btn-ghost-light { margin-left: 10px; color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.12); }

.section-glow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(6, 182, 212, .16), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(124, 58, 237, .16), transparent 28%),
    radial-gradient(circle at 50% 96%, rgba(6, 182, 212, .1), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: auto 8% 8% auto;
  width: 220px;
  height: 220px;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(6,182,212,.14), rgba(124,58,237,.14));
  transform: rotate(18deg);
  animation: slowSpin 16s linear infinite;
}
.hero { min-height: 760px; padding: 10px 0 70px; }
.hero-grid, .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.02; letter-spacing: 0; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.1; letter-spacing: 0; margin-bottom: 16px; }
h3 { font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
h1, h2 { font-weight: 900; }
.hero-copy h1, .page-hero h1, .login-showcase h1 {
  background: linear-gradient(120deg, #0f172a 18%, #2563eb 56%, #7c3aed 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #1e40af;
  background: rgba(239,246,255,.82);
  border: 1px solid rgba(191,219,254,.9);
  box-shadow: 0 14px 34px rgba(37,99,235,.1);
  font-size: 13px;
  font-weight: 900;
}
.premium-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34,197,94,.13);
}
.hero-text, .page-hero p, .split p { color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 22px; }
.hero-trust { color: var(--muted); }
.hero-trust strong { color: var(--secondary); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.hero-proof span {
  padding: 10px 13px;
  border-radius: 14px;
  color: #334155;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(219,234,254,.9);
  box-shadow: 0 12px 28px rgba(37,99,235,.08);
  font-weight: 800;
}
.float-icons span {
  position: absolute;
  color: rgba(37, 99, 235, .18);
  font-weight: 800;
  animation: float 8s ease-in-out infinite;
}
.float-icons span:nth-child(1) { left: 7%; top: 23%; }
.float-icons span:nth-child(2) { right: 9%; top: 34%; animation-delay: 1s; }
.float-icons span:nth-child(3) { left: 42%; top: 18%; animation-delay: 2s; }
.float-icons span:nth-child(4) { right: 18%; bottom: 18%; animation-delay: 3s; }
.float-icons span:nth-child(5) { left: 11%; bottom: 22%; animation-delay: 4s; }

.phone-stage { position: relative; min-height: 520px; display: grid; place-items: center; perspective: 900px; }
.phone-3d {
  width: 260px;
  height: 470px;
  border-radius: 38px;
  padding: 18px;
  background: linear-gradient(145deg, #111827, #334155);
  box-shadow: 0 45px 90px rgba(15, 23, 42, .28), 0 0 0 14px rgba(37,99,235,.06);
  transform: rotateY(-16deg) rotateX(8deg);
  animation: phoneFloat 5s ease-in-out infinite;
}
.phone-top { width: 82px; height: 8px; border-radius: 999px; background: #64748b; margin: 0 auto 16px; }
.phone-screen {
  height: 400px;
  border-radius: 26px;
  padding: 22px 16px;
  background: linear-gradient(180deg, #fff, #eef6ff);
  overflow: hidden;
}
.message {
  width: max-content;
  max-width: 86%;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 16px 16px 16px 4px;
  color: #334155;
  background: #e0f2fe;
  box-shadow: 0 8px 18px rgba(14, 165, 233, .15);
  animation: popIn 3s ease-in-out infinite, shimmer 4s ease-in-out infinite;
}
.message.sent { margin-left: auto; color: #fff; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 16px 16px 4px 16px; }
.analytics-bars { display: flex; gap: 10px; align-items: end; height: 120px; margin-top: 36px; }
.analytics-bars span { flex: 1; border-radius: 999px; background: linear-gradient(180deg, var(--secondary), var(--accent)); animation: barPulse 2.5s ease-in-out infinite; }
.analytics-bars span:nth-child(1) { height: 45%; }
.analytics-bars span:nth-child(2) { height: 76%; animation-delay: .3s; }
.analytics-bars span:nth-child(3) { height: 58%; animation-delay: .6s; }
.analytics-bars span:nth-child(4) { height: 88%; animation-delay: .9s; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .85; }
.orb-one { width: 150px; height: 150px; background: #bfdbfe; left: 8%; top: 9%; }
.orb-two { width: 95px; height: 95px; background: #ddd6fe; right: 8%; bottom: 14%; }
.floating-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  font-weight: 800;
  color: #334155;
  animation: float 5s ease-in-out infinite;
}
.card-one { left: 6%; top: 28%; }
.card-two { right: 6%; top: 44%; animation-delay: 1.2s; }
.card-three { left: 15%; bottom: 16%; animation-delay: 2.2s; }

.section {
  padding: 92px 0;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s ease, transform .85s ease;
}
.section.section-visible {
  opacity: 1;
  transform: translateY(0);
}
.soft-section { background: var(--soft); }
.section-heading { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.feature-grid, .cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.glass-card, .mini-card, .service-card, .price-card, .contact-form, .info-card, .team-card {
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(219, 234, 254, .85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.glass-card {
  min-height: 210px;
  padding: 28px;
  border-radius: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.glass-card, .service-card, .price-card, .contact-form, .info-card, .team-card, .login-card {
  position: relative;
  overflow: hidden;
}
.glass-card::before, .service-card::before, .price-card::before, .login-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.65), transparent 32%);
}
.glass-card:hover, .service-card:hover, .price-card:hover, .team-card:hover { transform: translateY(-10px); box-shadow: var(--deep-shadow); border-color: rgba(124,58,237,.28); }
.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.blue { background: var(--primary); }
.purple { background: var(--secondary); }
.cyan { background: var(--accent); }
.green { background: #22c55e; }
.teal { background: #14b8a6; }
.rose { background: #f43f5e; }
.glass-card p, .service-card p, .price-card p, .team-card p, .footer p { color: var(--muted); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mini-card { padding: 22px; border-radius: 18px; font-weight: 800; color: #334155; }
.stats-band { padding: 52px 0; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.stats-band {
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.24), transparent 20%),
    radial-gradient(circle at 80% 60%, rgba(6,182,212,.32), transparent 24%);
  animation: glowPulse 4s ease-in-out infinite;
}
.stats-grid { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; text-align: center; }
.stats-grid strong { display: block; font-size: clamp(34px, 4vw, 52px); line-height: 1; }
.stats-grid span { color: rgba(255,255,255,.84); font-weight: 600; }
.logo-slider {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  background: #f8fafc;
  margin-bottom: 34px;
}
.logo-slider span {
  flex: 0 0 170px;
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  color: #64748b;
  font-weight: 800;
  animation: slideLogo 12s linear infinite;
}
.testimonial-slider { position: relative; min-height: 190px; }
.testimonial { display: none; padding: 34px; border-radius: 26px; background: linear-gradient(135deg, #eff6ff, #faf5ff); text-align: center; }
.testimonial.active { display: block; animation: fadeUp .5s ease; }
.testimonial p { font-size: 22px; color: #334155; }
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
details { padding: 22px 24px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(15,23,42,.05); }
summary { cursor: pointer; font-weight: 800; }
details p { margin: 12px 0 0; color: var(--muted); }
.cta-banner {
  margin-bottom: 92px;
  padding: 54px;
  border-radius: 32px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(6,182,212,.4), transparent 28%),
    linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 36px 110px rgba(37, 99, 235, .32);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.86); max-width: 640px; margin: 0 auto 26px; }

.page-hero { padding: 4px 0 86px; }
.about-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 54%, #faf5ff 100%);
}
.services-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(6,182,212,.2), transparent 28%),
    linear-gradient(135deg, #f8fbff, #ffffff);
}
.pricing-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37,99,235,.08), rgba(124,58,237,.1)),
    #fff;
}
.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 28%, rgba(37,99,235,.16), transparent 28%),
    linear-gradient(135deg, #ffffff, #f0fdfa);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 58px;
  align-items: center;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-pills span, .process-steps span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(37,99,235,.12);
  color: #334155;
  font-weight: 800;
}
.story-orbit {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.story-orbit img {
  width: min(360px, 84vw);
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 12px solid rgba(255,255,255,.82);
  box-shadow: 0 34px 90px rgba(37,99,235,.22);
}
.story-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 26px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 22px 46px rgba(37,99,235,.24);
  animation: orbitFloat 4.5s ease-in-out infinite;
}
.story-orbit span:nth-of-type(1) { left: 6%; top: 18%; }
.story-orbit span:nth-of-type(2) { right: 2%; top: 44%; animation-delay: 1s; }
.story-orbit span:nth-of-type(3) { left: 24%; bottom: 4%; animation-delay: 2s; }
.services-hero-grid {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-bubbles {
  position: relative;
  min-height: 430px;
  border-radius: 40px;
  background: linear-gradient(135deg, #e0f2fe, #ede9fe);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-bubbles span {
  position: absolute;
  padding: 18px 22px;
  border-radius: 22px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 24px 55px rgba(37,99,235,.2);
  animation: float 5s ease-in-out infinite;
}
.service-bubbles span:nth-child(1) { left: 9%; top: 14%; }
.service-bubbles span:nth-child(2) { right: 12%; top: 22%; animation-delay: .7s; }
.service-bubbles span:nth-child(3) { left: 22%; top: 45%; animation-delay: 1.4s; }
.service-bubbles span:nth-child(4) { right: 16%; bottom: 20%; animation-delay: 2.1s; }
.service-bubbles span:nth-child(5) { left: 10%; bottom: 12%; animation-delay: 2.8s; }
.pricing-hero-card {
  max-width: 930px;
  padding: 20px;
  border-radius: 42px;
  text-align: center;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(219,234,254,.92);
  box-shadow: 0 34px 90px rgba(37,99,235,.16);
  backdrop-filter: blur(18px);
}
.price-hero-meter {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  padding: 16px;
  border-radius: 24px;
  background: #eff6ff;
  overflow: hidden;
}
.price-hero-meter span {
  position: absolute;
  inset: 12px auto 12px 12px;
  width: calc(33.33% - 16px);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  animation: meterMove 6s ease-in-out infinite;
}
.price-hero-meter b { position: relative; z-index: 1; padding: 12px; color: #334155; }
.contact-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 58px;
  align-items: center;
}
.contact-visual { position: relative; }
.contact-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 44px 44px 44px 12px;
  box-shadow: 0 34px 90px rgba(37,99,235,.18);
}
.contact-visual div {
  position: absolute;
  right: -18px;
  bottom: 34px;
  padding: 18px 24px;
  border-radius: 22px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 22px 50px rgba(6,182,212,.28);
  animation: float 4s ease-in-out infinite;
}
.page-hero-grid h1 { font-size: clamp(40px, 5vw, 64px); }
.header-slider {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 34px 90px rgba(37,99,235,.22);
  background: #eff6ff;
}
.header-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(37,99,235,.52));
}
.header-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .8s ease, transform 4s ease;
}
.header-slider img.active {
  opacity: 1;
  transform: scale(1);
}
.image-strip {
  margin-top: -30px;
  padding: 0 0 36px;
  position: relative;
  z-index: 2;
}
.image-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 18px;
}
.image-strip-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 26px 70px rgba(37,99,235,.16);
}
.image-strip-grid img:nth-child(2) { margin-top: 34px; }
.image-strip-grid img:nth-child(3) { margin-top: 12px; }
.premium-marquee {
  overflow: hidden;
  padding: 18px 0;
  background: linear-gradient(90deg, #eff6ff, #faf5ff, #ecfeff);
  border-block: 1px solid var(--line);
}
.premium-marquee div {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: premiumMarquee 22s linear infinite;
}
.premium-marquee span {
  padding: 10px 18px;
  border-radius: 999px;
  color: #1e293b;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(219,234,254,.92);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(37,99,235,.08);
}

.network-graphic {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(rgba(124,58,237,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.08) 1px, transparent 1px),
    radial-gradient(circle at 70% 12%, rgba(236,72,153,.16), transparent 26%),
    linear-gradient(135deg, #f7f3ff, #eef6ff 58%, #ffffff);
  background-size: 56px 56px, 56px 56px, auto, auto;
  border: 1px solid rgba(219,234,254,.94);
  box-shadow: 0 36px 110px rgba(37,99,235,.16);
}
.network-graphic::before,
.network-graphic::after {
  content: "";
  position: absolute;
  inset: 62px -40px auto 58px;
  height: 92px;
  border: 9px solid rgba(124,58,237,.55);
  border-right: 0;
  border-bottom: 0;
  border-radius: 32px 0 0 0;
}
.network-graphic::after {
  inset: 132px 120px auto 34%;
  height: 82px;
  border-color: rgba(236,72,153,.42);
  animation: lineGlow 3s ease-in-out infinite;
}
.network-line {
  position: absolute;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.72), rgba(236,72,153,.55), rgba(6,182,212,.58));
  box-shadow: 0 0 22px rgba(124,58,237,.2);
}
.line-a { left: 15%; right: 10%; top: 92px; }
.line-b { left: 38%; right: 28%; top: 176px; }
.line-c { left: 42%; right: 16%; top: 246px; background: linear-gradient(90deg, rgba(37,99,235,.7), rgba(124,58,237,.62)); }
.network-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 8px solid rgba(255,255,255,.88);
  box-shadow: 0 20px 44px rgba(37,99,235,.22);
  animation: float 4.5s ease-in-out infinite;
}
.node-code { left: 12%; top: 44px; }
.node-sms { left: 51%; top: 54px; animation-delay: .7s; background: linear-gradient(135deg, #2563eb, #06b6d4); }
.node-wa { left: 51%; top: 152px; animation-delay: 1.4s; background: linear-gradient(135deg, #22c55e, #06b6d4); }
.node-api { left: 51%; top: 250px; animation-delay: 2.1s; background: linear-gradient(135deg, #7c3aed, #ec4899); }
.chat-card {
  position: absolute;
  z-index: 3;
  max-width: 270px;
  padding: 16px 18px;
  border-radius: 18px;
  color: #475569;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.96);
  box-shadow: 0 22px 48px rgba(15,23,42,.14);
  backdrop-filter: blur(16px);
  font-weight: 700;
  animation: cardDrift 5s ease-in-out infinite;
}
.chat-left { left: 28%; top: 164px; }
.chat-right { right: 15%; top: 138px; animation-delay: 1.2s; }
.profile-bubble {
  position: absolute;
  right: 8%;
  top: 48px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #ec4899, #ef4444);
  border: 8px solid rgba(255,255,255,.88);
  box-shadow: 0 24px 56px rgba(236,72,153,.32);
  animation: float 4s ease-in-out infinite;
}
.network-about { background: linear-gradient(135deg, #ffffff, #eff6ff 50%, #f0fdfa); }
.network-services { background: linear-gradient(135deg, #f7f3ff, #eef6ff 48%, #ecfeff); }
.network-pricing { background: linear-gradient(135deg, #fff7ed, #eff6ff 52%, #faf5ff); }
.network-contact { background: linear-gradient(135deg, #ecfeff, #ffffff 50%, #eff6ff); }
.illustration-card { min-height: 320px; border-radius: 32px; display: grid; place-items: center; background: linear-gradient(135deg, #eff6ff, #faf5ff); box-shadow: var(--shadow); }
.dashboard-illus { width: 300px; height: 210px; border-radius: 24px; padding: 26px; background: #fff; box-shadow: 0 26px 60px rgba(37,99,235,.18); display: grid; gap: 14px; }
.dashboard-illus span { border-radius: 12px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.dashboard-illus span:nth-child(2) { width: 75%; background: linear-gradient(90deg, var(--secondary), #c084fc); }
.dashboard-illus span:nth-child(3) { width: 54%; }
.dashboard-illus b { border-radius: 16px; background: #e0f2fe; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline div { padding: 24px; border-radius: 20px; background: #fff; border-top: 4px solid var(--primary); box-shadow: var(--shadow); }
.timeline strong { color: var(--primary); font-size: 24px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { padding: 28px; border-radius: 24px; text-align: center; }
.team-card div { width: 76px; height: 76px; border-radius: 24px; margin: 0 auto 18px; display: grid; place-items: center; color: #fff; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.process-band, .channel-flow, .product-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.process-band, .channel-flow, .compare-strip {
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, #eff6ff, #ffffff, #faf5ff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.process-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.flow-graphic {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: center;
  text-align: center;
}
.flow-graphic span {
  padding: 30px 16px;
  border-radius: 26px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 22px 50px rgba(37,99,235,.2);
}
.flow-graphic i {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: flowLine 1.6s linear infinite;
}
.mock-dashboard {
  position: relative;
  min-height: 420px;
  padding: 26px;
  border-radius: 36px;
  color: #e5e7eb;
  background:
    radial-gradient(circle at 20% 10%, rgba(6,182,212,.22), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(124,58,237,.22), transparent 40%),
    radial-gradient(circle at 55% 105%, rgba(6,182,212,.14), transparent 40%),
    linear-gradient(135deg, #0b1220 0%, #132a6f 55%, #0b1220 100%);
  box-shadow: 0 48px 120px rgba(2, 6, 23, .45);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.mock-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 30%, #000 40%, transparent 72%);
}
.mock-dashboard::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,.22), rgba(124,58,237,.18), transparent);
  transform: rotate(12deg);
  animation: scanSweep 6.5s ease-in-out infinite;
}

@keyframes scanSweep {
  0%, 100% { transform: translateX(-22%) rotate(12deg); opacity: .35; }
  45% { transform: translateX(18%) rotate(12deg); opacity: .65; }
}

.mock-top {
  position: relative;
  z-index: 1;
  height: 54px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  backdrop-filter: blur(10px);
}
.mock-header-left { font-weight: 900; color: #f8fafc; }
.mock-header-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: rgba(255,255,255,.9);
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.18), 0 0 28px rgba(34,197,94,.5);
  animation: statusPulse 1.6s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.12); filter: brightness(1.12); }
}

.mock-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mock-grid span {
  height: 94px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  padding: 12px 12px;
  backdrop-filter: blur(10px);
  animation: glowPulse 3s ease-in-out infinite;
  display: grid;
  align-content: start;
}
.mock-stat-label {
  color: rgba(226,232,240,.85);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
}
.mock-stat-value {
  margin-top: 10px;
  font-weight: 1000;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.mock-chart {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 14px;
  height: 170px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}
.mock-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6,182,212,.18), transparent 58%);
}
.mock-chart i {
  position: relative;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(6,182,212,1), rgba(124,58,237,.95));
  box-shadow: 0 0 26px rgba(6,182,212,.18);
  animation: barPulse 2.2s ease-in-out infinite;
  transform-origin: bottom;
}
.mock-chart i::after {
  content: "";
  position: absolute;
  left: 18%;
  top: 12%;
  width: 64%;
  height: 18%;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  filter: blur(1px);
  opacity: .55;
}
.mock-chart i:nth-child(1) { height: 45%; }
.mock-chart i:nth-child(2) { height: 70%; animation-delay: .2s; }
.mock-chart i:nth-child(3) { height: 58%; animation-delay: .4s; }
.mock-chart i:nth-child(4) { height: 86%; animation-delay: .6s; }
.mock-chart i:nth-child(5) { height: 64%; animation-delay: .8s; }
.mock-chart label {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  color: rgba(226,232,240,.9);
  font-weight: 800;
  font-size: 12px;
}

.compare-strip { text-align: center; }
.compare-strip p { color: var(--muted); max-width: 680px; margin: 0 auto 22px; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { border-radius: 26px; padding: 30px; transition: transform .25s ease, box-shadow .25s ease; }
.service-card, .price-card, .glass-card {
  transform-style: preserve-3d;
}
.service-art {
  width: 94px;
  height: 94px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,.55), transparent 24%),
    linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  box-shadow: 0 18px 34px rgba(37,99,235,.22);
}
.service-card ul, .price-card ul { padding-left: 20px; color: #475569; }
.service-card a { color: var(--primary); font-weight: 800; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { position: relative; padding: 34px; border-radius: 28px; transition: transform .25s ease, box-shadow .25s ease; }
.price-card.featured { transform: translateY(-16px); border-color: rgba(124,58,237,.35); background: linear-gradient(180deg, #fff, #faf5ff); }
.price-card strong { display: inline-block; font-size: 42px; line-height: 1; margin: 16px 0 4px; }
.price-card > span { color: var(--muted); }
.badge { position: absolute; right: 24px; top: 24px; padding: 7px 12px; border-radius: 999px; color: #fff; background: var(--secondary); font-weight: 800; font-size: 12px; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: start; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 30px; border-radius: 28px; }
.contact-form label { display: grid; gap: 8px; color: #334155; font-weight: 700; }
.contact-form label:nth-child(6), .contact-form button { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
textarea { resize: vertical; }
.contact-panel { display: grid; gap: 18px; }
.info-card { padding: 24px; border-radius: 22px; }
.social a { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-right: 8px; border-radius: 12px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); font-weight: 800; }
.map-box { min-height: 210px; border-radius: 24px; display: grid; place-items: center; color: #64748b; font-weight: 800; background: linear-gradient(135deg, #e0f2fe, #ede9fe); border: 1px solid var(--line); }

.footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 44px;
  background:
    radial-gradient(circle at 15% 8%, rgba(6,182,212,.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(124,58,237,.16), transparent 26%),
    linear-gradient(180deg, #ffffff, #eef6ff);
  border-top: 1px solid var(--line);
}
.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: min(940px, 84vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.55), transparent);
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(219,234,254,.9);
  box-shadow: 0 28px 80px rgba(37,99,235,.12);
  backdrop-filter: blur(18px);
}
.footer-grid::after {
  content: "Telosgrid Technologies LLC";
  position: absolute;
  right: 24px;
  bottom: 60px;
  color: rgba(37,99,235,.05);
  font-size: clamp(46px, 8vw, 80px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.footer h4 { margin: 0 0 16px; }
.footer a:not(.brand) { display: block; color: #475569; margin-bottom: 9px; font-weight: 700; transition: color .2s ease, transform .2s ease; }
.footer a:not(.brand):hover { color: var(--primary); transform: translateX(4px); }

.login-main { min-height: calc(100vh - 76px); padding: 72px 0; }
.login-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
}
.login-showcase p { color: var(--muted); font-size: 18px; }
.login-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.login-metrics div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(219,234,254,.9);
  box-shadow: var(--shadow);
}
.login-metrics strong { display: block; color: var(--primary); font-size: 25px; line-height: 1; }
.login-metrics span { color: var(--muted); font-size: 13px; font-weight: 700; }
.login-art img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(37,99,235,.18);
}
.login-card {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(219,234,254,.95);
  box-shadow: 0 34px 90px rgba(37,99,235,.18);
  backdrop-filter: blur(22px);
  display: grid;
  gap: 18px;
}
.login-card-head { text-align: center; }
.login-card-head span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 20px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 38px rgba(124,58,237,.28);
}
.login-card h2 { margin-bottom: 6px; }
.login-card p { color: var(--muted); }
.login-card label { display: grid; gap: 8px; color: #334155; font-weight: 800; }
.login-row { display: flex; justify-content: space-between; gap: 12px; align-items: center; color: var(--muted); font-size: 14px; }
.login-row a, .login-note a { color: var(--primary); font-weight: 800; }
.check-label { display: flex !important; grid-template-columns: none; grid-auto-flow: column; align-items: center; justify-content: start; }
.check-label input { width: auto; }
.login-note { text-align: center; margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.feature-grid .reveal:nth-child(2),
.service-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2),
.team-grid .reveal:nth-child(2),
.cards-3 .reveal:nth-child(2) { transition-delay: .1s; }
.feature-grid .reveal:nth-child(3),
.service-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3),
.team-grid .reveal:nth-child(3),
.cards-3 .reveal:nth-child(3) { transition-delay: .2s; }
.feature-grid .reveal:nth-child(4),
.service-grid .reveal:nth-child(4) { transition-delay: .3s; }
.feature-grid .reveal:nth-child(5),
.service-grid .reveal:nth-child(5) { transition-delay: .4s; }
.feature-grid .reveal:nth-child(6),
.service-grid .reveal:nth-child(6) { transition-delay: .5s; }
.service-grid .reveal:nth-child(7) { transition-delay: .12s; }
.service-grid .reveal:nth-child(8) { transition-delay: .22s; }
.service-grid .reveal:nth-child(9) { transition-delay: .32s; }
.service-grid .reveal:nth-child(10) { transition-delay: .42s; }

@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes navDrop { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ribbonMove { 0%, 100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes phoneFloat { 0%, 100% { transform: rotateY(-16deg) rotateX(8deg) translateY(0); } 50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-16px); } }
@keyframes popIn { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes barPulse { 0%, 100% { transform: scaleY(.78); } 50% { transform: scaleY(1); } }
@keyframes slideLogo { from { transform: translateX(0); } to { transform: translateX(-188px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes drift { 0%, 100% { transform: translate3d(0,0,0) rotate(0deg); } 50% { transform: translate3d(18px,-26px,0) rotate(10deg); } }
@keyframes slowSpin { to { transform: rotate(378deg); } }
@keyframes glowPulse { 0%, 100% { opacity: .75; } 50% { opacity: 1; } }
@keyframes shimmer { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.08); } }
@keyframes orbitFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(8deg); } }
@keyframes meterMove { 0%, 18% { transform: translateX(0); } 38%, 58% { transform: translateX(100%); } 78%, 100% { transform: translateX(200%); } }
@keyframes flowLine { from { background-position: 0 0; } to { background-position: 60px 0; } }
@keyframes premiumMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes lineGlow { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes cardDrift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 940px) {
  .navbar { flex-wrap: wrap; min-height: 68px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-menu, .nav-actions {
    display: none;
    width: 100%;
  }
  .nav-menu.open, .nav-actions.open { display: flex; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 14px; padding: 12px 0; }
  .nav-actions { padding-bottom: 16px; }
  .floating-demo { right: 14px; bottom: 14px; padding: 12px 15px; font-size: 13px; }
  .hero { padding-top: 80px; }
  .hero-grid, .split, .contact-grid, .page-hero-grid, .login-grid, .services-hero-grid, .contact-hero-grid, .process-band, .channel-flow, .product-showcase { grid-template-columns: 1fr; gap: 42px; }
  .feature-grid, .pricing-grid, .cards-3, .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid, .timeline { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { min-height: auto; padding-bottom: 48px; }
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .phone-stage { min-height: 440px; }
  .phone-3d { width: 216px; height: 400px; }
  .phone-screen { height: 332px; }
  .floating-card { font-size: 13px; padding: 10px 12px; }
  .feature-grid, .pricing-grid, .stats-grid, .timeline, .service-grid, .team-grid, .cards-3, .footer-grid, .contact-form { grid-template-columns: 1fr; }
  .login-metrics { grid-template-columns: 1fr; }
  .login-card { padding: 24px; }
  .image-strip-grid { grid-template-columns: 1fr; }
  .image-strip-grid img, .image-strip-grid img:nth-child(2), .image-strip-grid img:nth-child(3) { margin-top: 0; height: 210px; }
  .header-slider { min-height: 280px; }
  .pricing-hero-card, .process-band, .channel-flow, .compare-strip { padding: 26px; }
  .flow-graphic { grid-template-columns: 1fr; gap: 12px; }
  .flow-graphic i { width: 4px; height: 34px; margin: 0 auto; }
  .process-steps, .mock-grid { grid-template-columns: 1fr; }
  .contact-form label:nth-child(6), .contact-form button { grid-column: auto; }
  .cta-banner { padding: 34px 20px; border-radius: 24px; }
  .top-ribbon { font-size: 12px; }
  .section { padding: 68px 0; }
  .network-graphic { min-height: 520px; }
  .network-graphic::before, .network-graphic::after { display: none; }
  .network-line { left: 20%; right: 20%; transform: rotate(90deg); transform-origin: center; }
  .line-a { top: 160px; }
  .line-b { top: 260px; }
  .line-c { top: 360px; }
  .network-node { width: 64px; height: 64px; font-size: 13px; }
  .node-code { left: 10%; top: 42px; }
  .node-sms { left: auto; right: 12%; top: 118px; }
  .node-wa { left: 12%; top: 246px; }
  .node-api { left: auto; right: 12%; top: 356px; }
  .chat-card { max-width: 220px; font-size: 13px; padding: 13px 14px; }
  .chat-left { left: 10%; top: 176px; }
  .chat-right { right: 8%; top: 438px; }
  .profile-bubble { width: 72px; height: 72px; right: 10%; top: 28px; }
}
