/* =============================================
   SafeToNet Family Store – Main Stylesheet
   ============================================= */

:root {
  --primary: #003087;
  --primary-dark: #001f5e;
  --primary-light: #1a4da0;
  --accent: #E8322F;
  --accent-dark: #c0201d;
  --dark: #111827;
  --text: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f3f4f6;
  --bg-dark: #111827;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
  --nav-height: 72px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--light { background: var(--bg-light); }
.section--dark { background: var(--bg-dark); color: var(--white); }
.section--primary { background: var(--primary); color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: rgba(232,50,47,0.08); padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section--dark .section-header h2,
.section--primary .section-header h2 { color: var(--white); }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section--dark .section-header p { color: rgba(255,255,255,0.7); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: var(--transition); cursor: pointer; }
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,50,47,0.3); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--outline-dark { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--outline-dark:hover { background: var(--primary); color: var(--white); }
.btn--white { background: var(--white); color: var(--primary); }
.btn--white:hover { background: var(--bg-light); transform: translateY(-2px); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge--accent { background: var(--accent); color: var(--white); }
.badge--new { background: #10b981; color: var(--white); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__body { padding: 28px; }
.card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.card__text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar.white-nav {
  background: var(--white);
  box-shadow: var(--shadow);
}
.navbar.white-nav .nav-link { color: var(--text); }
.navbar.white-nav .nav-link:hover { color: var(--primary); }
.navbar.white-nav .logo-text { color: var(--primary); }
.navbar.white-nav .logo-sub { color: var(--text-muted); }
.navbar.white-nav .nav-toggle span { background: var(--dark); }

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

.navbar__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 38px; height: 38px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.logo-text { font-size: 1rem; font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; }
.logo-sub { font-size: 0.65rem; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; text-transform: uppercase; }

.navbar__menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link--cta { background: var(--accent); color: var(--white); font-weight: 600; padding: 8px 18px; }
.nav-link--cta:hover { background: var(--accent-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO – STARTSEITE
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1e 0%, #001f5e 40%, #003087 70%, #0a2070 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(0,80,200,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,50,47,0.12) 0%, transparent 60%);
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content {}
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(232,50,47,0.15); border: 1px solid rgba(232,50,47,0.3); border-radius: 30px; color: #ff8a87; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px; }
.hero__badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero__subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hero__stat { text-align: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 20px 16px; backdrop-filter: blur(10px); }
.hero__stat-num { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero__stat-num span { color: var(--accent); }
.hero__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }

.hero__visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero__phones { display: flex; align-items: flex-end; gap: -20px; justify-content: center; position: relative; }
.phone-mockup { position: relative; }
.phone-mockup--main { z-index: 3; }
.phone-mockup--left, .phone-mockup--right { opacity: 0.7; }
.phone-mockup--left { transform: rotate(-8deg) translateX(30px); z-index: 2; }
.phone-mockup--right { transform: rotate(8deg) translateX(-30px); z-index: 2; }
.phone-body { background: linear-gradient(145deg, #2a2a3e, #1a1a2e); border-radius: 32px; border: 2px solid rgba(255,255,255,0.15); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1); }
.phone-body--large { width: 180px; height: 360px; }
.phone-body--small { width: 140px; height: 280px; }
.phone-screen { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #003087 100%); width: 100%; height: 70%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; }
.phone-screen__logo { font-size: 1.8rem; font-weight: 900; color: white; letter-spacing: -0.05em; }
.phone-screen__brand { font-size: 0.65rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.phone-bottom { height: 30%; background: #2a2a3e; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 12px; }
.phone-specs { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.4; }
.phone-dot { width: 32px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; }

.hero__floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  animation: float 3s ease-in-out infinite;
}
.hero__floating-badge--1 { top: 10%; left: -10%; animation-delay: 0s; }
.hero__floating-badge--2 { bottom: 15%; right: -5%; animation-delay: 1.5s; }
.floating-icon { font-size: 1.2rem; }

/* =============================================
   BRANDS / LOGOS
   ============================================= */
.brands-strip {
  padding: 36px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.brands-strip__label { text-align: center; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.brands-strip__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 24px; }
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-width: 110px;
  height: 52px;
  transition: var(--transition);
  background: var(--white);
}
.brand-logo:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.brand-logo span { font-size: 0.95rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-logo--apple span { font-size: 0.9rem; }
.brand-logo--telekom span { color: #e20074; font-weight: 900; font-size: 0.85rem; letter-spacing: 0.02em; }
.brand-logo--vodafone span { color: #e60000; font-weight: 900; }
.brand-logo--o2 span { color: #003c8f; font-size: 1.2rem; font-weight: 900; letter-spacing: -0.05em; }
.brand-logo--samsung span { color: #1428a0; font-size: 0.85rem; letter-spacing: 0.03em; }
.brand-logo--apple span { color: #555; }
.brand-logo--sony span { color: #000; font-size: 0.85rem; letter-spacing: 0.08em; }
.brand-logo--google span { background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.brand-logo--xiaomi span { color: #FF6900; }
.brand-logo--oppo span { color: #1d4289; }
.brand-logo--congstar span { color: #6a0dad; font-size: 0.8rem; }
.brand-logo--wertgarantie span { color: #004b87; font-size: 0.78rem; }

/* Section split: carriers + devices */
.brands-section { padding: 64px 0; background: var(--bg-light); }
.brands-section h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 20px; }
.brands-grid { display: flex; flex-wrap: wrap; gap: 12px; }

/* =============================================
   SMARTPHONES
   ============================================= */
.phones-section { padding: 90px 0; background: var(--bg-dark); color: var(--white); }
.phone-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.phone-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.phone-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.phone-card__brand { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 8px; }
.phone-card__name { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.3; }
.phone-card__visual { height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.phone-visual { width: 60px; height: 110px; background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)); border-radius: 12px; border: 1px solid rgba(255,255,255,0.15); position: relative; }
.phone-visual::before { content: ''; position: absolute; top: 4px; left: 50%; transform: translateX(-50%); width: 20px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.phone-visual::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.2); border-radius: 50%; }
.phone-card__specs { list-style: none; }
.phone-card__specs li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.65); padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.phone-card__specs li:last-child { border-bottom: none; }
.spec-icon { color: var(--accent); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }
.phone-card__badge { position: absolute; top: 18px; right: 18px; background: var(--accent); color: white; font-size: 0.65rem; font-weight: 700; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.05em; }

/* =============================================
   BUSINESS CUSTOMERS (TEASER)
   ============================================= */
.b2b-teaser {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.b2b-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.b2b-teaser__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.b2b-teaser__content {}
.b2b-teaser h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
.b2b-teaser p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.b2b-features { display: flex; flex-direction: column; gap: 16px; }
.b2b-feature { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); }
.b2b-feature__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.b2b-feature__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.b2b-feature__desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* =============================================
   STOREFINDER TEASER
   ============================================= */
.storefinder-teaser { padding: 80px 0; background: var(--bg-light); text-align: center; }
.store-search-box { display: flex; max-width: 520px; margin: 32px auto 0; gap: 0; box-shadow: var(--shadow-lg); border-radius: var(--radius); overflow: hidden; }
.store-search-box input { flex: 1; padding: 18px 20px; border: none; outline: none; font-size: 1rem; font-family: var(--font); background: var(--white); color: var(--text); }
.store-search-box button { padding: 18px 28px; background: var(--primary); color: var(--white); border: none; cursor: pointer; font-weight: 600; font-size: 0.9rem; transition: var(--transition); white-space: nowrap; }
.store-search-box button:hover { background: var(--primary-dark); }

/* =============================================
   STOREFINDER PAGE
   ============================================= */
.storefinder-hero { padding: 140px 0 60px; background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%); color: var(--white); text-align: center; }
.storefinder-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.storefinder-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

.storefinder-search { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-height); z-index: 100; box-shadow: var(--shadow-sm); }
.search-controls { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.search-input-wrap { position: relative; flex: 1; min-width: 260px; }
.search-input-wrap input { width: 100%; padding: 14px 18px 14px 46px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: var(--font); outline: none; transition: var(--transition); }
.search-input-wrap input:focus { border-color: var(--primary); }
.search-input-wrap .search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 1rem; }
.search-filter { padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.9rem; font-family: var(--font); background: var(--white); cursor: pointer; outline: none; transition: var(--transition); }
.search-filter:focus { border-color: var(--primary); }
.search-btn { padding: 14px 28px; background: var(--primary); color: var(--white); border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; font-family: var(--font); transition: var(--transition); }
.search-btn:hover { background: var(--primary-dark); }

.stores-section { padding: 48px 0 80px; }
.stores-count { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.stores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.store-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: var(--transition); }
.store-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-2px); }
.store-card__partner { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 12px; margin-bottom: 12px; }
.partner--telekom { background: rgba(226,0,116,0.1); color: #e20074; }
.partner--o2 { background: rgba(0,60,143,0.1); color: #003c8f; }
.partner--vodafone { background: rgba(230,0,0,0.1); color: #e60000; }
.partner--safetonet { background: rgba(0,48,135,0.1); color: var(--primary); }
.store-card__name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.store-card__address { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 6px; display: flex; align-items: flex-start; gap: 6px; }
.store-card__hours { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.store-card__actions { margin-top: 16px; display: flex; gap: 10px; }
.store-btn { font-size: 0.8rem; padding: 8px 14px; border-radius: var(--radius); font-weight: 600; transition: var(--transition); }
.store-btn--directions { background: var(--primary); color: var(--white); }
.store-btn--directions:hover { background: var(--primary-dark); }
.store-btn--call { border: 1px solid var(--border); color: var(--text); }
.store-btn--call:hover { border-color: var(--primary); color: var(--primary); }
.store-card.hidden { display: none; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero { padding: 140px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero--blue { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); }
.page-hero--dark { background: linear-gradient(135deg, #111827, #1e3a5f); color: var(--white); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 16px; line-height: 1.2; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 32px; }
.page-hero__label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); padding: 5px 16px; border-radius: 20px; margin-bottom: 16px; }

/* =============================================
   FEATURES / USP GRID
   ============================================= */
.features-section { padding: 80px 0; }
.feature-card { text-align: center; padding: 36px 24px; }
.feature-card__icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   GESCHÄFTSKUNDEN PAGE
   ============================================= */
.b2b-offers { padding: 80px 0; background: var(--bg-light); }
.offer-card { background: var(--white); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow); border-top: 4px solid var(--primary); transition: var(--transition); }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-card__icon { font-size: 2.5rem; margin-bottom: 20px; }
.offer-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.offer-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.offer-card ul { list-style: none; }
.offer-card ul li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 0.9rem; color: var(--text); border-bottom: 1px solid var(--border); }
.offer-card ul li:last-child { border-bottom: none; }
.offer-card ul li::before { content: '✓'; color: #10b981; font-weight: 700; flex-shrink: 0; }

.b2b-contact { padding: 80px 0; background: var(--primary); color: var(--white); text-align: center; }
.b2b-contact h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 16px; }
.b2b-contact p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 500px; margin: 0 auto 36px; }
.contact-methods { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.contact-method { display: flex; align-items: center; gap: 10px; padding: 14px 24px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); color: var(--white); font-weight: 500; transition: var(--transition); }
.contact-method:hover { background: rgba(255,255,255,0.15); }
.contact-method span:first-child { font-size: 1.2rem; }

/* =============================================
   PRIVATKUNDEN PAGE
   ============================================= */
.services-grid { padding: 80px 0; }
.service-card { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__header { padding: 36px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); }
.service-card__header h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.service-card__header p { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.service-card__body { padding: 28px; background: var(--white); }
.service-feature { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.service-feature:last-child { border-bottom: none; }
.service-feature__icon { font-size: 1.1rem; flex-shrink: 0; }
.service-feature__text { font-size: 0.9rem; color: var(--text); }
.service-feature__text strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: 2px; }

/* =============================================
   FAMILY STORES PAGE
   ============================================= */
.family-intro { padding: 80px 0; }
.family-numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.family-number { text-align: center; padding: 32px 20px; background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow); border-top: 4px solid var(--accent); }
.family-number__value { font-size: 3rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.family-number__label { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

.partner-types { padding: 80px 0; background: var(--bg-light); }
.partner-type-card { background: var(--white); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow); }
.partner-type-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.partner-type-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.partner-tag { display: inline-block; padding: 5px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-right: 8px; margin-bottom: 8px; }

/* =============================================
   CAREER SECTION / PAGE
   ============================================= */
.career-section { padding: 90px 0; background: var(--bg-dark); color: var(--white); }
.career-section .section-header .label { color: #fbbf24; background: rgba(251,191,36,0.1); }
.career-section h2 { color: var(--white); }
.career-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 48px; }
.career-benefit { text-align: center; padding: 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); transition: var(--transition); }
.career-benefit:hover { background: rgba(255,255,255,0.08); }
.career-benefit__icon { font-size: 2rem; margin-bottom: 12px; }
.career-benefit h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.career-benefit p { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.career-cta-box { text-align: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 48px; }
.career-cta-box h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; }
.career-cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #0a0f1e; color: rgba(255,255,255,0.7); }
.footer__main { padding: 64px 0 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { max-width: 300px; }
.footer-brand .logo-text { font-size: 1.1rem; margin-bottom: 4px; color: var(--white); }
.footer-brand .logo-sub { font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer__bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer__copyright { font-size: 0.8rem; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer__legal a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-contact-item span:first-child { font-size: 0.9rem; flex-shrink: 0; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in-up { animation: fadeInUp 0.6s ease both; }

/* =============================================
   TRUST SEALS & SOCIAL PROOF
   ============================================= */

/* Hero trust line */
.hero__trust { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.95); font-weight: 600; }
.hero__trust-item::before { content: '✓'; color: #4ade80; font-weight: 800; font-size: 0.9rem; }

/* Trust bar - partner authorization */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.trust-badge:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.trust-badge__icon { font-size: 1.25rem; flex-shrink: 0; }
.trust-badge__text { min-width: 0; }
.trust-badge__label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); line-height: 1; margin-bottom: 3px; }
.trust-badge__value { font-size: 0.82rem; font-weight: 800; color: var(--dark); line-height: 1.2; }
.trust-badge--telekom { border-left: 3px solid #e20074; }
.trust-badge--telekom .trust-badge__value { color: #e20074; }
.trust-badge--vodafone { border-left: 3px solid #e60000; }
.trust-badge--vodafone .trust-badge__value { color: #e60000; }
.trust-badge--o2 { border-left: 3px solid #003c8f; }
.trust-badge--o2 .trust-badge__value { color: #003c8f; }
.trust-badge--stat { border-left: 3px solid var(--primary); }
.trust-badge--stat .trust-badge__value { color: var(--primary); }

/* Trust signals section */
.trust-section { padding: 72px 0; background: var(--bg-light); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.trust-card__seal { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.trust-card__seal--green { background: rgba(16,185,129,0.1); }
.trust-card__seal--blue { background: rgba(0,48,135,0.1); }
.trust-card__seal--yellow { background: rgba(251,191,36,0.1); }
.trust-card__seal--red { background: rgba(232,50,47,0.1); }
.trust-card__seal--purple { background: rgba(124,58,237,0.1); }
.trust-card__seal--teal { background: rgba(20,184,166,0.1); }
.trust-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); line-height: 1.3; margin: 0; }
.trust-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.trust-card__stars { display: flex; gap: 2px; color: #f59e0b; font-size: 0.9rem; }

/* Employer brand trust section */
.employer-trust { padding: 64px 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.employer-trust h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.employer-trust > .container > p { color: var(--text-muted); margin-bottom: 36px; }
.employer-badges { display: flex; flex-wrap: wrap; gap: 16px; }
.employer-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.employer-badge:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.employer-badge__icon { font-size: 1.6rem; }
.employer-badge__label { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.employer-badge__value { font-size: 0.9rem; font-weight: 800; color: var(--dark); }

/* Conversion bar / sticky CTA (mobile) */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  padding: 12px 20px;
  z-index: 900;
  gap: 12px;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta__text { flex: 1; font-size: 0.875rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.sticky-cta__text strong { display: block; color: var(--white); font-size: 0.95rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__stats { max-width: 400px; margin: 0 auto; }
  .hero__visual { display: none; }
  .b2b-teaser__inner { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .family-numbers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .hero__actions { flex-direction: column; width: 100%; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .navbar__menu { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--dark); flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-lg); }
  .navbar__menu.open { display: flex; }
  .nav-link { padding: 14px 16px; font-size: 1rem; }
  /* White-nav pages (e.g. Storefinder): mobile menu gets white bg + dark text */
  .navbar.white-nav .navbar__menu { background: var(--white); border-top: 1px solid var(--border); }
  .navbar.white-nav .navbar__menu .nav-link { color: var(--text); }
  .navbar.white-nav .navbar__menu .nav-link:hover,
  .navbar.white-nav .navbar__menu .nav-link.active { color: var(--primary); background: var(--bg-light); }
  .nav-toggle { display: flex; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .family-numbers { grid-template-columns: 1fr 1fr; }
  .search-controls { flex-direction: column; }
  .search-input-wrap { min-width: auto; width: 100%; }
  .brands-strip__logos { gap: 8px 12px; }
  .brand-logo { min-width: 90px; padding: 8px 14px; }
  .hero__stat-num { font-size: 1.4rem; }
  .b2b-feature { flex-direction: column; gap: 8px; }
  .store-search-box { flex-direction: column; border-radius: var(--radius-lg); }
  .store-search-box input, .store-search-box button { border-radius: 0; width: 100%; }
  .store-search-box input { border-radius: var(--radius) var(--radius) 0 0; }
  .store-search-box button { border-radius: 0 0 var(--radius) var(--radius); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .career-benefits { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__inner { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .employer-badges { flex-direction: row; flex-wrap: wrap; }
  .employer-badge { flex: 1 1 45%; }
  .sticky-cta { display: flex; }
  .employer-trust > .container > div { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero__stats { grid-template-columns: 1fr; max-width: 200px; }
  .career-benefits { grid-template-columns: 1fr; }
  .family-numbers { grid-template-columns: 1fr 1fr; }
  .contact-methods { flex-direction: column; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .employer-badge { flex: 1 1 100%; }
}
