/* ============================================
   JooMaa Webdesign – Global Stylesheet v2
   ============================================ */

/* ============================================
   Lokale Schriftarten (DSGVO-konform)
   Keine Verbindung zu externen Servern.
   Dateien liegen in /fonts/
   ============================================ */

/* Inter – Light 300 */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-300-latin.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Inter – Regular 400 */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Inter – Medium 500 */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500-latin.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Inter – SemiBold 600 */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600-latin.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Inter – Bold 700 */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700-latin.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Inter – ExtraBold 800 */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-800-latin.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* Inter – Black 900 */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-900-latin.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Inter Tight – Regular 400 */
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter-tight-400-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Inter Tight – Medium 500 */
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter-tight-500-latin.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Inter Tight – SemiBold 600 */
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter-tight-600-latin.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Inter Tight – Bold 700 */
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter-tight-700-latin.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Inter Tight – ExtraBold 800 */
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter-tight-800-latin.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  /* Backgrounds */
  --bg-primary:     #0A0E1A;
  --bg-secondary:   #050810;
  --bg-card:        #0D1121;
  --bg-card-hover:  #111828;

  /* Brand Colors */
  --accent:         #0066FF;
  --accent-light:   #3385FF;
  --accent-bright:  #66A3FF;
  --cyan:           #00D9FF;
  --cyan-dim:       rgba(0, 217, 255, 0.12);
  --cyan-glow:      rgba(0, 217, 255, 0.25);
  --green:          #00FF99;
  --green-dim:      rgba(0, 255, 153, 0.1);

  /* Borders */
  --border:         rgba(0, 102, 255, 0.15);
  --border-hover:   rgba(0, 217, 255, 0.4);
  --border-subtle:  rgba(255, 255, 255, 0.06);

  /* Glow */
  --accent-glow:    rgba(0, 102, 255, 0.3);
  --accent-dim:     rgba(0, 102, 255, 0.08);
  --glow-blue:      0 0 60px rgba(0, 102, 255, 0.25);
  --glow-cyan:      0 0 40px rgba(0, 217, 255, 0.2);

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #B8C5D6;
  --text-muted:     #4A5568;
  --white:          #ffffff;

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
  --gradient-green:  linear-gradient(135deg, #00D9FF 0%, #00FF99 100%);
  --gradient-card:   linear-gradient(135deg, #0D1121 0%, #050810 100%);

  /* Shadows */
  --shadow-card:    0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-blue:    0 8px 40px rgba(0, 102, 255, 0.3);
  --shadow-cyan:    0 8px 40px rgba(0, 217, 255, 0.2);

  /* Radius */
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;

  /* Typography */
  --font-display:   'Inter Tight', sans-serif;
  --font-body:      'Inter', sans-serif;

  /* Transitions */
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --nav-height:     72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-family: var(--font-body); }

p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 400;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 800px; }
.section-padding  { padding: 80px 0; }
.text-accent  { color: var(--cyan); }
.text-green   { color: var(--green); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }

/* --- Section Label --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 217, 255, 0.2);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--cyan); }
  50%       { opacity: 0.5; transform: scale(1.5); box-shadow: 0 0 16px var(--cyan); }
}

.section-header        { margin-bottom: 48px; }
.section-header p      { font-size: 1.0625rem; max-width: 520px; margin-top: 16px; }
.section-header.text-center p { margin: 16px auto 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(0, 102, 255, 0.4);
  border-color: transparent;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 102, 255, 0.55), 0 0 0 1px rgba(0, 217, 255, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(0, 217, 255, 0.3);
  padding: 12px 24px;
}
.btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--cyan);
  border-color: transparent;
  padding-left: 0;
}
.btn--ghost:hover { gap: 14px; color: var(--white); }

.btn svg { transition: transform var(--transition); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.card:hover {
  border-color: rgba(0, 217, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 102, 255, 0.08);
}

.card:hover::after { opacity: 1; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  z-index: -1;
}

.navbar.scrolled::before {
  background: rgba(5, 8, 16, 0.9);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--cyan); }

.logo-mark {
  width: 34px; height: 34px;
  background: var(--gradient-accent);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.5);
  transition: all var(--transition);
  font-family: var(--font-display);
}
.nav-logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 217, 255, 0.5);
}

.nav-logo .logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--cyan); background: var(--cyan-dim); }

.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: 0.85rem; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all var(--transition); transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(5, 8, 16, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0;
  transition: all var(--transition);
  z-index: 999;
}
.nav-mobile.open { display: flex; transform: translateY(0); opacity: 1; }
.nav-mobile .nav-link { font-size: 1rem; padding: 12px 16px; }
.nav-mobile .nav-cta  { margin: 8px 0 0; text-align: center; justify-content: center; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.scale-up   { transform: scale(0.93); }
.reveal.visible    { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   3D SCENE & DEPTH EFFECTS
   ============================================ */

/* Perspective wrapper for 3D cards */
.perspective-wrap {
  perspective: 1200px;
  perspective-origin: 50% 40%;
}

/* Floating 3D card animation */
@keyframes float3d-a {
  0%   { transform: perspective(800px) rotateX(8deg) rotateY(-6deg) translateY(0) translateZ(0); }
  33%  { transform: perspective(800px) rotateX(4deg) rotateY(4deg)  translateY(-12px) translateZ(20px); }
  66%  { transform: perspective(800px) rotateX(-4deg) rotateY(2deg) translateY(-6px) translateZ(10px); }
  100% { transform: perspective(800px) rotateX(8deg) rotateY(-6deg) translateY(0) translateZ(0); }
}
@keyframes float3d-b {
  0%   { transform: perspective(800px) rotateX(-6deg) rotateY(8deg)  translateY(-8px)  translateZ(15px); }
  50%  { transform: perspective(800px) rotateX(6deg)  rotateY(-4deg) translateY(-18px) translateZ(30px); }
  100% { transform: perspective(800px) rotateX(-6deg) rotateY(8deg)  translateY(-8px)  translateZ(15px); }
}
@keyframes float3d-c {
  0%   { transform: perspective(600px) rotateX(10deg) rotateY(-10deg) translateY(0); }
  50%  { transform: perspective(600px) rotateX(-6deg) rotateY(6deg)  translateY(-14px); }
  100% { transform: perspective(600px) rotateX(10deg) rotateY(-10deg) translateY(0); }
}

/* Glow pulse */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(0, 217, 255, 0.1), 0 0 30px rgba(0, 102, 255, 0.05); }
  50%       { box-shadow: 0 0 20px rgba(0, 217, 255, 0.15), 0 0 50px rgba(0, 102, 255, 0.1); }
}

/* Scan line effect */
@keyframes scan-line {
  0%   { top: 0; opacity: 0.4; }
  100% { top: 100%; opacity: 0; }
}

/* Rotating border gradient */
@keyframes border-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Depth shimmer on cards */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s ease;
}
.card-3d:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(0, 217, 255, 0.1),
              inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ============================================
   BACKGROUND ELEMENTS
   ============================================ */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.3;
}
.orb--blue   { background: radial-gradient(circle, #0066FF, transparent 70%); }
.orb--cyan   { background: radial-gradient(circle, #00D9FF, transparent 70%); }
.orb--green  { background: radial-gradient(circle, #00FF99, transparent 70%); }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(0, 217, 255, 0.25); }

.faq-question {
  width: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--cyan); }

.faq-icon {
  color: var(--text-muted); flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--cyan); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; line-height: 1.75; }
.faq-answer strong { color: var(--text-primary); font-weight: 600; }

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
  position: fixed; inset: 0;
  background: var(--bg-secondary);
  z-index: 9998; pointer-events: none;
  opacity: 0; transition: opacity 0.3s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.65;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem; color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--cyan); }

/* ============================================
   SCROLLBAR & SELECTION
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

::selection { background: rgba(0, 217, 255, 0.2); color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section-padding { padding: 68px 0; }
  .section-header  { margin-bottom: 40px; }
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 20px; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.cookie-text {
  flex: 1;
}
.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}
.cookie-text a {
  color: var(--cyan);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn--accept {
  background: var(--accent);
  color: var(--white);
  border: none;
}
.cookie-btn--accept:hover {
  background: var(--accent-light);
}
.cookie-btn--necessary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.cookie-btn--necessary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.cookie-btn--reject {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  opacity: 0.8;
}
.cookie-btn--reject:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  opacity: 1;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-buttons {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
