/* Broll-Technik - Relaxed, Personal & Apple-Grade Minimal Design System */
/* Custom Bespoke Mobile App Architecture (< 768px) & Desktop View (>= 768px) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  /* Clean Unified Palette: Anthracite, Ice Slate & Electric Blue */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9;
  --border-color: #e2e8f0;
  --border-hover: #2563eb;
  
  --text-main: #0f172a;       /* Deep Anthracite */
  --text-muted: #334155;      /* High-contrast Slate for maximum readability */
  --text-dim: #94a3b8;
  
  --primary-accent: #2563eb;  /* Pure Electric Blue */
  --accent-mint: #059669;     /* Status Emerald */
  
  --grid-dot: rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 20px 45px rgba(15, 23, 42, 0.08);
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg-main: #090d16;
  --bg-card: #131b2e;
  --bg-card-alt: #1a243a;
  --border-color: #1e293b;
  --border-hover: #38bdf8;
  
  --text-main: #ffffff;       /* Pure Crisp White in Dark Mode */
  --text-muted: #e2e8f0;      /* Ultra Bright Slate in Dark Mode */
  --text-dim: #64748b;
  
  --primary-accent: #38bdf8;
  --accent-mint: #10b981;
  
  --grid-dot: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 20px 45px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
  padding-bottom: 0;
}

/* UNIFIED AMBIENT BACKGROUND WITH SOFT ACCENT SHINE */
.ambient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--bg-main);
}

.tech-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--grid-dot) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 70%, transparent 100%);
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  transition: opacity 0.5s ease;
}

[data-theme="dark"] .mesh-orb {
  opacity: 0.25;
  filter: blur(110px);
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, #2563eb 0%, #38bdf8 60%, transparent 100%);
  animation: floatOrb1 18s ease-in-out infinite alternate;
}

.orb-2 {
  bottom: -15%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #2563eb 0%, #0284c7 60%, transparent 100%);
  animation: floatOrb2 22s ease-in-out infinite alternate;
}

.orb-3 {
  top: 40%;
  left: 30%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, #3b82f6 0%, #60a5fa 60%, transparent 100%);
  animation: floatOrb3 25s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10vw, 12vh) scale(1.15); }
  100% { transform: translate(-4vw, 6vh) scale(0.95); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-12vw, -10vh) scale(1.1); }
  100% { transform: translate(6vw, -4vh) scale(0.9); }
}

@keyframes floatOrb3 {
  0% { transform: translate(0, 0) scale(0.9); }
  50% { transform: translate(-8vw, 8vh) scale(1.2); }
  100% { transform: translate(8vw, -8vh) scale(1); }
}

/* HEADER & NAVIGATION */
header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  z-index: 100;
}

.nav-glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.logo-container {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-brand-stacked {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-top {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--text-main);
  line-height: 0.9;
}

.brand-dot {
  color: var(--primary-accent);
  font-weight: 900;
}

.brand-bottom {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card-alt);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

.phone-quick {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--primary-accent);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.94;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

/* FULL BLEED SCREEN-WIDE HERO BACKGROUND (DESKTOP ONLY) */
.hero-full-bleed-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: clamp(880px, 125vh, 1250px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.24;
  mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 68%, rgba(0,0,0,0) 98%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 68%, rgba(0,0,0,0) 98%);
  filter: blur(3.5px) contrast(1.06) saturate(1.05);
  mix-blend-mode: multiply;
  transition: opacity 0.5s ease;
}

[data-theme="dark"] .hero-full-bleed-bg {
  opacity: 0.30;
  mix-blend-mode: screen;
}

.hero-team-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-bg-gradient-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, var(--bg-main) 98%);
}

/* CLEAN, ULTRA-MINIMAL APPLE HERO SECTION */
.hero-apple {
  position: relative;
  padding-top: clamp(140px, 18vh, 185px);
  padding-bottom: clamp(180px, 25vh, 320px);
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero-apple-inner {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.apple-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: clamp(0.8rem, 2vw, 0.88rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}

.pulse-emerald {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-mint);
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5);
  animation: pulseLive 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseLive {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.6); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.hero-apple-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--text-main);
  text-shadow: 0 2px 25px var(--bg-main), 0 1px 6px var(--bg-main);
}

.accent-text {
  color: var(--primary-accent);
}

.hero-apple-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 54px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 20px var(--bg-main), 0 1px 6px var(--bg-main);
}

.hero-apple-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 58px;
  flex-wrap: wrap;
}

.trust-bullets-apple {
  display: flex;
  justify-content: center;
  gap: 16px 32px;
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  font-weight: 700;
  color: var(--text-muted);
  flex-wrap: wrap;
  text-shadow: 0 1px 12px var(--bg-main);
}

.bullet-item i {
  color: var(--accent-mint);
  margin-right: 4px;
}

/* UNIFIED SECTIONS & CARDS */
.clean-section {
  position: relative;
  padding: clamp(55px, 8vh, 85px) 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.clean-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), var(--primary-accent), var(--border-color), transparent);
  opacity: 0.35;
}

.section-header-center {
  text-align: center;
  margin-bottom: clamp(32px, 5vh, 44px);
}

.sub-tag {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-accent);
  margin-bottom: 8px;
  display: block;
}

.section-header-center h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 800;
}

.section-subtext {
  font-size: clamp(0.98rem, 2.2vw, 1.1rem);
  color: var(--text-muted);
  margin-top: 6px;
}

/* SCHNELL-HILFE FINDER GRID */
.finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.finder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 32px);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.finder-card:hover {
  border-color: var(--primary-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.finder-icon {
  font-size: 2.3rem;
  color: var(--primary-accent);
  margin-bottom: 18px;
}

.finder-card h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.35;
}

.finder-action {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

.finder-card:hover .finder-action i {
  transform: translateX(6px);
  transition: transform 0.2s ease;
}

/* UNIFIED APPLE-STYLE FEATURE SHOWCASE STACK */
.apple-features-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 20px;
}

.apple-feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4.5vw, 52px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.apple-feature-block.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.apple-feature-block.reverse .apple-feature-info { order: 2; }
.apple-feature-block.reverse .apple-feature-visual { order: 1; }

.apple-feature-block:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-accent);
  margin-bottom: 12px;
}

.apple-feature-info h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.apple-feature-info p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.65;
  margin-bottom: 24px;
}

.apple-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apple-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.95rem, 2vw, 1.02rem);
  font-weight: 600;
}

.apple-bullet-list i {
  color: var(--primary-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

/* IMAGE + VISUAL COMBINATION WRAPPER WITH PERFECT UNCROPPED 16:9 PROPORTIONS */
.image-vis-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.feature-photo-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

/* UNIFORM VISUAL WIDGETS & MOCKUP BOXES */
.apple-feature-visual {
  width: 100%;
}

.hardware-box-large, .wlan-box-large, .praxis-box-large, .cam-box-large, .backup-box-large, .vis-mockup {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.hardware-box-large .hw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 800;
  flex-wrap: wrap;
  gap: 8px;
}

.hw-badge { color: var(--accent-mint); }
.hw-speed { color: var(--primary-accent); }

.hw-items { display: flex; gap: 10px; flex-wrap: wrap; }

.hw-chip {
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--bg-card);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.wlan-box-large { text-align: center; align-items: center; padding: 24px; }

.wifi-meter-wrapper { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.wifi-gauge { display: flex; gap: 6px; }

.signal-dot {
  width: 10px;
  height: 32px;
  background: var(--primary-accent);
  border-radius: 4px;
}

.signal-dot.s1 { animation: signalPulse 2s infinite 0.2s; }
.signal-dot.s2 { animation: signalPulse 2s infinite 0.4s; }
.signal-dot.s3 { animation: signalPulse 2s infinite 0.6s; }
.signal-dot.s4 { animation: signalPulse 2s infinite 0.8s; }

@keyframes signalPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.7); }
}

.wifi-speed-text { font-size: 1rem; font-weight: 800; color: var(--primary-accent); }
.mesh-label { font-size: 0.9rem; font-weight: 700; color: var(--text-muted); }

.praxis-status-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.92rem; font-weight: 800; flex-wrap: wrap; gap: 8px; }
.p-badge { color: var(--primary-accent); }
.dsgvo-badge { color: var(--accent-mint); }

.printer-status-bar {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* UNIFORM ELEGANT MAC BROWSER MOCKUP WINDOW */
.vis-mockup {
  padding: 0;
  overflow: hidden;
}

.mock-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
}

.dots { display: flex; gap: 6px; }
.dots span { width: 9px; height: 9px; border-radius: 50%; }
.d-red { background: #ff5f56; }
.d-yellow { background: #ffbd2e; }
.d-green { background: #27c93f; }

.window-title { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); }

.mock-window-body {
  padding: 16px 20px;
  background: var(--bg-card);
}

.web-preview-layout {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.web-hero-box {
  height: 20px;
  background: var(--primary-accent);
  opacity: 0.22;
  border-radius: 6px;
}

.web-grid-boxes {
  display: flex;
  gap: 8px;
}

.web-grid-boxes span {
  flex: 1;
  height: 16px;
  background: var(--border-color);
  border-radius: 6px;
}

.cam-live-indicator { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 800; color: var(--accent-mint); }
.rec-dot { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; animation: blinkRec 1.5s infinite; }

@keyframes blinkRec {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.cam-storage-info { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }

.backup-progress-header { display: flex; align-items: center; justify-content: space-between; font-size: 0.92rem; font-weight: 800; }
.backup-progress-header .pct { color: var(--accent-mint); }

.progress-bar-clean { width: 100%; height: 10px; background: var(--border-color); border-radius: 10px; overflow: hidden; }
.fill-animated { height: 100%; background: var(--primary-accent); border-radius: 10px; width: 100%; animation: fillSync 3s ease-in-out infinite; }

@keyframes fillSync {
  0% { width: 30%; }
  50% { width: 100%; }
  100% { width: 100%; }
}

.backup-note { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }

/* TARGET GROUP TAB SWITCHER */
.tab-switcher {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  max-width: 640px;
  margin: 0 auto 40px auto;
}

.tab-pill {
  flex: 1;
  padding: 12px 18px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.tab-pill.active {
  background: var(--bg-card);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.focus-card {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}

.focus-card.active {
  display: block;
}

.focus-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.focus-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.focus-desc {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  margin-bottom: 28px;
}

.clean-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.clean-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(0.95rem, 2vw, 1.02rem);
  font-weight: 600;
}

.clean-list i {
  color: var(--primary-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.focus-stat-box {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.focus-stat-box .big-icon {
  font-size: 3.5rem;
  color: var(--primary-accent);
  margin-bottom: 16px;
}

.focus-stat-box .stat-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
}

.focus-stat-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* CONTACT BOX & PERSONAL OWNER BADGE */
.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: var(--shadow-sm);
}

.personal-owner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.owner-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.personal-owner-card strong {
  font-size: 1rem;
  display: block;
}

.personal-owner-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-info-side h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info-side p {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  margin-bottom: 20px;
}

.c-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.c-info-item i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.c-info-item strong {
  display: block;
  font-size: 1rem;
}

.c-info-item p, .c-info-item a {
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 0;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.input-group label {
  font-size: 0.92rem;
  font-weight: 700;
}

.input-group input, .input-group select, .input-group textarea {
  padding: 14px 18px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 16px; /* Prevents iOS Safari auto-zoom on focus */
  outline: none;
  transition: var(--transition);
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  border-color: var(--primary-accent);
}

.bot-protection-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-mint);
  margin-top: 16px;
  text-align: center;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border-color);
  padding: 36px 20px;
  background: var(--bg-card);
  margin-top: 70px;
}

.footer-clean {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 20px;
}

.footer-legal a:first-child {
  margin-left: 0;
}

.footer-legal a:hover {
  color: var(--primary-accent);
}

/* MODAL WINDOW FOR ALL VIEWPORTS */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 36px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-head button {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
}

/* MOBILE SPECIAL BOTTOM QUICK DOCK BAR */
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  gap: 12px;
}

.mobile-dock-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.mobile-dock-btn.dock-call {
  background: var(--bg-card-alt);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.mobile-dock-btn.dock-primary {
  background: var(--primary-accent);
  color: #ffffff;
}

/* ========================================== */
/* DEDICATED DUAL-VIEW DISPLAY CONTROLLERS    */
/* ========================================== */
.mobile-app-view {
  display: none;
}

.desktop-view {
  display: block;
}

/* LAPTOP / TABLET LARGE (960px - 1199px) */
@media (max-width: 1199px) {
  .apple-feature-block {
    padding: 36px 32px;
    gap: 36px;
  }
}

/* TABLET MEDIUM (< 960px) */
@media (max-width: 960px) {
  .nav-links { display: none; }
  
  .apple-feature-block, .apple-feature-block.reverse { 
    grid-template-columns: 1fr; 
    gap: 28px; 
    padding: 28px 24px;
  }
  .apple-feature-block.reverse .apple-feature-info { order: 1; }
  .apple-feature-block.reverse .apple-feature-visual { order: 2; }
  
  .finder-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-box { grid-template-columns: 1fr; gap: 36px; padding: 32px 24px; }
  .focus-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ======================================================= */
/* 📱 BESPOKE CUSTOM MOBILE APP VIEW (< 768px - SMARTPHONES) */
/* ======================================================= */
@media (max-width: 768px) {
  body {
    padding-bottom: 74px;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden !important;
  }

  .desktop-view {
    display: none !important;
  }

  .mobile-app-view {
    display: block !important;
    padding-bottom: 80px;
    text-align: center;
    overflow-x: hidden;
  }

  .mobile-bottom-dock {
    display: flex;
  }

  /* Mobile App Header Bar */
  .mobile-app-header {
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 16px);
    z-index: 100;
  }

  .m-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .m-logo {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.12rem;
    letter-spacing: -0.02em;
  }

  .m-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-card-alt);
    padding: 4px 10px;
    border-radius: 50px;
  }

  /* Mobile Hero Screen */
  .m-hero-screen {
    padding-top: 88px;
    padding-bottom: 20px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }

  .m-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
  }

  .m-hero-title {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 10px;
    text-align: center;
    color: var(--text-main);
  }

  .m-hero-text {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 20px;
    text-align: center;
  }

  .m-action-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .m-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-accent);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
  }

  .m-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
  }

  /* Mobile Section */
  .m-section {
    padding: 20px 16px;
    text-align: center;
  }

  .m-section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 14px;
    text-align: center;
    color: var(--text-main);
  }

  /* Mobile Quick Select Grid */
  .m-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .m-quick-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
  }

  .m-quick-card i {
    font-size: 1.5rem;
    color: var(--primary-accent);
    margin-bottom: 2px;
  }

  .m-quick-card strong {
    font-size: 0.88rem;
    line-height: 1.2;
    display: block;
    color: var(--text-main);
  }

  .m-quick-card span {
    font-size: 0.76rem;
    color: var(--primary-accent);
    font-weight: 700;
  }

  /* Mobile Compact Services List */
  .m-services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .m-service-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 14px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    box-shadow: var(--shadow-sm);
  }

  .m-srv-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .m-srv-body {
    flex: 1;
  }

  .m-srv-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.25;
    color: var(--text-main);
  }

  .m-srv-body p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .m-srv-btn {
    background: transparent;
    border: none;
    color: var(--primary-accent);
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  /* Mobile Contact Card */
  .m-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
  }

  .m-owner-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    text-align: center;
  }

  .m-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .m-owner-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
  }

  .m-owner-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .m-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .m-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--bg-card-alt);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
  }

  footer {
    padding: 18px 14px;
    margin-top: 20px;
    text-align: center;
  }
}
