/* ============================================
   PromoSweets.eu — Stylesheet
   Color Palette (Appetite + Trust):
   Primary Candy Red:    #D42B2B
   Vibrant Orange:       #F28C28
   Candy Pink:           #E84887
   Sunny Yellow:         #FFD23F
   Warm Charcoal:        #2D2A32
   Warm Off-White:       #FFF8F0
   Warm Grey:            #6B6574
   Deep Slate Teal:      #2A5C6B
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #D42B2B;
  --red-dark: #B22222;
  --orange: #F28C28;
  --pink: #E84887;
  --yellow: #FFD23F;
  --charcoal: #2D2A32;
  --offwhite: #FFF8F0;
  --grey: #6B6574;
  --teal: #2A5C6B;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(45,42,50,.10);
  --shadow-lg: 0 8px 40px rgba(45,42,50,.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 640px;
  margin: .75rem auto 0;
}

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--white); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212,43,43,.35);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(212,43,43,.45); }

.btn--secondary {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
}
.btn--secondary:hover { background: var(--red); color: var(--white); }

.btn--orange {
  background: linear-gradient(135deg, var(--orange), #f5a623);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(242,140,40,.35);
}
.btn--orange:hover { box-shadow: 0 8px 32px rgba(242,140,40,.45); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,248,240,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,42,50,.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 14px 24px;
  transition: padding .3s ease;
}

.nav__logo {
  font-size: 1.5rem; font-weight: 900;
  display: flex; align-items: center; gap: 8px;
  transition: font-size .3s ease;
}
.nav__logo span { color: var(--red); }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: .95rem; font-weight: 600; color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}
.nav__links a:hover { color: var(--red); }
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width var(--transition);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 10px 24px; font-size: .9rem; }

/* Language Switcher */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  margin-left: 8px;
}
.lang-switch a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid rgba(45,42,50,.12);
  transition: all var(--transition);
}
.lang-switch a:hover,
.lang-switch a.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 40%, #FFD6E0 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,72,135,.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,210,63,.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content { max-width: 580px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,43,43,.08);
  color: var(--red);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero__title span { color: var(--red); }
.hero__title .highlight-pink { color: var(--pink); }

.hero__desc {
  font-size: 1.15rem;
  color: var(--grey);
  margin: 20px 0 32px;
  line-height: 1.8;
}

.hero__buttons { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__stats {
  display: flex; gap: 40px;
  margin-top: 40px;
}
.hero__stat { text-align: left; }
.hero__stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
}
.hero__stat-label {
  font-size: .82rem;
  color: var(--grey);
  font-weight: 600;
}

/* Hero Image Area */
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating candy decorations */
.hero__float {
  position: absolute;
  font-size: 2.5rem;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
}
.hero__float--1 { top: 10%; right: -20px; animation-delay: 0s; }
.hero__float--2 { bottom: 15%; right: -30px; animation-delay: .8s; }
.hero__float--3 { top: 5%; left: -20px; animation-delay: 1.6s; }
.hero__float--4 { bottom: 5%; left: -15px; animation-delay: 2.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--white);
  padding: 32px 0;
  border-top: 1px solid rgba(45,42,50,.05);
  border-bottom: 1px solid rgba(45,42,50,.05);
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; font-weight: 600;
  color: var(--grey);
}
.trust-bar__icon { font-size: 1.4rem; }

/* ---------- Products Section ---------- */
.products { background: var(--white); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.product-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(45,42,50,.05);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.product-card__image--bonbons {
  background: linear-gradient(135deg, #FFE0E6 0%, #FFF4E6 100%);
}
.product-card__image--lollipops {
  background: linear-gradient(135deg, #E0F0FF 0%, #F0E6FF 100%);
}
.product-card__image--custom {
  background: linear-gradient(135deg, #E6FFE0 0%, #FFFDE6 100%);
}

.product-card__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--pink);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
}

.product-card__body { padding: 28px; }
.product-card__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.product-card__desc {
  color: var(--grey);
  font-size: .95rem;
  margin-bottom: 16px;
}

.product-card__features {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.product-card__feature {
  background: rgba(212,43,43,.06);
  color: var(--red);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}

/* ---------- How It Works ---------- */
.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.how-it-works__steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--pink), var(--yellow));
  border-radius: 2px;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 3px solid var(--offwhite);
}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__desc {
  font-size: .9rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ---------- Benefits ---------- */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(45,42,50,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.benefit-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.benefit-card__desc {
  color: var(--grey);
  font-size: .93rem;
}

/* ---------- Use Cases / Keywords Section ---------- */
.use-cases {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1720 100%);
  color: var(--white);
}
.use-cases h2 { color: var(--white); }
.use-cases .section-subtitle { color: rgba(255,255,255,.6); }

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.use-case-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  transition: all var(--transition);
  cursor: default;
}
.use-case-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--red);
  transform: translateY(-2px);
}

.use-case-card__icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.use-case-card__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.use-case-card__desc {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ---------- Gallery / Showcase ---------- */
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
  justify-content: center;
}
@media (min-width: 1200px) {
  .showcase__grid { grid-template-columns: repeat(5, 1fr); }
}

.showcase__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.showcase__item:hover { transform: scale(1.04); }

.showcase__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
}

.showcase__item--1 .showcase__img { animation: showcase-float 3.5s ease-in-out infinite; }
.showcase__item--2 .showcase__img { animation: showcase-wobble 4s ease-in-out infinite; }
.showcase__item--3 .showcase__img { animation: showcase-pulse 3s ease-in-out infinite; }
.showcase__item--4 .showcase__img { animation: showcase-float 4.2s ease-in-out infinite; }
.showcase__item--5 .showcase__img { animation: showcase-wobble 3.8s ease-in-out infinite; }

@keyframes showcase-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes showcase-wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  75% { transform: rotate(-2deg); }
}
@keyframes showcase-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .showcase__img { animation: none !important; }
}

.showcase__item-label {
  text-align: center;
  color: var(--dark);
  padding: 12px 0 0;
  font-size: .85rem;
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--offwhite);
  padding: 36px;
  border-radius: var(--radius);
  position: relative;
}

.testimonial-card__quote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.testimonial-card__quote::before {
  content: '"';
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 0;
  position: relative;
  top: 16px;
  margin-right: 4px;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: .92rem;
}
.testimonial-card__role {
  color: var(--grey);
  font-size: .82rem;
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(45,42,50,.08);
}

.faq-item__question {
  width: 100%;
  padding: 22px 0;
  background: none; border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq-item__question:hover { color: var(--red); }

.faq-item__icon {
  font-size: 1.4rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-item__answer {
  max-height: 400px;
  padding-bottom: 22px;
}

.faq-item__answer p {
  color: var(--grey);
  font-size: .95rem;
  line-height: 1.7;
}

/* ---------- Article / SEO Content Section ---------- */
.article-section {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 88px;
}

/* Gradient accent line at top */
.article-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--pink), var(--yellow));
}

/* Decorative dot pattern */
.article-section::after {
  content: '';
  position: absolute;
  top: 30px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(232,72,135,.04) 2px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}

/* Article body container */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Main H2: centered with decorative candy divider */
.article-body > h2:first-child {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  position: relative;
}
.article-body > h2:first-child::after {
  content: '\1F36C';
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  opacity: .4;
}

/* Lead paragraph — bolder, darker */
.article-body > h2:first-child + p {
  font-size: 1.12rem;
  color: var(--charcoal);
  line-height: 1.85;
}

/* Drop cap on lead paragraph */
.article-body > h2:first-child + p::first-letter {
  float: left;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: .85;
  margin-right: 10px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* H3 subheadings with colored left accent */
.article-body h3 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
  border-top: 1px solid rgba(45,42,50,.06);
  font-weight: 700;
}

/* First H3 directly after H2 — no top divider */
.article-body h2 + h3 {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Rotating accent colors for H3 borders */
.article-body h3:nth-of-type(3n+2) { border-left-color: var(--pink); }
.article-body h3:nth-of-type(3n+3) { border-left-color: var(--red); }

/* Paragraphs: generous spacing, readable */
.article-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--grey);
  letter-spacing: .01em;
}

/* First paragraph after H3 — slightly emphasized */
.article-body h3 + p {
  color: var(--charcoal);
  font-size: 1.06rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .article-section { padding-top: 64px; padding-bottom: 64px; }
  .article-section::after { display: none; }
  .article-body h3 { margin-top: 36px; padding-top: 24px; }
  .article-body > h2:first-child + p::first-letter {
    font-size: 2.6rem;
    margin-right: 6px;
  }
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--pink) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin: 16px 0 32px; }

.cta-section .btn--primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.cta-section .btn--primary:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}

.cta-section__floats {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-section__float {
  position: absolute;
  font-size: 3rem;
  opacity: .15;
  animation: float 5s ease-in-out infinite;
}
.cta-section__float:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.cta-section__float:nth-child(2) { top: 60%; left: 15%; animation-delay: 1s; }
.cta-section__float:nth-child(3) { top: 20%; right: 8%; animation-delay: 2s; }
.cta-section__float:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 3s; }
.cta-section__float:nth-child(5) { top: 50%; left: 50%; animation-delay: 1.5s; }

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand-name span { color: var(--pink); }

.footer__brand-desc {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--red); }

.footer__col-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: .88rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

/* SEO Footer Keywords (PhotoAI-style mega-links) */
.footer__seo {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
  margin-bottom: 32px;
}
.footer__seo-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}
.footer__seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer__seo-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer__seo-links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p {
  font-size: .82rem;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.cookie-banner.show { display: block; }

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: .9rem;
  flex: 1;
  min-width: 200px;
}
.cookie-banner__btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: .9rem;
  transition: background var(--transition);
}
.cookie-banner__btn:hover { background: var(--red-dark); }

/* ---------- Mobile Responsive ---------- */
@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__buttons { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__image-wrapper { max-width: 360px; margin: 0 auto; }
  .hero__float { display: none; }
  .how-it-works__steps { grid-template-columns: repeat(2, 1fr); }
  .how-it-works__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Mobile menu */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--offwhite);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(45,42,50,.06);
  }
  .nav__links.open .lang-switch {
    margin-left: 0;
    justify-content: center;
  }

  /* Compact nav on scroll (mobile only) */
  .nav.scrolled .nav__inner { padding: 6px 16px; }
  .nav.scrolled .nav__logo { font-size: 1.2rem; }
  .nav.scrolled .nav__hamburger { padding: 6px; }

  /* Improved mobile hero */
  .hero { min-height: auto; padding: 90px 0 48px; }
  .hero__image-wrapper { max-width: 320px; }
  .hero__stats { gap: 24px; }
  .hero__stat-num { font-size: 1.4rem; }

  .how-it-works__steps { grid-template-columns: 1fr; gap: 24px; }
  .products__grid { grid-template-columns: 1fr; }
  .product-card__image { font-size: 120px; }
  .trust-bar__inner { gap: 24px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .use-cases__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero__stats { flex-direction: column; gap: 16px; align-items: center; }
  .use-cases__grid { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- German language adjustments (longer words) ---------- */
html[lang="de"] .nav__links { gap: 20px; }
html[lang="de"] .nav__links a { font-size: .88rem; }

@media (max-width: 1024px) {
  html[lang="de"] .nav__links { display: none; }
  html[lang="de"] .nav__hamburger { display: flex; }
  html[lang="de"] .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--offwhite);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(45,42,50,.06);
  }
  html[lang="de"] .nav__links.open .lang-switch {
    margin-left: 0;
    justify-content: center;
  }
}
