/* ═══════════════════════════════════════════════════════════
   MK-United — Premium Business Website
   Brand: Black #000000 | DarkBlue #1B1464 | Magenta #9E005D
   ═══════════════════════════════════════════════════════════ */

/* ── SELF-HOSTED FONTS ──────────────────────────────────── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dm-sans-normal-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dm-sans-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dm-sans-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:   #000000;
  --blue:    #1B1464;
  --blue-l:  #2a1f8f;
  --magenta: #9E005D;
  --mag-l:   #c20073;
  --white:   #FFFFFF;
  --gray-50: #F8F8F8;
  --gray-100:#F0F0F0;
  --gray-200:#E0E0E0;
  --gray-400:#A0A0A0;
  --gray-600:#606060;
  --gray-800:#202020;

  --font-sans: 'DM Sans', 'Century Gothic', 'Futura', sans-serif;

  --max-w: 1280px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(0,0,0,.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.14);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.display-xl { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2.25rem, 5vw, 4rem);  font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
.display-md { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
.display-sm { font-size: clamp(1.35rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; }
.body-lg   { font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.7; color: var(--gray-600); font-weight: 400; }
.body-md   { font-size: 1rem; line-height: 1.65; color: var(--gray-600); }
.label     { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section   { padding: 7rem 0; }
.section-sm{ padding: 4rem 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto{ display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.flex-center{ display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; align-items: center; gap: 1rem; }
.text-center{ text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-640 { max-width: 640px; }
.max-800 { max-width: 800px; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; height: 72px;
  justify-content: space-between;
}
.nav-logo img { height: 36px; width: auto; object-fit: contain; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 1rem; font-size: 0.9rem; font-weight: 500;
  color: var(--gray-800); border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--blue); background: var(--gray-50); }
.nav-link.active { color: var(--blue); }
.nav-link.has-sub { position: relative; }
.nav-cta {
  margin-left: 1rem;
  background: var(--black); color: var(--white);
  padding: 0.6rem 1.4rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--blue); }
.nav-mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.nav-mobile-btn span {
  width: 24px; height: 2px; background: var(--black);
  display: block; transition: var(--transition);
  transform-origin: center;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 10px;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,20,100,.3); }
.btn-secondary { background: transparent; color: var(--black); border-color: rgba(0,0,0,.2); }
.btn-secondary:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.btn-magenta { background: var(--magenta); color: var(--white); }
.btn-magenta:hover { background: var(--mag-l); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--gray-100); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; border-radius: 8px; }
.btn-icon { padding: 0.875rem; border-radius: 10px; }
.btn svg { width: 18px; height: 18px; }

/* ── CHIPS / BADGES ──────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
}
.chip-blue { background: rgba(27,20,100,.08); color: var(--blue); }
.chip-magenta { background: rgba(158,0,93,.08); color: var(--magenta); }
.chip-dark { background: rgba(0,0,0,.06); color: var(--gray-800); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: 72px;
  display: grid; place-items: center;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(27,20,100,.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(158,0,93,.03) 0%, transparent 60%);
}
.hero-grid-line {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 75%);
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  position: relative;
}
.hero-tag { margin-bottom: 1.5rem; }
.hero-headline { margin-bottom: 1.75rem; }
.hero-headline em { font-style: normal; color: var(--blue); }
.hero-sub { margin-bottom: 2.5rem; max-width: 500px; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-metrics {
  display: flex; gap: 3rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--gray-100);
}
.hero-metric-value { font-size: 2rem; font-weight: 800; color: var(--black); line-height: 1; }
.hero-metric-label { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.25rem; font-weight: 500; }
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid var(--gray-100);
}
.hero-card-header {
  background: var(--black); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-card-dots { display: flex; gap: 0.4rem; }
.hero-card-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.hero-card-title { color: rgba(255,255,255,.7); font-size: 0.8rem; font-weight: 600; }
.hero-card-body { padding: 1.5rem; }
.hero-stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100);
}
.hero-stat-row:last-child { border-bottom: none; }
.hero-stat-name { font-size: 0.85rem; color: var(--gray-600); }
.hero-stat-val { font-size: 1.1rem; font-weight: 700; }
.hero-stat-pos { color: #15803d; }
.hero-stat-neg { color: var(--magenta); }
.hero-badge-float {
  position: absolute; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem; border: 1px solid var(--gray-100);
}
.hero-badge-float.top-right { top: -1.5rem; right: -2rem; }
.hero-badge-float.bottom-left { bottom: -1.5rem; left: -2rem; }
.hbf-value { font-size: 1.5rem; font-weight: 800; }
.hbf-label { font-size: 0.75rem; color: var(--gray-600); }

/* ── SECTION LABELS ──────────────────────────────────────── */
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--magenta);
}
.section-label::before {
  content: ''; width: 20px; height: 2px; background: var(--magenta);
}

/* ── PROBLEM SECTION ─────────────────────────────────────── */
.section-problem {
  background: var(--black); color: var(--white);
}
.problem-intro { margin-bottom: 4rem; }
.problem-intro .section-label { color: rgba(255,255,255,.5); }
.problem-intro .section-label::before { background: rgba(255,255,255,.3); }
.problem-headline { color: var(--white); margin-bottom: 1rem; }
.problem-headline em { font-style: normal; color: rgba(158,0,93,.85); }
.problem-sub { color: rgba(255,255,255,.75); max-width: 560px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(255,255,255,.06); }
.problem-item {
  background: rgba(255,255,255,.02); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: var(--transition);
}
.problem-item:hover { background: rgba(255,255,255,.04); }
.problem-item::before {
  content: attr(data-num);
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 3rem; font-weight: 800;
  color: rgba(255,255,255,.04); line-height: 1;
}
.problem-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(158,0,93,.15); margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.problem-icon svg { width: 20px; height: 20px; stroke: var(--magenta); }
.problem-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--white); }
.problem-text { font-size: 0.9rem; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ── PROFIT-TO-TECH SECTION ─────────────────────────────── */
.section-ptt { background: var(--gray-50); }
.ptt-header { margin-bottom: 5rem; }
.ptt-brand {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--blue); letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.5rem;
}
.ptt-brand sup { font-size: 0.5em; font-weight: 700; color: var(--magenta); margin-top: -0.5em; }
.ptt-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ptt-phase {
  background: var(--white); padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.ptt-phase:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ptt-phase-num {
  font-size: 5rem; font-weight: 800; line-height: 1;
  color: var(--gray-100); position: absolute;
  top: 1.5rem; right: 1.5rem;
  letter-spacing: -0.05em;
}
.ptt-phase-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--magenta); margin-bottom: 1rem;
}
.ptt-phase-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.ptt-phase-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.ptt-phase-items { display: flex; flex-direction: column; gap: 0.6rem; }
.ptt-phase-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--gray-800);
}
.ptt-phase-item::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 0.45rem;
}

/* ── SERVICES SECTION ────────────────────────────────────── */
.section-services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
}
.service-card {
  background: var(--white); padding: 2.5rem 2rem;
  transition: var(--transition); position: relative; overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  transform: scaleX(0); transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { background: var(--gray-50); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--black); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--white); }
.service-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ── INDUSTRIES SECTION ──────────────────────────────────── */
.section-industries { background: var(--black); color: var(--white); }
.industries-header .section-label { color: rgba(255,255,255,.4); }
.industries-header .section-label::before { background: rgba(255,255,255,.2); }
.industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.06); margin-top: 4rem;
}
.industry-card {
  background: rgba(255,255,255,.01); padding: 2rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition); cursor: pointer; position: relative;
  overflow: hidden; text-decoration: none; color: var(--white);
}
.industry-card:hover { background: rgba(255,255,255,.04); }
.industry-card-left { display: flex; align-items: center; gap: 1rem; }
.industry-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(27,20,100,.4); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.industry-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.7); }
.industry-name { font-size: 0.95rem; font-weight: 600; }
.industry-count { font-size: 0.78rem; color: rgba(255,255,255,.65); margin-top: 0.1rem; }
.industry-arrow {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.industry-card:hover .industry-arrow {
  background: var(--magenta); transform: translate(2px, -2px);
}
.industry-arrow svg { width: 14px; height: 14px; stroke: var(--white); }

/* ── ROI CALCULATOR ──────────────────────────────────────── */
.section-roi { background: var(--white); }
.roi-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.roi-form-card {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1px solid var(--gray-200);
}
.roi-form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 2rem; }
.roi-field { margin-bottom: 1.5rem; }
.roi-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--gray-800);
}
.roi-label span { color: var(--gray-400); font-weight: 400; }
.roi-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 99px; background: var(--gray-200);
  outline: none; cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); cursor: pointer;
  box-shadow: 0 2px 8px rgba(27,20,100,.3);
}
.roi-value { text-align: right; font-size: 0.9rem; font-weight: 700; color: var(--blue); }
.roi-result-card {
  background: var(--blue); border-radius: var(--radius-lg);
  padding: 3rem; color: var(--white); position: sticky; top: 100px;
}
.roi-result-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 2rem; }
.roi-result-main { margin-bottom: 2.5rem; }
.roi-result-label { font-size: 0.85rem; color: rgba(255,255,255,.6); margin-bottom: 0.25rem; }
.roi-result-value { font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.roi-result-unit { font-size: 1rem; font-weight: 400; }
.roi-breakdown { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.roi-breakdown-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 1rem; background: rgba(255,255,255,.08);
  border-radius: 8px; font-size: 0.875rem;
}
.roi-breakdown-val { font-weight: 700; }
.roi-btn { width: 100%; justify-content: center; }
.roi-input {
  width: 100%; padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-family: var(--font-sans); font-size: 0.95rem;
  background: var(--white); transition: var(--transition);
}
.roi-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,20,100,.1); }

/* ── ABOUT / WHY SECTION ─────────────────────────────────── */
.section-why { background: var(--gray-50); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.why-visual {
  background: var(--black); border-radius: var(--radius-lg);
  overflow: hidden; position: relative; min-height: 480px;
}
.why-visual-inner { padding: 3rem; height: 100%; }
.why-visual-title { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 2rem; }
.why-value-list { display: flex; flex-direction: column; gap: 1rem; }
.why-value {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: rgba(255,255,255,.04);
  border-radius: 10px; border: 1px solid rgba(255,255,255,.06);
}
.why-value-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-value-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.why-value-text { font-size: 0.8rem; color: rgba(255,255,255,.45); line-height: 1.5; }

.why-content .section-label { color: var(--magenta); }
.why-points { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.75rem; }
.why-point { display: flex; gap: 1.25rem; }
.why-point-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(27,20,100,.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-point-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.why-point-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.why-point-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ── TRUST / TESTIMONIALS ────────────────────────────────── */
.section-trust { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testimonial-card {
  background: var(--gray-50); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--gray-200); transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.testimonial-stars { color: #f59e0b; margin-bottom: 1rem; display: inline-flex; gap: 3px; }
.testimonial-stars svg { width: 16px; height: 16px; display: block; }
.testimonial-text { font-size: 0.925rem; line-height: 1.7; color: var(--gray-800); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.875rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; }
.testimonial-role { font-size: 0.78rem; color: var(--gray-400); }

/* ── CTA SECTION ─────────────────────────────────────────── */
.section-cta {
  background: var(--blue);
  color: var(--white);
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 0% 50%, rgba(158,0,93,.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(27,20,100,.6) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner .section-label { color: rgba(255,255,255,.5); justify-content: center; }
.cta-inner .section-label::before { background: rgba(255,255,255,.3); }
.cta-headline { color: var(--white); margin: 1rem 0; }
.cta-sub { color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-guarantee {
  margin-top: 2rem; font-size: 0.8rem;
  color: rgba(255,255,255,.45); display: flex;
  align-items: center; justify-content: center; gap: 0.5rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black); color: var(--white);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-brand .footer-logo { height: 32px; width: auto; object-fit: contain; display: block; margin-bottom: 1.25rem; }
.footer-brand-text { font-size: 0.875rem; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,.75); transition: var(--transition); }
.footer-link:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,.65);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-bottom-link:hover { color: rgba(255,255,255,.7); }

/* ── INNER PAGE HERO ─────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 6rem; background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 0% 0%, rgba(27,20,100,.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(158,0,93,.03) 0%, transparent 60%);
}
.page-hero-content { position: relative; }
.page-hero-content .chip { margin-bottom: 1.25rem; }
.page-hero-title { margin: 1.25rem 0; }
.page-hero-title em { font-style: normal; color: var(--blue); }
.page-hero-sub { max-width: 600px; }

/* ── SERVICES NAV ────────────────────────────────────────── */
.services-nav {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding: 1rem 0; border-bottom: 1px solid var(--gray-200);
}
.service-nav-item {
  padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  color: var(--gray-600); background: var(--gray-100);
  transition: var(--transition); text-decoration: none;
}
.service-nav-item:hover { background: var(--blue); color: var(--white); }

/* ── SERVICE BLOCKS (leistungen.html) ────────────────────── */
.service-block { border-bottom: 1px solid var(--gray-100); }
.service-block-alt { background: var(--gray-50); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.service-grid-rev .service-visual { order: -1; }

.service-number {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em;
  color: var(--gray-400); text-transform: uppercase; margin-bottom: 0.5rem;
}
.service-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.service-list-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--gray-800); line-height: 1.5;
}
.service-check { color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 0.05em; display: inline-flex; }
.service-check svg { width: 1.1em; height: 1.1em; display: block; }
.ico-arrow { width: 1em; height: 1em; flex-shrink: 0; vertical-align: -0.12em; }
.ico-check { width: 1em; height: 1em; vertical-align: -0.14em; }
.bdg-icon svg, .anl-icon svg, .ptt-check-item span svg { width: 1em; height: 1em; display: block; }
.service-kpi-row { display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.service-kpi { display: flex; flex-direction: column; gap: 0.2rem; }
.service-kpi-value { font-size: 1.4rem; font-weight: 800; color: var(--black); }
.service-kpi-label { font-size: 0.75rem; color: var(--gray-400); }

/* Service Card Visual */
.service-card-visual {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200); overflow: hidden;
}
.scv-header {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-100);
}
.scv-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(158,0,93,.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.scv-icon svg { width: 18px; height: 18px; stroke: var(--magenta); }
.scv-title { font-size: 0.875rem; font-weight: 700; }
.scv-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0; }
.scv-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 0; border-bottom: 1px solid var(--gray-100); font-size: 0.875rem;
}
.scv-row:last-child { border-bottom: none; }
.scv-label { color: var(--gray-600); }
.scv-val { font-weight: 700; }
.scv-pos { color: #16a34a; }
.scv-neg { color: var(--magenta); }
.scv-total { background: var(--gray-50); padding: 0.75rem; border-radius: 8px; margin-top: 0.5rem; border: none !important; }
.scv-footer {
  padding: 0.75rem 1.5rem; background: var(--gray-50);
  font-size: 0.75rem; color: var(--gray-400); border-top: 1px solid var(--gray-100);
}
.scv-timeline-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0; font-size: 0.875rem; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.scv-timeline-item:last-child { border-bottom: none; }
.scv-tl-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--gray-300);
  flex-shrink: 0;
}
.scv-tl-dot.scv-done { background: #16a34a; border-color: #16a34a; }
.scv-tl-dot.scv-active { background: var(--blue); border-color: var(--blue); }
.scv-tag-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0.5rem 0; }
.scv-tag {
  padding: 0.3rem 0.75rem; background: var(--gray-100); border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; color: var(--gray-800);
}

/* Steps Visual */
.service-steps-visual { display: flex; flex-direction: column; gap: 0; }
.ssv-step {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem; background: var(--white); border: 1px solid var(--gray-200);
  margin-bottom: -1px; transition: var(--transition);
}
.ssv-step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.ssv-step:last-child { border-radius: 0 0 var(--radius) var(--radius); margin-bottom: 0; }
.ssv-step:hover { border-color: var(--blue); z-index: 1; }
.ssv-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}

/* Service Mini Cards */
.service-mini-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative;
}
.service-mini-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.smc-num {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  color: var(--gray-400); text-transform: uppercase; margin-bottom: 1rem;
}
.smc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(27,20,100,.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.smc-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.smc-title { margin-bottom: 0.6rem; }
.smc-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ── PROFIT-TO-TECH PAGE ─────────────────────────────────── */
.ptt-page-hero {
  padding-top: 72px; background: var(--white); position: relative; overflow: hidden;
}
.ptt-hero-brand {
  font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 800;
  color: var(--blue); letter-spacing: -0.04em; line-height: 1;
  margin: 1.5rem 0 0;
}
.ptt-hero-brand sup { font-size: 0.3em; color: var(--magenta); vertical-align: super; margin-left: 0.1em; }
.ptt-hero-metrics {
  display: flex; justify-content: center; gap: 0; margin-top: 5rem;
  border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.ptt-hero-metric { padding: 2rem 3rem; text-align: center; }
.ptt-hero-metric-div { width: 1px; background: var(--gray-200); }
.ptt-hm-value { font-size: 2.25rem; font-weight: 800; color: var(--black); }
.ptt-hm-label { font-size: 0.8rem; color: var(--gray-400); margin-top: 0.25rem; }

.ptt-problem-stats { display: flex; flex-direction: column; gap: 1.5rem; }
.ptt-problem-stat {
  padding: 1.5rem; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
}
.ppp-value { font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.4rem; }
.ppp-label { font-size: 0.875rem; color: rgba(255,255,255,.5); }

.ptt-formula {
  display: flex; align-items: stretch; gap: 0; margin-top: 3rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); overflow: hidden;
  box-shadow: var(--shadow);
}
.ptt-formula-step {
  flex: 1; padding: 2rem 1.5rem; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0.6rem;
  border-right: 1px solid var(--gray-100);
}
.ptt-formula-step:last-child { border-right: none; }
.ptt-formula-step strong { font-size: 0.95rem; }
.ptt-formula-step span { font-size: 0.8rem; color: var(--gray-600); }
.ptt-formula-arrow { display: none; }
.pff-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
}

/* PTT Phase Blocks */
.ptt-phase-block {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 2rem;
}
.ptt-pb-header {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 2rem 2.5rem; background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.ptt-pb-num {
  width: 48px; height: 48px; border-radius: 12px; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
}
.ptt-pb-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.2rem; }
.ptt-pb-title { margin: 0; }
.ptt-pb-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 2.5rem; }
.ptt-pb-text .body-lg { color: var(--gray-600); }
.ptt-pb-deliverables { margin-top: 1.5rem; }
.ptt-pb-del-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.75rem; }
.ptt-pb-visual { display: flex; align-items: flex-start; }
.ptt-pb-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem; flex: 1;
}
.ptt-check-list { display: flex; flex-direction: column; gap: 0.4rem; }
.ptt-check-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0.75rem; border-radius: 6px; font-size: 0.875rem;
}
.ptt-done { background: rgba(22,163,74,.08); color: var(--gray-700); }
.ptt-done span { color: #16a34a; font-weight: 700; }
.ptt-active { background: rgba(27,20,100,.08); color: var(--blue); font-weight: 600; }
.ptt-active span { color: var(--blue); font-weight: 700; }
.ptt-progress-list { display: flex; flex-direction: column; gap: 1rem; }
.ptt-progress-item { display: flex; flex-direction: column; gap: 0.4rem; }
.ptt-pi-header { display: flex; justify-content: space-between; font-size: 0.85rem; }
.ptt-pi-bar {
  height: 6px; background: var(--gray-200); border-radius: 999px; overflow: hidden;
}
.ptt-pi-fill { height: 100%; border-radius: 999px; transition: width 1s ease; }

/* PTT Comparison */
.ptt-compare-table {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden;
}
.ptt-compare-header, .ptt-compare-row {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr;
}
.ptt-compare-header {
  background: var(--gray-50); border-bottom: 2px solid var(--gray-200);
}
.ptt-compare-row { border-bottom: 1px solid var(--gray-100); }
.ptt-compare-row:last-child { border-bottom: none; }
.ptt-compare-row:hover { background: var(--gray-50); }
.ptt-ch-empty { padding: 1rem 1.5rem; }
.ptt-ch-label { padding: 1rem 1.5rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.ptt-ch-us { color: var(--blue); }
.ptt-ch-them { color: var(--gray-400); }
.ptt-cr-label { padding: 1rem 1.5rem; font-size: 0.875rem; font-weight: 600; color: var(--gray-600); }
.ptt-cr-us { padding: 1rem 1.5rem; font-size: 0.875rem; color: var(--blue); font-weight: 600; }
.ptt-cr-them { padding: 1rem 1.5rem; font-size: 0.875rem; color: var(--gray-400); }
.ptt-stat-card {
  background: rgba(255,255,255,.06); border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(255,255,255,.08); text-align: center;
}
.ptt-stat-value { font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 0.5rem; }
.ptt-stat-label { font-size: 0.875rem; color: rgba(255,255,255,.7); font-weight: 600; }
.ptt-stat-sub { font-size: 0.75rem; color: rgba(255,255,255,.65); margin-top: 0.25rem; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; }
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-form-header { margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--gray-800); }
.form-input {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--black);
  background: var(--white); transition: var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,20,100,.1); }
.form-input::placeholder { color: var(--gray-400); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-checkbox {
  width: 18px; height: 18px; border: 1.5px solid var(--gray-300);
  border-radius: 4px; cursor: pointer; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--blue);
}
.form-check-label { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }
.form-link { color: var(--blue); text-decoration: underline; }
.form-footnote { font-size: 0.78rem; color: var(--gray-400); text-align: center; }
.contact-submit { width: 100%; justify-content: center; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 100px; }
.contact-info-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.75rem;
}
.contact-info-title { margin-bottom: 1.5rem; }
.contact-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-step { display: flex; align-items: flex-start; gap: 1rem; }
.cs-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--blue);
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-step .body-md { margin-top: 0.2rem; font-size: 0.82rem; }
.contact-trust-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 1.5rem;
}
.contact-trust-stars { color: #f59e0b; margin-bottom: 0.75rem; display: inline-flex; gap: 3px; }
.contact-trust-stars svg { width: 16px; height: 16px; display: block; }
.contact-trust-quote { font-size: 0.875rem; color: var(--gray-800); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.contact-trust-author { display: flex; align-items: center; gap: 0.75rem; }
.contact-trust-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.contact-trust-name { font-size: 0.82rem; font-weight: 700; }
.contact-trust-role { font-size: 0.75rem; color: var(--gray-400); }
.contact-guarantee-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(27,20,100,.05); border: 1px solid rgba(27,20,100,.12);
  border-radius: var(--radius); padding: 1.25rem;
}
.cgc-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cgc-icon svg { width: 18px; height: 18px; stroke: var(--white); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-mission-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.amv-card {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 2.5rem; color: var(--white);
}
.amv-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.amv-quote { font-size: 1.1rem; line-height: 1.7; font-style: italic; color: rgba(255,255,255,.85); margin-bottom: 1.25rem; }
.amv-author { font-size: 0.8rem; color: rgba(255,255,255,.4); }
.amv-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.amv-stat { background: var(--white); padding: 1.25rem; text-align: center; }
.amv-stat-val { font-size: 1.4rem; font-weight: 800; color: var(--black); display: block; }
.amv-stat-lbl { font-size: 0.75rem; color: var(--gray-400); display: block; margin-top: 0.2rem; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.vc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(27,20,100,.08); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.vc-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.vc-title { margin-bottom: 0.6rem; }
.vc-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

.about-not-list { display: flex; flex-direction: column; gap: 0.75rem; }
.anl-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; border-radius: 10px; font-size: 0.9rem;
}
.anl-no { background: rgba(255,255,255,.04); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.08); }
.anl-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.75rem; font-weight: 700; }
.anl-yes { background: rgba(27,20,100,.6); color: var(--white); font-weight: 700; border: 1px solid rgba(27,20,100,.8); }
.anl-yes-icon { background: var(--blue); color: var(--white); }

.about-numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.an-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: var(--transition);
}
.an-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.an-value { font-size: 2.25rem; font-weight: 800; color: var(--black); line-height: 1; margin-bottom: 0.5rem; }
.an-label { font-size: 0.875rem; font-weight: 600; color: var(--black); }
.an-sub { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.25rem; }

/* ── ROI-Verlaufskurve ───────────────────────────────────── */
.roi-curve-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow);
}
.roi-curve-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.roi-curve-note { font-size: 0.8rem; color: var(--gray-400); }

/* ── Editorial Photo Strips ──────────────────────────────── */
.photo-strip { position: relative; z-index: 2; }
.photo-strip img {
  width: 100%; height: auto; aspect-ratio: 21 / 9; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block;
}
.photo-strip--overlap { margin-top: -8rem; }
.page-hero.has-photo, .branche-hero.has-photo { padding-bottom: 14rem; border-bottom: 0; }
.boc-img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 10px; margin-bottom: 1rem; display: block;
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition); text-align: center;
}
.team-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tc-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.25rem; font-weight: 700;
  margin: 0 auto 1.25rem;
}
.tc-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.tc-role { font-size: 0.82rem; color: var(--magenta); font-weight: 600; margin-bottom: 0.75rem; }
.tc-bio { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1rem; }
.tc-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }

/* ── BRANCHEN OVERVIEW ───────────────────────────────────── */
.branchen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.branche-overview-card {
  display: flex; flex-direction: column; gap: 0.75rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 2rem;
  text-decoration: none; color: var(--black);
  transition: var(--transition); position: relative; overflow: hidden;
}
.branche-overview-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.boc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.boc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.boc-icon svg { width: 20px; height: 20px; }
.boc-num { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; color: var(--gray-400); text-transform: uppercase; }
.boc-title { font-size: 1.1rem; font-weight: 700; }
.boc-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; flex: 1; }
.boc-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.boc-tag { padding: 0.25rem 0.6rem; background: var(--gray-100); border-radius: 999px; font-size: 0.72rem; font-weight: 600; color: var(--gray-600); }
.boc-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.branche-overview-card:hover .boc-arrow { background: var(--blue); color: var(--white); }

.branchen-diff-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.bdg-item { display: flex; align-items: flex-start; gap: 1rem; }
.bdg-icon {
  width: 28px; height: 28px; border-radius: 8px; background: rgba(27,20,100,.1);
  color: var(--blue); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bdg-item .body-md { font-size: 0.82rem; margin-top: 0.2rem; }

/* ── BRANCHEN PAGE ───────────────────────────────────────── */
.branche-hero {
  padding: 10rem 0 6rem; background: var(--black); color: var(--white);
  position: relative; overflow: hidden;
}
.branche-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(27,20,100,.5) 0%, transparent 60%);
}
.branche-hero-inner { position: relative; max-width: 700px; }
.branche-hero .section-label { color: rgba(255,255,255,.4); }
.branche-hero .section-label::before { background: rgba(255,255,255,.2); }
.branche-hero-title { color: var(--white); margin-bottom: 1.25rem; }
.branche-hero-sub { color: rgba(255,255,255,.6); max-width: 540px; margin-bottom: 2.5rem; }
.bm-row { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.branche-problems { margin-top: 4rem; }
.branche-solutions { margin-top: 4rem; }
.solution-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--gray-200);
  transition: var(--transition); display: flex; gap: 1.25rem;
}
.solution-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.solution-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(27,20,100,.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.solution-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.solution-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.solution-text { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; text-align: left; padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--black);
  cursor: pointer; transition: var(--transition);
  background: none; border: none; font-family: var(--font-sans);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--gray-600); transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--blue); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.925rem; color: var(--gray-600); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

.animate-fade-up { animation: fadeUp 0.7s cubic-bezier(.4,0,.2,1) forwards; opacity: 0; }
.animate-fade-up.delay-1 { animation-delay: 0.1s; }
.animate-fade-up.delay-2 { animation-delay: 0.2s; }
.animate-fade-up.delay-3 { animation-delay: 0.3s; }
.animate-fade-up.delay-4 { animation-delay: 0.4s; }

[data-scroll-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; will-change: transform, opacity; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
[data-scroll-animate].visible { opacity: 1; transform: translateY(0); will-change: auto; }

/* ── UTILS ──────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 4rem; }
.text-white { color: var(--white); }
.text-blue { color: var(--blue); }
.text-magenta { color: var(--magenta); }
.text-muted { color: var(--gray-600); }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.hidden { display: none; }

/* ── MOBILE NAV ──────────────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--white); padding: 6rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: block; padding: 1rem 0; font-size: 1.1rem; font-weight: 600;
  color: var(--black); border-bottom: 1px solid var(--gray-100);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-grid-rev .service-visual { order: 0; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .ptt-phases { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .roi-wrapper { grid-template-columns: 1fr; }
  .roi-result-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .ptt-hero-metrics { flex-wrap: wrap; }
  .ptt-hero-metric { flex: 1 1 45%; }
  .ptt-pb-content { grid-template-columns: 1fr; }
  .about-numbers-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .ptt-formula { flex-direction: column; }
  .ptt-formula-step { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .ptt-formula-step:last-child { border-bottom: none; }
  .ptt-compare-header, .ptt-compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 1199px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-metrics > * { min-width: 0; }
  .hero-metric-value { font-size: 1.6rem; }
  .bm-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .bm-row > * { min-width: 0; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .ptt-hero-metrics { flex-direction: column; }
  .ptt-hero-metric { padding: 1.5rem 2rem; }
  .ptt-hero-metric-div { width: 100%; height: 1px; }
  .roi-curve-card { padding: 1.5rem 1.25rem; }
  .photo-strip img { aspect-ratio: 4 / 3; }
  .photo-strip--overlap { margin-top: -6rem; }
  .page-hero.has-photo, .branche-hero.has-photo { padding-bottom: 11rem; }
  .about-numbers-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-numbers-grid > * { min-width: 0; }
  .an-card { padding: 1.5rem 1rem; }
  .an-value { font-size: 1.75rem; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .ptt-pb-header { flex-direction: column; gap: 1rem; }
  .ptt-compare-header, .ptt-compare-row { grid-template-columns: 1fr 1fr; }
  .ptt-ch-empty, .ptt-cr-label { display: none; }
  .ptt-ch-us, .ptt-ch-them { flex: 1; }
  .branchen-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .branche-overview-card { padding: 1.25rem; }
  .boc-tags { display: none; }
}

@media (max-width: 480px) {
  .branchen-grid { grid-template-columns: 1fr; }
  .about-numbers-grid { grid-template-columns: 1fr; }
  .an-card { padding: 1.75rem 1.5rem; }
}

/* ════════════════════════════════════════════════════════════
   V4 ENHANCEMENTS — Formular-Feedback, A11y, Design-Politur
   ════════════════════════════════════════════════════════════ */

/* ── KONTAKTFORMULAR: Status & Honeypot ──────────────────── */
.form-status {
  padding: 1rem 1.25rem; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 500; line-height: 1.5;
  margin-bottom: 1.5rem; border: 1px solid transparent;
}
.form-status.is-success {
  background: rgba(22, 130, 70, .08); color: #166534;
  border-color: rgba(22, 130, 70, .25);
}
.form-status.is-error {
  background: rgba(190, 18, 60, .07); color: #9f1239;
  border-color: rgba(190, 18, 60, .25);
}
.hp-field {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}
.contact-submit:disabled { opacity: .65; cursor: wait; }

/* ── FOKUS-ZUSTÄNDE (Tastatur-Navigation) ────────────────── */
:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .nav-cta:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
}
.form-input:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 20, 100, .15);
}

/* ── DESIGN-POLITUR: Tiefe, Hover, Hierarchie ────────────── */
.section { padding: clamp(4rem, 3rem + 4vw, 7rem) 0; }

.btn { position: relative; }
.btn-primary:hover {
  background: var(--blue); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 20, 100, .32);
}
.btn-magenta:hover {
  background: var(--mag-l); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(158, 0, 93, .35);
}
.btn-secondary:hover {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, .25); }
.btn-outline-white:hover { background: rgba(255, 255, 255, .12); border-color: var(--white); transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .1s; }
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 1rem; right: 1rem; bottom: 4px;
  height: 2px; background: linear-gradient(90deg, var(--blue), var(--magenta));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition); border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(27, 20, 100, .3); }

.an-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.an-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 18px 44px rgba(27, 20, 100, .14);
}

.hero-card { box-shadow: 0 32px 80px rgba(27, 20, 100, .22), 0 8px 24px rgba(0, 0, 0, .08); }

.contact-form-wrap, .contact-info-card {
  transition: box-shadow var(--transition);
}

.faq-question { transition: color var(--transition); }
.faq-question:hover { color: var(--blue); }

footer a { transition: color var(--transition), opacity var(--transition); }
footer a:hover { color: var(--white); opacity: 1; }

::selection { background: var(--magenta); color: var(--white); }

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-fade-up { opacity: 1; animation: none; }
  [data-scroll-animate] { opacity: 1; transform: none; }
  .btn:hover, .an-card:hover, .nav-cta:hover { transform: none; }
}

/* ── LEGAL CONTENT (Impressum / Datenschutz / AGB) ───────── */
.legal-block { margin-bottom: 2.5rem; }
.legal-h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--black); }
.legal-h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--black); }
.legal-h3-spaced { margin: 1.5rem 0 .5rem; }
.legal-p { line-height: 1.8; color: var(--gray-600); }
.legal-p-mt { margin-top: 1rem; }
.legal-strong { color: var(--black); }
.legal-link { color: var(--blue); }
.legal-link:hover { text-decoration: underline; }

/* ── LINK CARDS (Tools / Insights) ───────────────────────── */
.link-grid { display: grid; gap: 1.5rem; }
.link-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.link-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.link-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--magenta);
}
.link-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.link-card-icon svg { width: 32px; height: 32px; }
.link-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: .75rem;
}
.link-card-title { font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: .75rem; line-height: 1.3; }
.link-card-text { color: var(--gray-600); line-height: 1.7; flex-grow: 1; }
.link-card-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--transition), color var(--transition);
}
.link-card:hover .link-card-cta { color: var(--magenta); gap: .7rem; }
.link-card-cta .ico-arrow { width: 18px; height: 18px; }
@media (max-width: 991px) {
  .link-grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .link-grid-cols-2, .link-grid-cols-3 { grid-template-columns: 1fr; }
}

/* ── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 90;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.85);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover { box-shadow: var(--shadow-lg); }
.back-to-top:focus-visible {
  outline: none;
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(27,20,100,.25);
}
/* progress ring */
.back-to-top svg.btt-ring { position: absolute; inset: 0; width: 56px; height: 56px; transform: rotate(-90deg); }
.btt-ring-track { fill: none; stroke: var(--gray-200); stroke-width: 3; }
.btt-ring-bar {
  fill: none;
  stroke: url(#bttGrad);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset .1s linear;
}
/* arrow */
.btt-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition), transform var(--transition);
}
.back-to-top:hover .btt-arrow { stroke: var(--magenta); animation: bttBounce .6s var(--transition); }
@keyframes bttBounce {
  0%, 100% { transform: translateY(0); }
  40%      { transform: translateY(-4px); }
  70%      { transform: translateY(-1px); }
}
@media (max-width: 640px) {
  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; }
  .back-to-top svg.btt-ring { width: 48px; height: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity .2s linear, visibility .2s linear; transform: none; }
  .back-to-top.is-visible { transform: none; }
  .btt-ring-bar { transition: none; }
  .back-to-top:hover .btt-arrow { animation: none; }
}
