:root {
  --white: #ffffff;
  --page: #ffffff;
  --surface: #f7fbff;
  --surface-2: #eef7ff;
  --line: #dfe9f5;
  --line-2: #cadcf1;
  --text: #0f172a;
  --muted: #5c6a81;
  --blue: #1458f3;
  --blue-deep: #0f39c2;
  --cyan: #1ed8ff;
  --orange: #ff980f;
  --pink: #f43fb2;
  --violet: #7a3ff2;
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.07);
  --shadow-card: 0 24px 70px rgba(15, 23, 42, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --transition: all .28s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { border: 0; background: none; cursor: pointer; }

.container { width: min(100% - 48px, 1180px); margin: 0 auto; }
.section { padding: 104px 0; position: relative; }
.narrow { width: min(100%, 900px); }

h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(3.4rem, 6vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 900;
}
h1 span { color: var(--blue); }
h2 {
  font-size: clamp(2.36rem, 3.45vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 900;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 800;
}
p {
  font-size: 1rem;
  color: var(--muted);
}

.tech-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,88,243,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,88,243,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 92%);
  pointer-events: none;
}

.eyebrow,
.section-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(20,88,243,.14);
  background: linear-gradient(135deg, rgba(20,88,243,.08), rgba(30,216,255,.12));
  color: var(--blue-deep);
  font-size: 1.07rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 14px 30px rgba(20,88,243,.08);
  overflow: hidden;
}
.eyebrow::before,
.section-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 16px rgba(30,216,255,.65);
  animation: pulseDot 2.4s infinite ease-in-out;
}
.eyebrow::after,
.section-tag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 15%, rgba(255,255,255,.4) 40%, transparent 60%);
  transform: translateX(-120%);
  animation: sweep 4s linear infinite;
}

@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: .95; }
  50% { transform: scale(1.25); opacity: .65; }
}
@keyframes sweep {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

.section-head {
  position: relative;
  max-width: 820px;
  margin-bottom: 44px;
}
.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }
.section-head h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange));
  box-shadow: 0 0 22px rgba(20,88,243,.18);
}
.section-head.centered h2::after { margin-left: auto; margin-right: auto; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 28px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  transition: var(--transition);
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,.22) 45%, transparent 72%);
  transform: translateX(-135%);
  transition: transform .65s ease;
}
.btn:hover::before { transform: translateX(135%); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #1458f3 0%, #0e6fe8 48%, #284be0 100%);
  box-shadow: 0 18px 38px rgba(20, 88, 243, 0.22);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 50px rgba(20, 88, 243, 0.28);
  filter: brightness(1.04);
}
.btn-secondary {
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid #dbe7f5;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #bdd6f3;
  background: #fbfdff;
  box-shadow: 0 22px 40px rgba(20,88,243,.12);
}
.btn-full { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223,233,245,.95);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}
.brand-logo { width: clamp(155px, 16vw, 220px); height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: 24px; }
.desktop-nav a {
  position: relative;
  color: var(--text);
  font-size: .95rem;
  font-weight: 700;
  transition: var(--transition);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width .25s ease;
}
.desktop-nav a:hover { color: var(--blue); }
.desktop-nav a:hover::after { width: 100%; }
.nav-cta {
  position: relative;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1458f3 0%, #0e6fe8 48%, #284be0 100%);
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(20, 88, 243, 0.2);
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,.22) 45%, transparent 72%);
  transform: translateX(-135%);
  transition: transform .65s ease;
}
.nav-cta:hover::before { transform: translateX(135%); }
.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 44px rgba(20, 88, 243, 0.28);
  filter: brightness(1.04);
}
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.menu-toggle span {
  width: 24px; height: 2px; border-radius: 999px; background: var(--text); transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: grid; gap: 10px; padding: 0 24px 24px; background: var(--white); border-bottom: 1px solid var(--line);
  opacity: 0; max-height: 0; overflow: hidden; pointer-events: none; transition: max-height .3s ease, opacity .3s ease;
}
.mobile-nav.active { opacity: 1; max-height: 520px; pointer-events: auto; }
.mobile-nav a { padding: 12px 14px; border-radius: 14px; font-weight: 700; }
.mobile-nav a:hover { background: var(--surface); }
.mobile-nav-cta { color: var(--white); text-align: center; background: linear-gradient(135deg, #1458f3 0%, #0e6fe8 48%, #284be0 100%); box-shadow: 0 14px 32px rgba(20,88,243,.18); }

.hero,
.product-hero {
  position: relative;
  padding: 74px 0 84px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .36;
  pointer-events: none;
}
.hero-glow-blue { width: 360px; height: 360px; background: rgba(30, 216, 255, .44); top: 30px; right: 7%; }
.hero-glow-warm { width: 290px; height: 290px; background: rgba(255, 152, 15, .26); bottom: 20px; left: 4%; }
.hero-grid,
.product-hero-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; gap: 44px; align-items: center;
}
.hero-text { margin-top: 20px; font-size: 1.08rem; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero-points li {
  padding: 8px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--text); font-size: .92rem; font-weight: 700;
}
.floating-card { animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }
.hero-tech-card,
.promo-card,
.showcase-image-card,
.about-card,
.contact-form,
.pipeline-card {
  position: relative; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255,255,255,.92); box-shadow: var(--shadow-card);
}
.hero-logo { width: 100%; max-width: 560px; margin: 8px auto 0; }
.console-head {
  display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
  color: var(--text); font-size: .92rem;
}
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 10px; height: 10px; border-radius: 999px; }
.window-dots span:nth-child(1){background:#ff5f57;} .window-dots span:nth-child(2){background:#febc2e;} .window-dots span:nth-child(3){background:#28ca41;}
.console-head strong { font-family: 'JetBrains Mono', monospace; font-size: .92rem; }
.console-status {
  margin-left: auto; padding: 6px 10px; border-radius: 999px; background: rgba(20,88,243,.08); color: var(--blue); font-size: .74rem; font-weight: 900; letter-spacing: .1em;
}
.hero-logo-panel { padding: 18px 0 14px; }
.signal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.signal-box {
  padding: 16px; border-radius: 18px; background: linear-gradient(180deg, #ffffff, #f6fbff); border: 1px solid var(--line);
}
.signal-box strong { display: block; margin-bottom: 5px; }
.signal-box span { display: block; color: var(--muted); font-size: .92rem; }

.trust-bar { padding-top: 8px; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.trust-item { padding: 24px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.trust-item strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.trust-item span { color: var(--muted); font-size: .95rem; }

.split-grid,
.featured-grid,
.about-grid,
.contact-grid,
.showcase-grid,
.product-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
}
.problem-cards { display: grid; gap: 16px; }
.problem-card,
.usecase-card,
.metric-card,
.mini-tech-list article,
.mini-product-grid article {
  padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-soft); transition: var(--transition);
}
.problem-card:hover,
.usecase-card:hover,
.metric-card:hover,
.mini-product-grid article:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(15,23,42,.12); }
.problem-icon {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 16px; color: var(--white); font-size: .92rem; font-weight: 900;
}
.problem-icon.warm { background: linear-gradient(135deg, var(--orange), #ffb84f); }
.problem-icon.cool { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.problem-icon.mix { background: linear-gradient(135deg, var(--pink), var(--violet)); }
.problem-card p { margin-top: 8px; }

.services { background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%); }
.service-grid,
.results-grid,
.usecase-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  position: relative; padding: 28px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(16,24,40,.12); }
.service-card.featured { border-color: rgba(20,88,243,.24); background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%); }
.service-label {
  position: absolute; top: 16px; right: 16px; padding: 6px 10px; border-radius: 999px; background: rgba(20,88,243,.08); color: var(--blue); font-size: .72rem; font-weight: 900;
}
.service-icon {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, rgba(20,88,243,.1) 0%, rgba(30,216,255,.12) 50%, rgba(255,152,15,.12) 100%); font-size: 1.5rem; margin-bottom: 20px;
}
.service-card p { margin: 12px 0 18px; }
.service-card ul,
.usecase-card ul,
.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.service-card li,
.usecase-card li,
.check-list li { color: var(--text); font-size: .94rem; font-weight: 700; }
.service-card li::before,
.usecase-card li::before,
.check-list li::before { content: "✓"; color: var(--blue); margin-right: 8px; }

.approach { background: var(--white); }
.process-rail {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 12px; align-items: center;
}
.process-step {
  padding: 26px 22px; min-height: 220px; border-radius: 24px; background: linear-gradient(180deg, #ffffff, #f7fbff); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.step-badge {
  display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 16px; border-radius: 14px; color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--orange)); font-weight: 900;
}
.process-step p { margin-top: 8px; }
.process-arrow {
  width: 48px; height: 2px; position: relative; background: linear-gradient(90deg, rgba(20,88,243,.25), rgba(20,88,243,.9));
}
.process-arrow::after {
  content: ""; position: absolute; right: -2px; top: -4px; width: 10px; height: 10px; border-top: 2px solid var(--blue); border-right: 2px solid var(--blue); transform: rotate(45deg);
}

.metric-card { text-align: center; }
.metric-value {
  font-size: clamp(2.8rem, 4vw, 4rem); font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--blue), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px;
}
.metric-card h3 { margin-bottom: 8px; }
.results-showcase { margin-top: 26px; }
.pipeline-track {
  display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 12px; padding: 26px 0 24px;
}
.pipeline-node {
  padding: 14px 18px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); text-align: center; font-weight: 800;
}
.pipeline-connector {
  height: 2px; background: linear-gradient(90deg, rgba(20,88,243,.2), rgba(20,88,243,.85), rgba(30,216,255,.9)); position: relative; overflow: hidden;
}
.pipeline-connector::after {
  content: ""; position: absolute; inset: -2px; width: 32%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent); animation: runLine 2s linear infinite;
}
@keyframes runLine { from { transform: translateX(-120%);} to { transform: translateX(420%);} }
.bars-grid { display: grid; gap: 16px; }
.bar-item { display: grid; gap: 8px; }
.bar-item span { font-weight: 700; color: var(--text); }
.progress { height: 10px; border-radius: 999px; background: #edf4fc; overflow: hidden; }
.progress i {
  display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange)); animation: growBar 1.8s ease forwards; transform-origin: left; transform: scaleX(0);
}
@keyframes growBar { to { transform: scaleX(1);} }

.featured-case { background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); }
.promo-card { padding: 14px; }
.promo-image,
.showcase-image { width: 100%; border-radius: 22px; }
.promo-tight { padding: 12px; }

.about { background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); }
.about-mark { width: 100%; max-width: 520px; margin: 0 auto; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill-list span {
  padding: 9px 13px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); color: var(--blue-deep); font-size: .9rem; font-weight: 800;
}

.faq-list { display: grid; gap: 14px; }
.faq-item { border-radius: 18px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; gap: 16px; padding: 22px 24px; text-align: left; color: var(--text); font-weight: 800;
}
.faq-question::after { content: "+"; color: var(--blue); font-size: 1.4rem; line-height: 1; }
.faq-item.active .faq-question::after { content: "–"; }
.faq-answer { display: none; padding: 0 24px 22px; }
.faq-item.active .faq-answer { display: block; }

.contact { background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%); }
.contact-points { display: grid; gap: 10px; margin-top: 24px; }
.contact-points span { color: var(--text); font-weight: 700; }
.contact-form label {
  display: grid; gap: 8px; margin-bottom: 14px; color: var(--text); font-size: .95rem; font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%; border: 1px solid #dbe7f5; border-radius: 14px; padding: 14px 16px; background: #fbfdff; color: var(--text); outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #8b98aa; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(20,88,243,.5); box-shadow: 0 0 0 4px rgba(20,88,243,.08);
}

.product-hero .hero-text { max-width: 680px; }
.usecase-section { background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%); }
.usecase-card.highlight { border-color: rgba(20,88,243,.24); background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%); }
.usecase-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.usecase-top small { color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.usecase-icon {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, rgba(20,88,243,.1), rgba(30,216,255,.12)); font-size: 1.1rem;
}
.usecase-card p { margin-bottom: 16px; }
.case-showcase { background: var(--white); }
.showcase-copy { display: grid; gap: 18px; }
.mini-tech-list { display: grid; gap: 14px; }
.mini-tech-list article strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.mini-product-grid { display: grid; gap: 16px; }
.mini-product-grid span {
  display: inline-block; margin-bottom: 8px; padding: 6px 10px; border-radius: 999px; background: rgba(20,88,243,.08); color: var(--blue); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
}
.mini-product-grid strong { display: block; margin-bottom: 8px; }



.consultancy-logo-card {
  margin-top: 28px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.consultancy-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15,23,42,.12);
}
.consultancy-logo-gif {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 28px rgba(20,88,243,.15));
}

.reveal.visible .eyebrow,
.reveal.visible .section-tag {
  animation: tagPop .75s cubic-bezier(.22,1,.36,1) both;
}
.reveal.visible h1,
.reveal.visible .section-head h2,
.reveal.visible .section-copy h2,
.reveal.visible .showcase-copy h2 {
  animation: headingRise .85s cubic-bezier(.22,1,.36,1) both;
}
.reveal.visible .section-head h2::after {
  transform-origin: left center;
  animation: underlineGrow .85s cubic-bezier(.22,1,.36,1) .15s both;
}
.section-head.centered h2::after { transform-origin: center center; }

@keyframes tagPop {
  0% { opacity: 0; transform: translateY(12px) scale(.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes headingRise {
  0% { opacity: 0; transform: translateY(22px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes underlineGrow {
  0% { transform: scaleX(0); opacity: .35; }
  100% { transform: scaleX(1); opacity: 1; }
}

.site-footer { padding: 34px 0 24px; background: var(--white); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.footer-logo { width: clamp(150px, 16vw, 220px); }
.footer-grid p { color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--text); font-weight: 700; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); color: #738197; font-size: .9rem; }

.floating-cta {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 55; text-align: center; padding: 16px 22px; border-radius: 999px; background: linear-gradient(135deg, #1458f3 0%, #0e6fe8 48%, #284be0 100%); color: var(--white); font-size: 1.02rem; font-weight: 800; box-shadow: 0 16px 40px rgba(16,24,40,.18);
}
.floating-cta.visible { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.disabled-link { opacity: .85; }

@media (max-width: 1100px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid, .product-hero-grid, .split-grid, .featured-grid, .about-grid, .contact-grid, .showcase-grid, .product-preview-grid { grid-template-columns: 1fr; }
  .service-grid, .results-grid, .usecase-grid, .trust-grid { grid-template-columns: repeat(2,1fr); }
  .signal-grid { grid-template-columns: 1fr; }
  .process-rail { grid-template-columns: 1fr; }
  .process-arrow { width: 2px; height: 34px; margin: 0 auto; background: linear-gradient(180deg, rgba(20,88,243,.25), rgba(20,88,243,.9)); }
  .process-arrow::after { right: -4px; top: auto; bottom: -2px; transform: rotate(135deg); }
  .pipeline-track { grid-template-columns: 1fr; }
  .pipeline-connector { height: 26px; width: 2px; margin: 0 auto; background: linear-gradient(180deg, rgba(20,88,243,.25), rgba(20,88,243,.85), rgba(30,216,255,.9)); }
  .pipeline-connector::after { width: 300%; height: 40%; transform: translateY(-120%); animation: runLineVertical 2s linear infinite; }
  @keyframes runLineVertical { from { transform: translateY(-120%);} to { transform: translateY(320%);} }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .hero, .product-hero { padding-top: 48px; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.28rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; font-size: 1rem; }
  .service-grid, .results-grid, .usecase-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-points { gap: 10px; }
  .brand-logo, .footer-logo { width: 155px; }
  .hero-tech-card, .promo-card, .showcase-image-card, .about-card, .contact-form, .pipeline-card, .consultancy-logo-card { border-radius: 24px; }
  .floating-cta.visible { display: block; }
  .site-footer { padding-bottom: 86px; }
  .section-tag, .eyebrow { font-size: .92rem; }
  .section-head h2::after { width: 92px; }
}


.infographic-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.section-image-wrap {
  width: 100%;
}
.section-infographic {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  background: #ffffff;
}
.trust-bar.infographic-section {
  padding-top: 22px;
}
@media (max-width: 720px) {
  .section-infographic {
    border-radius: 18px;
  }
  .trust-bar.infographic-section {
    padding-top: 12px;
  }
}

/* SEO landing page additions */
.desktop-nav a[aria-current="page"], .mobile-nav a[aria-current="page"] { color: var(--blue); }
.page-hero h1 { font-size: clamp(3rem, 5.5vw, 5.2rem); }
.split-copy-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); gap: 42px; align-items: start; }
.content-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 30px; box-shadow: var(--shadow-soft); }
.text-link { display: inline-flex; margin-top: 18px; font-weight: 900; color: var(--blue); }
.contact-strip { padding-top: 40px; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 36px; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(20,88,243,.08), rgba(30,216,255,.12)); border: 1px solid rgba(20,88,243,.16); box-shadow: var(--shadow-soft); }
.cta-panel h2 { font-size: clamp(2rem, 3vw, 3rem); }
.cta-panel p { margin-top: 10px; max-width: 760px; }
.seo-footer-links { display: flex; gap: 18px; flex-wrap: wrap; padding: 18px 0 0; font-size: .92rem; color: var(--muted); }
.seo-footer-links a:hover { color: var(--blue); }
@media (max-width: 880px) { .split-copy-grid, .cta-panel { grid-template-columns: 1fr; } }
@media (min-width: 1101px) and (max-width: 1280px) {
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: .86rem; }
  .nav-cta { padding: 12px 16px; font-size: .92rem; }
  .brand-logo { width: 160px; }
}

/* AI4Eone visual/layout polish - contact form, footer logo, and image aspect ratios */
img {
  height: auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.footer-logo {
  height: 32px !important;
  width: auto !important;
  max-width: 170px;
  object-fit: contain;
}

.footer-grid {
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 20px 28px;
}

.contact-points span:first-child {
  word-break: break-word;
}

.promo-card,
.showcase-image-card,
.about-card,
.hero-tech-card {
  overflow: hidden;
}

.product-hero-grid,
.featured-grid,
.about-grid,
.showcase-grid {
  gap: clamp(30px, 4.5vw, 58px);
}

.product-hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
}

.featured-grid {
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
}

.about-grid {
  grid-template-columns: minmax(340px, .84fr) minmax(0, 1.16fr);
}

.promo-image,
.section-infographic,
.about-mark,
.hero-logo,
.showcase-image {
  width: 100%;
  height: auto;
  object-position: center;
}

.promo-image {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 22px;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef7ff 100%);
}

.product-hero .promo-card,
.featured-case .promo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero .promo-card .promo-image,
.featured-case .promo-card .promo-image {
  max-height: 420px;
}

.section-infographic {
  object-fit: contain;
}

.hero-logo {
  max-height: 320px;
  object-fit: contain;
}

.about-mark {
  max-height: 360px;
  object-fit: contain;
}

.showcase-image {
  max-height: 560px;
  object-fit: contain;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef7ff 100%);
}

.case-showcase .showcase-grid {
  align-items: start;
}

.case-showcase .showcase-image-card {
  padding: 14px;
}

@media (min-width: 1101px) {
  .case-showcase .showcase-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  }
}

@media (max-width: 1100px) {
  .product-hero-grid,
  .featured-grid,
  .about-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-hero .promo-card,
  .featured-case .promo-card,
  .about-card,
  .showcase-image-card {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .footer-logo {
    height: 28px !important;
    width: auto !important;
  }

  .promo-image,
  .showcase-image {
    border-radius: 18px;
  }

  .product-hero .promo-card .promo-image,
  .featured-case .promo-card .promo-image,
  .showcase-image {
    max-height: none;
  }
}


/* V11 public-content cleanup and professional stacked image/text layout */
.page-hero .hero-stacked-grid,
.product-hero .hero-stacked-grid {
  display: block;
  max-width: 1040px;
  text-align: center;
}

.hero-centered-copy {
  max-width: 980px;
  margin: 0 auto;
}

.hero-centered-copy .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered-copy h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
}

.hero-centered-copy .hero-inline-image-card {
  width: min(100%, 760px);
  margin: 28px auto 22px;
  padding: 12px;
}

.hero-centered-copy .promo-image {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.hero-centered-copy .hero-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: .98rem;
  line-height: 1.65;
}

.hero-centered-copy .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.image-under-heading-layout {
  display: block;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.image-under-heading-layout .section-head,
.image-under-heading-layout .showcase-copy,
.image-under-heading-layout .about-copy,
.image-under-heading-layout .section-copy {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.image-under-heading-layout .section-tag {
  margin-left: auto;
  margin-right: auto;
}

.image-under-heading-layout .section-head h2::after {
  margin-left: auto;
  margin-right: auto;
}

.inline-section-image-card {
  width: min(100%, 760px);
  margin: 26px auto 20px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
}

.inline-section-image-card img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
}

.image-under-heading-layout .section-head p,
.image-under-heading-layout .showcase-copy p,
.image-under-heading-layout .section-copy p,
.image-under-heading-layout .about-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: .96rem;
  line-height: 1.65;
}

.image-under-heading-layout .check-list,
.image-under-heading-layout .pill-list,
.image-under-heading-layout .hero-actions,
.image-under-heading-layout .mini-tech-list {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.image-under-heading-layout .check-list {
  justify-items: center;
}

.image-under-heading-layout .pill-list,
.image-under-heading-layout .hero-actions {
  justify-content: center;
}

.image-under-heading-layout .mini-tech-list article {
  text-align: left;
}

.footer-logo {
  height: 26px !important;
  max-height: 26px !important;
  width: auto !important;
  max-width: 145px !important;
  object-fit: contain;
}

.footer-grid p {
  font-size: .94rem;
}

@media (max-width: 720px) {
  .hero-centered-copy h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .hero-centered-copy .hero-inline-image-card,
  .inline-section-image-card {
    margin-top: 22px;
    border-radius: 18px;
  }

  .hero-centered-copy .hero-text,
  .image-under-heading-layout .section-head p,
  .image-under-heading-layout .showcase-copy p,
  .image-under-heading-layout .section-copy p,
  .image-under-heading-layout .about-copy p {
    font-size: .93rem;
  }

  .footer-logo {
    height: 24px !important;
    max-height: 24px !important;
  }
}

/* V12 final professional design pass: smaller hero headings, cleaner visual hierarchy, and stronger image composition */
.hero:not(.page-hero) .hero-copy h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.55rem) !important;
  line-height: 1.04;
  letter-spacing: -0.047em;
  max-width: 820px;
}

.product-hero.page-hero .hero-centered-copy h1,
.page-hero .hero-centered-copy h1,
.product-hero .hero-centered-copy h1 {
  font-size: clamp(2rem, 3.85vw, 3.85rem) !important;
  line-height: 1.07;
  letter-spacing: -0.04em;
  max-width: 900px;
}

.hero-centered-copy .hero-text,
.image-under-heading-layout .section-head p,
.image-under-heading-layout .showcase-copy p,
.image-under-heading-layout .section-copy p,
.image-under-heading-layout .about-copy p {
  font-size: .92rem !important;
  line-height: 1.72;
  color: #64748b;
}

.hero-centered-copy .hero-inline-image-card,
.inline-section-image-card {
  width: min(100%, 880px) !important;
  margin-top: 24px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(247,251,255,.97));
  border: 1px solid rgba(202,220,241,.85);
  box-shadow: 0 22px 58px rgba(15,23,42,.08);
}

.hero-centered-copy .promo-image,
.product-hero .promo-card .promo-image,
.featured-case .promo-card .promo-image,
.inline-section-image-card img,
.showcase-image {
  aspect-ratio: 16 / 8.4;
  width: 100%;
  max-height: 390px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 20px;
}

.section-infographic {
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 26px;
}

.section {
  padding: 92px 0;
}

.section-head {
  margin-bottom: 38px;
}

.section-head h2,
.image-under-heading-layout .section-head h2,
.image-under-heading-layout .showcase-copy h2,
.image-under-heading-layout .about-copy h2,
.image-under-heading-layout .section-copy h2 {
  font-size: clamp(2.05rem, 3vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-grid,
.results-grid,
.usecase-grid {
  gap: 20px;
}

.service-card,
.usecase-card,
.metric-card,
.content-panel,
.mini-product-grid article,
.cta-panel,
.contact-form,
.pipeline-card {
  border-color: rgba(202,220,241,.86);
  box-shadow: 0 16px 42px rgba(15,23,42,.065);
}

.service-card,
.usecase-card,
.mini-product-grid article {
  padding: 26px;
}

.service-card p,
.usecase-card p,
.mini-product-grid p,
.content-panel p {
  font-size: .94rem;
  line-height: 1.66;
}

.service-icon,
.usecase-icon,
.step-badge {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}

.btn,
.nav-cta,
.mobile-nav-cta {
  letter-spacing: -0.01em;
}

.cta-panel {
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(20,88,243,.075), rgba(30,216,255,.105) 52%, rgba(255,152,15,.07));
}

.cta-panel h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem) !important;
  line-height: 1.12;
}

.footer-logo {
  height: 22px !important;
  max-height: 22px !important;
  max-width: 132px !important;
}

.footer-grid p,
.footer-links a,
.seo-footer-links {
  font-size: .9rem;
}

@media (min-width: 1101px) {
  .product-hero,
  .hero {
    padding-top: 68px;
    padding-bottom: 78px;
  }

  .product-hero.page-hero .hero-centered-copy {
    max-width: 980px;
  }
}

@media (max-width: 720px) {
  .hero:not(.page-hero) .hero-copy h1,
  .product-hero.page-hero .hero-centered-copy h1,
  .page-hero .hero-centered-copy h1,
  .product-hero .hero-centered-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.42rem) !important;
    line-height: 1.1;
  }

  .section-head h2,
  .image-under-heading-layout .section-head h2,
  .image-under-heading-layout .showcase-copy h2,
  .image-under-heading-layout .about-copy h2,
  .image-under-heading-layout .section-copy h2 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .hero-centered-copy .hero-text,
  .image-under-heading-layout .section-head p,
  .image-under-heading-layout .showcase-copy p,
  .image-under-heading-layout .section-copy p,
  .image-under-heading-layout .about-copy p {
    font-size: .9rem !important;
  }

  .hero-centered-copy .hero-inline-image-card,
  .inline-section-image-card {
    width: 100% !important;
    margin-top: 20px;
    border-radius: 20px;
  }

  .hero-centered-copy .promo-image,
  .product-hero .promo-card .promo-image,
  .featured-case .promo-card .promo-image,
  .inline-section-image-card img,
  .showcase-image {
    aspect-ratio: 16 / 9;
    max-height: none !important;
    border-radius: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-logo {
    height: 21px !important;
    max-height: 21px !important;
  }
}
