@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;800;900&display=swap');

/* ==========================================================================
   M1 DIGITAL - MONKS-INSPIRED CINEMATIC STYLE (VERSION 4)
   ========================================================================== */

/* 1. Global Variables & Design Tokens */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  
  /* Primary Colors */
  --bg-dark: #0a0a0a;
  --text-light: #ffffff;
  --border-light: rgba(255, 255, 255, 0.08);
  
  --bg-cream: #f7f6f2;
  --text-dark: #0a0a0a;
  --border-dark: rgba(10, 10, 10, 0.08);
  
  --accent-coral: #ff5e5b; /* Monks style warm accent */
  
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  --blur-amount: blur(12px);
}

/* Base states */
.dark-theme {
  --bg-color: var(--bg-dark);
  --text-color: var(--text-light);
  --border-color: var(--border-light);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
}

.cream-theme {
  --bg-color: var(--bg-cream);
  --text-color: var(--text-dark);
  --border-color: var(--border-dark);
  --text-secondary: #444444;
  --text-muted: #666666;
}

/* 2. Core Layout & Viewport Rules */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-heading);
  overflow-x: hidden;
}

/* Lenis Specific Overrides */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  min-height: 100vh;
  position: relative;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* 3. Navigation Bar (Minimal & High Contrast) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: var(--blur-amount);
  border-bottom-color: var(--border-light);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Inter', var(--font-heading);
  font-weight: 900;
  font-size: 1.65rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: -0.06em;
}

.logo-dig {
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: inline !important;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.menu-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.menu-link:hover {
  color: var(--text-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Mobile Screen Overlay Menu */
.mobile-menu-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-slow);
}

.mobile-menu-screen.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-close-btn {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--text-light);
}

.mobile-cta {
  margin-top: 1.5rem;
}

/* 4. Button Definitions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pill {
  border-radius: 99px;
}

.btn-white {
  background-color: var(--text-light);
  color: var(--bg-dark);
  border: 1px solid var(--text-light);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--text-light);
  box-shadow: 0 0 15px rgba(255,255,255,0.25);
}

.btn-full {
  width: 100%;
}

/* 5. Section 1: Hero Cinematic Video & Giant Text Mask */
.hero-cinematic {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(10, 10, 10, 0.4) 0%, rgba(5, 5, 5, 0.85) 100%);
  z-index: 1;
}

.video-element {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 10rem 2rem 4rem 2rem;
}

.hero-text-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.hero-title-giant {
  font-family: 'Inter', var(--font-heading);
  font-size: 13vw;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -0.06em;
  line-height: 1.15;
  text-transform: lowercase;
  user-select: none;
  transform-origin: center center;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.5;
}

/* Scroll indicators */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 99px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--text-light);
  border-radius: 99px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* 6. Section 2: Horizontal Scroll Specialty Section */
.horizontal-slider-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.horizontal-pin-wrap {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.horizontal-container {
  display: flex;
  height: 100vh;
  will-change: transform;
}

.slide {
  flex-shrink: 0;
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 8%;
  overflow: hidden;
}

.slide-intro {
  background-color: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.slide-content-left {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.slide-badge {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--accent-coral);
  font-weight: 700;
}

.slide-title-serif {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-light);
}

.slide-title-serif em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.slide-text {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.slide-arrow-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.slide-arrow-indicator i {
  width: 16px;
  animation: slideArrow 1.5s infinite alternate;
}

@keyframes slideArrow {
  from { transform: translateX(0); }
  to { transform: translateX(6px); }
}

/* Individual Specialty Slide styling */
.slide-image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide:hover .slide-img {
  transform: scale(1);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 20%, rgba(10, 10, 10, 0.4) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text-light);
}

.slide-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-coral);
}

.slide-header {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
}

.slide-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-link i {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--accent-coral);
}

.btn-link:hover i {
  transform: translate(3px, -3px);
}

/* 7. Section 3: High Contrast Narrative/Editorial Section */
.editorial-section {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  padding: 10rem 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: flex-start;
}

.editorial-headline-serif {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.editorial-headline-serif em {
  font-style: italic;
  font-weight: 400;
  color: #555;
}

.editorial-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.editorial-lead {
  font-size: 1.35rem;
  line-height: 1.6;
  font-weight: 500;
  color: #222;
}

.editorial-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
}

.editorial-metrics {
  display: flex;
  gap: 4rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
}

.editorial-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
}

/* 8. Section 4: Cases Study Section */
.cases-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 10rem 0;
}

.section-header-editorial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
}

.section-header-editorial.center {
  text-align: center;
  align-items: center;
}

.section-badge {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-coral);
}

.section-title-serif {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
}

.section-title-serif em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  cursor: pointer;
}

.case-media-box {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #111;
}

.case-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.2);
  z-index: 1;
  transition: var(--transition);
}

.case-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.case-card:hover .case-media {
  transform: scale(1.05);
}

.case-card:hover .case-overlay {
  background-color: rgba(10, 10, 10, 0.4);
}

.case-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-coral);
}

.case-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.case-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* 9. Section 5: Minimal Accordion FAQs */
.faq-section {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  padding: 10rem 0;
  border-top: 1px solid var(--border-dark);
}

.faq-minimal-accordion {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
}

.faq-trigger:focus {
  outline: none;
}

.faq-icon-arrow {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-trigger:hover .faq-icon-arrow {
  color: var(--accent-coral);
  transform: rotate(90deg);
}

.faq-answer-wrapper {
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 1rem 2rem 1rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

/* 10. Editorial Contact Section */
.contact-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 10rem 0;
}

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

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-title-serif {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.contact-title-serif em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.contact-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.contact-meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mail-link {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: -0.02em;
}

.mail-link:hover {
  color: var(--accent-coral);
}

.support-status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Form Minimal styles */
.contact-right {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 3.5rem;
  border-radius: 16px;
  backdrop-filter: var(--blur-amount);
}

.contact-form-minimal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-input-minimal {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input-minimal:focus {
  outline: none;
  border-bottom-color: var(--text-light);
}

textarea.form-input-minimal {
  resize: vertical;
}

/* Trust & Security Section Styles */
.trust-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 10rem 0;
  border-top: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.trust-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  padding: 3rem;
  border-radius: 16px;
  backdrop-filter: var(--blur-amount);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.trust-icon {
  color: var(--accent-coral);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.trust-icon i {
  width: 32px;
  height: 32px;
}

.trust-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
}

.trust-card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trust-card {
    padding: 2rem;
  }
}

/* 11. Footer Styles */
.footer {
  background-color: #050505;
  border-top: 1px solid var(--border-light);
  padding: 4rem 0;
}

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

.footer-logo {
  font-family: 'Inter', var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-light);
  letter-spacing: -0.06em;
}

.footer-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 12. Responsive Breakpoints */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .editorial-headline-serif {
    font-size: 2.75rem;
  }
  
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .case-media-box {
    height: 380px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .hero-title-giant {
    font-size: 16vw;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .slide {
    padding: 10% 6%;
  }
  
  .slide-title-serif {
    font-size: 2.5rem;
  }
  
  .slide-header {
    font-size: 1.85rem;
  }
  
  .contact-title-serif {
    font-size: 2.5rem;
  }
  
  .contact-right {
    padding: 2rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* ==========================================================================
   13. PAGE TRANSITIONS & LANDING PAGE EXTRAS
   ========================================================================== */

/* Page Transition overlay */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #050505;
  z-index: 9999;
  transform: translateY(100%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-transition-logo {
  font-family: 'Inter', var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-light);
  letter-spacing: -0.06em;
  opacity: 0;
  transform: scale(0.9);
}

/* Premium Browser Mockup */
.mockup-browser {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.5s ease;
  will-change: transform;
}

.cream-theme .mockup-browser {
  background: rgba(10, 10, 10, 0.02);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.mockup-header {
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.cream-theme .mockup-header {
  background: rgba(10, 10, 10, 0.03);
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
}

.mockup-address {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.2rem 3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  max-width: 320px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cream-theme .mockup-address {
  background: rgba(0, 0, 0, 0.03);
}

.mockup-actions {
  width: 44px; /* balance dots */
}

.mockup-content {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.mockup-content img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Landing Page General Layouts */
.landing-hero {
  padding: 12rem 0 6rem 0;
  text-align: center;
}

.landing-hero-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.landing-badge {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-coral);
  background: rgba(255, 94, 91, 0.08);
  padding: 0.4rem 1.2rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 94, 91, 0.15);
}

.landing-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .landing-title {
    font-size: 2.75rem;
  }
}

.landing-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 750px;
}

@media (max-width: 768px) {
  .landing-subtitle {
    font-size: 1.25rem;
  }
}

.landing-hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 480px) {
  .landing-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .landing-hero-actions .btn {
    width: 100%;
  }
}

/* Stats section specifically for LPs */
.landing-stats-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
}

.cream-theme .landing-stats-section {
  background: rgba(0, 0, 0, 0.01);
}

.landing-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  text-align: center;
}

@media (max-width: 768px) {
  .landing-stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.landing-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.landing-stat-value {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-color);
  line-height: 1;
}

.landing-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Landing showcase section */
.landing-showcase-section {
  padding: 6rem 0;
  background-color: var(--bg-color);
}

/* Benefits section */
.benefits-section {
  padding: 8rem 0;
  background-color: var(--bg-color);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.benefit-card.animated {
  transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cream-theme .benefit-card {
  background: rgba(10, 10, 10, 0.01);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.cream-theme .benefit-card:hover {
  background: rgba(10, 10, 10, 0.03);
  border-color: rgba(10, 10, 10, 0.12);
}

.benefit-icon {
  color: var(--accent-coral);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  width: 32px;
  height: 32px;
}

.benefit-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.01em;
}

.benefit-card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Back link */
.btn-back {
  position: absolute;
  top: 90px;
  left: 2.5rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
}

.cream-theme .btn-back {
  background: rgba(0, 0, 0, 0.02);
}

.btn-back:hover {
  color: var(--text-color);
  border-color: var(--text-color);
  transform: translateX(-3px);
}

.btn-back i {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .btn-back {
    position: static;
    margin: 6rem auto 0 auto;
    display: inline-flex;
  }
}

/* Mockup Tabs styling */
.mockup-nav-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.mockup-tab {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.25rem;
  border-radius: 99px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.cream-theme .mockup-tab {
  background: rgba(10, 10, 10, 0.02);
}

.mockup-tab:hover {
  color: var(--text-color);
  border-color: rgba(255, 255, 255, 0.2);
}

.cream-theme .mockup-tab:hover {
  border-color: rgba(10, 10, 10, 0.2);
}

.mockup-tab.active {
  background: var(--text-light);
  color: var(--bg-dark);
  border-color: var(--text-light);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.cream-theme .mockup-tab.active {
  background: var(--text-dark);
  color: var(--bg-cream);
  border-color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(10, 10, 10, 0.1);
}

/* Mockup content overlapping images */
.mockup-content {
  position: relative;
  width: 100%;
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-img:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   10. Value Benefits Section (16 Items Grid)
   ========================================================================== */
.value-benefits-section {
  padding: 8rem 0 4rem 0;
  background-color: var(--bg-color);
}

.value-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1200px) {
  .value-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .value-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .value-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.value-benefit-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-color);
  padding: 2.25rem 1.75rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.value-benefit-card.animated {
  transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cream-theme .value-benefit-card {
  background: rgba(10, 10, 10, 0.015);
}

.value-benefit-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.cream-theme .value-benefit-card:hover {
  background: rgba(10, 10, 10, 0.03);
  border-color: rgba(10, 10, 10, 0.12);
}

.value-benefit-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--accent-coral);
  opacity: 0.9;
  line-height: 1;
}

.value-benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.value-benefit-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

