/* ═══════════════════════════════════════════════════════════
   DataMeans — Energy Intelligence
   Design system: cool data-driven blue, energy-green savings accent.
   ═══════════════════════════════════════════════════════════ */
:root {
  --primary: #4F90CC;
  --primary-600: #3E7CB8;
  --primary-700: #2C5F92;
  --accent: #B3CFE8;
  --energy: #15A97B;
  --energy-soft: #E2F5EE;
  --warn: #E0992E;

  --ink: #141A22;
  --ink-2: #1C2530;
  --ink-3: #27313E;

  --bg: #ffffff;
  --bg-soft: #F2F7FC;
  --bg-mist: #FAFCFE;

  --text: #1A222C;
  --text-muted: #5A6675;
  --border: #E2EAF2;

  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  --gradient-ink: linear-gradient(150deg, #0E1620 0%, #16202C 45%, #1B2A3A 100%);

  --shadow-sm: 0 2px 10px rgba(20, 40, 70, 0.05);
  --shadow-md: 0 10px 30px rgba(20, 40, 70, 0.09);
  --shadow-lg: 0 28px 60px rgba(16, 32, 56, 0.16);
  --radius: 18px;
  --radius-lg: 26px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
h1 { font-size: 3.25rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
a { text-decoration: none; }

.text-gradient {
  background: linear-gradient(120deg, #7FB6E6, #4F90CC);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-energy { color: var(--energy); }

/* ═══ NAVIGATION ═══ */
.navbar {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(226, 234, 242, 0.7) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 6px 24px rgba(20, 40, 70, 0.07);
}
.navbar-brand { padding: 0; }
.navbar-brand img {
  height: 38px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled .navbar-brand img { height: 32px; }

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-3) !important;
  margin: 0 0.15rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 9px;
  transition: all 0.25s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0; height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 55%; }
.nav-link:hover, .nav-link.active { color: var(--primary-700) !important; }

.nav-cta {
  background: var(--gradient-primary);
  color: #fff !important;
  padding: 0.55rem 1.35rem !important;
  border-radius: 10px;
  margin-left: 0.6rem;
  box-shadow: 0 6px 18px rgba(79, 144, 204, 0.32);
  transition: all 0.25s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { color: #fff !important; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(79, 144, 204, 0.42); }
.nav-login { color: var(--text-muted) !important; }

/* ═══ BUTTONS ═══ */
.btn-solid, .btn-ghost, .btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.9rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-solid {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(79, 144, 204, 0.35);
}
.btn-solid:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 34px rgba(79, 144, 204, 0.45); }
.btn-energy {
  background: linear-gradient(135deg, #19C08C, #12936A);
  color: #fff;
  box-shadow: 0 8px 24px rgba(21, 169, 123, 0.35);
}
.btn-energy:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 34px rgba(21, 169, 123, 0.45); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.4); color: #fff; transform: translateY(-3px); }
.btn-outline-blue {
  background: transparent;
  color: var(--primary-700);
  border-color: rgba(79, 144, 204, 0.45);
}
.btn-outline-blue:hover { background: rgba(79, 144, 204, 0.08); border-color: var(--primary); color: var(--primary-700); transform: translateY(-3px); }
.btn-arrow svg { transition: transform 0.3s ease; }
.btn-solid:hover .btn-arrow svg, .btn-energy:hover .btn-arrow svg { transform: translateX(4px); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  background: var(--gradient-ink);
  color: #fff;
  padding: 7rem 0 8rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(79, 144, 204, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 88% 78%, rgba(21, 169, 123, 0.16) 0%, transparent 48%);
  pointer-events: none;
}
/* faint data grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 80%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 144, 204, 0.16);
  border: 1px solid rgba(127, 182, 230, 0.32);
  color: #cfe3f5;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: #2ee6a6;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 230, 166, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .55; transform: scale(.82);} }

.hero h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.hero .lead {
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  max-width: 560px;
  margin-bottom: 2.2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.hero-trust .sep { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }
.hero-trust strong { color: #fff; font-weight: 700; }

/* Dashboard mockup */
.hero-shot {
  position: relative;
  border-radius: 14px;
  background: #1e2733;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(127,182,230,0.18);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.hero-shot:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.hero-shot__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #11181f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-shot__bar span { width: 11px; height: 11px; border-radius: 50%; background: #3a4654; }
.hero-shot__bar span:nth-child(1){ background:#ed6a5e;} .hero-shot__bar span:nth-child(2){ background:#f4be4f;} .hero-shot__bar span:nth-child(3){ background:#61c554;}
.hero-shot img { width: 100%; height: auto; display: block; }

.hero-badge-float {
  position: absolute;
  left: -22px; bottom: 34px;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.7rem;
  z-index: 3;
}
.hero-badge-float .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--energy-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-float .big { font-size: 1.25rem; font-weight: 800; color: var(--energy); line-height: 1; }
.hero-badge-float .small { font-size: 0.72rem; color: var(--text-muted); }

/* ═══ SECTION SHELL ═══ */
.section { padding: 5.5rem 0; }
.section--soft { background: var(--bg-soft); }
.section--mist { background: var(--bg-mist); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-label {
  display: inline-block;
  color: var(--primary-700);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.9rem;
}
.section-head h2 { font-size: 2.5rem; }
.section-head p { font-size: 1.12rem; }

/* ═══ PROBLEM / PAIN STRIP ═══ */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.pain-card .x {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: #FDECEC; color: #D9534F;
  display: flex; align-items: center; justify-content: center;
}
.pain-card h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.pain-card p { font-size: 0.92rem; margin: 0; }

/* ═══ FEATURE / LEISTUNGEN CARDS ═══ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,144,204,0.3);
}
.feature-icon {
  width: 58px; height: 58px; border-radius: 15px;
  background: linear-gradient(135deg, rgba(79,144,204,0.12), rgba(179,207,232,0.18));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.35rem;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.07); }
.feature-card h3 { font-size: 1.22rem; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.95rem; margin: 0; }

/* ═══ SAVINGS / STATS BAND ═══ */
.results {
  position: relative;
  background: var(--gradient-ink);
  overflow: hidden;
  padding: 5rem 0;
}
.results::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(21,169,123,0.18) 0%, transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(79,144,204,0.16) 0%, transparent 45%);
}
.results .container { position: relative; z-index: 1; }
.results-lead { color: rgba(255,255,255,0.72); font-size: 1.1rem; }
.results h2 { color: #fff; }
.savings-hero {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, #2ee6a6, #15a97b);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}
.stat .num { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 0.35rem; display: block; }
.stat .lbl { color: rgba(255,255,255,0.62); font-size: 0.85rem; }

/* ═══ SHOWCASE (image + text) ═══ */
.showcase-img {
  position: relative;
  border-radius: var(--radius-lg);
}
.showcase-img img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative; z-index: 1;
}
.showcase-img::after {
  content: '';
  position: absolute; inset: 18px -18px -18px 18px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  opacity: 0.22; z-index: 0;
}
.showcase-img--left::after { inset: 18px 18px -18px -18px; }

.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.check-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.5rem 0;
  color: var(--text);
  font-weight: 500;
}
.check-list li svg { flex-shrink: 0; margin-top: 3px; }

/* ═══ REFERENCE CARDS ═══ */
.ref-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.ref-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.ref-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(79,144,204,0.28); }
.ref-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-soft); }
.ref-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ref-card:hover .ref-card__img img { transform: scale(1.05); }
.ref-card__body { padding: 1.9rem; flex: 1; display: flex; flex-direction: column; }
.ref-tag {
  align-self: flex-start;
  background: rgba(79,144,204,0.1);
  color: var(--primary-700);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 0.9rem;
}
.ref-card__body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.ref-card__body .loc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.ref-card__body p { font-size: 0.95rem; }
.ref-card__body ul { padding-left: 1.1rem; margin: 0.5rem 0 0; }
.ref-card__body li { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.35rem; }
.ref-link { margin-top: auto; padding-top: 1.1rem; color: var(--primary-700); font-weight: 600; font-size: 0.9rem; display: inline-flex; gap: 0.35rem; align-items: center; }

/* ═══ STATEMENT / QUOTE ═══ */
.statement {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.statement__icon {
  width: 52px; height: 52px; margin: 0 auto 1.6rem;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(79,144,204,0.12), rgba(179,207,232,0.2));
  display: flex; align-items: center; justify-content: center;
}
.statement blockquote {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.statement figcaption {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary-700);
}
.statement figcaption::before {
  content: '';
  display: block;
  width: 44px; height: 2px;
  background: var(--primary);
  margin: 0 auto 1.1rem;
  border-radius: 2px;
}
@media (max-width: 700px) {
  .statement blockquote { font-size: 1.2rem; }
}

/* ═══ ABOUT / EXPERTISE PILLS ═══ */
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 1rem; }
.exp-pill {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; text-align: center;
}
.exp-pill .icon {
  width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 13px;
  background: linear-gradient(135deg, rgba(79,144,204,0.12), rgba(179,207,232,0.18));
  display: flex; align-items: center; justify-content: center;
}
.exp-pill h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.exp-pill p { font-size: 0.9rem; margin: 0; }

/* ═══ CTA ═══ */
.cta {
  position: relative;
  background: var(--gradient-primary);
  overflow: hidden;
  padding: 4.5rem 0;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 120%, rgba(255,255,255,0.18) 0%, transparent 50%);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: 2.5rem; }
.cta p { color: rgba(255,255,255,0.9); font-size: 1.15rem; }
.btn-on-primary {
  background: #fff; color: var(--primary-700);
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; padding: 0.95rem 2rem; border-radius: 12px;
  transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.btn-on-primary:hover { transform: translateY(-3px); color: var(--primary-700); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }

/* ═══ CONTACT ═══ */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-label { font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-control {
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  background: var(--bg-mist);
  transition: all 0.25s ease;
  width: 100%;
}
.form-control:hover { border-color: var(--accent); background: #fff; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79,144,204,0.12); outline: none; background: #fff; }

.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.contact-info-item .ci {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(79,144,204,0.12), rgba(179,207,232,0.2));
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; }
.contact-info-item a, .contact-info-item .val { color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.contact-info-item a:hover { color: var(--primary-700); }

.alert-error {
  background: #FDECEC; border: 1px solid #F5C6C6; color: #B23B36;
  border-radius: 11px; padding: 0.85rem 1.1rem; margin-bottom: 1.25rem; font-size: 0.92rem;
}

/* ═══ SUB-PAGE HERO ═══ */
.subhero {
  background: var(--gradient-ink);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.subhero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(79,144,204,0.22) 0%, transparent 50%);
}
.subhero .container { position: relative; z-index: 1; }
.subhero h1 { color: #fff; font-size: 2.8rem; }
.subhero p { color: rgba(255,255,255,0.78); font-size: 1.15rem; max-width: 640px; margin: 0 auto; }

/* ═══ THANK YOU ═══ */
.thanks { text-align: center; padding: 5rem 1.5rem; }
.thanks .ico {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.75rem;
  background: var(--energy-soft);
  display: flex; align-items: center; justify-content: center;
}

/* ═══ LEGAL ═══ */
.legal {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 3rem 3.25rem;
  overflow-wrap: break-word;
}
.legal h2 { font-size: 1.4rem; margin-top: 2.25rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--border); }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin-top: 1.5rem; }
.legal p, .legal li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.legal ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.legal a { color: var(--primary-700); font-weight: 500; }
.legal a:hover { text-decoration: underline; }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.legal td { padding: 0.6rem 0; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal td:first-child { font-weight: 600; color: var(--ink); width: 200px; padding-right: 1.5rem; }

/* ═══ FOOTER ═══ */
.footer { background: var(--ink); color: rgba(255,255,255,0.66); padding: 4rem 0 2rem; margin-top: auto; }
.footer-brand img { height: 38px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: 0.92; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.93rem; }
.footer h6 { color: #fff; font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.62); font-size: 0.93rem; transition: all 0.25s ease; }
.footer-links a:hover { color: var(--primary); }
.footer-contact li { display: flex; gap: 0.55rem; align-items: flex-start; margin-bottom: 0.85rem; color: rgba(255,255,255,0.62); font-size: 0.93rem; }
.footer-contact a { color: rgba(255,255,255,0.62); }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; margin-top: 2.75rem; }
.footer-bottom p { font-size: 0.84rem; margin: 0; color: rgba(255,255,255,0.5); }

/* ═══ COOKIE BANNER ═══ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(20,26,34,0.97); backdrop-filter: blur(18px);
  padding: 1.1rem 0; z-index: 9999;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  border-top: 1px solid rgba(79,144,204,0.25);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin: 0; }
.cookie-banner a { color: var(--primary); }
.cookie-btn {
  background: var(--gradient-primary); color: #fff; border: none;
  padding: 0.6rem 1.5rem; border-radius: 9px; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; white-space: nowrap; transition: all 0.25s ease;
}
.cookie-btn:hover { transform: translateY(-1px); }

/* ═══ SCROLL ANIMATIONS ═══ */
/* Animations are gated behind .js so content is always visible without JavaScript
   (no-JS browsers, crawlers, print). With JS the elements start hidden and reveal on scroll. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }
.js .reveal-l { opacity: 0; transform: translateX(-30px); transition: all 0.75s cubic-bezier(0.4,0,0.2,1); }
.js .reveal-r { opacity: 0; transform: translateX(30px); transition: all 0.75s cubic-bezier(0.4,0,0.2,1); }
.js .reveal-l.in, .js .reveal-r.in { opacity: 1; transform: translateX(0); }

/* ═══ ACCESSIBILITY ═══ */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px; font-weight: 600; z-index: 10000; transition: top 0.3s ease;
}
.skip-link:focus { top: 0; color: #fff; }
*:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
  h1 { font-size: 2.6rem; }
  .hero { padding: 4.5rem 0 5rem; }
  .hero h1 { font-size: 2.7rem; }
  .hero-shot { transform: none; margin-top: 3rem; }
  .hero-shot:hover { transform: none; }
  .pain-grid, .feature-grid, .exp-grid, .stat-row { grid-template-columns: 1fr 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .savings-hero { font-size: 3.5rem; }
  .showcase-img::after { display: none; }
  .section-head h2, .cta h2 { font-size: 2rem; }
}
@media (max-width: 700px) {
  .hero h1 { font-size: 2.1rem; }
  .pain-grid, .feature-grid, .exp-grid, .stat-row { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-solid, .hero-cta .btn-ghost { justify-content: center; }
  .hero-badge-float { left: 12px; bottom: 12px; }
  .legal { padding: 2rem 1.4rem; }
  .legal td:first-child { width: 130px; }
  .quote-band p { font-size: 1.2rem; }
  .savings-hero { font-size: 2.8rem; }
  .contact-card { padding: 1.6rem; }
  .navbar-collapse {
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    padding: 0.75rem; margin-top: 0.75rem; box-shadow: var(--shadow-md);
  }
  .nav-cta, .nav-login { margin-left: 0; display: inline-block; margin-top: 0.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; }
}
