/* ===========================================================
   HEIMUND — Website Stylesheet (Corporate Design 1.0)
   Offizielle CI: Grün #00965E · Navy #326295 · Hellgrau #EBEFF4
   Schrift: Quivera (Display) + Mulish (Text)
   =========================================================== */

@font-face {
  font-family: 'Quivera';
  src: url('../fonts/Quivera.woff2') format('woff2'),
       url('../fonts/Quivera.ttf') format('truetype'),
       url('../fonts/Quivera.otf') format('opentype');
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --green:      #00965E;
  --green-deep: #007A4C;
  --green-darkest: #0C3A28;
  --blue:       #326295;
  --blue-deep:  #24395E;
  --light:      #EBEFF4;
  --ink:        #20304C;
  --muted:      #5E6B7E;
  --paper:      #FFFFFF;
  --bg-2:       #F1F3F7;
  --line:       #DEE4EC;
  --green-tint: #DCEFE8;
  --mint:       #7FD9B4;

  --display: 'Quivera', 'Poppins', system-ui, sans-serif;
  --sans: 'Mulish', system-ui, sans-serif;
  --maxw: 1200px;
  --r: 18px;
  --r-lg: 26px;
  --shadow-sm: 0 4px 18px -10px rgba(12,58,40,0.25);
  --shadow-md: 0 18px 44px -22px rgba(12,58,40,0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
h1,h2,h3,h4,h5 { margin: 0; font-family: var(--display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
image-slot { display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; max-width: 60ch; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(30px, 4.2vw, 44px); }
.section-header p { color: var(--muted); font-size: 19px; margin-top: 14px; }
.section-eyebrow { display: inline-block; font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }

/* ---------- Buttons ---------- */
.primary-button, .secondary-button {
  font-family: var(--sans); font-weight: 700; font-size: 15.5px; line-height: 1;
  padding: 15px 28px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  transition: transform .14s ease, background .16s, box-shadow .16s; white-space: nowrap;
}
.primary-button { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.primary-button:hover { background: var(--green-deep); transform: translateY(-2px); }
.secondary-button { background: transparent; border-color: var(--line); color: var(--ink); }
.secondary-button:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.primary-button.large, .secondary-button.large { padding: 18px 34px; font-size: 17px; }
/* on dark backgrounds */
.on-dark .secondary-button, .hero .secondary-button, .cta-section .secondary-button { border-color: rgba(255,255,255,0.5); color: #fff; }
.on-dark .secondary-button:hover, .hero .secondary-button:hover, .cta-section .secondary-button:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.hero .primary-button, .cta-section .primary-button { background: #fff; color: var(--green-deep); }
.hero .primary-button:hover, .cta-section .primary-button:hover { background: var(--mint); color: var(--green-darkest); }

/* ---------- Navbar ---------- */
.navbar { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.navbar.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(12,58,40,0.4); }
.nav-content { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.logo-img { height: 30px; width: auto; }
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; font-size: 15.5px; color: var(--ink); position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--green); border-radius: 2px; }
.nav-cta { padding: 12px 22px; font-size: 14.5px; }

/* mobile menu */
.mobile-menu-btn { display: none; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.mobile-menu-btn span { display: block; width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; margin: 0 auto; }
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 78px 0 0; background: #fff; z-index: 199; transform: translateX(100%); transition: transform .3s ease; padding: 30px 0; }
.mobile-menu.active { transform: translateX(0); }
.mobile-nav-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mobile-nav-links a { display: block; padding: 18px 40px; font-family: var(--display); font-weight: 700; font-size: 22px; border-bottom: 1px solid var(--line); }

/* ---------- Hero (Bild vollflächig) ---------- */
.hero { position: relative; overflow: hidden; color: #fff; background: var(--green-darkest); min-height: 520px; display: flex; align-items: center; }
.hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero .hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(8,40,28,0.93) 0%, rgba(10,44,32,0.78) 42%, rgba(36,57,94,0.45) 100%); }
.hero .container { position: relative; z-index: 2; padding-top: 74px; padding-bottom: 82px; }
.hero-text { max-width: 640px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.26); border-radius: 100px; padding: 8px 16px; font-weight: 700; font-size: 13px; letter-spacing: 0.03em; }
.hero-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.hero h1 { font-size: clamp(38px, 5vw, 58px); font-weight: 800; letter-spacing: -0.025em; margin: 22px 0 0; line-height: 1.05; color: #fff; }
.hero h1 .highlight { color: var(--mint); }
.hero .lead { font-size: 19px; color: rgba(255,255,255,0.92); margin-top: 22px; max-width: 46ch; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-badges .badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); border-radius: 100px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; }
.trust-badges .badge svg { stroke-width: 2; }

/* ---------- Problem ---------- */
.problem-section { padding: 96px 0; background: var(--bg-2); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px; }
.problem-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--green-tint); color: var(--green-deep); display: grid; place-items: center; margin-bottom: 22px; }
.problem-card h3 { font-size: 20px; }
.problem-card p { color: var(--muted); font-size: 15.5px; margin-top: 10px; }

/* ---------- Solution ---------- */
.solution-section { padding: 100px 0; }
.solution-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.solution-text h2 { font-size: clamp(28px, 3.6vw, 40px); margin-top: 8px; }
.solution-text > p { color: var(--muted); font-size: 18px; margin-top: 16px; }
.solution-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; }
.solution-list li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start; font-size: 16px; }
.solution-list svg { color: var(--green); margin-top: 2px; }
.solution-list strong { color: var(--ink); }
.solution-visual { display: grid; place-items: center; }
.speed-badge { background: linear-gradient(140deg, var(--green) 0%, var(--green-deep) 100%); color: #fff; border-radius: 28px; width: 260px; height: 260px; display: grid; place-content: center; text-align: center; box-shadow: var(--shadow-md); position: relative; }
.speed-number { font-family: var(--display); font-weight: 800; font-size: 96px; line-height: 0.9; }
.speed-unit { font-family: var(--display); font-weight: 700; font-size: 30px; }
.speed-text { font-size: 14px; font-weight: 600; opacity: 0.9; margin-top: 10px; letter-spacing: 0.02em; }

/* ---------- References Carousel ---------- */
.references-section { padding: 96px 0; background: var(--bg-2); }
.references-carousel { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; max-width: 920px; margin: 0 auto; }
.carousel-btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: all .15s; flex: none; }
.carousel-btn:hover:not(:disabled) { border-color: var(--green); color: var(--green); transform: scale(1.06); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; }
.carousel-track-container { overflow: hidden; }
.carousel-track { display: flex; transition: transform .45s cubic-bezier(0.4,0,0.2,1); }
.reference-card { min-width: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px; text-align: center; }
.reference-logo { font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--green); margin-bottom: 20px; }
.reference-quote { font-size: 20px; line-height: 1.55; color: var(--ink); margin: 0; font-weight: 500; }
.reference-author { margin-top: 22px; }
.author-name { font-weight: 700; color: var(--muted); font-size: 15px; }
.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: all .2s; }
.carousel-dot.active { background: var(--green); width: 26px; border-radius: 5px; }

/* ---------- Stats ---------- */
.stats-section { padding: 90px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 30px 18px; border-radius: var(--r); background: var(--green-tint); }
.stat-number { font-family: var(--display); font-weight: 800; font-size: 52px; color: var(--green-deep); line-height: 1; }
.stat-label { font-size: 15px; color: var(--ink); font-weight: 600; margin-top: 12px; }

/* ---------- How it works ---------- */
.how-it-works { padding: 100px 0; background: var(--blue-deep); color: #fff; }
.how-it-works .section-header h2 { color: #fff; }
.how-it-works .section-eyebrow { color: var(--mint); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r-lg); padding: 38px 32px; position: relative; }
.step-number { width: 50px; height: 50px; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--display); font-weight: 800; font-size: 22px; display: grid; place-items: center; margin-bottom: 22px; }
.step-card h3 { font-size: 21px; color: #fff; }
.step-card p { color: rgba(255,255,255,0.8); font-size: 15.5px; margin-top: 10px; }

/* ---------- Integration ---------- */
.integration-section { padding: 100px 0; }
.integration-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 22px; }
.integration-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px; position: relative; transition: transform .15s, box-shadow .15s, border-color .15s; }
.integration-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-tint); }
.integration-icon { color: var(--green); margin-bottom: 18px; }
.integration-card h3 { font-size: 18px; }
.integration-card p { color: var(--muted); font-size: 14.5px; margin-top: 9px; }
.enterprise-badge, .popular-badge { position: absolute; top: 18px; right: 18px; background: #DCE6F1; color: var(--blue); font-weight: 800; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; }

/* ---------- Compliance ---------- */
.compliance-section { padding: 100px 0; background: var(--bg-2); }
.compliance-content { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.compliance-text h2 { font-size: clamp(28px, 3.6vw, 40px); margin-top: 8px; }
.compliance-text p { color: var(--muted); font-size: 18px; margin-top: 16px; }
.compliance-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compliance-badge { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.compliance-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-tint); color: var(--green-deep); display: grid; place-items: center; flex: none; }
.compliance-info { display: flex; flex-direction: column; gap: 3px; }
.compliance-info strong { font-family: var(--display); font-size: 16px; }
.compliance-info span { color: var(--muted); font-size: 14px; }

/* ---------- Pricing Teaser ---------- */
.pricing-teaser { padding: 100px 0; }
.pricing-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; align-items: stretch; }
.pricing-preview-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px; display: flex; flex-direction: column; position: relative; }
.pricing-preview-card.featured { border-color: var(--green); box-shadow: var(--shadow-md); }
.pricing-preview-card h4 { font-size: 22px; }
.pricing-preview-card .price { font-family: var(--display); font-weight: 800; font-size: 40px; color: var(--green-deep); margin: 14px 0 0; }
.pricing-preview-card .price span { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--muted); }
.price-desc { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
.pricing-features-short { list-style: none; margin: 22px 0 28px; padding: 0; display: grid; gap: 11px; }
.pricing-features-short li { padding-left: 28px; position: relative; font-size: 15px; }
.pricing-features-short li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 12px; height: 7px; border-left: 2.4px solid var(--green); border-bottom: 2.4px solid var(--green); transform: rotate(-45deg); }
.pricing-preview-card .primary-button, .pricing-preview-card .secondary-button { margin-top: auto; justify-content: center; }
.teaser-cta { text-align: center; margin-top: 36px; }
.teaser-link { font-weight: 700; color: var(--green); font-size: 16px; }
.teaser-link:hover { color: var(--green-deep); }

/* ---------- Hortmund Teaser ---------- */
.hortmund-teaser { padding: 100px 0; background: var(--bg-2); }
.hortmund-content { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hortmund-text h2 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 8px; }
.hortmund-text p { color: var(--muted); font-size: 17px; margin: 16px 0 24px; }
.hortmund-features { display: grid; gap: 14px; }
.hortmund-feature { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; font-weight: 600; font-size: 16px; }
.hortmund-feature svg { color: var(--green); flex: none; }

/* ---------- Mail-Assistent Teaser ---------- */
.mail-teaser { padding: 100px 0; background: var(--paper); }
.mail-teaser .highlight-feature { background: var(--green-tint); border-color: transparent; }
.mail-teaser .highlight-feature svg { color: var(--green-deep); }

/* ---------- Final CTA ---------- */
.cta-section { padding: 110px 0; position: relative; overflow: hidden; background: var(--green-deep); color: #fff; }
.cta-content { text-align: center; max-width: 60ch; margin: 0 auto; }
.cta-content h2 { font-size: clamp(32px, 4.6vw, 50px); color: #fff; }
.cta-content > p { font-size: 19px; opacity: 0.92; margin-top: 16px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-subtext { margin-top: 26px; font-size: 15px; opacity: 0.9; }
.cta-subtext a { color: #fff; text-decoration: underline; font-weight: 700; }

/* ---------- Phone Popup ---------- */
.phone-popup-overlay { position: fixed; inset: 0; background: rgba(12,40,30,0.55); backdrop-filter: blur(4px); z-index: 300; display: none; align-items: center; justify-content: center; padding: 24px; }
.phone-popup-overlay.active { display: flex; }
.phone-popup { background: #fff; border-radius: var(--r-lg); padding: 44px; text-align: center; max-width: 380px; width: 100%; position: relative; box-shadow: var(--shadow-md); }
.phone-popup-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 30px; line-height: 1; color: var(--muted); cursor: pointer; }
.phone-popup-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green-tint); color: var(--green-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.phone-popup h3 { font-size: 24px; }
.phone-popup-number { display: block; font-family: var(--display); font-weight: 800; font-size: 26px; color: var(--green); margin: 14px 0 8px; }
.phone-popup-hours { color: var(--muted); font-size: 15px; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-deep); color: #fff; padding: 64px 0 48px; }
.footer-content { display: grid; gap: 30px; }
.footer-logo-img { height: 30px; width: auto; }
.footer-links { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; border-top: 1px solid rgba(255,255,255,0.14); border-bottom: 1px solid rgba(255,255,255,0.14); padding: 26px 0; }
.footer-links-left, .footer-links-right { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.82); font-weight: 600; font-size: 15px; }
.footer-links a:hover { color: var(--mint); }
.footer-text { font-size: 14px; opacity: 0.7; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero { background: var(--blue-deep); color: #fff; padding: 90px 0 80px; text-align: center; }
.page-hero .section-eyebrow { color: var(--mint); }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); color: #fff; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 19px; max-width: 56ch; margin: 16px auto 0; }

/* ---------- Reveal animation ---------- */
.revealed { opacity: 1 !important; transform: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .solution-content, .compliance-content, .hortmund-content { grid-template-columns: 1fr; gap: 40px; }
  .integration-grid, .compliance-badges { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .problem-grid, .steps-grid, .pricing-preview { grid-template-columns: 1fr; }
  .hero .container { padding-top: 64px; padding-bottom: 72px; }
  .section-header { margin-bottom: 40px; }
  section, .problem-section, .solution-section, .references-section, .stats-section,
  .how-it-works, .integration-section, .compliance-section, .pricing-teaser, .hortmund-teaser, .mail-teaser { padding: 64px 0; }
}
@media (max-width: 540px) {
  .integration-grid, .compliance-badges, .stats-grid { grid-template-columns: 1fr; }
  .reference-card { padding: 30px 24px; }
  .reference-quote { font-size: 17px; }
}

/* ---------- Bild-Erweiterungen ---------- */
.solution-media { position: relative; width: 100%; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 60px -28px rgba(12,58,40,0.55); }
.solution-media img { display: block; width: 100%; height: 440px; object-fit: cover; object-position: center; }
.solution-media .speed-badge { position: absolute; right: 22px; bottom: 22px; width: 172px; height: 172px; border-radius: 24px; box-shadow: 0 18px 38px -14px rgba(0,0,0,0.55); }
.solution-media .speed-number { font-size: 64px; }
.solution-media .speed-unit { font-size: 22px; }
.solution-media .speed-text { font-size: 12.5px; margin-top: 6px; }

.region-band { position: relative; padding: 124px 0; text-align: center; color: #fff; overflow: hidden; background: var(--green-darkest); }
.region-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; z-index: 0; }
.region-band-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,58,40,0.62) 0%, rgba(12,58,40,0.50) 55%, rgba(36,57,94,0.58) 100%); }
.region-band .container { position: relative; z-index: 2; }

.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; z-index: 0; }
.cta-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(0,150,94,0.90) 0%, rgba(0,122,76,0.86) 55%, rgba(50,98,149,0.88) 130%); }
.cta-section .container { position: relative; z-index: 2; }

.page-hero--photo { position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; z-index: 0; }
.page-hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(16,28,48,0.88) 0%, rgba(16,28,48,0.82) 100%); }
.page-hero--photo .container { position: relative; z-index: 2; }
.region-band-kicker { font-family: var(--sans); font-weight: 800; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0; color: rgba(255,255,255,0.92); }
.region-band-statement { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.18; max-width: 22ch; margin: 18px auto 0; color: #fff; text-shadow: 0 2px 22px rgba(0,0,0,0.30); }

@media (max-width: 980px) {
  .solution-media img { height: 360px; }
}
@media (max-width: 768px) {
  .region-band { padding: 84px 0; }
  .solution-media .speed-badge { width: 140px; height: 140px; right: 16px; bottom: 16px; }
  .solution-media .speed-number { font-size: 52px; }
}
