/* ==================== CUSTOM PROPERTIES ==================== */
:root {
  --bg-primary: #FCFBF8;
  --bg-secondary: #F5F3EE;
  --bg-tertiary: #EDEAE4;
  --text-primary: #1A1A1A;
  --text-secondary: #3D3D3D;
  --text-tertiary: #6B6460;
  --accent: #B5654B;
  --accent-hover: #9C5640;
  --accent-light: #FDF0EB;
  --border-light: #EAE7E0;
  --border-medium: #D6D3CC;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.section-padding-sm {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8A8178;
  margin-bottom: 0.75rem;
  font-weight: 500;
  font-family: var(--font-sans);
}

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

.text-large {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

/* ==================== GRID ==================== */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 32px;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: -0.01em;
  font-family: var(--font-sans);
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn:hover {
  background: #3D3D3D;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn-small {
  padding: 0.55rem 1.5rem;
  font-size: 0.85rem;
}

.btn.btn-small {
  color: var(--bg-primary);
}

.btn-light {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.btn-light:hover {
  background: #E8E5DE;
}

.btn-outline-light {
  background: transparent;
  color: var(--bg-primary);
  border: 1px solid rgba(252,251,248,0.4);
}

.btn-outline-light:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
  border-color: var(--bg-primary);
}

/* ==================== HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252,251,248,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 450;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 3rem 0 6rem;
  overflow: hidden;
}

.hero-video-bg {
  position: fixed;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1200px;
  height: 65vh;
  z-index: -1;
  overflow: hidden;
  border-radius: 32px;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(252, 251, 248, 0.4) 0%,
    rgba(252, 251, 248, 0.25) 50%,
    rgba(252, 251, 248, 0.4) 100%
  );
  border-radius: 32px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 8rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: flex-start;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.8rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: #5A5550;
  opacity: 0.8;
  justify-content: flex-start;
}

.platform-link {
  color: #5A5550;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.platform-link:hover {
  color: var(--text-primary);
}

.hero-mockup {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-top: 6rem;
  margin-right: 0;
  display: flex;
  justify-content: flex-end;
}

/* ==================== IPHONE MOCKUP NEUENTWURF ==================== */

.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.iphone-device {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}

.iphone-frame {
  width: 300px;
  height: 560px;
  background: #1C1C1E;
  border-radius: 44px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 0 0 2px #2A2A2D,
    0 0 0 5px #1C1C1E,
    0 0 0 6px #3A3A3D;
  overflow: hidden;
}

.iphone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000000;
  border-radius: 18px;
  z-index: 30;
}

.iphone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px 8px;
  font-family: -apple-system, 'Helvetica Neue', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: #FFFFFF;
  background: #000000;
  height: 46px;
  position: relative;
  z-index: 20;
}

.status-time {
  letter-spacing: 0.5px;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 1.8px;
  height: 12px;
}

.signal-bar {
  width: 3px;
  background: #FFFFFF;
  border-radius: 0.8px;
}

.signal-bar:nth-child(1) { height: 4px; }
.signal-bar:nth-child(2) { height: 6px; }
.signal-bar:nth-child(3) { height: 9px; }
.signal-bar:nth-child(4) { height: 12px; }

.wifi-symbol {
  opacity: 0.9;
}

.battery-icon {
  display: flex;
  align-items: center;
}

.battery-body {
  width: 22px;
  height: 11px;
  border: 1.2px solid #FFFFFF;
  border-radius: 3px;
  position: relative;
  opacity: 0.9;
}

.battery-body::after {
  content: '';
  position: absolute;
  inset: 2px;
  right: 5px;
  background: #FFFFFF;
  border-radius: 1px;
}

.battery-cap {
  width: 2.5px;
  height: 5px;
  background: #FFFFFF;
  border-radius: 0 1px 1px 0;
  opacity: 0.5;
  margin-left: 1px;
}

.iphone-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  z-index: 20;
}

/* ==================== INSTAGRAM CONTENT ==================== */

.instagram-wrapper {
  width: 100%;
  height: calc(100% - 46px);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
}

/* Profile Header */
.ig-profile-header {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  flex-shrink: 0;
  background: #FFFFFF;
}

.ig-profile-top {
  width: 100%;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
  flex-shrink: 0;
}

.instagram-iframe-header {
  width: 100%;
  height: 320px;
  border: none;
  background: #FFFFFF;
  display: block;
  pointer-events: none;
  margin-top: -8px;
  transform: scale(1.02);
  transform-origin: center top;
}

/* Bio & Stats */
.ig-overlay-bio {
  flex-shrink: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #262626;
  font-family: -apple-system, 'Helvetica Neue', 'Inter', sans-serif;
  padding: 12px 14px 8px;
  background: #FFFFFF;
}

.ig-overlay-bio strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.ig-overlay-bio p {
  margin: 2px 0;
}

.ig-overlay-bio a {
  color: #00376B;
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

/* Action Buttons */
.ig-overlay-buttons {
  flex-shrink: 0;
  display: flex;
  gap: 6px;
  padding: 8px 14px 12px;
  background: #FFFFFF;
}

.ig-btn-follow,
.ig-btn-message {
  flex: 1;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  border: none;
  font-family: -apple-system, 'Helvetica Neue', 'Inter', sans-serif;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
}

.ig-btn-follow {
  background: #0095F6;
  color: #FFFFFF;
}

.ig-btn-follow:active {
  opacity: 0.8;
}

.ig-btn-message {
  background: #EFEFEF;
  color: #262626;
}

.ig-btn-message:active {
  opacity: 0.8;
}

/* Posts Grid */
.ig-posts-section {
  flex: 1;
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  position: relative;
}

.instagram-iframe-posts {
  width: 100%;
  height: 600px;
  border: none;
  background: #FFFFFF;
  display: block;
  margin-top: -140px;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 960px) {
  .iphone-frame {
    width: 270px;
    height: 560px;
    border-radius: 40px;
    padding: 8px;
  }
  
  .iphone-notch {
    width: 100px;
    height: 28px;
  }
  
  .iphone-statusbar {
    padding: 12px 24px 6px;
    font-size: 0.7rem;
    height: 40px;
  }
  
  .instagram-wrapper {
    height: calc(100% - 40px);
    border-radius: 0 0 30px 30px;
  }
  
  .ig-overlay-bio {
    font-size: 0.68rem;
    padding: 10px 12px 6px;
  }
  
  .ig-overlay-buttons {
    padding: 6px 12px 10px;
  }
  
  .ig-btn-follow,
  .ig-btn-message {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

@media (max-width: 640px) {
  .iphone-frame {
    width: 250px;
    height: 520px;
    border-radius: 36px;
    padding: 8px;
  }
  
  .iphone-notch {
    width: 90px;
    height: 24px;
    top: 8px;
  }
  
  .iphone-statusbar {
    padding: 10px 20px 4px;
    font-size: 0.65rem;
    height: 36px;
  }
  
  .instagram-wrapper {
    height: calc(100% - 36px);
    border-radius: 0 0 28px 28px;
  }
  
  .ig-overlay-bio {
    font-size: 0.65rem;
    padding: 8px 10px 4px;
  }
  
  .ig-overlay-buttons {
    padding: 6px 10px 8px;
    gap: 4px;
  }
  
  .ig-btn-follow,
  .ig-btn-message {
    font-size: 0.65rem;
    padding: 6px 8px;
  }
}


/* ==================== PROBLEM ==================== */
.problem {
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}

.pain-points {
  margin-top: 2rem;
}

.pain-card {
  padding: 1.8rem;
  border-left: 2px solid var(--border-medium);
  transition: border-color 0.3s;
}

.pain-card:hover {
  border-left-color: var(--accent);
}

.pain-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.pain-card h3 {
  margin-bottom: 0.35rem;
}

.pain-card p {
  color: #5A5550;
  font-size: 0.95rem;
}

/* ==================== SOLUTION ==================== */
.solution {
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.solution-cards {
  margin-top: 2rem;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.solution-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
}

.solution-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.solution-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.solution-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.2rem;
}

.solution-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ==================== SERVICES ==================== */
.services {
  background: rgba(252, 251, 248, 0.88);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  position: relative;
  z-index: 1;
}

.services-grid {
  margin-top: 2rem;
}

.service-item {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.service-item:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.service-item h3 {
  margin-bottom: 0.35rem;
}

.service-list {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ==================== PROCESS ==================== */
.process {
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}

.process-step:first-child {
  border-top: 1px solid var(--border-light);
}

.step-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.step-content h3 {
  margin-bottom: 0.25rem;
}

.step-content p {
  color: #5A5550;
}

/* ==================== RESULTS ==================== */
.results {
  background: rgba(252, 251, 248, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  position: relative;
  z-index: 1;
}

.results-matrix {
  max-width: 700px;
  margin-top: 2rem;
}

.result-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}

.result-row:first-child {
  border-top: 1px solid var(--border-light);
}

.result-key {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.result-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==================== REFERENCES ==================== */
.references {
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.references-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
  background: rgba(252, 251, 248, 0.65);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #2D2D2D;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ==================== FAQ ==================== */
.faq {
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-family: var(--font-sans);
}

.faq-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-primary);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.4rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==================== CTA ==================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-card {
  background: var(--text-primary);
  color: #F5F3EE;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: left;
  height: fit-content;
}

.cta-card .hero-mockup {
  display: flex;
  justify-content: center;
  margin: 0;
}

@media (max-width: 960px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--bg-secondary);
  padding: 3rem 0 0;
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .hero-video-bg {
    width: 70%;
    height: 55vh;
    left: 1rem;
    top: 6rem;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-grid {
    padding-top: 5rem;
  }

  .hero-mockup {
    margin-top: 3rem;
    margin-right: 0;
    justify-content: center;
  }

  .iphone-frame {
    width: 270px;
    height: 540px;
    border-radius: 40px;
  }

  .iphone-notch {
    width: 100px;
    height: 28px;
  }

  .iphone-statusbar {
    padding: 12px 24px 6px;
    font-size: 0.7rem;
    border-radius: 30px 30px 0 0;
    height: 40px;
  }

  .instagram-wrapper {
    height: calc(100% - 40px - 18px);
    border-radius: 0 0 30px 30px;
  }

  .ig-profile-top {
    height: 100px;
  }

  .instagram-iframe-header {
    height: 280px;
    margin-top: -12px;
  }

  .instagram-iframe-posts {
    height: 450px;
    margin-top: -200px;
  }
}

@media (max-width: 640px) {
  .hero-video-bg {
    width: 90%;
    height: 45vh;
    left: 5%;
    top: 5rem;
    border-radius: 24px;
  }

  .hero-grid {
    padding-top: 4rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .section-padding-sm {
    padding: 3rem 0;
  }

  .result-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .cta-card {
    padding: 2.5rem 1.5rem;
  }

  .iphone-frame {
    width: 250px;
    height: 510px;
    border-radius: 36px;
    padding: 8px;
  }

  .iphone-notch {
    width: 90px;
    height: 24px;
    top: 8px;
  }

  .iphone-statusbar {
    padding: 10px 20px 4px;
    font-size: 0.65rem;
    border-radius: 28px 28px 0 0;
    height: 36px;
  }

  .instagram-wrapper {
    height: calc(100% - 36px - 16px);
    border-radius: 0 0 28px 28px;
  }

  .ig-profile-top {
    height: 90px;
  }

  .instagram-iframe-header {
    height: 250px;
    margin-top: -10px;
  }

  .ig-overlay-bio {
    font-size: 0.68rem;
    padding: 3px 12px 0;
  }

  .ig-overlay-buttons {
    padding: 6px 12px;
  }

  .ig-btn-follow,
  .ig-btn-message {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .instagram-iframe-posts {
    height: 400px;
    margin-top: -180px;
  }
}

/* Notfall-Fix für Hero Buttons */
.hero-actions {
  position: relative;
  z-index: 9999 !important;
  display: flex !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  margin-top: 2rem !important;
}

.hero-actions .btn,
.hero-actions .btn-outline {
  position: relative !important;
  z-index: 9999 !important;
  display: inline-flex !important;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero-actions .btn {
  background: #1A1A1A !important;
  color: #FCFBF8 !important;
  border: 1.5px solid #1A1A1A !important;
}

.hero-actions .btn-outline {
  background: #FFFFFF !important;
  color: #1A1A1A !important;
  border: 1.5px solid #1A1A1A !important;
}

/* ==================== FOOTER ==================== */
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-credit {
  font-size: 0.82rem;
  color: #8A8178;
  margin: 0;
  padding: 0;
  display: block;
  text-align: right;
  width: 100%;
}

.footer-credit a {
  color: #8A8178;
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* =============== Cookies Banner =============== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  max-width: 600px;
  width: calc(100% - 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.4s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  min-width: 200px;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s;
}

.cookie-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
}

.cookie-decline:hover {
  background: var(--bg-secondary);
}

.cookie-accept {
  background: var(--text-primary);
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #3D3D3D;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 1rem;
  }
  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}