/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --color-primary: #263266;
  --color-primary-dark: #1a2450;
  --color-accent: #74c19e;
  --color-accent-dark: #2d5a4e;
  --color-bg: #f2ece0;
  --color-white: #ffffff;
  --color-text: #1a1a2e;
  --color-text-light: #5a5a72;
  --color-border: #e0dbd0;
  --gradient-hero: linear-gradient(160deg, #1a2450 0%, #263266 40%, #2d3a72 70%, #344080 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #74c19e 100%);
  --gradient-accent: linear-gradient(135deg, #74c19e 0%, #5aab88 50%, #4a9a78 100%);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(38, 50, 102, 0.08);
  --shadow-lg: 0 12px 48px rgba(38, 50, 102, 0.12);
  --nav-height: 72px;
  --max-width: 1200px;
}

/* ===========================
   Keyframes
   =========================== */
@keyframes tabProgress { from { width: 0; } to { width: 100%; } }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--color-text); background: var(--color-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-headline { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; text-align: center; color: var(--color-primary); margin-bottom: 48px; }
.section-headline--sm { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 32px; }
.section-headline--light { color: var(--color-white); }

/* ===========================
   Buttons
   =========================== */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--font); font-weight: 600; font-size: 0.95rem; border: none; border-radius: 8px; cursor: pointer; transition: all 0.25s ease; text-decoration: none; gap: 8px; }
.btn--primary { background: var(--color-primary); color: var(--color-white); padding: 12px 24px; }
.btn--primary:hover { background: #1e2854; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(38,50,102,0.3); }
.btn--hero-primary { background: var(--color-white); color: var(--color-primary); padding: 16px 32px; font-size: 1.05rem; }
.btn--hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.25); }
.btn--hero-ghost { background: transparent; color: var(--color-white); padding: 16px 32px; font-size: 1.05rem; border: 2px solid rgba(255,255,255,0.3); }
.btn--hero-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.btn--outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); padding: 10px 22px; }
.btn--outline:hover { background: var(--color-primary); color: var(--color-white); }
.btn--accent { background: var(--color-accent); color: var(--color-white); padding: 14px 28px; font-size: 1rem; white-space: nowrap; }
.btn--accent:hover { background: #5fb08a; transform: translateY(-1px); }
.btn--sm { padding: 8px 18px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ===========================
   Navigation
   =========================== */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000; transition: background 0.4s, box-shadow 0.4s; background: transparent; border-bottom: 1px solid transparent; }
.nav--scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: rgba(0,0,0,0.06); box-shadow: 0 2px 16px rgba(38,50,102,0.08); }
.nav--dark .nav__link { color: rgba(255,255,255,0.7); }
.nav--dark .nav__link:hover { color: #fff; }
.nav--dark .lang-toggle { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); }
.nav--dark .lang-toggle__option--active { color: #fff; }
.nav--dark .lang-toggle__divider { color: rgba(255,255,255,0.2); }
.nav--dark .nav__hamburger span { background: #fff; }
.nav--dark .btn--primary { background: var(--color-white); color: var(--color-primary); }
.nav__container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav__logo-img { height: 32px; width: auto; }
.nav__logo-dark { display: none; }
.nav__logo-white { display: block; }
.nav--scrolled .nav__logo-dark { display: block; }
.nav--scrolled .nav__logo-white { display: none; }
.nav__links { display: flex; gap: 32px; }
.nav__link { font-size: 0.9rem; font-weight: 500; color: var(--color-text-light); transition: color 0.2s; position: relative; }
.nav__link:hover { color: var(--color-primary); }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-accent); border-radius: 1px; transition: width 0.2s; }
.nav__link:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.lang-toggle { display: flex; align-items: center; gap: 6px; background: none; border: 1px solid var(--color-border); border-radius: 6px; padding: 6px 10px; cursor: pointer; font-family: var(--font); font-size: 0.8rem; font-weight: 600; color: var(--color-text-light); transition: border-color 0.2s; }
.lang-toggle:hover { border-color: var(--color-primary); }
.lang-toggle__option { transition: color 0.2s; }
.lang-toggle__option--active { color: var(--color-primary); }
.lang-toggle__divider { color: var(--color-border); user-select: none; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: all 0.3s; }
.nav__hamburger--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger--active span:nth-child(2) { opacity: 0; }
.nav__hamburger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: var(--color-white); z-index: 999; flex-direction: column; padding: 32px 24px; gap: 8px; }
.mobile-menu--open { display: flex; }
.mobile-menu__link { font-size: 1.25rem; font-weight: 600; color: var(--color-primary); padding: 16px 0; border-bottom: 1px solid var(--color-border); }
.mobile-menu__actions { margin-top: auto; display: flex; flex-direction: column; gap: 16px; padding-top: 24px; }
.lang-toggle--mobile { justify-content: center; }

/* ===========================
   Hero
   =========================== */
.hero { background: var(--gradient-hero); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; padding: calc(var(--nav-height) + 64px) 0 0; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero__content { animation: heroFadeIn 0.8s ease-out both; padding-top: 40px; }
.hero__headline { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 24px; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__subline { font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 48px; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__video { animation: heroFadeIn 0.8s ease-out 0.2s both; }
.hero__wave { line-height: 0; margin-top: 56px; }
.hero__wave svg { display: block; width: 100%; height: auto; min-height: 100px; }

/* Video thumbnail */
.video-thumb { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: 0 20px 60px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.video-thumb:hover { transform: scale(1.02); box-shadow: 0 24px 70px rgba(0,0,0,0.4); }
.video-thumb__img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-thumb__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: none; border: none; cursor: pointer; transition: transform 0.3s; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.video-thumb:hover .video-thumb__play { transform: translate(-50%,-50%) scale(1.12); }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ===========================
   Wave Dividers
   =========================== */
.wave-divider { line-height: 0; overflow: hidden; position: relative; margin-top: -1px; }
.wave-divider svg { display: block; width: 100%; height: auto; min-height: 100px; }
.wave-divider--to-accent { background: var(--color-white); }
.wave-divider--from-accent { background: var(--color-accent); }
.wave-divider--to-dark { background: var(--color-white); }

/* ===========================
   Problem
   =========================== */
.problem { padding: 60px 0 80px; background: var(--color-white); margin-top: -2px; position: relative; z-index: 1; }
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.problem__card { text-align: center; padding: 36px 24px; border-radius: var(--radius-lg); background: var(--color-white); border: 1px solid rgba(38,50,102,0.06); box-shadow: 0 4px 20px rgba(38,50,102,0.06); transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s; }
.problem__card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(38,50,102,0.12); border-color: var(--color-accent); }
.problem__icon svg { transition: transform 0.3s ease; }
.problem__card:hover .problem__icon svg { transform: translateY(-3px); }
.problem__icon { margin-bottom: 20px; }
.problem__title { font-size: 1.1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.problem__text { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.65; }

/* ===========================
   Process Timeline
   =========================== */
.process { padding: 80px 0 80px; background: var(--color-accent); }
.process__timeline { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; padding: 0 16px; }
.process__step { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 20px 20px; border-radius: var(--radius-lg); transition: transform 0.3s, background 0.3s; min-width: 130px; text-align: center; }
.process__step:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); }
.process__icon { transition: transform 0.3s; }
.process__step:hover .process__icon { transform: scale(1.15); }
.process__label { font-size: 0.85rem; font-weight: 600; color: var(--color-white); line-height: 1.3; }
.process__connector {
  width: 40px; height: 2px; background: rgba(255,255,255,0.2); flex-shrink: 0;
  position: relative;
}
.process__connector::after {
  content: ''; position: absolute; right: -4px; top: -3px;
  width: 8px; height: 8px; border-right: 2px solid rgba(255,255,255,0.3); border-top: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
}
/* Feature pills inside process */
.process__features {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.process__feature {
  padding: 8px 18px; border-radius: 20px; font-size: 0.8rem; font-weight: 500;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15); transition: background 0.3s;
}
.process__feature:hover { background: rgba(255,255,255,0.18); }

/* ===========================
   App Showcase
   =========================== */
.showcase { padding: 80px 0 100px; background: var(--color-white); }
.showcase__grid { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }
.showcase__tabs { display: flex; flex-direction: column; gap: 4px; }
.showcase__tab { position: relative; text-align: left; padding: 20px 24px; border: none; background: transparent; border-radius: var(--radius); cursor: pointer; font-family: var(--font); transition: background 0.3s; border-left: 3px solid transparent; overflow: hidden; }
.showcase__tab:hover { background: rgba(38,50,102,0.03); }
.showcase__tab--active { background: rgba(116,193,158,0.08); border-left-color: var(--color-accent); }
.showcase__tab-title { display: block; font-size: 1rem; font-weight: 600; color: var(--color-primary); margin-bottom: 4px; }
.showcase__tab-desc { display: block; font-size: 0.85rem; color: var(--color-text-light); line-height: 1.5; }
.showcase__tab-progress { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--color-accent); border-radius: 1px; width: 0; }
.showcase__tab--active .showcase__tab-progress { animation: tabProgress 5s linear forwards; }
.showcase__display { position: sticky; top: calc(var(--nav-height) + 24px); }
.showcase__frame { border-radius: var(--radius-lg); overflow: hidden; background: #fafafa; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.06); }
.showcase__frame-bar { height: 36px; background: #f5f5f5; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.showcase__frame-dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; }
.showcase__screenshot { display: block; width: 100%; transition: opacity 0.3s ease; }

/* Features section removed — content integrated into Process */

/* Audience tags (used inside pricing) */
.audience__tag {
  padding: 8px 18px; border-radius: 20px; font-size: 0.82rem; font-weight: 500;
  color: var(--color-text-light); background: var(--color-white); border: 1px solid rgba(0,0,0,0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.audience__tag:hover { border-color: var(--color-accent); box-shadow: 0 2px 12px rgba(116,193,158,0.15); }

/* ===========================
   Pricing
   =========================== */
.pricing { padding: 80px 0 100px; background: var(--color-white); }
.pricing__audience { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: -28px; margin-bottom: 40px; }
.pricing__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 780px; margin: 0 auto; }
.pricing-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card--featured { border: 2px solid var(--color-primary); position: relative; box-shadow: 0 8px 32px rgba(38,50,102,0.08); }
.pricing-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--color-accent); color: var(--color-white); font-size: 0.8rem; font-weight: 600; padding: 6px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-card__name { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); margin-bottom: 16px; }
.pricing-card__price { margin-bottom: 8px; display: flex; align-items: baseline; gap: 4px; }
.pricing-card__amount { font-size: 2.5rem; font-weight: 700; color: var(--color-primary); }
.pricing-card__amount--small { font-size: 1.5rem; }
.pricing-card__period { font-size: 1rem; color: var(--color-text-light); }
.pricing-card__description { font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 20px; }
.pricing-card__features { flex: 1; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-card__features li { font-size: 0.9rem; color: var(--color-text); padding-left: 28px; position: relative; }
.pricing-card__features li::before { content: ''; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--color-accent) url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/10px; }

/* ===========================
   FAQ
   =========================== */
.faq { padding: 80px 0; background: var(--color-white); }
.faq__list { max-width: 700px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq__question { width: 100%; text-align: left; padding: 20px 40px 20px 0; border: none; background: none; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--color-primary); cursor: pointer; position: relative; transition: color 0.2s; }
.faq__question:hover { color: var(--color-accent); }
.faq__question::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; font-weight: 400; color: var(--color-accent); transition: transform 0.3s; }
.faq__item--open .faq__question::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq__item--open .faq__answer { max-height: 300px; padding-bottom: 20px; }
.faq__answer p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.7; }

/* ===========================
   Register
   =========================== */
.register { padding: 80px 0 60px; background: var(--color-primary-dark); color: var(--color-white); }
.register__container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.register__headline { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; margin-bottom: 12px; }
.register__subline { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.register__box { display: flex; flex-direction: column; gap: 16px; }
.register__input-group { display: flex; gap: 8px; }
.register__input { flex: 1; padding: 14px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-family: var(--font); font-size: 0.95rem; outline: none; transition: border-color 0.2s; }
.register__input::placeholder { color: rgba(255,255,255,0.45); }
.register__input:focus { border-color: var(--color-accent); }
.register__google { display: inline-block; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; text-decoration: underline; text-underline-offset: 3px; }
.register__google:hover { color: var(--color-white); }

/* ===========================
   Footer
   =========================== */
.footer { background: var(--color-primary-dark); padding: 32px 0 48px; color: rgba(255,255,255,0.7); }
.footer__container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer__logo-img { height: 28px; width: auto; }
.footer__links { display: flex; gap: 24px; }
.footer__link { font-size: 0.875rem; transition: color 0.2s; }
.footer__link:hover { color: var(--color-white); }
.footer__social { display: flex; gap: 16px; }
.footer__social-link { color: rgba(255,255,255,0.6); transition: color 0.2s, transform 0.2s; }
.footer__social-link:hover { color: var(--color-white); transform: translateY(-2px); }
.footer__copy { width: 100%; text-align: center; font-size: 0.8rem; margin-top: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }

/* ===========================
   Cookie Banner (DSGVO)
   =========================== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000; background: var(--color-primary); color: var(--color-white); padding: 16px 24px; display: none; align-items: center; justify-content: center; gap: 20px; font-size: 0.85rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); }
.cookie-banner--visible { display: flex; }
.cookie-banner__text { flex: 1; max-width: 500px; line-height: 1.5; }
.cookie-banner__text a { color: var(--color-accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner__btn { padding: 8px 16px; border-radius: 6px; border: none; font-family: var(--font); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.cookie-banner__btn--accept { background: var(--color-accent); color: #fff; }
.cookie-banner__btn--accept:hover { background: #5fb08a; }
.cookie-banner__btn--decline { background: rgba(255,255,255,0.15); color: #fff; }
.cookie-banner__btn--decline:hover { background: rgba(255,255,255,0.25); }

/* ===========================
   Scroll Reveal
   =========================== */
.js-loaded .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.js-loaded .reveal--left { transform: translateX(-40px); }
.js-loaded .reveal--right { transform: translateX(40px); }
.js-loaded .reveal--scale { transform: scale(0.95); opacity: 0; }
.js-loaded .reveal--visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .showcase__grid { grid-template-columns: 320px 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav__links, .nav__right .btn { display: none; }
  .nav__right { gap: 12px; }
  .nav__hamburger { display: flex; }
  .hero { padding: calc(var(--nav-height) + 24px) 0 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero__subline { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .problem__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .process__timeline { gap: 4px; }
  .process__arrow { display: none; }
  .process__step { min-width: 90px; padding: 14px 10px; }
  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__tabs { flex-direction: row; overflow-x: auto; gap: 0; }
  .showcase__tab { min-width: 160px; border-left: none; border-bottom: 3px solid transparent; }
  .showcase__tab--active { border-bottom-color: var(--color-accent); border-left-color: transparent; }
  .showcase__tab-desc { display: none; }
  .showcase__display { position: static; }
  .process__features { gap: 8px; }
  .process__connector { width: 24px; }
  .pricing__audience { gap: 8px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; }
  .register__container { grid-template-columns: 1fr; text-align: center; }
  .register__input-group { flex-direction: column; }
  .footer__container { flex-direction: column; text-align: center; }
  .footer__links, .footer__social { justify-content: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .process__connector { display: none; }
}
