:root {
  --bg: #07161e;
  --bg-soft: #0d2431;
  --panel: #122a35;
  --panel-alt: #1a3947;
  --surface: #edf5f7;
  --surface-strong: #dfeef2;
  --text: #0a1720;
  --muted: #4f6874;
  --line: rgba(10, 23, 32, 0.1);
  --primary: #2ea3a0;
  --primary-dark: #1e7b77;
  --accent: #f2c76e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 22, 30, 0.12);
  --shadow-soft: 0 16px 40px rgba(7, 22, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.narrow {
  max-width: 880px;
}

.section-kicker,
.eyebrow,
.mini-tag {
  display: inline-block;
  letter-spacing: 0.12em;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(46, 163, 160, 0.08);
  border: 1px solid rgba(46, 163, 160, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
}

h1, h2, h3 {
  margin: 0 0 18px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  max-width: 640px;
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
  max-width: 760px;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-mark {
  font-size: 1.7rem;
  color: var(--bg);
}

.brand-sub {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 20px);
  flex-wrap: nowrap;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav [data-i18n="navHome"],
.main-nav [data-i18n="navSolutions"] { display: none; }

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--bg);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.current::after {
  transform: scaleX(1);
}

.main-nav a.current {
  color: var(--bg);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--bg);
}

.lang-switcher {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(10, 23, 32, 0.04);
  border: 1px solid rgba(10, 23, 32, 0.08);
  border-radius: 999px;
  padding: 6px;
}

.lang-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--bg);
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(46, 163, 160, 0.3);
}

.button-secondary {
  background: rgba(10, 23, 32, 0.03);
  border-color: rgba(10, 23, 32, 0.1);
  color: var(--text);
}

.hero {
  background: linear-gradient(180deg, #f6fbfd 0%, #eef7f9 100%);
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 48px;
}

.hero-grid > * {
  min-width: 0;
}

.lead {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--muted);
  max-width: 700px;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 24px;
}

.trust-line {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 680px;
}

.hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(7, 22, 30, .96) 0%, rgba(23, 62, 77, .92) 100%), url('assets/logoimgEmwe.png') center / cover;
  color: var(--white);
  border-radius: 26px;
  padding: 30px 28px;
  min-height: 300px;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "DATA / ERP / AI";
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: 6px;
  color: rgba(255,255,255,.07);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.08em;
  transform: rotate(-8deg);
}

.hero-subpage {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 24%, rgba(242,199,110,.2), transparent 24%), linear-gradient(135deg, #edf7f8 0%, #dcecef 100%);
}

.hero-subpage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(rgba(46,163,160,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(46,163,160,.13) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(110deg, transparent 8%, #000 72%);
}

.hero-subpage .container {
  position: relative;
}

.hero-subpage h1 {
  max-width: 760px;
}

.hero-subpage .hero-card {
  border: 1px solid rgba(255,255,255,.2);
}

.hero-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 2.2;
  font-weight: 500;
}

.problem,
.data-bi,
.about,
.contact {
  background: #f9fbfc;
}

.narrow h2 {
  margin-bottom: 18px;
}

.flow-diagram {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 38px;
}

.flow-block {
  width: min(100%, 760px);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px;
  font-weight: 700;
  color: var(--text);
}

.flow-block.highlight {
  background: linear-gradient(135deg, #0e2d3d 0%, #1e5563 100%);
  color: var(--white);
  border-color: transparent;
}

.flow-arrow {
  font-size: 2.2rem;
  color: var(--primary-dark);
}

.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

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

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

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

.service-card,
.mini-card,
.feature-card,
.product-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.mini-card:hover,
.feature-card:hover,
.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(10, 23, 32, 0.08);
  border-color: rgba(46, 163, 160, 0.18);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.card-number {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.subhead {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--bg);
}

.tags,
.bullet-list,
.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 18px;
}

.tags span,
.bullet-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(10, 23, 32, 0.08);
  background: #f4f8fa;
  padding: 7px 10px;
  font-size: 0.78rem;
  color: var(--text);
}

.inline-link {
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: auto;
}

.inline-link.strong {
  font-size: 1.1rem;
}

.check-list {
  padding-left: 18px;
  margin: 18px 0;
  color: var(--text);
  line-height: 1.8;
}

.mini-note {
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card.accent {
  background: linear-gradient(180deg, #0d2431 0%, #143c4d 100%);
  color: var(--white);
  border-color: transparent;
}

.service-card.accent p,
.service-card.accent .subhead,
.service-card.accent .card-number,
.service-card.accent .inline-link {
  color: var(--white);
}

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

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  max-width: 820px;
}

.automation {
  background: linear-gradient(180deg, #f6fbfd 0%, #eef9f9 100%);
}

.mini-card h3 {
  font-size: 1.35rem;
}

.cta-panel {
  margin-top: 42px;
  background: linear-gradient(135deg, var(--bg) 0%, #153d4d 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 34px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 22px 60px rgba(7, 22, 30, 0.18);
}

.cta-panel h3 {
  margin: 0;
  max-width: 640px;
}

.impact-copy {
  margin-top: 16px;
  max-width: 820px;
  font-size: 1.15rem;
}

.feature-card h3 {
  font-size: 1.7rem;
}

blockquote {
  max-width: 840px;
  margin: 42px auto 0;
  padding: 28px 26px;
  border-left: 6px solid var(--primary);
  background: #f7fbfc;
  border-radius: 18px;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}

.story-cta {
  margin-top: 30px;
  text-align: center;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.pill-grid span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: start;
}

.split-layout > * {
  min-width: 0;
}

.role {
  margin-top: -8px;
  font-weight: 600;
  color: var(--primary-dark);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 18px;
}

.timeline div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(10, 23, 32, 0.08);
}

.timeline div:last-child {
  border-bottom: none;
}

.timeline strong {
  font-size: 0.95rem;
  color: var(--bg);
}

.timeline span {
  color: var(--muted);
}

.contact-form {
  margin-top: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  border: 1px solid rgba(10, 23, 32, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(10, 23, 32, 0.08);
}

.lead-small {
  font-size: 1.08rem;
  max-width: 760px;
  color: var(--muted);
}

.process-steps {
  margin-top: 32px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.process-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.process-list strong {
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.product-list {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label input:focus,
label textarea:focus {
  border-color: rgba(46, 163, 160, 0.5);
  box-shadow: 0 0 0 4px rgba(46, 163, 160, 0.08);
  outline: none;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

label span {
  font-size: 0.96rem;
}

input,
textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(10, 23, 32, 0.14);
  border-radius: 12px;
  background: #fbfcfd;
  color: var(--text);
  font: inherit;
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-top: 26px;
}

.form-actions .button {
  min-width: 220px;
}

.choice-group {
  margin: 0;
}

.choice-group label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #f5f9fb;
  border: 1px solid rgba(10, 23, 32, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 500;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.choice-group label:hover {
  border-color: rgba(46, 163, 160, 0.3);
  transform: translateY(-1px);
}

.choice-group input {
  width: auto;
}

.site-footer {
  background: linear-gradient(180deg, #091b25 0%, #07161e 100%);
  color: rgba(255,255,255,0.9);
  padding: 48px 0;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 22px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.68);
  font-size: .9rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0;
}

.metric {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.metric strong { display: block; font-size: 1.7rem; color: var(--primary-dark); }
.metric span { color: var(--muted); }
.contact-page {
  background: radial-gradient(circle at 88% 8%, rgba(46,163,160,.14), transparent 25%), #f9fbfc;
}
.contact-page h1,
.about-page h1 {
  max-width: 760px;
}
.about-page {
  background: radial-gradient(circle at 14% 12%, rgba(242,199,110,.18), transparent 22%), #f9fbfc;
}
.about-intro {
  position: relative;
  padding: 42px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--bg) 0%, #1d5760 100%);
  color: var(--white);
  overflow: hidden;
}
.about-intro::after {
  content: "25+";
  position: absolute;
  right: 18px;
  bottom: -26px;
  color: rgba(255,255,255,.08);
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
}
.about-intro p,
.about-intro .role { color: rgba(255,255,255,.82); }
.privacy-note { margin-top: 16px; font-size: .9rem; }
.privacy-note a { color: var(--primary-dark); text-decoration: underline; }
.form-status { margin-top: 16px; font-size: .95rem; font-weight: 700; }
.form-status-success { color: #1a7f4b; }
.form-status-error { color: #c0392b; }
.form-honeypot { display: none !important; }
.breadcrumb { padding-top: 24px; font-size: .9rem; color: var(--muted); }
.breadcrumb a { color: var(--primary-dark); }

.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,0.8);
}

.compact {
  margin-bottom: 12px;
}

.compact .brand-mark,
.compact .brand-sub {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .form-actions,
  .footer-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .four-up,
  .six-up,
  .three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta { display: none; }
  .main-nav { gap: 11px; font-size: .84rem; }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .menu-toggle { display: block; margin-left: auto; }

  .main-nav {
    display: none;
    order: 5;
    width: 100%;
    align-items: stretch;
    padding: 8px 0 18px;
    gap: 0;
  }

  .main-nav.open { display: flex; flex-direction: column; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .lang-switcher { order: 3; }

  .nav-cta {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .four-up,
  .six-up,
  .three-up,
  .form-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .section-spacing {
    padding: 70px 0;
  }

  .hero {
    padding-top: 60px;
  }
}

/* Visual storytelling */
.hero-home { position: relative; overflow: hidden; background: radial-gradient(circle at 75% 20%, rgba(46,163,160,.16), transparent 34%), linear-gradient(180deg,#f6fbfd 0%,#eaf5f7 100%); }
.hero-home::before { content:""; position:absolute; inset:0; opacity:.28; background-image:linear-gradient(rgba(46,163,160,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(46,163,160,.12) 1px,transparent 1px); background-size:48px 48px; mask-image:linear-gradient(to right,transparent,#000 60%); }
.hero-home .container { position:relative; }
.hero-home .hero-grid { grid-template-columns: 1fr; }
.hero-visual { position:relative; margin:32px auto 0; max-width:1100px; width:100%; border-radius:28px; overflow:hidden; box-shadow:0 28px 80px rgba(7,22,30,.24); }
.hero-visual::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,.35); border-radius:inherit; pointer-events:none; }
.hero-visual img { width:100%; height:auto; aspect-ratio:1636/952; object-fit:contain; background:#0b1b24; display:block; }
.hero-visual figcaption { position:absolute; left:18px; right:18px; bottom:18px; padding:12px 15px; border-radius:12px; color:#fff; background:rgba(7,22,30,.72); backdrop-filter:blur(10px); font-size:.86rem; }
.technology-strip { background:var(--bg); color:var(--white); padding:18px 0; }
.technology-strip p { margin:0; text-align:center; color:rgba(255,255,255,.84); font-size:.9rem; font-weight:700; letter-spacing:.12em; }
.improve { background:var(--white); }
.choice-card { display:flex; align-items:center; min-height:112px; padding:24px 22px; border:1px solid var(--line); border-left:4px solid var(--primary); border-radius:12px; background:var(--surface); font-size:1.08rem; font-weight:800; transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.choice-card:hover, .choice-card:focus-visible { transform:translateY(-4px); border-color:var(--primary); box-shadow:var(--shadow-soft); }
.flow-arrow { animation:flowPulse 1.8s ease-in-out infinite; }
.flow-block.highlight { animation:layerGlow 3.2s ease-in-out infinite; }
@keyframes flowPulse { 0%,100% { transform:translateY(-3px); opacity:.5; } 50% { transform:translateY(4px); opacity:1; } }
@keyframes layerGlow { 0%,100% { box-shadow:0 12px 30px rgba(46,163,160,.15); } 50% { box-shadow:0 18px 46px rgba(46,163,160,.35); } }
.solution-slider { overflow:hidden; background:var(--bg); color:var(--white); }
.slider-head { display:flex; justify-content:space-between; align-items:end; gap:24px; margin-bottom:30px; }
.slider-head h2 { color:var(--white); margin-bottom:0; }
.slider-controls { display:flex; gap:10px; }
.slider-controls button { width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.25); background:rgba(255,255,255,.08); color:#fff; font-size:1.25rem; cursor:pointer; }
.slider-controls button:hover { background:var(--primary); }
.slider-window { overflow:hidden; }
.slider-track { display:flex; transition:transform .65s cubic-bezier(.22,.8,.3,1); }
.solution-slide { flex:0 0 100%; min-height:310px; padding:clamp(28px,5vw,64px); border-radius:26px; background:linear-gradient(135deg,#12303d,#1a5360); border:1px solid rgba(255,255,255,.12); }
.solution-slide:nth-child(2) { background:linear-gradient(135deg,#183746,#256f72); }
.solution-slide:nth-child(3) { background:linear-gradient(135deg,#2b3440,#725b36); }
.solution-slide span { color:var(--accent); font-weight:800; letter-spacing:.14em; font-size:.8rem; }
.solution-slide h3 { max-width:720px; margin-top:24px; font-size:clamp(2rem,4vw,3.5rem); }
.solution-slide p { max-width:680px; color:rgba(255,255,255,.78); }
.solution-slide a { color:#fff; font-weight:800; }
.slider-dots { display:flex; justify-content:center; gap:8px; margin-top:22px; }
.slider-dots button { width:9px; height:9px; padding:0; border:0; border-radius:50%; background:rgba(255,255,255,.3); cursor:pointer; transition:width .25s ease; }
.slider-dots button.active { width:30px; border-radius:99px; background:var(--accent); }
.reveal { opacity:0; transform:translateY(26px); transition:opacity .75s ease,transform .75s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
@media (max-width:720px) { .slider-head { align-items:flex-start; flex-direction:column; } }
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; } .reveal { opacity:1; transform:none; } }

/* Excel-Automatisierung Landing Page */
.portrait-frame { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.portrait-frame img { display: block; width: 100%; height: auto; }
.visual-wide { max-width: 1100px; margin: 32px auto 0; }
.diagram-card { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: 20px; box-shadow: var(--shadow); max-width: 1100px; margin: 32px auto 0; }
.diagram-card img { display: block; width: 100%; height: auto; border-radius: 14px; }
.cta-panel p { color: rgba(255,255,255,.82); margin: 0; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.compare-col { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 26px; box-shadow: var(--shadow-soft); }
.compare-col.highlight { background: linear-gradient(135deg, var(--bg) 0%, #153d4d 100%); border-color: transparent; color: var(--white); }
.compare-col.highlight h3 { color: var(--white); }
.step-list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; counter-reset: step; }
.step-list li { padding: 12px 14px; border-radius: 10px; background: #f4f8fa; font-weight: 600; }
.compare-col.highlight .step-list li { background: rgba(255,255,255,.1); }
.faq-list { display: grid; gap: 14px; margin-top: 28px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow-soft); }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.faq-item p { margin: 0; }
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
}
