/* Frisch & Fein — Reinigungsservice v2 — PLAYFUL / CRAFTED */
:root {
  --hue: 220;
  --primary: #1B6BB5;
  --primary-600: #154F8A;
  --primary-light: #3B9BD1;
  --soft-blue: #E3EEF8;
  --bg-blue: #D6E8F5;
  --soft-green: #E3F5E7;
  --bg-green: #C8EAD0;
  --cream: #F4F1EB;
  --ink: #0F1B3D;
  --ink-2: #4A5577;
  --ink-3: #8088A4;
  --line: #E4E8F2;
  --card: #ffffff;
  --accent: #4CAF50;
  --dark: #0D1736;
  --shadow-sm: 0 2px 6px rgba(20,30,80,0.04);
  --shadow-md: 0 10px 30px -8px rgba(40,70,160,0.12);
  --shadow-lg: 0 30px 70px -20px rgba(40,70,160,0.22);
  --r-card: 32px;
  --r-pill: 999px;
  --r-btn: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 150px; }
@media (max-width: 900px) { html { scroll-padding-top: 156px; } }
@media (max-width: 420px) { html { scroll-padding-top: 136px; } }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography system — modern, legible sans + serif italic accents only */
h1, h2, h3 { font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; color: var(--ink); }
h1 { font-weight: 700; }
h4 { font-family: 'Manrope', sans-serif; font-weight: 600; color: var(--ink); }
.italic-accent { font-family: 'Manrope', sans-serif; font-style: normal; font-weight: 700; color: var(--primary); letter-spacing: -0.03em; }
.script-accent { font-family: 'Caveat', cursive; font-weight: 600; color: var(--primary); font-size: 1.3em; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ─── LABEL (the small italic one — new style!) ─── */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Manrope', sans-serif; font-style: normal;
  font-size: 13px; color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.label::before, .label::after {
  content: ''; display: block;
  width: 28px; height: 1.5px;
  background: var(--primary); opacity: 0.5;
}
.label.center { justify-content: center; }
.label.light { color: var(--primary-light); }
.label.light::before, .label.light::after { background: var(--primary-light); }

/* Sparkle accents ✦ */
.sparkle {
  display: inline-block;
  color: var(--primary);
  font-size: 0.7em;
  vertical-align: middle;
  margin: 0 0.3em;
}

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 4px 0;
  background: white;
  transition: box-shadow 0.25s ease;
  will-change: transform;
}
.nav.scrolled { box-shadow: 0 1px 0 rgba(20,30,80,0.06), 0 6px 24px -10px rgba(20,30,80,0.15); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: transparent; border-radius: 0;
  padding: 4px 16px 4px 28px;
  box-shadow: none;
  position: relative;
}

/* Hamburger-Toggle (Mobile) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 10px -2px rgba(20,30,80,0.12);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.logo .logo-img { height: 120px; width: auto; object-fit: contain; }
.nav .logo .logo-img {
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.nav.scrolled .logo .logo-img { transform: scale(0.567); }
.nav-cta-mobile { display: none; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: white;
  display: grid; place-items: center;
  position: relative;
}
.logo-mark::after {
  content: '✦'; position: absolute; top: -6px; right: -4px;
  color: var(--accent); font-size: 14px;
}
.nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--r-btn);
  font-weight: 600; font-size: 15px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.01em;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 6px 16px -4px rgba(59,110,240,0.5); }
.btn-primary:hover { background: var(--primary-600); transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(59,110,240,0.6); }
.btn-pill { border-radius: var(--r-pill); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: white; }
.btn-light { background: white; color: var(--ink); border: 1px solid var(--line); }
.btn-light:hover { border-color: var(--primary); color: var(--primary); }
.btn-accent { background: var(--accent); color: var(--ink); border-radius: var(--r-pill); }
.btn-accent:hover { background: var(--ink); color: white; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 28px 0 180px;
  background: var(--bg-blue);
  overflow: visible;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding-top: 40px;
  position: relative; z-index: 1;
}
.hero h1 {
  font-size: clamp(48px, 6.2vw, 78px);
  margin: 22px 0 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero h1 .italic-accent { display: block; font-weight: 400; font-size: 1em; }
.hero .lead { font-size: 16px; color: var(--ink-2); max-width: 460px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; align-items: center; }
.hero-certs { display: flex; gap: 24px; align-items: center; margin-top: 32px; flex-wrap: wrap; }
.hero-certs .cert-label { font-size: 15px; color: var(--ink-3); font-style: italic; font-family: 'Instrument Serif', serif; }
.hero-certs .cert-logos { display: flex; gap: 12px; opacity: 0.55; }
.cert-box { padding: 6px 12px; background: white; border-radius: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink); }

.hero-stats {
  display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap;
}
.stat-pill {
  background: white; padding: 14px 20px; border-radius: 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.stat-pill .stat-num {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 26px; color: var(--ink); letter-spacing: -0.02em;
}
.stat-pill .stat-lbl { font-size: 12px; color: var(--ink-3); line-height: 1.2; }

/* Hero visual: bucket + floating bubbles + chips (v1 style) */
.hero-visual { position: relative; height: 520px; }
.bucket {
  position: absolute; inset: 10% 10% 0 10%;
  background: linear-gradient(160deg, var(--soft-blue) 0%, var(--primary-light) 100%);
  border-radius: 48% 48% 12% 12% / 20% 20% 12% 12%;
  box-shadow: var(--shadow-lg), inset 0 -20px 40px rgba(59,110,240,0.15);
}
.bucket::after {
  content: 'FOTO — Reinigungsbucket';
  position: absolute; top: 48%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--primary); opacity: 0.6;
  white-space: nowrap;
}
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, white 0%, var(--soft-blue) 60%, var(--primary-light) 100%);
  box-shadow: 0 10px 30px -8px rgba(59,110,240,0.3), inset 0 2px 4px white;
  will-change: transform; transform: translateZ(0); backface-visibility: hidden;
}
.b1 { width: 120px; height: 120px; top: 5%; right: 12%; animation: float 6s ease-in-out infinite; }
.b2 { width: 70px; height: 70px; top: 30%; left: 4%; animation: float 5s ease-in-out infinite 0.5s; }
.b3 { width: 45px; height: 45px; top: 15%; left: 22%; animation: float 4s ease-in-out infinite 1s; }
.b4 { width: 60px; height: 60px; bottom: 18%; right: 4%; animation: float 5.5s ease-in-out infinite 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
body.nav-settling .bubble,
body.nav-settling .chip { animation-play-state: paused; }
@keyframes spin { to { transform: rotate(360deg); } }

.chip {
  position: absolute; padding: 10px 16px; border-radius: 999px;
  background: white; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  font-family: 'Manrope', sans-serif;
  animation: float 5s ease-in-out infinite;
  letter-spacing: -0.01em;
  will-change: transform; transform: translateZ(0); backface-visibility: hidden;
}
.chip .chip-ico { width: 24px; height: 24px; border-radius: 50%; background: var(--soft-blue); display: grid; place-items: center; color: var(--primary); }
.chip.c1 { top: 8%; left: -4%; animation-delay: 0s; }
.chip.c2 { top: 48%; right: -6%; animation-delay: 1s; }
.chip.c3 { bottom: 4%; left: 8%; animation-delay: 2s; }

/* ─── SECTIONS ─── */
section { padding: 110px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head.left { margin: 0 0 48px; text-align: left; max-width: 600px; }
.section-head h2 { font-size: clamp(36px, 4.2vw, 56px); margin-top: 16px; font-weight: 700; text-wrap: balance; letter-spacing: -0.03em; }
.section-head p { color: var(--ink-2); font-size: 16px; margin-top: 20px; max-width: 560px; text-wrap: pretty; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ─── USP STRIP (overlapping hero) ─── */
section.usp-strip { padding: 0; margin-top: -60px; margin-bottom: 60px; position: relative; z-index: 5; }
.usp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.usp-item {
  background: rgba(255,255,255,0.45);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  padding: 28px 32px; border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-md);
  display: flex; gap: 20px; align-items: flex-start;
}
.usp-ico {
  width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
  background: var(--soft-blue); color: var(--primary);
  display: grid; place-items: center;
}
.usp-item h4 { font-size: 17px; margin-bottom: 4px; font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.015em; }
.usp-item p { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }

/* ─── ABOUT with polaroid images ─── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-images {
  position: relative; height: 460px;
}
.polaroid {
  position: absolute;
  background: repeating-linear-gradient(135deg, var(--soft-blue) 0 10px, #D4E0FA 10px 20px);
  border-radius: 24px;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--primary);
  overflow: hidden;
}
.polaroid.p1 {
  top: 0; left: 0; width: 56%; height: 62%; transform: rotate(-3deg);
  box-shadow: var(--shadow-md);
}
.polaroid.p2 {
  bottom: 0; right: 0; width: 58%; height: 58%; transform: rotate(2deg);
  box-shadow: var(--shadow-md);
}
.polaroid-ring {
  position: absolute;
  box-sizing: border-box;
  border: 10px solid white;
  border-radius: 34px;
  pointer-events: none;
}
.polaroid-ring.pr1 {
  top: -20px; left: -20px;
  width: calc(56% + 40px); height: calc(62% + 40px);
  transform: rotate(-3deg);
}
.polaroid-ring.pr2 {
  bottom: -20px; right: -20px;
  width: calc(58% + 40px); height: calc(58% + 40px);
  transform: rotate(2deg);
}
.round-badge {
  position: absolute; bottom: 40%; left: 38%;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--primary); color: white;
  display: grid; place-items: center;
  z-index: 3; box-shadow: var(--shadow-lg);
  font-family: 'Manrope', sans-serif;
}
.round-badge .num {
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-align: center;
}
.round-badge .lbl { font-family: 'Manrope', sans-serif; font-size: 16px; margin-top: 2px; text-align: center; font-weight: 700; letter-spacing: -0.01em; }

.signature {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.signature .sig-name {
  font-family: 'Caveat', cursive;
  font-size: 34px;
  color: var(--ink);
  line-height: 1;
}
.signature .sig-role {
  font-size: 14px; color: var(--ink-3); font-style: italic; font-family: 'Instrument Serif', serif;
}

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 28px;
}
.about-stat {
  background: var(--soft-blue); padding: 18px 20px;
  border-radius: 20px;
}
.about-stat .num { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 28px; color: var(--ink); letter-spacing: -0.025em; line-height: 1; }
.about-stat .lbl { font-size: 12px; color: var(--ink-2); margin-top: 6px; }

/* ─── SERVICES ─── */
.services { background: white; }
#about { background: var(--bg-blue); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: linear-gradient(135deg, var(--soft-blue) 0%, var(--bg-blue) 100%);
  padding: 18px 18px 24px; border-radius: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s;
  position: relative;
  cursor: pointer;
}
.service-card:nth-child(even) {
  background: linear-gradient(135deg, var(--soft-green) 0%, var(--bg-green) 100%);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-img {
  aspect-ratio: 5/4; border-radius: 18px; margin-bottom: 18px;
  background: repeating-linear-gradient(135deg, var(--soft-blue) 0 10px, #D4E0FA 10px 20px);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--primary);
  position: relative; overflow: hidden;
}
.service-tag {
  position: absolute; top: 12px; right: 12px;
  background: white; padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600; color: var(--primary);
  font-family: 'DM Sans', sans-serif;
}
.service-card h3 { font-size: 19px; padding: 0 8px; margin-bottom: 6px; font-weight: 700; letter-spacing: -0.02em; }
.service-card p { font-size: 13px; color: var(--ink-3); padding: 0 8px; margin-bottom: 14px; line-height: 1.5; }
.service-arrow {
  margin: 0 8px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; font-size: 14px;
  font-family: 'Manrope', sans-serif;
  transition: gap 0.2s;
}
.service-card:hover .service-arrow { gap: 12px; }

/* ─── WHY US (split) ─── */
.why-us .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { list-style: none; display: grid; gap: 14px; margin-top: 28px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.why-list .check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary); color: white;
  display: grid; place-items: center;
  margin-top: 1px;
}
.why-image {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 5/4;
  background: repeating-linear-gradient(135deg, var(--soft-blue) 0 10px, #D4E0FA 10px 20px);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--primary);
}
.why-overlay {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: white; padding: 20px; border-radius: 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.why-overlay .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white; display: grid; place-items: center;
  font-weight: 600;
}
.why-overlay .t { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: -0.015em; }
.why-overlay .s { font-size: 13px; color: var(--ink-3); font-style: italic; font-family: 'Instrument Serif', serif; }

/* ─── PRICING ─── */
.pricing { background: var(--bg-blue); padding: 110px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  background: white; padding: 32px; border-radius: 28px;
  position: relative;
  transition: transform 0.25s;
}
.plan:hover { transform: translateY(-4px); }
.plan.featured {
  background: var(--dark); color: white;
  transform: translateY(-10px);
}
.plan.featured:hover { transform: translateY(-14px); }
.plan-name { font-family: 'Manrope', sans-serif; font-style: normal; font-size: 13px; color: var(--primary); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.plan.featured .plan-name { color: var(--primary-light); }
.plan-price {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 56px; line-height: 1;
  letter-spacing: -0.04em;
}
.plan-price .slash { font-size: 14px; color: var(--ink-3); font-weight: 500; margin-left: 4px; font-family: 'Manrope', sans-serif; font-style: normal; letter-spacing: 0; }
.plan.featured .plan-price .slash { color: rgba(255,255,255,0.6); }
.plan-desc { font-size: 14px; color: var(--ink-3); margin: 12px 0 24px; line-height: 1.5; }
.plan.featured .plan-desc { color: rgba(255,255,255,0.75); }
.plan-features { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; font-size: 14px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; }
.plan-features .dot {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--soft-blue); color: var(--primary);
  display: grid; place-items: center;
  margin-top: 2px;
}
.plan.featured .plan-features .dot { background: rgba(255,255,255,0.12); color: var(--primary-light); }

/* ─── GALLERY STRIP ─── */
.gallery {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
  padding: 60px 0;
}
.gallery-img {
  aspect-ratio: 1/1; border-radius: 24px;
  background: repeating-linear-gradient(135deg, var(--soft-blue) 0 10px, #D4E0FA 10px 20px);
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--primary);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: white; padding: 28px; border-radius: 24px;
  border: 1px solid var(--line);
}
.stars { color: var(--accent); margin-bottom: 14px; font-size: 15px; letter-spacing: 2px; }
.testimonial p { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 20px; line-height: 1.35; text-wrap: pretty; letter-spacing: -0.01em; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.avatar-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white; display: grid; place-items: center; font-weight: 600; font-size: 14px; flex-shrink: 0;
}
.testimonial-author .name { font-weight: 700; font-size: 14px; font-family: 'Manrope', sans-serif; letter-spacing: -0.015em; }
.testimonial-author .role { font-size: 13px; color: var(--ink-3); font-style: italic; font-family: 'Instrument Serif', serif; }

/* ─── FAQ ─── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: 20px;
  border: 1px solid var(--line); margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  text-align: left;
  font-family: 'Manrope', sans-serif; font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--soft-blue); color: var(--primary);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.25s, background 0.2s;
  font-size: 18px; font-weight: 300;
}
.faq-item.open .faq-q .plus { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 28px; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a p { color: var(--ink-2); font-size: 15px; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--primary);
  border-radius: 40px;
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  color: white; position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '✦'; position: absolute;
  color: rgba(255,255,255,0.2);
  font-size: 100px;
}
.cta-band::before { top: -20px; left: 10%; animation: spin 12s linear infinite; }
.cta-band::after { bottom: -30px; right: 18%; font-size: 140px; animation: spin 16s linear infinite reverse; }
.cta-band h3 {
  color: white; font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700; letter-spacing: -0.025em;
  text-wrap: balance; position: relative; z-index: 1;
}
.cta-band .script-accent { color: var(--accent); font-size: 1.1em; }
.cta-band .phone {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  background: white; color: var(--ink);
  padding: 18px 28px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 16px;
}
.cta-band .phone-ico { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: white; display: grid; place-items: center; }

/* ─── ALLTAG SECTION (Spotlight-Liste mit Storytelling) ─── */
.alltag-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(76,175,80,0.05) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(27,107,181,0.06) 0%, transparent 45%),
    var(--cream);
}
.alltag-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 32px;
  align-items: start;
}

/* Links: Auflistung */
.alltag-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 130px;
}
.alltag-item {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 16px 22px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  border: 1px solid transparent;
  text-align: left;
  width: 100%;
  background: transparent;
  font: inherit;
  color: inherit;
}
.alltag-item:hover {
  background: white;
  transform: translateX(4px);
  border-color: rgba(20,30,80,0.06);
}
.alltag-item.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateX(4px);
  box-shadow: 0 14px 30px -12px rgba(13,23,54,0.4);
}
.alltag-item .title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.alltag-item .arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--primary);
  display: grid; place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
  font-size: 11px;
}
.alltag-item:hover .arrow { transform: translateX(2px); }
.alltag-item.active .arrow {
  background: var(--accent);
  color: var(--ink);
}

/* Rechts: Spotlight-Card */
.alltag-card {
  background: white;
  border-radius: 36px;
  padding: 36px;
  box-shadow: 0 30px 70px -28px rgba(20,30,80,0.18);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.alltag-card::after {
  content: '✦';
  position: absolute;
  top: -10px; right: -8px;
  font-size: 80px;
  color: rgba(27,107,181,0.06);
  line-height: 1;
  pointer-events: none;
}
.alltag-card-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 28px;
  background-color: var(--soft-blue);
}
.alltag-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.alltag-card-tag::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--primary);
  opacity: 0.55;
}
.alltag-card h3 {
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  line-height: 1.1;
  text-wrap: balance;
}
.alltag-card-body {
  flex: 1;
}
.alltag-card-body p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.alltag-card-body p:last-child { margin-bottom: 0; }
.alltag-card-body p .lead-in {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.05em;
  color: var(--ink);
  font-weight: 400;
}
.alltag-card-meta {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.alltag-card-meta .lbl {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 4px;
}
.alltag-card-meta .val {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

/* Sanfte Fade-Transition beim Wechsel */
.alltag-card.is-switching .alltag-card-img,
.alltag-card.is-switching > h3,
.alltag-card.is-switching .alltag-card-body,
.alltag-card.is-switching .alltag-card-tag,
.alltag-card.is-switching .alltag-card-meta {
  opacity: 0.25;
  transform: translateY(6px);
}
.alltag-card > h3,
.alltag-card .alltag-card-body,
.alltag-card .alltag-card-tag,
.alltag-card .alltag-card-meta,
.alltag-card-img {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Contact-Section (eigene Section nur fürs CTA) */
.contact-section {
  padding: 90px 0 110px;
  background: white;
}

/* ─── CONTACT CTA (Premium-Block) ─── */
.contact-cta {
  position: relative;
  background:
    radial-gradient(circle at 100% 0%, rgba(76,175,80,0.22) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(59,155,209,0.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--dark) 0%, #142B5C 60%, var(--primary-600) 100%);
  border-radius: 40px;
  padding: 64px 56px;
  overflow: hidden;
  color: white;
  box-shadow: 0 40px 80px -28px rgba(13,23,54,0.45);
}
.contact-cta::before {
  content: '✦';
  position: absolute;
  top: -28px; left: -8px;
  font-size: 200px;
  color: rgba(255,255,255,0.05);
  animation: spin 26s linear infinite;
  pointer-events: none;
  line-height: 1;
}
.contact-cta::after {
  content: '✦';
  position: absolute;
  bottom: -60px; right: 8%;
  font-size: 140px;
  color: rgba(76,175,80,0.18);
  animation: spin 18s linear infinite reverse;
  pointer-events: none;
  line-height: 1;
}
.contact-cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-cta-text .label {
  color: var(--accent);
}
.contact-cta-text .label::before,
.contact-cta-text .label::after {
  background: var(--accent);
  opacity: 0.65;
}
.contact-cta-text h3 {
  color: white;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-top: 18px;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}
.contact-cta-text h3 .italic-accent {
  color: var(--accent);
}
.contact-cta-text > p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  margin-top: 18px;
  max-width: 480px;
  line-height: 1.6;
}
.contact-features {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.contact-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.contact-features .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 4px 10px -2px rgba(76,175,80,0.4);
}

/* ─ Right column: white contact card ─ */
.contact-cta-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  position: relative;
}
.contact-card-header {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.avatar-large {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  display: grid; place-items: center;
  font-weight: 700; font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -4px rgba(27,107,181,0.45);
  letter-spacing: -0.01em;
}
.contact-name {
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-role {
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
  font-family: 'Instrument Serif', serif;
}
.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 18px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: left;
  font-family: 'Manrope', sans-serif;
}
.contact-btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 22px -8px rgba(27,107,181,0.55);
}
.contact-btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(27,107,181,0.65);
}
.contact-btn-ghost {
  background: var(--soft-blue);
  color: var(--ink);
}
.contact-btn-ghost:hover {
  background: var(--bg-blue);
  transform: translateY(-2px);
}
.contact-btn .ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-btn-primary .ico {
  background: rgba(255,255,255,0.18);
  color: white;
}
.contact-btn-ghost .ico {
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 6px -2px rgba(20,30,80,0.12);
}
.contact-btn-body { min-width: 0; flex: 1; }
.contact-btn-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.78;
  margin-bottom: 3px;
}
.contact-btn-value {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  word-break: break-word;
}
.contact-btn-ghost .contact-btn-value { color: var(--ink); }

.contact-hours {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(76,175,80,0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(76,175,80,0.18); }
  50%     { box-shadow: 0 0 0 9px rgba(76,175,80,0.06); }
}

/* ─── BRAND LOGOS ─── */
.brand-row {
  padding: 40px 0;
  display: flex; justify-content: center; align-items: center; gap: 64px;
  flex-wrap: wrap;
  opacity: 0.5;
}
.brand-logo {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: 24px; color: var(--ink);
  font-style: italic;
}

/* ─── FOOTER ─── */
footer { background: var(--dark); color: rgba(255,255,255,0.72); padding: 72px 0 32px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-grid h5 { color: white; font-size: 14px; margin-bottom: 18px; font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.015em; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; font-size: 14px; }
.footer-grid ul a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-grid ul a:hover { color: white; }
.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  line-height: 0;
}
.footer-brand .footer-logo img {
  height: 90px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
  filter: none;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 20px; max-width: 300px; }
.newsletter { display: flex; gap: 8px; background: rgba(255,255,255,0.08); padding: 4px; border-radius: var(--r-pill); }
.newsletter input {
  background: transparent; border: none; color: white; padding: 12px 16px; flex: 1; font: inherit; font-size: 14px; outline: none;
  font-family: 'Manrope', sans-serif;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter button { background: var(--primary); color: white; padding: 10px 20px; border-radius: var(--r-pill); font-weight: 500; font-size: 14px; }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.5); }
.socials { display: flex; gap: 10px; }
.socials a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background 0.2s; }
.socials a:hover { background: var(--primary); color: white; }

/* ─── TWEAKS PANEL ─── */
.tweaks-panel {
  position: fixed; bottom: 20px; right: 20px; z-index: 100;
  background: white; border-radius: 20px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  padding: 20px; width: 280px;
  display: none; font-size: 13px;
}
.tweaks-panel.visible { display: block; }
.tweaks-panel h4 { font-size: 15px; margin-bottom: 4px; font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.tweaks-panel .tw-sub { font-size: 12px; color: var(--ink-3); margin-bottom: 16px; font-style: italic; font-family: 'Instrument Serif', serif; }
.tweaks-panel .tw-section { margin-bottom: 16px; }
.tweaks-panel .tw-label { font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.tw-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.tw-swatch { width: 32px; height: 32px; border-radius: 10px; cursor: pointer; border: 2px solid transparent; transition: transform 0.15s; }
.tw-swatch:hover { transform: scale(1.1); }
.tw-swatch.active { border-color: var(--ink); }
.tw-options { display: flex; gap: 6px; flex-wrap: wrap; }
.tw-option { padding: 8px 12px; border-radius: 10px; background: var(--soft-blue); border: 1.5px solid transparent; font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.15s; font-family: 'Manrope', sans-serif; }
.tw-option.active { background: white; border-color: var(--primary); color: var(--primary); }

/* ─── LEGAL PAGES (Impressum, Datenschutz) ─── */
.legal-page { padding: 80px 0 100px; min-height: 60vh; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: clamp(36px, 5vw, 54px); letter-spacing: -0.03em; margin-bottom: 10px; }
.legal-page .lead { font-size: 16.5px; color: var(--ink-2); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal-page h2 { font-size: 22px; margin: 44px 0 12px; color: var(--primary); letter-spacing: -0.02em; }
.legal-page h3 { font-size: 16px; margin: 22px 0 6px; color: var(--ink); }
.legal-page p, .legal-page ul, .legal-page ol, .legal-page address { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; margin-bottom: 14px; font-style: normal; }
.legal-page ul, .legal-page ol { padding-left: 22px; }
.legal-page li { margin-bottom: 4px; }
.legal-page a { color: var(--primary); text-decoration: underline; word-break: break-word; }
.legal-page a:hover { color: var(--primary-600); }
.legal-page .back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; font-size: 14px; font-weight: 600; color: var(--ink-2); text-decoration: none; }
.legal-page .back-link:hover { color: var(--primary); }
.legal-page .meta { background: var(--soft-blue); padding: 20px 24px; border-radius: 16px; margin: 8px 0 20px; }
.legal-page .meta p { margin-bottom: 4px; color: var(--ink); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 680px; margin: 0 auto;
  background: white; border-radius: 24px;
  padding: 20px 24px;
  box-shadow: 0 24px 60px -12px rgba(20,30,80,0.25), 0 2px 8px rgba(20,30,80,0.06);
  z-index: 90;
  display: flex; gap: 20px; align-items: center;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.45s cubic-bezier(.2,.9,.3,1.1);
  font-family: 'Manrope', sans-serif;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { flex: 1; font-size: 13.5px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.cookie-banner p strong { color: var(--ink); font-weight: 700; }
.cookie-banner p a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-actions button {
  padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 13px;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  font-family: inherit; border: none;
}
.cookie-actions .btn-accept { background: var(--primary); color: white; }
.cookie-actions .btn-accept:hover { background: var(--primary-600); }
.cookie-actions .btn-reject { background: var(--soft-blue); color: var(--ink); }
.cookie-actions .btn-reject:hover { background: var(--bg-blue); }
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 18px; bottom: 12px; left: 12px; right: 12px; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; padding: 12px; }
}

/* ─── IMAGE OVERRIDES (replace striped placeholders with real photos) ─── */
.has-img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: transparent !important;
  font-size: 0 !important;
}
.polaroid.has-img::after,
.service-img.has-img::after,
.why-image.has-img::after,
.gallery-img.has-img::after { content: none !important; }
.bucket { overflow: hidden; }
.bucket::after { display: none; }
.why-image.has-img .why-overlay { color: var(--ink); font-size: inherit; }
.why-image.has-img .why-overlay .t { font-size: 14px; color: var(--ink); }
.why-image.has-img .why-overlay .s { font-size: 13px; color: var(--ink-3); }
.why-image.has-img .why-overlay .avatar { color: white; font-size: 14px; }
.service-img.has-img .service-tag { color: var(--primary); font-size: 11px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .why-us .content-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid .about-images { order: 2; }
  .services-grid, .testimonials-grid, .usp-grid, .pricing-grid, .gallery { grid-template-columns: 1fr; }
  /* Hamburger sichtbar, Links als Dropdown */
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: white;
    border-radius: 22px;
    padding: 10px;
    box-shadow: 0 24px 60px -16px rgba(20,30,80,0.28), 0 2px 8px rgba(20,30,80,0.06);
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 60;
  }
  .nav-links a {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.015em;
  }
  .nav-links a:active,
  .nav-links a:hover { background: var(--soft-blue); color: var(--primary); }
  .nav.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 28px; }
  /* Alltag-Section + Contact-CTA */
  .alltag-section { padding: 72px 0; }
  .alltag-grid { grid-template-columns: 1fr; gap: 24px; }
  .alltag-list { position: static; order: 2; }
  .alltag-card { padding: 26px; border-radius: 28px; order: 1; }
  .alltag-card-img { aspect-ratio: 16 / 9; margin-bottom: 22px; }
  .alltag-card-meta { grid-template-columns: 1fr; gap: 14px; }
  .contact-section { padding: 64px 0 80px; }
  .contact-cta { padding: 44px 28px; border-radius: 32px; }
  .contact-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-cta-text > p { max-width: 100%; }
  .contact-cta-card { padding: 26px; }
  .hero-visual { height: 420px; }
  .about-images { height: 360px; }
  section { padding: 72px 0; }
  .plan.featured { transform: none; }

  /* Mobile nav: logo links, phone rechts, immer sichtbar, logo shrinks on scroll */
  .nav { padding: 4px 0; background: white; box-shadow: 0 1px 0 rgba(20,30,80,0.06); }
  .container { padding: 0 18px; }
  .nav .container { padding: 0 12px; }
  .nav-inner { padding: 4px 8px 4px 12px; gap: 10px; box-shadow: none; }
  .nav .logo { margin-right: auto; }
  .logo .logo-img { height: 128px; }
  .nav.scrolled .logo .logo-img { transform: scale(0.664); }
  .nav-cta-desktop { display: none; }
  .nav-cta-mobile { display: inline-flex; padding: 10px 16px; font-size: 13px; gap: 8px; }
  .nav-phone-text { display: inline; }
}

@media (max-width: 420px) {
  .logo .logo-img { height: 108px; }
  .nav.scrolled .logo .logo-img { transform: scale(0.667); }
  .nav-cta-mobile { padding: 9px 14px; font-size: 12.5px; }
  .contact-cta { padding: 36px 22px; border-radius: 26px; }
  .contact-cta-card { padding: 22px; }
  .contact-btn { padding: 14px 16px; gap: 12px; border-radius: 16px; }
  .contact-btn .ico { width: 38px; height: 38px; }
  .contact-btn-value { font-size: 13.5px; }
  .contact-btn-label { font-size: 10.5px; }
}
