/* ==========================================================================
   DESIGN-SYSTEM & VARIABLES (SWIMFLOW MARKETING)
   ========================================================================== */

@import url('fonts.css');

:root {
  /* Colors */
  --bg-pool-white: #ffffff;
  --text-dark-navy: #07162c;
  --brand-neon-teal: #00F2FE;
  --brand-olympic-blue: #4FACFE;
  
  --navy-800: #0a213e;
  --navy-700: #0f305c;
  --navy-600: #143e74;
  --navy-100: #e6f0f7;
  
  --glow-teal: rgba(0, 242, 254, 0.4);
  --glow-blue: rgba(79, 172, 254, 0.3);
  
  /* Fonts & Fallback Stacks */
  --font-heading: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  
  /* Transition curve - Butter-smooth scrolling, hovering & state changes */
  --transition-smooth: 0.4s ease-in-out;
  --transition-fast: 0.2s ease-in-out;
  
  /* Organic ocean border radii */
  --radius-organic-1: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --radius-organic-2: 60% 40% 30% 70% / 60% 30% 70% 40%;
  --radius-organic-3: 40% 60% 60% 40% / 50% 50% 50% 50%;
  
  --shadow-premium: 0 15px 35px rgba(7, 22, 44, 0.08);
  --shadow-glow: 0 0 25px var(--glow-teal);
  
  /* Max width container */
  --container-width: 1200px;
}

/* ==========================================================================
   RESET & GLOBAL BASICS
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

body {
  background-color: var(--bg-pool-white);
  color: var(--text-dark-navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  -webkit-font-smoothing: antialiased;
}

section, .section-padding {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark-navy);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   ACCESSIBILITY & CONTRAST HELPER UTILITIES
   ========================================================================== */

/* Strict accessibility: Neon-teal (#00F2FE) must NEVER be text on white. */
.contrast-text-light {
  color: var(--text-dark-navy) !important;
}

.contrast-text-accent {
  color: var(--brand-olympic-blue) !important;
}

/* Neon-teal text is safe ONLY on deep navy background */
.navy-bg-text-neon {
  color: var(--brand-neon-teal) !important;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   FROSTED GLASS ("WET EFFECT")
   ========================================================================== */

.frosted-glass-light {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.frosted-glass-dark {
  background: rgba(7, 22, 44, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   STRUCTURE: CONTAINER & BUTTONS
   ========================================================================== */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* Buttons with Ripple Water Drop Glow Effects */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: none;
  background: linear-gradient(135deg, var(--brand-olympic-blue), #2575fc);
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 25px var(--glow-blue);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: visible;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px var(--glow-blue);
  border-radius: 8px;
}

/* Pulse animation representing water drop ripples */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-olympic-blue);
  border-radius: inherit;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: none;
  animation: waterRipple 3s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes waterRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: 2px solid var(--text-dark-navy);
  background: transparent;
  color: var(--text-dark-navy);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--text-dark-navy);
  color: #ffffff;
  border-radius: 8px;
  transform: translateY(-2px);
}

/* ==========================================================================
   TRANSLUCENT FIXED HEADER
   ========================================================================== */

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-active {
  box-shadow: 0 10px 30px rgba(7, 22, 44, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: url(#wave-gradient);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--text-dark-navy), var(--brand-olympic-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}

/* Menu swim-lane tracking color effect */
.nav-link {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  color: var(--text-dark-navy);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-olympic-blue), var(--brand-neon-teal));
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--brand-olympic-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--text-dark-navy);
  color: #ffffff;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.header-cta:hover {
  border-radius: 8px;
  background: var(--brand-olympic-blue);
  box-shadow: 0 8px 20px var(--glow-blue);
  transform: translateY(-2px);
}

/* Mobile Hamburger Button */
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  justify-content: center;
  z-index: 1100;
}

.burger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-dark-navy);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* CTA Visibility Helper Classes */
.mobile-only-cta {
  display: none !important;
}

.desktop-only-cta {
  display: inline-flex !important;
}

/* ==========================================================================
   HERO-BEREICH (WITH DOUBLE COLUMN LAYOUT)
   ========================================================================== */

.hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(79, 172, 254, 0.04) 50%, rgba(255,255,255,0) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Hero Badge */
.hero-badge-container {
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--navy-100);
  border: 1px solid rgba(79, 172, 254, 0.3);
  color: var(--navy-700);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--text-dark-navy) 40%, var(--brand-olympic-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: #4a5c73;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Interactive Status Dashboard (Right Side) */
.hero-visual {
  position: relative;
}

.hero-dashboard {
  border-radius: var(--radius-organic-2);
  padding: 30px;
  box-shadow: var(--shadow-premium);
  position: relative;
  transition: border-radius var(--transition-smooth), transform var(--transition-smooth);
}

.hero-dashboard:hover {
  border-radius: var(--radius-organic-1);
  transform: scale(1.02);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(7, 22, 44, 0.05);
  padding-bottom: 12px;
}

.dash-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #718096;
}

.dash-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #27ae60;
}

.dash-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #27ae60;
  border-radius: 50%;
  animation: onlinePulse 1.8s infinite;
}

@keyframes onlinePulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px rgba(39, 174, 96, 0.6); }
  100% { transform: scale(0.8); opacity: 0.8; }
}

.dash-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.dash-stat-box {
  background: rgba(255, 255, 255, 0.5);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform var(--transition-fast);
}

.dash-stat-box:hover {
  transform: translateY(-2px);
}

.stat-label {
  font-size: 13px;
  color: #718096;
  margin-bottom: 4px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark-navy);
}

.stat-trend {
  font-size: 11px;
  color: #27ae60;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

/* Simulated Live Registrations */
.live-alerts-container {
  height: 70px;
  overflow: hidden;
  position: relative;
  background: rgba(7, 22, 44, 0.03);
  border-radius: 8px;
  padding: 10px 14px;
}

.live-alert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideAlertUp 0.5s ease-out forwards;
}

.alert-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-content {
  font-size: 12px;
  color: var(--text-dark-navy);
}

.alert-content strong {
  font-family: var(--font-heading);
  color: var(--brand-olympic-blue);
}

.alert-time {
  font-size: 10px;
  color: #a0aec0;
  margin-left: auto;
}

@keyframes slideAlertUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   PRACTISE-SUCCESS SECTION (CASE STUDY - SSV AXOLOTL)
   ========================================================================== */

.success-section {
  background: var(--navy-800);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.success-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 20%, rgba(0, 242, 254, 0.06) 0%, rgba(255,255,255,0) 60%),
              radial-gradient(circle at 85% 80%, rgba(79, 172, 254, 0.08) 0%, rgba(255,255,255,0) 60%);
  z-index: 1;
}

.success-container {
  position: relative;
  z-index: 2;
}

.success-tag {
  color: var(--brand-neon-teal);
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.success-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 60px;
}

.success-title {
  color: #ffffff;
  font-size: 36px;
  max-width: 600px;
}

.success-meta {
  color: #e2e8f0;
  font-size: 15px;
  border-left: 3px solid var(--brand-neon-teal);
  padding-left: 18px;
  max-width: 400px;
}

.ticker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ticker-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-organic-1);
  padding: 36px;
  text-align: center;
  transition: all var(--transition-smooth);
}

.ticker-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-organic-3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ticker-card:nth-child(2) {
  border-radius: var(--radius-organic-2);
}
.ticker-card:nth-child(2):hover {
  border-radius: var(--radius-organic-1);
}

.ticker-num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  /* Glowing Neon-teal only on dark background - safe contrast */
  color: var(--brand-neon-teal);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
  margin-bottom: 12px;
}

.ticker-num {
  line-height: 1;
}

.ticker-label {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.ticker-trend {
  font-size: 13px;
  color: #cbd5e0;
}

.ticker-trend span {
  color: var(--brand-neon-teal);
  font-weight: 700;
}

/* ==========================================================================
   INTERACTIVE AD-POOL SECTION
   ========================================================================== */

.ad-pool-section {
  position: relative;
}

.ad-pool-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.ad-pool-intro {
  margin-bottom: 40px;
}

.ad-pool-title {
  font-size: 36px;
  margin-bottom: 16px;
}

/* Wettkampf-Schwimmbahnen styled Tabs */
.lane-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.lane-tab {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(7, 22, 44, 0.05);
  box-shadow: 0 4px 10px rgba(7, 22, 44, 0.02);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Styled like swimming lane dividers (Strokes/Lines) */
.lane-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #e2e8f0;
  transition: background var(--transition-smooth);
}

.lane-number {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-pool-white);
  color: var(--text-dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.lane-tab-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark-navy);
}

/* Active tab styles mimicking active swimming lanes */
.lane-tab.active {
  background: var(--text-dark-navy);
  color: #ffffff;
  border-color: var(--text-dark-navy);
  transform: translateX(8px);
  box-shadow: 0 10px 20px rgba(7, 22, 44, 0.1);
}

.lane-tab.active::before {
  background: linear-gradient(180deg, var(--brand-olympic-blue), var(--brand-neon-teal));
}

.lane-tab.active .lane-number {
  background: var(--brand-olympic-blue);
  color: #ffffff;
}

.lane-tab.active .lane-tab-title {
  color: #ffffff;
}

/* Interactive Instagram Ad Mockup (Right Side) */
.mockup-container {
  display: flex;
  justify-content: center;
}

/* iPhone 17 Mockup Wrapper using the user's high-resolution frame */
.iphone-17-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 395px; /* Highly polished visual footprint on desktop */
  margin: 0 auto;
  filter: drop-shadow(0 25px 50px rgba(7, 22, 44, 0.35));
  transition: transform var(--transition-smooth);
}

.iphone-17-mockup-wrapper:hover {
  transform: scale(1.015) rotate(0.5deg);
}

.iphone-17-case-image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none; /* Let all click interaction pass through to the HTML below */
  position: relative;
  z-index: 10;
}

.insta-mockup {
  position: absolute;
  top: 2.17%;
  bottom: 2.21%;
  left: 4.79%;
  right: 4.79%;
  background: #ffffff;
  border-radius: 41px; /* Elegant round corner clipping fitting beautifully within the titanium bezel */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

/* iPhone 17 Display Status Bar & Dynamic Island Styles */
.iphone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  height: 52px; /* Perfect physical alignment flanking the center Dynamic Island */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  user-select: none;
  border-bottom: none;
  z-index: 20;
}

.iphone-time {
  letter-spacing: -0.1px;
}

/* Slimmed futuristic layout for the under-display iPhone 17 Dynamic Island (now serviced by physical case frame) */
.iphone-dynamic-island {
  display: none !important;
}

.island-camera {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a2536 20%, #0c101b 80%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.iphone-signals {
  display: flex;
  align-items: center;
  gap: 5px;
}

.signal-icon {
  color: #000000;
}

.iphone-network {
  font-size: 9px;
  font-weight: 800;
}

.iphone-battery {
  display: flex;
  align-items: center;
  gap: 4px;
}

.iphone-battery-percent {
  font-size: 9px;
  font-weight: 700;
}

.iphone-battery-icon {
  width: 18px;
  height: 9.5px;
  border: 1px solid #000000;
  border-radius: 2.5px;
  padding: 1px;
  position: relative;
  display: flex;
  align-items: center;
}

.iphone-battery-icon::after {
  content: '';
  position: absolute;
  right: -2.5px;
  top: 2.2px;
  width: 1.5px;
  height: 3.5px;
  background: #000000;
  border-radius: 0 0.8px 0.8px 0;
}

.iphone-battery-level {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 1px;
}

/* Instagram Scroll Feed Container inside the iPhone */
.mockup-feed-container {
  flex: 1;
  overflow-y: auto;
  background: #ffffff;
  padding-top: 52px; /* Set precisely to safe-layout space corresponding to the status bar and Dynamic Island bottom */
  padding-bottom: 80px; /* roomy bottom padding to prevent content clipping by bottom pinned metrics bar */
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;  /* Firefox */
}

.mockup-feed-container::-webkit-scrollbar {
  display: none; /* Hide scrollbars for complete visual immersion */
}

/* Instagram Header */
.mockup-header {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #f2f2f2;
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-olympic-blue), var(--brand-neon-teal));
  padding: 2px;
  margin-right: 10px;
}

.mockup-avatar-inner {
  width: 100%;
  height: 100%;
  background: var(--text-dark-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-avatar-inner svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.mockup-user-info {
  display: flex;
  flex-direction: column;
}

.mockup-username {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.mockup-sponsored {
  font-size: 10px;
  color: #777777;
}

/* Mockup Media Box with dynamic graphic/overlay background */
.mockup-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--text-dark-navy) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
}

/* Transition container for 0.2s crossfade - Hidden to show only the pure high-res marketing flyer graphic as requested */
.mockup-content-fade {
  display: none !important;
}

.mockup-media-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity var(--transition-fast);
}

.mockup-media-bg-waves {
  display: none !important;
}

.ad-card-badge {
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-card-main-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin: 15px 0;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.ad-card-main-title span {
  color: var(--brand-neon-teal);
}

.ad-card-bullet-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ad-card-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.ad-card-bullet svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-neon-teal);
  flex-shrink: 0;
}

.ad-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  margin-top: 15px;
}

.ad-card-promo {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-neon-teal);
}

.ad-card-speed {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Instagram Action Bar */
.mockup-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: #fafafa;
}

.cta-learn-more {
  background: var(--brand-olympic-blue);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}

.mockup-caption-box {
  padding: 14px;
  background: #ffffff;
  border-top: 1px solid #f2f2f2;
}

.mockup-description {
  font-size: 12.5px;
  color: #333333;
}

.mockup-description strong {
  margin-right: 6px;
}

.mockup-metrics-overlay {
  display: flex;
  justify-content: space-around;
  padding: 12px 12px 22px; /* Bottom padding for Home Indicator */
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12;
}

/* Sleek Apple Home Swipe Bar (Home Indicator) */
.iphone-home-indicator {
  width: 110px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.85); /* White highlight on the dark metrics tab */
  border-radius: 5px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}

.mock-stat {
  text-align: center;
}

.mock-stat-val {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-neon-teal);
}

.mock-stat-lbl {
  font-size: 9px;
  color: #cbd5e0;
}

/* ==========================================================================
   PHILOSOPHIE ("WARUM MIT MIR?")
   ========================================================================== */

.philosophy-section {
  background: var(--bg-pool-white);
}

.philosophy-box {
  background: var(--navy-800);
  color: #ffffff;
  border-radius: var(--radius-organic-1);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.philosophy-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.04) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.philosophy-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.philosophy-subtitle-neon {
  color: var(--brand-neon-teal);
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

.philosophy-box-title {
  color: #ffffff;
  font-size: 36px;
  margin-top: 8px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.philosophy-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-organic-2);
  padding: 40px 30px;
  transition: all var(--transition-smooth);
}

.philosophy-card:nth-child(2) {
  border-radius: var(--radius-organic-1);
}

.philosophy-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--brand-neon-teal);
  transform: translateY(-5px);
  border-radius: var(--radius-organic-3);
}

.philosophy-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-organic-1);
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-radius var(--transition-smooth);
}

.philosophy-card:hover .philosophy-icon-wrap {
  border-radius: var(--radius-organic-2);
  background: rgba(0, 242, 254, 0.2);
}

.philosophy-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--brand-neon-teal);
  stroke-width: 2.2;
}

.philosophy-card-title {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}

.philosophy-card-desc {
  color: #cbd5e0;
  font-size: 14.5px;
}

/* ==========================================================================
   LEISTUNGSPORTFOLIO (SERVICES)
   ========================================================================== */

.services-section {
  position: relative;
}

.services-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.services-tag {
  color: var(--brand-olympic-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.services-title {
  font-size: 36px;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(7, 22, 44, 0.05);
  border-radius: var(--radius-organic-1);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(7, 22, 44, 0.01);
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card:nth-child(2) {
  border-radius: var(--radius-organic-3);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 172, 254, 0.3);
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-organic-2);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-organic-1); /* Asymmetric droplet */
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-radius var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
  border-radius: var(--radius-organic-3); /* Morphing to another organic radius */
  background: rgba(79, 172, 254, 0.15);
}

.service-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--brand-olympic-blue);
  stroke-width: 2.2;
}

.service-card-title {
  font-size: 20px;
  margin-bottom: 16px;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #4a5c73;
}

.service-bullet svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-olympic-blue);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   CONTACT & B2B LEAD FORM SECTION
   ========================================================================== */

.contact-section {
  background: #ffffff;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info-col {
  padding-right: 20px;
}

.contact-tag {
  color: var(--brand-olympic-blue);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.contact-title {
  font-size: 36px;
  margin-bottom: 24px;
}

.contact-desc {
  font-size: 16px;
  color: #4a5c73;
  margin-bottom: 40px;
}

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

.argument-item {
  display: flex;
  gap: 18px;
}

.arg-num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-organic-1);
  background: var(--navy-100);
  color: var(--brand-olympic-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arg-content-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark-navy);
  margin-bottom: 4px;
}

.arg-content-desc {
  font-size: 14px;
  color: #4a5c73;
}

/* B2B Form Box Card */
.form-box-card {
  background: var(--bg-pool-white);
  border-radius: var(--radius-organic-1);
  padding: 48px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(7, 22, 44, 0.03);
  transition: border-radius var(--transition-smooth);
}

.form-box-card:hover {
  border-radius: var(--radius-organic-3);
}

.form-header {
  margin-bottom: 30px;
}

.form-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: #5b708b;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Modern Floating Label System */
.input-group {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 18px 16px 14px 16px;
  font-size: 15px;
  background: #ffffff;
  border: 1px solid rgba(7, 22, 44, 0.1);
  border-radius: 12px;
  color: var(--text-dark-navy);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--brand-olympic-blue);
  box-shadow: 0 0 10px rgba(79, 172, 254, 0.15);
}

.floating-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #718096;
  pointer-events: none;
  transition: all var(--transition-fast);
  font-weight: 500;
}

/* Avoid centering the floating label vertically in textareas */
textarea.form-input ~ .floating-label {
  top: 24px;
}

/* Shrink and change color to Neon-Teal only on Deep Navy or Active inputs */
.form-input:focus ~ .floating-label,
.form-input:not(:placeholder-shown) ~ .floating-label {
  top: 10px;
  font-size: 11px;
  color: var(--brand-olympic-blue); /* Olympic blue because it is safe contrast on light background! */
  font-weight: 700;
}

textarea.form-input:focus ~ .floating-label,
textarea.form-input:not(:placeholder-shown) ~ .floating-label {
  top: 10px;
}

/* Honeypot field - Invisible to humans */
.hp-field {
  display: none !important;
  visibility: hidden !important;
}

.form-privacy-note {
  font-size: 11.5px;
  color: #718096;
  line-height: 1.4;
}

.btn-form-submit {
  width: 100%;
  margin-top: 10px;
}

/* ==========================================================================
   FOOTER MODAL OVERLAYS (IMPRESSUM & DATENSCHUTZ)
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 22, 44, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 700px;
  max-height: 80vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(7, 22, 44, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-pool-white);
}

.modal-title {
  font-size: 22px;
  color: var(--text-dark-navy);
}

.modal-close-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-navy);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--navy-100);
  transform: rotate(90deg);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.modal-body {
  padding: 30px;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.7;
  color: #1e293b;
}

.modal-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark-navy);
  margin: 28px 0 12px 0;
}

.modal-body p {
  margin-bottom: 14px;
}

/* Success Fullscreen Modal */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-800);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.success-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-modal-card {
  text-align: center;
  max-width: 500px;
  padding: 48px;
  color: #ffffff;
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
}

.success-modal-overlay.active .success-modal-card {
  transform: scale(1);
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--brand-neon-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  box-shadow: 0 0 30px var(--glow-teal);
}

.success-icon-wrap svg {
  width: 40px;
  height: 40px;
  fill: var(--text-dark-navy);
}

.success-modal-title {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 16px;
}

.success-modal-desc {
  color: #cbd5e0;
  margin-bottom: 30px;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.footer-section {
  background: var(--text-dark-navy);
  color: #a0aec0;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-link-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: #cbd5e0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.footer-link-btn:hover {
  color: var(--brand-neon-teal);
}

.copyright {
  font-size: 13px;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS (BREAKPOINTS)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .success-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  /* On tablet (769px to 1024px), keep double columns with a compact gap */
  .ad-pool-grid {
    gap: 32px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Hamburger menu and header-cta toggles under 1024px */
  .burger-btn {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--text-dark-navy);
    flex-direction: column;
    justify-content: center;
    gap: 42px;
    padding: 40px;
    z-index: 1050;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right var(--transition-smooth), visibility var(--transition-smooth);
    visibility: hidden;
    pointer-events: none;
  }
  
  .nav-menu.mobile-open {
    right: 0;
    visibility: visible;
    pointer-events: auto;
  }
  
  .nav-link {
    color: #ffffff;
    font-size: 20px;
  }
  
  .nav-menu .header-cta {
    width: 100%;
    padding: 14px;
    justify-content: center;
  }

  .mobile-only-cta {
    display: block !important;
  }
  
  .desktop-only-cta {
    display: none !important;
  }

  /* Burger animation keys */
  .burger-btn.active .burger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ffffff;
  }
  .burger-btn.active .burger-bar:nth-child(2) {
    opacity: 0;
  }
  .burger-btn.active .burger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ffffff;
  }
}

/* Tablet Optimizations (550px - 1024px) */
@media (min-width: 550px) and (max-width: 1024px) {
  .ticker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px;
  }
  
  .ticker-card {
    padding: 24px 16px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }
  
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .ad-pool-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .lane-tabs {
    flex-direction: row !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
  }

  .lane-tab {
    flex: 1 !important;
    padding: 12px 6px !important;
    gap: 6px !important;
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    transform: none !important;
  }

  .lane-tab::before {
    width: 100% !important;
    height: 4px !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .lane-number {
    width: 22px !important;
    height: 22px !important;
    font-size: 11px !important;
    margin: 0 auto !important;
  }

  .lane-tab-title {
    font-size: 11px !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    display: block !important;
  }

  .section-padding {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 34px;
  }
  
  .hero-subtitle {
    font-size: 15.5px;
    margin-bottom: 28px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 14px;
    text-align: center;
  }
  
  .philosophy-box {
    padding: 40px 20px;
  }
  
  .form-box-card {
    padding: 30px 20px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-right {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

/* For small tablets and big phones specifically (max-width: 640px) */
@media (max-width: 640px) {
  .services-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 10px 4px 24px 4px !important;
    margin: 0 -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--brand-olympic-blue) rgba(15, 98, 254, 0.05) !important;
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
    box-sizing: border-box !important;
  }
  .services-grid::-webkit-scrollbar {
    display: block !important;
    height: 4px !important;
  }
  .services-grid::-webkit-scrollbar-track {
    background: rgba(15, 98, 254, 0.05) !important;
    border-radius: 10px !important;
  }
  .services-grid::-webkit-scrollbar-thumb {
    background: var(--brand-olympic-blue) !important;
    border-radius: 10px !important;
  }
  .service-card {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: start !important;
    margin-bottom: 0 !important;
    padding: 24px 20px !important;
    box-shadow: 0 10px 20px rgba(7, 22, 44, 0.04) !important;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .philosophy-card {
    padding: 30px 20px;
  }
}

/* For small / mid-size smartphones (max-width: 550px) */
@media (max-width: 550px) {
  .ticker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 8px !important;
  }
  
  .ticker-card {
    padding: 16px 8px !important;
    text-align: center !important;
  }

  .ticker-num {
    font-size: 24px !important;
  }

  .ticker-num-wrap span {
    font-size: 14px !important;
  }

  .ticker-label {
    font-size: 11px !important;
    line-height: 1.25 !important;
    margin-top: 6px !important;
    min-height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .ticker-trend {
    font-size: 9px !important;
    margin-top: 6px !important;
    line-height: 1.14 !important;
  }
}

/* Bullet list swipe row on screens below 768px to keep checklist elements next to each other */
@media (max-width: 768px) {
  .flyer-bullet-list {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding: 10px 4px 20px 4px !important;
    margin: 0 -16px 20px -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--brand-olympic-blue) rgba(15, 98, 254, 0.05) !important;
    width: calc(100% + 32px) !important;
    max-width: calc(100% + 32px) !important;
    box-sizing: border-box !important;
  }
  .flyer-bullet-list::-webkit-scrollbar {
    display: block !important;
    height: 4px !important;
  }
  .flyer-bullet-list::-webkit-scrollbar-track {
    background: rgba(15, 98, 254, 0.05) !important;
    border-radius: 10px !important;
  }
  .flyer-bullet-list::-webkit-scrollbar-thumb {
    background: var(--brand-olympic-blue) !important;
    border-radius: 10px !important;
  }
  .flyer-bullet-item {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: start !important;
    background: rgba(15, 98, 254, 0.025) !important;
    border: 1px solid rgba(15, 98, 254, 0.08) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    margin-bottom: 0 !important;
  }
}

/* Extra Tight Viewports & Micro-Screens (max-width: 400px) */
@media (max-width: 400px) {
  .hero-title {
    font-size: 28px;
  }

  .logo-text {
    font-size: 20px;
  }

  .hero-dashboard {
    padding: 16px;
    border-radius: 20px;
  }

  .dash-stat-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dash-stat-box {
    padding: 12px;
  }

  .iphone-17-mockup-wrapper {
    max-width: 310px !important;
  }

  .insta-mockup {
    border-radius: 28px !important;
  }

  .mockup-media {
    padding: 0 !important;
  }

  .success-modal-card {
    padding: 24px 16px;
  }
}

/* ==========================================================================
   STYLIZED SWIM LANE COMPETITIVE DIVIDERS (BUOY ROPES)
   ========================================================================== */
.swim-lane-divider {
  height: 12px;
  background-image: repeating-linear-gradient(90deg, 
    var(--brand-olympic-blue) 0px, var(--brand-olympic-blue) 30px,
    #ffffff 30px, #ffffff 45px,
    #e74c3c 45px, #e74c3c 75px,   /* Red buoy blocks */
    #ffffff 75px, #ffffff 90px,
    var(--brand-olympic-blue) 90px, var(--brand-olympic-blue) 120px
  );
  border: none;
  width: 100%;
  box-shadow: 0 4px 10px rgba(7, 22, 44, 0.05);
  margin: 0;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   FLYER LAYOUT GRID SYSTEM AND STYLES
   ========================================================================== */
.flyer-twin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.flyer-col {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.flyer-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flyer-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

@media (max-width: 991px) {
  .flyer-twin-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }
}

/* ==========================================================================
   RESPONSIVE HERO MOCKUP STYLES
   ========================================================================== */
.hero-mockup-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  height: 550px;
}

.hero-phone-left {
  position: absolute;
  left: -10px;
  top: 10px;
  width: 280px;
  transform: rotate(-3deg);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
}

.hero-phone-right {
  position: absolute;
  right: -10px;
  bottom: 10px;
  width: 270px;
  transform: rotate(5deg);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.hero-floating-badge {
  position: absolute;
  bottom: 60px;
  right: -10px;
  background: #ffffff;
  border: 1px solid rgba(15, 98, 254, 0.12);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-premium);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  animation: floatBadge 4s ease-in-out infinite;
}

/* Tablet responsiveness (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-mockup-container {
    height: 500px;
    max-width: 450px;
  }
  .hero-phone-left {
    width: 230px;
    left: 0px;
    top: 10px;
  }
  .hero-phone-right {
    width: 220px;
    right: 0px;
    bottom: 10px;
  }
  .hero-floating-badge {
    bottom: 40px;
    right: 10px;
    padding: 10px 14px;
    max-width: 180px;
  }
}

/* Mobile responsiveness (max-width: 550px) */
@media (max-width: 550px) {
  .hero-mockup-container {
    height: 400px;
    max-width: 320px;
  }
  .hero-phone-left {
    width: 170px;
    left: -5px;
    top: 5px;
  }
  .hero-phone-right {
    width: 160px;
    right: -5px;
    bottom: 5px;
  }
  .hero-floating-badge {
    bottom: 15px;
    right: 5px;
    padding: 8px 12px;
    max-width: 150px;
  }
}

/* Tiny mobile responsiveness (max-width: 360px) */
@media (max-width: 360px) {
  .hero-mockup-container {
    height: 330px;
    max-width: 270px;
  }
  .hero-phone-left {
    width: 140px;
    left: -5px;
  }
  .hero-phone-right {
    width: 130px;
    right: -5px;
  }
  .hero-floating-badge {
    display: none;
  }
}

/* Dynamic Scroll Tips (Wisch-Hinweise) */
.swipe-tip {
  display: none; /* Default hidden on desktop */
}

@media (max-width: 768px) {
  .swipe-tip {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: rgba(15, 98, 254, 0.05) !important;
    border: 1px solid rgba(15, 98, 254, 0.12) !important;
    color: var(--brand-olympic-blue) !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 12px auto 20px auto !important;
    width: fit-content !important;
    max-width: calc(100% - 32px) !important;
    animation: swipePulse 2s infinite ease-in-out !important;
    user-select: none !important;
    box-sizing: border-box !important;
  }
  
  @keyframes swipePulse {
    0%, 100% {
      opacity: 0.85;
      transform: scale(0.98);
    }
    50% {
      opacity: 1;
      transform: scale(1.02);
    }
  }
}

/* ==========================================================================
   BERLIN-BONUS CARD STYLES
   ========================================================================== */
.berlin-bonus-card {
  position: relative;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(219, 234, 254, 0.85));
  border: 1px solid rgba(15, 98, 254, 0.25);
  border-radius: 16px;
  overflow: hidden;
  animation: slideFadeIn 0.5s ease-out;
  box-shadow: 0 4px 15px rgba(15, 98, 254, 0.08);
}

.berlin-bonus-inner {
  padding: 24px;
}

.berlin-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-olympic-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.berlin-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: whitePulse 1.5s infinite;
}

@keyframes whitePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.berlin-bonus-title {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--text-dark-navy);
  font-weight: 800;
  margin: 0 0 8px 0;
}

.berlin-bonus-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4a5c73;
  margin: 0;
}

@media (max-width: 768px) {
  .berlin-bonus-card {
    border-radius: 12px;
  }
  .berlin-bonus-inner {
    padding: 12px 14px;
  }
  .berlin-bonus-badge {
    font-size: 9.5px;
    padding: 2px 8px;
    margin-bottom: 6px;
    letter-spacing: 0.4px;
  }
  .berlin-bonus-title {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .berlin-bonus-text {
    font-size: 12px;
    line-height: 1.45;
  }
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   SOCIAL PROOF / INSTAGRAM STORY FEEDBACK SECTION
   ========================================================================== */
.feedback-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.story-mockup-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.story-visual-col {
  display: flex;
  justify-content: center;
}

/* Authentic Instagram Story Mobile Frame Mockup */
.instagram-story-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 520px;
  background: #111111;
  border-radius: 28px;
  border: 8px solid #222222;
  box-shadow: var(--shadow-premium), 0 25px 50px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top Progress Bar - simulates raw IG Story bars */
.instagram-story-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.7) -200px 0 0 0;
  border-radius: 2px;
  z-index: 10;
}

.story-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e1b4b; /* Deep Indigo background */
  z-index: 1;
}

.story-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* Plush theme vector elements inside the story background */
.story-overlay-decoration {
  position: absolute;
  bottom: 120px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(253,164,186,0.3) 0%, rgba(253,164,186,0) 70%);
  border-radius: 50%;
  animation: pulseGlow 4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0.8; }
}

.story-tint-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

.story-user-header {
  position: relative;
  z-index: 3;
  margin-top: 20px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #fccc63, #fbad50, #cd486b, #e95950, #8a3ab9);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-user-info {
  display: flex;
  flex-direction: column;
}

.story-username {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.story-time {
  color: rgba(255,255,255,0.70);
  font-size: 10px;
}

.story-dots {
  margin-left: auto;
  color: #ffffff;
  font-size: 12px;
  opacity: 0.8;
}

.story-content-bottom {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 20px 16px 24px;
}

/* Semi-transparent feedback capsule mimicking real IG text overlays or QA stickers */
.story-comment-bubble {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transform: rotate(-1.5deg);
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.3s ease;
}

.story-comment-bubble:hover {
  transform: rotate(0deg) scale(1.02);
}

.story-comment-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: #1e293b;
  font-weight: 700;
  margin: 0;
}

.story-details-col {
  display: flex;
  flex-direction: column;
}

/* Large friendly feedback container details */
.feedback-interview-box {
  background: #ffffff;
  border: 1px solid rgba(15, 98, 254, 0.1);
  border-radius: var(--radius-organic-1);
  padding: 48px;
  box-shadow: var(--shadow-premium);
  position: relative;
}

.feedback-quote-icon {
  position: absolute;
  top: 15px;
  right: 40px;
  font-size: 120px;
  font-family: var(--font-heading);
  line-height: 1;
  color: rgba(15, 98, 254, 0.05);
  font-weight: 900;
  user-select: none;
}

.feedback-core-headline {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-dark-navy);
  font-weight: 850;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.feedback-quote-text {
  font-size: 17px;
  line-height: 1.7;
  color: #4a5c73;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 24px 0;
}

/* Responsive breakdowns for Story Sektion */
@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .instagram-story-card {
    height: 480px;
    max-width: 100%;
    width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 550px) {
  .feedback-interview-box {
    padding: 30px 20px;
  }
  
  .feedback-core-headline {
    font-size: 22px;
  }
  
  .feedback-quote-text {
    font-size: 15px;
  }
}

/* ==========================================================================
   INTERAKTIVE MEDIEN-GALERIE (SLIDER/CAROUSEL WITH MOCKUPS)
   ========================================================================== */
.gallery-section {
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.gallery-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.gallery-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 40px auto 0 auto;
}

.gallery-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 24px 10px;
}

/* Hide scrollbar for gallery and keep swipe action clean */
.gallery-carousel::-webkit-scrollbar {
  display: none;
}
.gallery-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-slide {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 270px;
  scroll-snap-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-slide:hover {
  transform: translateY(-6px);
}

/* Mockup Frame to simulate real smartphone */
.mockup-smartphone {
  width: 100%;
  max-width: 270px;
  height: 480px;
  background: #111111;
  border: 10px solid #222222;
  border-radius: 40px;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.15), 
    0 5px 15px rgba(15, 98, 254, 0.06), 
    inset 0 0 4px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.gallery-slide:hover .mockup-smartphone {
  border-color: #1a1a1a;
  box-shadow: 
    0 22px 45px rgba(15, 98, 254, 0.15), 
    0 10px 20px rgba(0, 0, 0, 0.12),
    inset 0 0 6px rgba(255, 255, 255, 0.15);
}

/* Sleek iPhone Dynamic Island */
.mockup-screen-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 14px;
  background: #000000;
  border-radius: 12px;
  z-index: 15;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Glass Screen Shine and Glare Reflection */
.mockup-screen-glare {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0) 60%
  );
  z-index: 12;
  pointer-events: none;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #091322;
  display: flex;
  flex-direction: column;
  border-radius: 30px; /* Inside screen rounding corresponding to exterior border */
}

/* Video specific covering to look full screen and immersive without being cropped */
video.mockup-media {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background: #000000;
  border: none;
}

.mockup-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020712;
  border: none;
}

/* Real-looking iOS / Instagram overlay controls for video elements */
.video-play-indicator {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 98, 254, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 15;
  box-shadow: 0 4px 12px rgba(15, 98, 254, 0.3);
  font-family: var(--font-heading);
  pointer-events: none;
  animation: pulse-live 2s infinite ease-in-out;
}

@keyframes pulse-live {
  0% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.04); opacity: 1; box-shadow: 0 4px 16px rgba(15, 98, 254, 0.5); }
  100% { transform: scale(1); opacity: 0.95; }
}

/* Premium PHYSICAL 3D PRINT FLYER representation */
.mockup-paper-flyer {
  width: 100%;
  max-width: 290px;
  height: 480px;
  background: #ffffff;
  border-radius: 2px; /* Sharp authentic physical paper cutting */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 10px solid #ffffff; /* Elegant white border representing typical fine-art paper print border bleed */
  outline: 1px solid rgba(0, 0, 0, 0.08); /* Paper edge boundary line */
  
  /* Real-world perspective camera and tilt to make it look like printed material displayed in 3D */
  transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) scale(0.96);
  transform-style: preserve-3d;
  
  /* Multi-layered photorealistic ambient and physical drop-shadows */
  box-shadow: 
    3px 6px 12px rgba(0, 0, 0, 0.08),
    12px 24px 38px rgba(0, 0, 0, 0.12),
    -1px 2px 4px rgba(0, 0, 0, 0.02);
  
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

/* Simulated elegant physical paper crease/fold going down the middle to look like high-quality paper print */
.mockup-paper-flyer::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.06) 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.15) 75%,
    rgba(0, 0, 0, 0.03) 100
  );
  z-index: 6;
  pointer-events: none;
}

/* Hard glossy finish glare and micro-texture reflection */
.mockup-paper-flyer::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.15), inset 1px 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 7;
  pointer-events: none;
}

.gallery-slide:hover .mockup-paper-flyer {
  /* On hover, the flyer dynamically lifts up and aligns perfectly flat facing the viewer */
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 
    0 6px 12px rgba(0, 0, 0, 0.05),
    0 22px 44px rgba(0, 0, 0, 0.12),
    0 35px 70px -10px rgba(15, 98, 254, 0.22);
}

.flyer-sheen {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.75s ease;
  pointer-events: none;
  z-index: 5;
}

.gallery-slide:hover .flyer-sheen {
  left: 150%;
}

.flyer-format-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand-olympic-blue);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(15, 98, 254, 0.25);
  font-family: var(--font-heading);
  z-index: 10;
  pointer-events: none;
}

.flyer-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Support full size containment readibility and cover fallback */
.flyer-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Kept fully legible */
  background: #ffffff;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide:hover .flyer-image-container img {
  transform: scale(1.05);
}

/* Interactive simulated headers */
.mockup-header-sim {
  position: absolute;
  top: 30px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  pointer-events: none;
}

.mockup-avatar-sim {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(45deg, #fccc63, #fbad50, #cd486b, #e95950, #8a3ab9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  font-size: 11px;
}

.mockup-avatar-sim img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.mockup-name-sim {
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.85);
}

.mockup-tag-sim {
  background: var(--brand-olympic-blue);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Translucent details card styled below smartphone */
.mockup-footer-badge {
  width: 100%;
  max-width: 270px;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(15, 98, 254, 0.04);
  z-index: 10;
  border: 1px solid rgba(15, 98, 254, 0.08);
  margin-top: 16px;
  text-align: center;
  box-sizing: border-box;
  transition: all var(--transition-smooth);
}

.gallery-slide:hover .mockup-footer-badge {
  box-shadow: 0 10px 25px rgba(15, 98, 254, 0.1);
  border-color: rgba(15, 98, 254, 0.2);
}

.mockup-badge-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text-dark-navy);
  margin: 0 0 5px 0;
  line-height: 1.35;
}

.mockup-badge-desc {
  font-size: 12.5px;
  color: #4a5c73;
  margin: 0;
  line-height: 1.45;
}

/* Frosted glass arrow navigation buttons */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--text-dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  box-shadow: 0 10px 25px rgba(7, 22, 44, 0.08);
  transition: all var(--transition-smooth);
}

.gallery-arrow:hover {
  background: var(--brand-olympic-blue);
  color: #ffffff;
  border-color: var(--brand-olympic-blue);
  box-shadow: 0 10px 25px rgba(15, 98, 254, 0.32);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-arrow-prev {
  left: -26px;
}

.gallery-arrow-next {
  right: -26px;
}

/* Horizontal slide indicator dots */
.gallery-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  height: 24px;
}

.gallery-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 98, 254, 0.2);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

/* Touch hit target enhancement for mobile devices (44px target) */
.gallery-dot::after {
  content: '';
  position: absolute;
  top: -16px;
  bottom: -16px;
  left: -16px;
  right: -16px;
}

.gallery-dot:hover {
  background: rgba(15, 98, 254, 0.45);
  transform: scale(1.2);
}

.gallery-dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--brand-olympic-blue);
  transform: scale(1);
  box-shadow: 0 2px 6px rgba(15, 98, 254, 0.25);
}

/* Swipe notification for touchscreens */
.gallery-swipe-help {
  display: none;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand-olympic-blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  margin-top: 16px;
  animation: swipeHelpPulse 2s infinite ease-in-out;
}

@keyframes swipeHelpPulse {
  0%, 100% { opacity: 0.75; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Responsive configurations for gallery layout */
@media (max-width: 1024px) {
  .gallery-slide {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 640px) {
  .gallery-slide {
    flex: 0 0 100%;
  }
  .gallery-arrow {
    display: none !important; /* Touch swipe only on mobile screens */
  }
  .gallery-swipe-help {
    display: block;
  }
}

/* Category Filter Tabs Styles */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: -10px auto 36px auto;
  flex-wrap: wrap;
  max-width: 700px;
}

.gallery-tab-btn {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 98, 254, 0.12);
  color: var(--text-dark-navy);
  padding: 11px 22px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.gallery-tab-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--brand-olympic-blue);
  color: var(--brand-olympic-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 98, 254, 0.12);
}

.gallery-tab-btn.active {
  background: var(--brand-olympic-blue);
  color: #ffffff;
  border-color: var(--brand-olympic-blue);
  box-shadow: 0 8px 25px rgba(15, 98, 254, 0.28);
}

.gallery-slide.hidden {
  display: none !important;
}

/* Strategy Callout Box Responsive & Elegant Styles */
.strategy-callout-box {
  margin-top: 48px;
  padding: 28px 36px;
  background: #ffffff;
  border-left: 5px solid var(--brand-olympic-blue);
  border-radius: 0 20px 20px 0;
  box-shadow: var(--shadow-premium);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 24px;
  align-items: center;
  text-align: left;
  transition: transform var(--transition-fast);
}

.strategy-callout-box:hover {
  transform: translateY(-2px);
}

.strategy-callout-icon-container {
  color: var(--brand-olympic-blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 98, 254, 0.05);
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.strategy-callout-text {
  font-size: 16.5px;
  color: var(--text-dark-navy);
  line-height: 1.65;
  font-weight: 550;
  margin: 0;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .strategy-callout-box {
    margin-top: 24px;
    padding: 14px 16px;
    gap: 12px;
    border-radius: 12px;
    border-left-width: 4px;
    box-shadow: 0 4px 16px rgba(15, 98, 254, 0.06);
  }
  
  .strategy-callout-icon-container {
    width: 36px;
    height: 36px;
  }
  
  .strategy-callout-icon-container svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  .strategy-callout-text {
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 500;
  }
}




