:root {
  --navy: #081229;
  --navy-2: #071b36;
  --navy-3: #0b2447;
  --blue: #2563eb;
  --cyan: #00d9ff;
  --gold: #f7c948;
  --gold-2: #f5b82e;
  --white: #ffffff;
  --text: #0d1b2f;
  --muted: #64748b;
  --line: rgba(15, 23, 42, .1);
  --glass: rgba(255, 255, 255, .08);
  --shadow: 0 24px 80px rgba(8, 18, 41, .16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7fbff;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: #ffffff;
}

.section-soft {
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 217, 255, .08), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: .35s ease;
}

.site-header.scrolled {
  background: rgba(8, 18, 41, .78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-logo {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 10px 24px rgba(247, 201, 72, .22));
}

.brand-text {
  display: grid;
  line-height: 1.2;
  color: #fff;
}

.brand-text strong {
  font-size: 16px;
  letter-spacing: .02em;
  font-weight: 850;
}

.brand-text small {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .78);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 650;
}

.nav-menu a:not(.nav-cta) {
  position: relative;
  padding: 9px 0;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transition: .3s ease;
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ffd95a, #f5b82e);
  color: #091325;
  box-shadow: 0 14px 40px rgba(247, 201, 72, .28);
  transition: transform .3s ease, box-shadow .3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(247, 201, 72, .38);
}

.lang-toggle {
  min-width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.lang-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(0,217,255,.7);
  background: rgba(0,217,255,.12);
}

.nav-toggle {
  display: none;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .09);
  cursor: pointer;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
  transition: .3s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, .25), transparent 26%),
    radial-gradient(circle at 80% 35%, rgba(0, 217, 255, .20), transparent 30%),
    linear-gradient(135deg, #061025 0%, #081229 45%, #031c34 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(0, 217, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, .16) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0%, rgba(0, 217, 255, .08) 38%, transparent 50%),
    url("../images/circuit-pattern.svg") center/cover no-repeat;
  opacity: .8;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  background: var(--cyan);
  box-shadow: 0 0 36px rgba(0, 217, 255, .9), 0 0 90px rgba(37, 99, 235, .5);
}

.orb-one { width: 8px; height: 8px; top: 26%; left: 8%; animation: floatY 8s ease-in-out infinite; }
.orb-two { width: 11px; height: 11px; top: 55%; left: 62%; animation: floatY 9s ease-in-out infinite .8s; }
.orb-three { width: 7px; height: 7px; bottom: 22%; right: 10%; animation: floatY 7s ease-in-out infinite .4s; }

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, .24);
  background: rgba(8, 18, 41, .55);
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(0, 217, 255, .04);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.hero h1 {
  max-width: 740px;
  margin-top: 26px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--gold);
  text-shadow: 0 0 35px rgba(247, 201, 72, .18);
}

.hero p {
  max-width: 610px;
  margin-top: 25px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 35px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd95a, var(--gold-2));
  color: #081229;
  box-shadow: 0 16px 45px rgba(247, 201, 72, .28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(247, 201, 72, .38);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 217, 255, .85);
  box-shadow: 0 18px 50px rgba(0, 217, 255, .15);
}

.hero-badges {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 720px;
}

.hero-badges div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
}

.hero-badges span {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(247, 201, 72, .5);
  font-size: 13px;
}

.hero-badges strong {
  font-size: 13px;
  color: #fff;
}

.hero-badges small {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.45;
}

.hero-visual {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-stack {
  position: relative;
  width: min(100%, 650px);
  isolation: isolate;
}

.ai-orbit {
  position: absolute;
  inset: -48px 0 auto auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(0, 217, 255, .22);
  border-radius: 50%;
  animation: spinOrbit 16s linear infinite;
}

.ai-orbit::before,
.ai-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(247, 201, 72, .18);
}

.ai-orbit::before { inset: 28px; }
.ai-orbit::after { inset: 58px; }

.ai-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 217, 255, .85);
}

.ai-orbit span:nth-child(1) { top: -5px; left: 50%; }
.ai-orbit span:nth-child(2) { right: 13px; top: 38px; background: var(--gold); box-shadow: 0 0 22px rgba(247, 201, 72, .8); }
.ai-orbit span:nth-child(3) { bottom: 17px; left: 34px; }
.ai-orbit span:nth-child(4) { left: -5px; top: 90px; background: #8b5cf6; box-shadow: 0 0 22px rgba(139, 92, 246, .8); }

.dashboard-stack::before {
  content: "";
  position: absolute;
  inset: 14% -6% -8% 8%;
  z-index: -1;
  background: radial-gradient(circle, rgba(0, 217, 255, .35), transparent 62%);
  filter: blur(45px);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, .22);
  background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
  backdrop-filter: blur(24px);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.laptop-frame {
  border-radius: 24px;
  padding: 12px;
  transform: perspective(1100px) rotateY(-7deg) rotateX(2deg);
}

.laptop-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, .92);
  color: #091325;
}

.laptop-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dbeafe;
}

.laptop-topbar span:nth-child(1) { background: #f87171; }
.laptop-topbar span:nth-child(2) { background: #fbbf24; }
.laptop-topbar span:nth-child(3) { background: #34d399; }
.laptop-topbar b { margin-left: 10px; font-size: 12px; }

.dashboard-screen {
  height: 420px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 84px 1fr;
  border-radius: 0 0 17px 17px;
  background: #f7fbff;
}

.dash-sidebar {
  background: linear-gradient(180deg, #071b36, #081229);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dash-sidebar img {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

.dash-sidebar i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
}

.dash-sidebar i:nth-child(3) { background: linear-gradient(90deg, var(--cyan), var(--blue)); }

.dash-content {
  padding: 24px;
  color: #0d1b2f;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dash-header h3 {
  font-size: 18px;
  letter-spacing: -.02em;
}

.dash-header span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, .12);
  color: #059669;
  font-size: 11px;
  font-weight: 800;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dash-kpis div,
.dash-chart,
.dash-list span {
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
  box-shadow: 0 12px 35px rgba(8, 18, 41, .08);
}

.dash-kpis div {
  padding: 16px;
  border-radius: 16px;
}

.dash-kpis small {
  display: block;
  color: #64748b;
  font-size: 10px;
}

.dash-kpis strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  color: #081229;
}

.dash-chart {
  height: 170px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
}

.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--blue); stroke-width: 5; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(0, 217, 255, .4)); }

.dash-list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dash-list span {
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(90deg, #fff, #eef8ff);
}

.phone-frame {
  position: absolute;
  left: -15px;
  bottom: -32px;
  width: 178px;
  height: 340px;
  border-radius: 34px;
  padding: 18px 14px;
  background: rgba(255, 255, 255, .86);
  border-color: rgba(255, 255, 255, .55);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .42);
}

.phone-notch {
  width: 58px;
  height: 7px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #0d1b2f;
}

.phone-card {
  height: 78px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #071b36, #2563eb);
  color: #fff;
  box-shadow: 0 14px 35px rgba(37, 99, 235, .28);
}

.phone-card small { display: block; color: rgba(255,255,255,.72); font-size: 10px; }
.phone-card strong { display: block; margin-top: 7px; font-size: 14px; line-height: 1.15; }

.phone-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.phone-grid span {
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #eaf7ff);
  border: 1px solid rgba(15, 23, 42, .08);
}

.phone-lines {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.phone-lines i {
  height: 7px;
  border-radius: 999px;
  background: #dbeafe;
}

.ai-command-card {
  position: absolute;
  right: 24px;
  bottom: -42px;
  width: min(320px, 60%);
  padding: 18px;
  border-radius: 22px;
  border-color: rgba(0, 217, 255, .32);
  background:
    linear-gradient(145deg, rgba(5, 16, 37, .94), rgba(8, 18, 41, .82)),
    radial-gradient(circle at top right, rgba(0, 217, 255, .18), transparent 44%);
  color: #f8fbff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255,255,255,.12);
}

.ai-command-card small {
  display: block;
  color: rgba(125, 229, 255, .92);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0,217,255,.30);
}

.ai-command-card strong {
  display: block;
  min-height: 30px;
  margin-top: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.35;
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
}

.ai-loader {
  display: flex;
  gap: 7px;
  margin-top: 14px;
}

.ai-loader span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseGlow 1.2s ease-in-out infinite;
}

.ai-loader span:nth-child(2) { animation-delay: .15s; }
.ai-loader span:nth-child(3) { animation-delay: .3s; }

.section-heading {
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-heading span,
.contact-copy > span,
.stats-copy > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stats-copy > span { color: var(--cyan); }

.section-heading h2,
.contact-copy h2,
.stats-copy h2 {
  color: #081229;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -.04em;
  font-weight: 900;
}

.stats-copy h2 { color: #fff; }

.section-heading p,
.contact-copy p,
.stats-copy p {
  margin-top: 13px;
  color: #64748b;
  font-size: 16px;
}

.stats-copy p { color: rgba(255,255,255,.72); }

.division-section,
.services-section,
.why-section,
.portfolio-section,
.contact-section {
  padding: 96px 0;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.division-card,
.service-card,
.why-card,
.portfolio-card,
.contact-card {
  position: relative;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
  box-shadow: 0 18px 55px rgba(8, 18, 41, .08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.division-card:hover,
.service-card:hover,
.why-card:hover,
.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, .22);
  box-shadow: 0 30px 90px rgba(8, 18, 41, .14);
}

.division-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.division-card.featured {
  border-color: rgba(0, 217, 255, .24);
  background:
    linear-gradient(145deg, #ffffff, #f3fbff),
    radial-gradient(circle at top right, rgba(0, 217, 255, .22), transparent 36%);
  box-shadow: 0 28px 85px rgba(37, 99, 235, .14);
}

.division-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% 30%;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 217, 255, .14), transparent 70%);
  pointer-events: none;
}

.division-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 20px;
}

.division-icon img {
  width: 42px;
  height: 42px;
}

.division-icon.blue { background: rgba(37, 99, 235, .10); }
.division-icon.gold { background: rgba(247, 201, 72, .16); filter: hue-rotate(18deg); }
.division-icon.green { background: rgba(16, 185, 129, .12); filter: hue-rotate(130deg); }

.division-card h3,
.service-card h3,
.why-card h3,
.portfolio-card h3 {
  color: #081229;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 900;
}

.division-card p,
.service-card p,
.why-card p,
.portfolio-card p {
  margin-top: 12px;
  color: #64748b;
  font-size: 14px;
}

.division-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  list-style: none;
  color: #334155;
  font-size: 14px;
}

.division-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.division-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px rgba(0, 217, 255, .35);
}

.division-card a,
.service-card a,
.text-link,
.portfolio-body a {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  color: #0f54c8;
  font-size: 13px;
  font-weight: 900;
}

.division-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.division-actions a:last-child {
  color: #0f766e;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  border-radius: 26px;
}

.service-icon,
.why-card span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.98), #dff4ff 72%);
  color: var(--blue);
  font-size: 28px;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .08), 0 14px 35px rgba(37, 99, 235, .15);
}

.service-card p { flex: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 30px 24px;
  border-radius: 24px;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 22px;
}

.portfolio-media {
  height: 180px;
  padding: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #061025, #0b2447);
}

.portfolio-media img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.portfolio-body {
  padding: 20px;
}

.portfolio-body span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: #e7f4ff;
  color: #0f54c8;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.stats-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(0, 217, 255, .18), transparent 28%),
    linear-gradient(135deg, #061025, #081229 60%, #05243d);
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/circuit-pattern.svg") center/cover no-repeat;
  opacity: .42;
}

.stats-layout {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

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

.stat-card {
  min-height: 150px;
  padding: 26px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(18px);
  text-align: center;
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
}

.stat-card strong::after {
  content: "+";
  font-size: .45em;
  margin-left: 3px;
}

.stat-card:nth-child(4) strong::after {
  content: "%";
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.trust-section {
  padding: 54px 0 64px;
  background: linear-gradient(180deg, #081229 0%, #061025 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.trust-section h2 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.trust-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}

.trust-row span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.trust-row img {
  width: 42px;
  height: 42px;
}

.trust-row em {
  color: rgba(255,255,255,.75);
  font-style: normal;
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr .75fr;
  gap: 56px;
  align-items: center;
}

.contact-list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(15, 23, 42, .08);
}

.contact-list b {
  color: #081229;
}

.contact-list span {
  color: #64748b;
}

.contact-card {
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    radial-gradient(circle at top right, rgba(0,217,255,.20), transparent 35%);
}

.form-glow {
  position: absolute;
  top: -80px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 217, 255, .20);
  filter: blur(28px);
}

.contact-card h3 {
  position: relative;
  color: #081229;
  font-size: 28px;
  letter-spacing: -.04em;
}

.contact-card p {
  position: relative;
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
}

.contact-card label {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, .12);
  background: #f8fbff;
  color: #0f172a;
  border-radius: 14px;
  outline: none;
  padding: 13px 14px;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: rgba(37, 99, 235, .5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
}

.contact-card button {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.footer {
  padding: 72px 0 0;
  background: linear-gradient(135deg, #061025, #081229);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 46px;
  padding-bottom: 48px;
}

.footer-brand p,
.footer-col p {
  margin-top: 18px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.footer-col h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  margin: 10px 0;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 217, 255, .12), transparent 62%);
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .3s ease;
}

@media (hover: hover) {
  body:hover .cursor-glow { opacity: 1; }
}

.presentation-page {
  background: #ffffff;
}

.presentation-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 96px;
}

.presentation-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.presentation-copy h1 {
  max-width: 760px;
  margin-top: 26px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -.06em;
  font-weight: 950;
}

.presentation-copy p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}

.education-map {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 36px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 12%, rgba(0,217,255,.22), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  backdrop-filter: blur(24px);
  box-shadow: 0 38px 110px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.2);
}

.map-node {
  position: relative;
  z-index: 2;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  color: #fff;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}

.map-node small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-node strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
  line-height: 1.2;
}

.map-node.dinas {
  max-width: 360px;
  margin-inline: auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(247,201,72,.24), rgba(0,217,255,.12));
  border-color: rgba(247,201,72,.34);
}

.map-lines {
  position: absolute;
  inset: 27% 12% 24%;
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(0,217,255,.38) 14% 86%, transparent 86%),
    linear-gradient(rgba(0,217,255,.32), rgba(0,217,255,.32));
  background-size: 100% 2px, 2px 100%;
  background-repeat: no-repeat;
  background-position: center, center;
  opacity: .75;
}

.school-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.app-showcase,
.ai-showcase {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
}

.app-window,
.ai-chat-window {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  backdrop-filter: blur(24px);
  box-shadow: 0 38px 110px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.2);
}

.bizflow-monitor {
  position: relative;
  display: grid;
  justify-items: center;
  padding-bottom: 44px;
}

.monitor-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  aspect-ratio: 16 / 10;
  padding: 10px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.06)),
    #071b36;
  box-shadow: 0 38px 110px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.24);
}

.monitor-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), inset 0 -80px 120px rgba(8,18,41,.18);
}

.monitor-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: 20px;
}

.monitor-stand {
  position: absolute;
  bottom: 0;
  width: 190px;
  height: 64px;
}

.monitor-stand::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 46px;
  height: 48px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.16);
}

.monitor-stand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,217,255,.24), rgba(247,201,72,.22));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 45px rgba(0,0,0,.26);
}

.app-window-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(255,255,255,.92);
  color: #091325;
}

.app-window-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dbeafe;
}

.app-window-topbar span:nth-child(1) { background: #f87171; }
.app-window-topbar span:nth-child(2) { background: #fbbf24; }
.app-window-topbar span:nth-child(3) { background: #34d399; }
.app-window-topbar b { margin-left: 10px; font-size: 12px; }

.app-window-body {
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: 360px;
  background: #f8fbff;
}

.app-sidebar-mini {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px 18px;
  background: linear-gradient(180deg, #071b36, #081229);
}

.app-sidebar-mini i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

.app-sidebar-mini i:nth-child(1) {
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.app-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

.app-kpi,
.app-chart-mini,
.app-lines span {
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: 0 12px 35px rgba(8,18,41,.08);
}

.app-kpi {
  padding: 18px;
  border-radius: 18px;
}

.app-kpi small {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.app-kpi strong {
  display: block;
  margin-top: 8px;
  color: #081229;
  font-size: 28px;
}

.app-chart-mini {
  grid-column: span 2;
  height: 145px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
}

.app-chart-mini i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.app-chart-mini i:nth-child(1) { height: 38%; }
.app-chart-mini i:nth-child(2) { height: 72%; }
.app-chart-mini i:nth-child(3) { height: 54%; }
.app-chart-mini i:nth-child(4) { height: 86%; }
.app-chart-mini i:nth-child(5) { height: 64%; }

.app-lines {
  grid-column: span 2;
  display: grid;
  gap: 12px;
}

.app-lines span {
  height: 18px;
  border-radius: 999px;
}

.app-lines span:nth-child(2) { width: 82%; }
.app-lines span:nth-child(3) { width: 64%; }

.app-badge-card,
.ai-data-card {
  position: absolute;
  right: 26px;
  bottom: 8px;
  width: min(310px, 72%);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  color: #fff;
}

.app-badge-card small,
.ai-data-card small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.app-badge-card strong,
.ai-data-card strong {
  display: block;
  margin-top: 7px;
  font-size: 22px;
  line-height: 1.15;
}

.app-badge-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.app-list-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, .9fr);
  gap: 24px;
}

.app-product-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(8,18,41,.08);
}

.app-product-card.active {
  border-color: rgba(0,217,255,.24);
  background:
    linear-gradient(145deg, #ffffff, #f3fbff),
    radial-gradient(circle at top right, rgba(0,217,255,.18), transparent 35%);
}

.app-product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.app-product-head span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.app-product-head strong {
  color: var(--gold-2);
  font-size: 18px;
}

.app-product-card h3 {
  margin-top: 20px;
  color: #081229;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.app-product-card p {
  margin-top: 12px;
  color: #64748b;
  font-size: 14px;
}

.app-product-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  list-style: none;
  color: #334155;
  font-size: 14px;
}

.app-product-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.app-product-card em {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0f54c8;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.ai-chat-window {
  padding: 22px;
}

.ai-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.ai-chat-head > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff, var(--cyan));
  box-shadow: 0 0 30px rgba(0,217,255,.38);
}

.ai-chat-head small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ai-chat-head strong {
  display: block;
  margin-top: 3px;
  color: #6ee7b7;
  font-size: 13px;
}

.ai-message {
  max-width: 82%;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.ai-message.question {
  margin-left: auto;
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
}

.ai-message.answer {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.12);
}

.ai-thinking {
  display: flex;
  gap: 7px;
  width: max-content;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.12);
}

.ai-thinking i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseGlow 1.2s ease-in-out infinite;
}

.ai-thinking i:nth-child(2) { animation-delay: .15s; }
.ai-thinking i:nth-child(3) { animation-delay: .3s; }

.innovation-showcase,
.care-showcase {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
}

.machine-panel,
.care-product-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 75% 20%, rgba(247,201,72,.18), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
  backdrop-filter: blur(24px);
  box-shadow: 0 38px 110px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.2);
}

.product-image-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 760px);
  aspect-ratio: 1 / 1;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.20), rgba(255,255,255,.06)),
    rgba(8,18,41,.42);
  backdrop-filter: blur(24px);
  box-shadow: 0 38px 110px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.2);
}

.product-image-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 25px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), inset 0 -100px 140px rgba(8,18,41,.10);
}

.product-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.innovation-product img {
  object-position: center;
}

.care-product {
  aspect-ratio: 4 / 3;
}

.care-product img {
  object-position: center;
}

.product-floating-card {
  position: absolute;
  right: 26px;
  bottom: 8px;
  width: min(330px, 72%);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.20), rgba(255,255,255,.08));
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  color: #fff;
}

.product-floating-card small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-floating-card strong {
  display: block;
  margin-top: 7px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.15;
}

.product-floating-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.machine-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 26px;
  border: 1px dashed rgba(0,217,255,.18);
}

.machine-screen {
  position: relative;
  z-index: 2;
  max-width: 360px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(8,18,41,.55);
  color: #fff;
}

.machine-screen small,
.care-info-card small {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.machine-screen strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 56px;
  line-height: 1;
}

.machine-screen span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.76);
  font-weight: 800;
}

.machine-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.machine-grid i {
  height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 24px rgba(0,217,255,.06);
}

.machine-grid i:nth-child(2),
.machine-grid i:nth-child(5) {
  background: linear-gradient(135deg, rgba(247,201,72,.22), rgba(0,217,255,.10));
}

.machine-status,
.care-info-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: min(320px, 72%);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  color: #fff;
}

.machine-status b,
.care-info-card strong {
  display: block;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.15;
}

.machine-status span,
.care-info-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.care-product-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(16,185,129,.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(0,217,255,.14), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
}

.care-bottle {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 270px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 34px 34px 28px 28px;
  background: linear-gradient(180deg, #f8feff, #9ee7d2);
  box-shadow: 0 32px 90px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.7);
  color: #064e3b;
}

.care-bottle::before {
  content: "";
  position: absolute;
  top: -34px;
  width: 70px;
  height: 48px;
  border-radius: 18px 18px 8px 8px;
  background: #e9fbff;
  box-shadow: inset 0 0 0 1px rgba(8,18,41,.08);
}

.care-bottle.main strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.care-bottle.main span {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .14em;
}

.care-bottle.small {
  position: absolute;
  right: 60px;
  bottom: 86px;
  width: 96px;
  height: 180px;
  opacity: .82;
  transform: rotate(8deg);
}

.care-bottle.small span {
  font-weight: 950;
}

.care-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.26);
  border: 1px solid rgba(255,255,255,.34);
  animation: floatY 7s ease-in-out infinite;
}

.care-bubble.b1 { width: 44px; height: 44px; left: 18%; top: 22%; }
.care-bubble.b2 { width: 28px; height: 28px; right: 22%; top: 18%; animation-delay: .4s; }
.care-bubble.b3 { width: 58px; height: 58px; left: 22%; bottom: 20%; animation-delay: .8s; }

.presentation-section {
  padding: 96px 0;
}

.presentation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.presentation-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(8, 18, 41, .08);
}

.presentation-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
}

.presentation-card h3 {
  color: #081229;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.presentation-card p {
  margin-top: 12px;
  color: #64748b;
  font-size: 14px;
}

.flow-layout {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 56px;
  align-items: center;
}

.flow-steps {
  display: grid;
  gap: 14px;
}

.flow-steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(8,18,41,.07);
}

.flow-steps b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
}

.flow-steps span {
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.presentation-cta {
  padding: 88px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,217,255,.18), transparent 28%),
    linear-gradient(135deg, #061025, #081229);
}

.presentation-cta .section-heading h2 {
  color: #fff;
}

.presentation-cta .section-heading p {
  color: rgba(255,255,255,.74);
}

.center-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .nav-menu { gap: 15px; font-size: 13px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid, .why-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .hero h1, .hero p { max-width: 900px; }
  .presentation-hero-layout,
  .flow-layout { grid-template-columns: 1fr; }
  .presentation-grid { grid-template-columns: repeat(2, 1fr); }
  .app-list-grid { grid-template-columns: 1fr; }
  .app-showcase,
  .ai-showcase,
  .innovation-showcase,
  .care-showcase { min-height: 480px; max-width: 720px; }
}

@media (max-width: 840px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .navbar { min-height: 76px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-text strong { font-size: 13px; }
  .brand-text small { font-size: 9px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(8, 18, 41, .96);
    backdrop-filter: blur(24px);
    box-shadow: 0 28px 90px rgba(0,0,0,.38);
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 12px 14px !important; border-radius: 12px; }
  .nav-menu a:hover { background: rgba(255,255,255,.08); }
  .nav-cta { margin-top: 6px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 120px; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); margin-top: 42px; }
  .division-grid,
  .contact-layout,
  .stats-layout,
  .footer-layout,
  .presentation-grid { grid-template-columns: 1fr; }
  .section-heading.split { align-items: start; flex-direction: column; }
  .dashboard-screen { height: 360px; grid-template-columns: 64px 1fr; }
  .dash-kpis { grid-template-columns: 1fr; }
  .dash-kpis div:nth-child(3) { display: none; }
  .dash-chart { height: 136px; }
  .phone-frame { width: 150px; height: 294px; left: 0; }
  .ai-command-card { right: 0; width: min(300px, 70%); }
  .ai-orbit { right: -18px; width: 140px; height: 140px; }
  .presentation-hero { padding-top: 120px; }
  .education-map { min-height: auto; }
  .app-window-body { grid-template-columns: 58px 1fr; }
  .app-panel { padding: 16px; }
  .app-badge-card,
  .ai-data-card { right: 0; bottom: 0; }
  .monitor-frame { aspect-ratio: 4 / 3; }
  .machine-status,
  .care-info-card,
  .product-floating-card { right: 18px; bottom: 18px; }
}

@media (max-width: 620px) {
  body { line-height: 1.65; }
  .hero { min-height: auto; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .ai-orbit { display: none; }
  .ai-command-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 14px; }
  .laptop-frame { transform: none; padding: 9px; }
  .dashboard-screen { height: 300px; grid-template-columns: 52px 1fr; }
  .dash-content { padding: 14px; }
  .dash-header h3 { font-size: 14px; }
  .dash-kpis div { padding: 11px; }
  .dash-kpis strong { font-size: 18px; }
  .dash-list { display: none; }
  .phone-frame { display: none; }
  .division-section,
  .services-section,
  .why-section,
  .portfolio-section,
  .contact-section,
  .presentation-section { padding: 72px 0; }
  .service-grid,
  .why-grid,
  .portfolio-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 14px; }
  .trust-row span { width: 50px; height: 50px; }
  .contact-list a,
  .contact-list div { grid-template-columns: 1fr; gap: 4px; }
  .presentation-copy h1 { font-size: clamp(38px, 12vw, 54px); }
  .presentation-copy p { font-size: 16px; }
  .education-map { padding: 18px; border-radius: 24px; }
  .school-cluster { grid-template-columns: 1fr; }
  .map-lines { display: none; }
  .app-showcase,
  .ai-showcase,
  .innovation-showcase,
  .care-showcase { min-height: auto; }
  .bizflow-monitor { padding-bottom: 30px; }
  .monitor-frame { padding: 7px; border-radius: 20px; }
  .monitor-frame img,
  .monitor-frame::after { border-radius: 14px; }
  .monitor-stand { width: 136px; height: 46px; }
  .app-window-body { grid-template-columns: 1fr; }
  .app-sidebar-mini { display: none; }
  .app-panel { grid-template-columns: 1fr; }
  .app-chart-mini,
  .app-lines { grid-column: auto; }
  .app-badge-card,
  .ai-data-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 14px; }
  .ai-chat-window { padding: 16px; }
  .ai-message { max-width: 100%; }
  .machine-panel,
  .care-product-visual { min-height: auto; padding: 22px; border-radius: 24px; }
  .machine-screen { padding: 18px; }
  .machine-screen strong { font-size: 42px; }
  .machine-grid { grid-template-columns: repeat(2, 1fr); }
  .machine-grid i { height: 58px; }
  .machine-status,
  .care-info-card,
  .product-floating-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 18px; }
  .product-image-frame { padding: 7px; border-radius: 24px; }
  .product-image-frame img,
  .product-image-frame::after { border-radius: 17px; }
  .care-product { aspect-ratio: 1 / 1; }
  .care-bottle.main { width: 128px; height: 230px; }
  .care-bottle.small { display: none; }
  .flow-steps div { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-direction: column; gap: 8px; }
}
