/* ============================================
   M WEBATELIER - REDESIGN 2026
   Design System & Global Styles
   ============================================ */


:root {
  /* Brand Colors - derived from logo gradient */
  --brand-green: #5dd463;
  --brand-teal: #3ec8c0;
  --brand-blue: #3b9fe8;
  --brand-blue-dark: #2563eb;

  /* Gradient */
  --grad-primary: linear-gradient(135deg, #5dd463 0%, #3ec8c0 45%, #3b9fe8 100%);
  --grad-text: linear-gradient(135deg, #3dbf45 0%, #2baaa2 50%, #2b8fd4 100%);
  --grad-glow: linear-gradient(135deg, rgba(93,212,99,0.15) 0%, rgba(62,200,192,0.15) 50%, rgba(59,159,232,0.15) 100%);

  /* Neutrals */
  --white: #ffffff;
  --bg-base: #f4faff;
  --bg-card: #ffffff;
  --bg-subtle: #eef6ff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border: rgba(59,159,232,0.15);
  --border-strong: rgba(59,159,232,0.3);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(59,159,232,0.08), 0 2px 8px rgba(15,23,42,0.06);
  --shadow-lg: 0 16px 48px rgba(59,159,232,0.12), 0 8px 24px rgba(15,23,42,0.08);
  --shadow-glow: 0 0 40px rgba(62,200,192,0.25);

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { font-size: clamp(0.95rem, 1.2vw, 1.05rem); }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.section-pad { padding: var(--section-pad) 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(62,200,192,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--brand-blue-dark);
  border: 2px solid var(--border-strong);
}
.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--brand-blue);
}
.btn-white {
  background: white;
  color: var(--brand-blue-dark);
  box-shadow: var(--shadow-md);
}

/* ============ SECTION HEADER ============ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-glow);
  border: 1px solid var(--border-strong);
  padding: 6px 18px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d7a76;
  margin-bottom: 16px;
}
.section-label .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-primary);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* ============ HEADER / NAV ============ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  padding: 20px 0;
}
#site-header.scrolled {
  background: rgba(244,250,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(59,159,232,0.1);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
.nav-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Prevent nav-links flash on mobile before CSS fully renders */
@media (max-width: 768px) {
  .nav-links:not(.mobile-open) {
    display: none !important;
  }
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--brand-blue-dark);
  background: var(--bg-subtle);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  background: var(--bg-subtle);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(62,200,192,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 80%, rgba(59,159,232,0.1) 0%, transparent 50%),
              radial-gradient(ellipse 50% 50% at 10% 90%, rgba(93,212,99,0.08) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-glow);
  border: 1px solid var(--border-strong);
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero-eyebrow .star { font-size: 0.7rem; }

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  animation: fadeInUp 0.6s 0.4s ease both;
}
.stat-item { min-width: 80px; }
.stat-number { min-width: 80px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* 3D Globe / Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s 0.2s ease both;
}
.globe-container {
  position: relative;
  width: 420px;
  height: 420px;
}
.globe-scene {
  width: 100%; height: 100%;
  perspective: 900px;
  perspective-origin: center center;
}
.globe-wrapper {
  will-change: transform;
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: globeFloat 6s ease-in-out infinite;
}
@keyframes globeFloat {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-12px) rotateY(5deg); }
  75% { transform: translateY(8px) rotateY(-5deg); }
}
.globe-sphere {
  width: 280px; height: 280px;
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9) 0%, rgba(62,200,192,0.3) 30%, rgba(59,159,232,0.6) 60%, rgba(37,99,235,0.8) 100%);
  box-shadow:
    inset -20px -20px 60px rgba(0,0,80,0.15),
    inset 10px 10px 40px rgba(255,255,255,0.4),
    0 20px 80px rgba(62,200,192,0.4),
    0 0 120px rgba(59,159,232,0.2);
  overflow: hidden;
}
.globe-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(255,255,255,0.15) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(255,255,255,0.15) 30px);
  animation: globeRotate 20s linear infinite;
}
@keyframes globeRotate {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
.globe-shine {
  position: absolute;
  width: 60%; height: 50%;
  top: 5%; left: 10%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-20deg);
}
/* Orbit rings */
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  border: 1.5px solid;
  border-radius: 50%;
  animation: orbitSpin linear infinite;
}
.orbit-1 {
  width: 340px; height: 340px;
  margin: -170px 0 0 -170px;
  border-color: rgba(62,200,192,0.3);
  animation-duration: 12s;
  transform: rotateX(72deg);
}
.orbit-2 {
  width: 390px; height: 390px;
  margin: -195px 0 0 -195px;
  border-color: rgba(59,159,232,0.2);
  animation-duration: 18s;
  animation-direction: reverse;
  transform: rotateX(72deg) rotateZ(45deg);
}
.orbit-3 {
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border-color: rgba(93,212,99,0.15);
  animation-duration: 25s;
  transform: rotateX(50deg) rotateZ(20deg);
}
@keyframes orbitSpin {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to { transform: rotateX(72deg) rotateZ(360deg); }
}

/* Floating dots on orbits */
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  top: -5px; left: calc(50% - 5px);
}
.orbit-1 .orbit-dot { background: var(--brand-teal); box-shadow: 0 0 10px var(--brand-teal); }
.orbit-2 .orbit-dot { background: var(--brand-blue); box-shadow: 0 0 10px var(--brand-blue); top: auto; bottom: -5px; }
.orbit-3 .orbit-dot { background: var(--brand-green); box-shadow: 0 0 10px var(--brand-green); }

/* Floating service cards */
.float-card {
  will-change: transform;
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}
.float-card .icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.float-card-1 { top: 8%; right: -30px; animation-delay: 0s; }
.float-card-2 { bottom: 20%; left: -20px; animation-delay: 1.5s; }
.float-card-3 { bottom: 5%; right: 10%; animation-delay: 0.8s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  padding: 32px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item i {
  font-size: 1.2rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ ABOUT / USP ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--grad-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,200,192,0.06), rgba(59,159,232,0.1));
}
.about-img-icon {
  font-size: 5rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
  animation: iconBob 3s ease-in-out infinite;
}
@keyframes iconBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-badge .lbl { font-size: 0.75rem; color: var(--text-muted); }

.about-content .section-label { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; }
.usp-list { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.3s ease;
}
.usp-item:hover {
  border-color: var(--brand-teal);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.usp-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--grad-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-teal);
}
.usp-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.usp-text span { font-size: 0.82rem; color: var(--text-muted); }

/* ============ SERVICES ============ */
.services-section { background: white; }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header h2 { margin-bottom: 14px; }
.services-header p { color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
  background: white;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--grad-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-teal);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--grad-primary);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-teal);
  transition: gap 0.3s ease;
}
.service-card:hover .service-link { gap: 10px; }

/* ============ PROCESS ============ */
.process-section { background: var(--bg-subtle); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -12px;
  width: 24px; height: 2px;
  background: var(--grad-primary);
  opacity: 0.4;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(62,200,192,0.35);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.process-step:hover .step-num { transform: scale(1.15) rotate(5deg); }
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  background: var(--text-primary);
  border-color: transparent;
  color: white;
  transform: scale(1.04);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0.08;
}
.pricing-card:not(.featured):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.price-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--grad-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--grad-glow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-teal);
  margin-bottom: 20px;
}
.pricing-card.featured .price-icon {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.price-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin: 12px 0 4px;
}
.price-amount.gradient-text { /* only on non-featured */ }
.price-freq { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-card.featured .price-freq { color: rgba(255,255,255,0.6); }
.price-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-card.featured .price-divider { background: rgba(255,255,255,0.15); }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pricing-card.featured .price-feature { color: rgba(255,255,255,0.8); }
.price-feature i { color: var(--brand-teal); font-size: 0.8rem; flex-shrink: 0; }
.pricing-card.featured .price-feature i { color: var(--brand-green); }

/* ============ REVIEWS ============ */
.reviews-section { background: white; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.reviewer-name { font-size: 0.9rem; font-weight: 600; }
.reviewer-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--text-primary);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0.06;
}
.cta-glow-1, .cta-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-glow-1 {
  width: 400px; height: 400px;
  background: rgba(62,200,192,0.2);
  top: -100px; left: -100px;
}
.cta-glow-2 {
  width: 300px; height: 300px;
  background: rgba(59,159,232,0.15);
  bottom: -80px; right: -80px;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: white; margin-bottom: 20px; }
.cta-inner p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ CONTACT FORM ============ */
.form-section { background: var(--bg-base); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.form-info h2 { margin-bottom: 20px; }
.form-info p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--grad-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-teal);
  flex-shrink: 0;
}
.contact-text strong { display: block; font-size: 0.82rem; color: var(--text-muted); }
.contact-text a, .contact-text span { font-size: 0.92rem; font-weight: 500; color: var(--text-primary); }

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: all 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(62,200,192,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; }

/* ============ FOOTER ============ */
footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 16px 0 24px;
  line-height: 1.7;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.social-btn:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: white; gap: 12px; }
.footer-links a i { font-size: 0.65rem; color: var(--brand-teal); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0 0 28px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-legal a:hover { color: white; }

/* ============ LEGAL PAGES ============ */
.legal-hero {
  padding: 140px 0 60px;
  text-align: center;
}
.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-glow);
  border: 1px solid var(--border-strong);
  padding: 6px 18px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-teal);
  margin-bottom: 20px;
}
.legal-hero h1 { margin-bottom: 16px; }
.legal-hero p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.legal-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.legal-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 36px;
}
.legal-card h2 { font-size: 1.2rem; margin-bottom: 16px; color: var(--text-primary); }
.legal-card h3 { font-size: 1rem; margin: 20px 0 10px; }
.legal-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 12px; }
.legal-card a { color: var(--brand-teal); }
.legal-meta { display: flex; flex-direction: column; gap: 12px; }
.legal-meta .item { font-size: 0.9rem; color: var(--text-secondary); }
.legal-meta .item strong { color: var(--text-primary); margin-right: 8px; }

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.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; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============ COOKIE BANNER ============ */
/* ── Cookie Banner ── */
#cookie-overlay {
  position: fixed; inset: 0;
  background: rgba(15,26,46,.45);
  backdrop-filter: blur(3px);
  z-index: 8900;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
#cookie-overlay.show { opacity: 1; pointer-events: auto; }

#cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 8901;
  background: white;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 24px 64px rgba(15,26,46,.18), 0 0 0 1px rgba(0,0,0,.06);
  max-width: 520px;
  width: calc(100% - 32px);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .4s;
  opacity: 0;
}
#cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-top {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px;
}
.cookie-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(93,212,99,.15), rgba(59,159,232,.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.cookie-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: var(--text-primary); margin-bottom: 5px;
}
.cookie-text {
  font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6;
}
.cookie-text a { color: #0d7a76; text-decoration: underline; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px;
}
.cookie-accept {
  padding: 12px 20px;
  background: linear-gradient(135deg, #5dd463, #3ec8c0, #3b9fe8);
  color: white; border: none;
  border-radius: 10px; font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.cookie-accept:hover { opacity: .88; transform: translateY(-1px); }
.cookie-decline {
  padding: 12px 20px;
  background: white; color: var(--text-secondary);
  border: 2px solid var(--border);
  border-radius: 10px; font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  transition: all .2s;
}
.cookie-decline:hover { border-color: var(--brand-teal); color: var(--brand-teal); }
.cookie-revoke {
  text-align: center; font-size: 0.76rem; color: var(--text-muted);
}
.cookie-revoke a { color: #0d7a76; cursor: pointer; text-decoration: underline; }
.cookie-revoke a:hover { text-decoration: underline; }
@media (max-width: 480px) {
  #cookie-banner { padding: 22px 18px; border-radius: 16px; }
  .cookie-btns { grid-template-columns: 1fr; gap: 8px; }
}

/* ============ BACK TO TOP ============ */
#back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(62,200,192,0.4);
}
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top:hover { transform: translateY(-3px); }

/* ============ PAGE TRANSITION ============ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-bar {
  width: 180px; height: 3px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: var(--grad-primary);
  border-radius: var(--r-full);
  animation: loadProgress 0.8s ease forwards;
}
@keyframes loadProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* promo popup - see new styles below */

/* ============ ADMIN PANEL ============ */
#admin-toggle {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 300;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #0f172a;
  border: 2px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}
#admin-toggle:hover { background: var(--brand-blue-dark); color: white; }

#admin-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 360px;
  background: #0f172a;
  color: white;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}
#admin-panel.open { transform: translateX(0); }
.admin-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
}
.admin-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-header h3 i { color: var(--brand-teal); }
.admin-close {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.admin-close:hover { background: rgba(255,255,255,0.12); color: white; }

.admin-body { padding: 20px; }
.admin-section { margin-bottom: 28px; }
.admin-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-field { margin-bottom: 14px; }
.admin-field label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: 9px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  color: white;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: var(--font-body);
}
.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  border-color: var(--brand-teal);
}
.admin-field textarea { resize: vertical; min-height: 80px; }
.admin-field select option { background: #1e293b; }

.admin-save-btn {
  width: 100%;
  padding: 11px;
  background: var(--grad-primary);
  color: white;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
}
.admin-save-btn:hover { opacity: 0.9; transform: scale(1.01); }

.admin-img-preview {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--r-sm);
  border: 1px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin-bottom: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.admin-img-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-upload-btn:hover { background: rgba(255,255,255,0.1); color: white; }

.admin-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #10b981;
  color: white;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 2000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.admin-toast.show { transform: translateX(-50%) translateY(0); }

.admin-nav-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  border-radius: var(--r-sm);
  margin-bottom: 20px;
}
.admin-tab {
  flex: 1;
  padding: 8px 6px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.admin-tab.active {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing-card.featured { transform: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; bottom: -16px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav-inner { gap: 0; }
  .hamburger { display: flex; }

  /* Mobile nav open */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(244,250,255,0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.mobile-open a {
    padding: 14px 20px;
    border-radius: var(--r-md);
    font-size: 1rem;
  }

  #admin-panel { width: 100%; }
  .hero { padding-top: 100px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--brand-teal);
  color: white;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-link:focus { top: 20px; }

/* ── Impressum meta grid ── */
.legal-meta-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 8px; }
.meta-row { display: grid; grid-template-columns: 180px 1fr; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.meta-row:last-child { border-bottom: none; }
.meta-row:nth-child(even) { background: rgba(61,200,192,0.04); }
.meta-label { color: var(--text-secondary); font-weight: 600; font-size: 0.83rem; text-transform: uppercase; letter-spacing: 0.03em; padding-top: 2px; }
.meta-value { color: var(--text-primary); line-height: 1.6; }
.meta-value a { color: var(--brand-teal); }

/* ── Legal CTA card ── */
.legal-card--cta { background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-teal) 50%, var(--brand-blue) 100%) !important; border: none !important; color: white; }
.legal-cta-inner { display: flex; gap: 24px; align-items: flex-start; }
.legal-cta-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; flex-shrink: 0; }
.legal-card--cta h2 { color: white !important; margin-bottom: 8px; }
.legal-card--cta p { color: rgba(255,255,255,0.85) !important; margin-bottom: 20px; }
@media (max-width: 480px) {
  .meta-row { grid-template-columns: 1fr; gap: 2px; }
  .meta-label { font-size: 0.75rem; }
  .legal-cta-inner { flex-direction: column; }
}

/* ══════════════════════════════════════════
   PAGE PROGRESS BAR (replaces slow loader)
══════════════════════════════════════════ */
#page-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-primary);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(62,200,192,.6);
}
#page-loader { display: none !important; }

/* ══════════════════════════════════════════
   PROMO POPUP – new structure
══════════════════════════════════════════ */
.promo-overlay-full {
  position: fixed; inset: 0;
  background: rgba(10,20,35,.55);
  backdrop-filter: blur(4px);
  z-index: 8000;
  opacity: 0; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.promo-overlay-full.show { opacity: 1; visibility: visible; }

.promo-box-new {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(.92);
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: white;
  border-radius: 24px;
  padding: 40px 36px 36px;
  text-align: center;
  z-index: 8001;
  box-shadow: 0 32px 80px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}
.promo-box-new.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 480px) {
  .promo-box-new {
    padding: 32px 20px 24px;
    border-radius: 18px;
    width: calc(100vw - 24px);
  }
}
.promo-box-new .promo-close {
  position: absolute; top: 14px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--bg); cursor: pointer;
  color: var(--text-secondary); font-size: .9rem;
  transition: background .2s;
}
.promo-box-new .promo-close:hover { background: var(--border); }
.promo-box-new .promo-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--grad-primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(62,200,192,.35);
}
.promo-box-new .popup-headline {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 800;
  margin-bottom: 10px; color: var(--text-primary);
}
.promo-box-new .popup-text {
  color: var(--text-secondary); font-size: .9rem; line-height: 1.65;
  margin-bottom: 20px;
}
.popup-coupon-wrap {
  background: linear-gradient(135deg,rgba(93,212,99,.08),rgba(59,159,232,.08));
  border: 1.5px dashed var(--brand-teal);
  border-radius: 12px; padding: 14px 16px;
  margin-bottom: 16px; flex-direction: column; gap: 6px;
}
.popup-coupon-label { font-size: .75rem; color: var(--text-secondary); }
.popup-coupon-code {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  letter-spacing: .12em; color: var(--brand-teal);
}
.popup-coupon-copy {
  align-self: center; padding: 5px 14px;
  background: white; border: 1.5px solid var(--brand-teal);
  border-radius: 20px; color: var(--brand-teal);
  font-size: .78rem; font-weight: 700; cursor: pointer;
  transition: all .2s; margin-top: 4px;
}
.popup-coupon-copy:hover { background: var(--brand-teal); color: white; }

/* ══════════════════════════════════════════
   BUTTON SIZES
══════════════════════════════════════════ */
.btn-lg { padding: 16px 32px; font-size: 1rem; }

