/* ==========================================================================
   GINGER — Technical Minimalist Design System
   Visual Identity: White + Black + Burnt Copper (#D46A43)
   ========================================================================== */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── Design Tokens ─── */
:root {
  /* Palette */
  --white: #f4f1ee;
  --card-white: #EEECE9;
  /* Slightly whiter — for cards, inputs, elevated elements */
  --black: #1A1A1A;
  --ginger: #C25D3A;
  --ginger-light: rgba(194, 93, 58, 0.10);
  --ginger-glow: rgba(194, 93, 58, 0.35);
  --ginger-glow-intense: rgba(194, 93, 58, 0.6);
  --sage: #7A9E8E;
  --sage-light: rgba(122, 158, 142, 0.10);
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Glass */
  --glass-white: rgba(255, 255, 255, 0.08);
  --glass-white-hover: rgba(255, 255, 255, 0.14);
  --glass-dark: rgba(0, 0, 0, 0.03);
  --glass-blur: blur(20px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.18);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.1);
  --shadow-ginger: 0 0 40px rgba(212, 106, 67, 0.15);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --heading-hero: clamp(2rem, 4.5vw, 2.75rem);
  --heading-xl: clamp(2.2rem, 5vw, 4rem);
  --heading-lg: clamp(1.8rem, 4vw, 3rem);
  --heading-md: clamp(1.3rem, 2.5vw, 1.75rem);
  --body-lg: clamp(1.05rem, 1.5vw, 1.2rem);
  --body-md: 1rem;
  --body-sm: 0.875rem;
  --lh-heading: 1.08;
  --lh-body: 1.75;
  --ls-tight: -0.03em;
  --ls-normal: -0.01em;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;

  /* Layout */
  --max-width: 1200px;
  --section-padding: clamp(2rem, 5vw, 4rem);
}

/* ─── Reset & Base ─── */
html {
  background: #f4f1ee;
}

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

html {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #f4f1ee;
}

body {
  font-family: var(--font);
  font-size: var(--body-md);
  line-height: var(--lh-body);
  color: var(--black);
  background: #f4f1ee;
  letter-spacing: var(--ls-normal);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ─── Selection ─── */
::selection {
  background: var(--ginger-light);
  color: var(--black);
}

/* ─── Scroll-Snap Sections ─── */
.snap-section {
  scroll-snap-align: start;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

/* ─── Breathing pulse for logo spark ─── */
@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px var(--ginger-glow));
  }

  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 18px var(--ginger-glow-intense));
  }
}

/* ─── Spark particles in hero ─── */
@keyframes sparkDrift1 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.2;
  }

  25% {
    opacity: 0.5;
  }

  50% {
    transform: translate(30px, -40px) rotate(180deg) scale(1.2);
    opacity: 0.35;
  }

  75% {
    opacity: 0.5;
  }
}

@keyframes sparkDrift2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(0.8);
    opacity: 0.15;
  }

  50% {
    transform: translate(-25px, -30px) rotate(270deg) scale(1.1);
    opacity: 0.4;
  }
}

@keyframes sparkDrift3 {

  0%,
  100% {
    transform: translate(0, 0) rotate(45deg) scale(1);
    opacity: 0.1;
  }

  50% {
    transform: translate(15px, -50px) rotate(225deg) scale(0.9);
    opacity: 0.3;
  }
}

/* ─── Fade in on scroll ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ─── Hero entry ─── */
@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 0.04em;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.01em;
  }
}

@keyframes heroSubReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Scroll-triggered reveal ─── */
.reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal:not(.ui-card) {
  transform: translateY(30px);
}

.reveal.visible {
  opacity: 1;
}

.reveal.visible:not(.ui-card) {
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Staggered delays for UI Stacks — REPLACED BY JS */

/* ==========================================================================
   G-SPARK LOGO — Fixed Top-Left
   ========================================================================== */

.logo-fixed {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: transform var(--duration-normal) var(--ease-out),
    opacity 0.5s var(--ease-out),
    visibility 0.5s;
  opacity: 1;
  visibility: visible;
}

.logo-fixed.logo-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo-fixed:hover {
  transform: scale(1.05);
}

.logo-fixed svg {
  width: 79px;
  height: 79px;
}

/* Logo color transitions */
.logo-fixed .logo-g {
  transition: fill var(--duration-normal) var(--ease-out);
}

.logo-fixed .logo-spark-path {
  transition: fill var(--duration-normal) var(--ease-out);
}

.logo-spark {
  transform-origin: center center;
}

/* Hide the flag/country code abbreviation */
.lang-flag {
  display: none;
}

/* ==========================================================================
   GLASSMORPHIC FLOATING DOCK — Fixed Bottom-Center
   ========================================================================== */

.floating-dock {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all var(--duration-normal) var(--ease-out);
}

/* Dark background variant for glass dock */
.dock-dark {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Light background variant */
.dock-light {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.dock-link {
  position: relative;
  padding: 0.55rem 1.2rem;
  font-size: var(--body-sm);
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: var(--ls-normal);
  transition: all var(--duration-fast) var(--ease-out);
  border-radius: 50px;
  white-space: nowrap;
  cursor: pointer;
}

.dock-link:hover {
  color: var(--ginger);
  transform: scale(1.05);
}

.dock-dark .dock-link {
  color: rgba(255, 255, 255, 0.6);
}

.dock-dark .dock-link:hover {
  color: var(--ginger);
}

.dock-link.active {
  color: var(--ginger);
}

.dock-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--ginger);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--ginger-glow);
}

/* Mobile menu toggle */
.dock-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--duration-fast) var(--ease-out);
}

.dock-menu-toggle:hover {
  background: var(--ginger-light);
}

.dock-menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
  display: block;
  position: relative;
  transition: all var(--duration-fast) var(--ease-out);
}

.dock-menu-toggle span::before,
.dock-menu-toggle span::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--black);
  left: 0;
  transition: all var(--duration-fast) var(--ease-out);
}

.dock-menu-toggle span::before {
  top: -6px;
}

.dock-menu-toggle span::after {
  top: 6px;
}

/* Mobile open state */
.dock-menu-toggle.open span {
  background: transparent;
}

.dock-menu-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.dock-menu-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  background: #f4f1ee;
  color: #1A1A1A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  position: relative;
  height: 60vh;
  /* Fixed height for perfect symmetry */
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Central Headline area - Static in-flow */
.hero-headline-stage {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* Stack line 1 and 2 if they wrap */
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  /* Increased gap from title to sub title */
}

/* Standard Phase styles - Static and visible */
.hero-phase {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  width: 100%;
}

/* Phase 1 & 2 are now block elements in flow */
.hero-phase-1,
.hero-phase-2 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-heading {
  font-weight: 500;
  color: #1A1A1A;
  text-transform: none;
  font-size: clamp(1.8rem, 4.2vw, 2.7rem);
  line-height: 1.2;
  margin: 0 auto;
  max-width: 900px;
  text-wrap: balance;
  display: block;
  white-space: normal;
  /* Balanced symmetric text layout */
}

/* Phase 3 sits in the flow BELOW the headline stage */
.hero-phase-3 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  line-height: 1.4;
  margin: 0 auto;
  max-width: none;
  white-space: nowrap;
  /* Force same line on desktop */
}

.hero-sub-2 {
  display: none;
  /* Merged into hero-sub-1 */
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.hero-phase-3 .btn-glass,
.hero-phase .btn-glass {
  display: inline-flex;
  width: fit-content;
  /* Hug the text as requested */
  background: var(--ginger);
  color: white;
  padding: 0.8rem 3rem;
  /* 48px padding on each side */
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 100px;
  /* Ensure pill shape */
  box-shadow: 0 4px 20px rgba(194, 93, 58, 0.25);
  transition: all var(--duration-fast) var(--ease-out);
}

.hero-phase-3 .btn-glass:hover,
.hero-phase .btn-glass:hover {
  background: #B04F2E;
  transform: translateY(-2px) scale(1.02);
  color: white;
}

/* ─── Hero Image (Green Lake) ─── */
.hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35vh;
  /* Takes up bottom portion of the hero screen */
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-lake-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Automatically centers the green content and hides top/bottom black borders */
}

/* Responsive: Allow wrapping naturally on mobile */
@media (max-width: 1200px) {

  .hero-heading,
  .hero-sub {
    white-space: normal;
    /* Allow wrap on smaller screens */
  }

  .hero-headline-stage {
    margin-bottom: 2rem;
  }

  .hero-heading {
    padding: 0 5%;
  }

  .hero-sub {
    padding: 0 10%;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 60vh;
    /* Allow it to grow if text is long on mobile */
    padding-top: 6rem;
  }

  .hero-headline-stage {
    margin-bottom: 2rem;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.2;
    padding: 0 4%;
  }

  .hero-sub {
    font-size: var(--body-md);
    padding: 0 8%;
    max-width: 400px;
  }

  .hero-phase .btn-glass {
    display: inline-flex;
    /* Re-enable CTA on mobile for this static version */
    margin-top: 1.5rem;
  }

  .hero-image-wrapper {
    height: 25vh;
    /* Slightly smaller on mobile to leave room for text */
  }
}


/* ==========================================================================
   BRIDGE SECTION — Problem & Approach
   ========================================================================== */

.bridge {
  background: #1A1A1A;
  color: var(--white);
  flex-direction: column;
  text-align: center;
  padding: 4rem 5%;
  /* Reduced from var(--section-padding) to constrain height */
  position: relative;
  z-index: 5;
}

.bridge-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 70vh;
  /* Changed from 80vh to 70vh */
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.bridge-intro-block,
.bridge-payoff-stage {
  grid-area: 1 / 1;
  width: 100%;
  /* Ensure they take the full width to allow internal centering */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bridge-phase {
  position: absolute;
  width: fit-content;
  max-width: 95vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Anchors everything to the left edge of this centered block */
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}

.bridge-phase.active {
  opacity: 1;
  visibility: visible;
}

.bridge-heading {
  font-weight: 700;
  text-transform: none;
  font-size: 2.22rem;
  line-height: 1.1;
  margin: 0 0 48px 0;
  /* Aligns with the phase container edge */
  display: block;
  text-align: center;
  /* Center text within the box */
  width: 100%;
  max-width: 900px;
  /* Defining the boundary for the title and content */
  opacity: 0;
}

.bridge-main-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
}

.bridge-checklist-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  margin-left: 0;
  width: fit-content;
}

/* 3D Glass Slab Visual */
.bridge-3d-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
}

.glass-3d-slab {
  position: relative;
  z-index: 10;
  width: 380px;
  background: rgba(160, 140, 125, 0.08);
  /* Warmer, less gray ginger-tint translucence */
  backdrop-filter: blur(45px);
  -webkit-backdrop-filter: blur(45px);
  border-radius: 28px;
  border: 1px solid rgba(194, 93, 58, 0.18);
  /* Warmer ginger edge highlight */
  padding: 12px 24px 0 24px;
  transform-style: preserve-3d;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.18),
    /* Depicted deeper elevation */
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 40px rgba(194, 93, 58, 0.08);
}

/* Subtle glass thickness line */
.glass-3d-slab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateZ(-15px);
  pointer-events: none;
}

.slab-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  transform: translateZ(15px);
  position: relative;
}

.slab-row:last-child {
  border-bottom: none;
}

.notif-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Minimalist icons - glyph color only */
.notif-icon.whatsapp {
  color: #25D366;
}

.notif-icon.calls {
  color: #ff3b30;
}

.notif-icon.email {
  color: #555;
}

.slab-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  /* Standardized greyish black */
  letter-spacing: -0.01em;
  opacity: 0.9;
  flex: 1;
  white-space: nowrap;
  /* Single line */
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-icon {
  width: 20px;
  height: 20px;
  color: #888;
  /* Standardized grey */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5px;
}

/* Unread Badges & Dots */
.unread-dot {
  width: 8px;
  height: 8px;
  background: #ff3b30;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 10px;
  box-shadow: 0 0 8px rgba(255, 59, 48, 0.4);
}

.notif-icon {
  font-size: 1.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unread-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ff3b30;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 4px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .bridge-main-flex {
    flex-direction: column;
    gap: 48px;
  }

  .bridge-checklist-container {
    align-items: center;
    /* Center bubbles on mobile */
    margin-left: 0;
    width: 100%;
  }

  .glass-3d-slab {
    width: 320px;
    max-width: 90vw;
    margin: 0 auto;
  }

  .slab-text {
    font-size: 0.8rem;
  }
}

.bridge-q-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1A1A1A;
  text-align: left;
  padding: 10px 22px;
  background: rgba(160, 140, 125, 0.08);
  /* Warmer, less gray ginger-tint */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(194, 93, 58, 0.12);
  width: 100%;
  max-width: 320px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    /* Enhanced pill shadow */
    0 2px 8px rgba(194, 93, 58, 0.06);
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  /* Hidden initially for animation */
  opacity: 0;
  will-change: transform, opacity, filter;
}

@media (max-width: 768px) {
  .bridge-q-item {
    font-size: 0.8rem;
    padding: 8px 18px;
    text-align: center;
    margin: 0 auto;
  }
}

.bridge-q-item:hover {
  transform: translateX(4px);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.06),
    0 4px 8px rgba(194, 93, 58, 0.1);
}

.bridge-closing {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  opacity: 1;
  /* GSAP will handle the parent visibility */
}

.bridge-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: #555;
  line-height: 1.4;
  margin: 0 auto 2.5rem;
  /* Space before button */
  max-width: 600px;
  text-align: center;
}

.bridge-payoff-stage {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  .bridge-content {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .bridge-heading {
    font-size: clamp(1.6rem, 7vw, 2rem);
    padding: 0;
    margin-bottom: 2rem;
  }

  .bridge-3d-visual {
    display: none;
  }

  .bridge-closing {
    font-size: clamp(1.4rem, 6vw, 1.7rem);
    padding: 0;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .bridge-sub {
    font-size: 1rem;
    padding: 0;
    margin-bottom: 2rem;
  }
}


#bridge-cta {
  opacity: 1;
  /* GSAP handles parent */
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  font-size: var(--body-md);
  font-weight: 600;
  color: var(--white);
  background: var(--ginger);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ginger);
  opacity: 0;
  border-radius: inherit;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.btn-glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(194, 93, 58, 0.3);
}

.btn-glass:hover::before {
  opacity: 1;
}

.btn-glass span {
  position: relative;
  z-index: 1;
}

.btn-glass .btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn-glass:hover .btn-arrow {
  transform: translateX(4px);
}

/* ─── Hero Spark Particles ─── */
.hero-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.spark-particle {
  position: absolute;
  color: var(--ginger);
  font-size: 14px;
  opacity: 0.2;
}

.spark-particle:nth-child(1) {
  top: 18%;
  left: 12%;
  animation: sparkDrift1 6s ease-in-out infinite;
}

.spark-particle:nth-child(2) {
  top: 25%;
  right: 15%;
  animation: sparkDrift2 8s ease-in-out infinite;
  font-size: 10px;
}

.spark-particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation: sparkDrift3 7s ease-in-out infinite;
  font-size: 12px;
}

.spark-particle:nth-child(4) {
  bottom: 22%;
  right: 10%;
  animation: sparkDrift1 9s ease-in-out infinite 1s;
  font-size: 8px;
}

.spark-particle:nth-child(5) {
  top: 40%;
  left: 8%;
  animation: sparkDrift2 5s ease-in-out infinite 2s;
  font-size: 11px;
}

/* ==========================================================================
   AI SHOWCASE SECTIONS — Shared
   ========================================================================== */

.showcase {
  position: relative;
  overflow: hidden;
}


/* ─── Background Layer (Parallax) ─── */
.showcase-bg {
  position: absolute;
  inset: -60px;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ─── Background ambient shapes ─── */
.showcase-bg::before,
.showcase-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.showcase-bg::before {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -200px;
  background: radial-gradient(circle, var(--ginger-glow) 0%, transparent 70%);
}

.showcase-bg::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

/* ─── Grain Overlay ─── */
.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  /* Subtle grain */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* ─── Showcase Content Layout ─── */
.showcase-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--max-width);
  width: 100%;
  padding: var(--section-padding);
}

.showcase-content.reverse {
  direction: rtl;
}

.showcase-content.reverse>* {
  direction: ltr;
}

/* ─── Text side ─── */
.showcase-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  position: relative;
}

.showcase-label {
  font-size: var(--body-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ginger);
}

.showcase-heading {
  font-size: var(--heading-lg);
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--black);
  text-transform: none;
  margin-bottom: 0.5rem;
}

/* ─── Feature list with spark bullets ─── */
.showcase-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(max-content, 1fr));
  gap: 1.2rem 3rem;
  max-width: 1000px;
  margin-top: 1.5rem;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--body-md);
  font-weight: 300;
  color: var(--black);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  line-height: 1.4;
  white-space: nowrap;
  pointer-events: none;
}

.showcase-features li.feature-visible {
  opacity: 0.9;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-premium-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 1rem 2.4rem;
  font-size: var(--body-md);
  font-weight: 500;
  color: var(--white);
  background: var(--ginger);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: 0 4px 20px rgba(194, 93, 58, 0.4), 0 0 30px var(--ginger-glow);
  text-decoration: none;
  width: fit-content;
  white-space: normal;
}

.btn-premium-cta:hover {
  background: #B04F2E;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(194, 93, 58, 0.5), 0 0 50px var(--ginger-glow-intense);
}

@media (max-width: 768px) {
  .btn-premium-cta {
    width: 100%;
    text-align: center;
  }

  .hide-mobile {
    display: none !important;
  }
}

.showcase-features li::before {
  content: '✦';
  color: var(--ginger);
  font-size: 10px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .showcase-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .showcase-features li {
    white-space: normal;
  }
}


/* ==========================================================================
   SHOWCASE 1: COMPANY AUTOMATION — Black / Grainy
   ========================================================================== */

.dark-zone-wrapper {
  position: relative;
  z-index: 2;
  background: #0d0d0d;
  /* Solid dark base to prevent light color leakage */
}

.showcase-automation {
  position: relative;
}

.showcase-automation .showcase-bg {
  background: linear-gradient(to bottom,
      #f4f1ee 0%,
      #f4f1ee 10%,
      #f1edea 22%,
      #e9e4df 35%,
      #dcd6d0 48%,
      #c4beb7 62%,
      #9b9289 78%,
      #4a4542 90%,
      #111111 96%,
      #0d0d0d 100%);
  inset: 0;
  filter: none;
  transform: none !important;
}

.showcase-automation .showcase-heading {
  color: var(--black);
}

.showcase-automation .showcase-text {
  color: var(--black);
}

/* Grain overlay for automation section */
.showcase-automation .grain-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* Subtle ginger accent glow */
.showcase-automation .showcase-bg::before {
  opacity: 0.08;
  background: radial-gradient(circle, var(--ginger-glow-intense) 0%, transparent 60%);
}

.showcase-automation .showcase-bg::after {
  opacity: 0.04;
}


/* ==========================================================================
   DIGITAL EMPLOYEE SECTION (Redesign)
   ========================================================================== */

.showcase-digital-employee {
  background: #0d0d0d;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: -2px;
  /* Pull up to kill any subpixel line */
  border: none;
}

.digital-employee-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--section-padding);
  gap: 4rem;
  position: relative;
  z-index: 2;
}

/* Chat Side (Left) */
.chat-side {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
}

.chat-container {
  width: 100%;
  max-width: 360px;
  /* Even smaller, more minimalistic */
  transform-style: preserve-3d;
  will-change: transform;
  pointer-events: none;
  /* Disable cursor interaction */
}

.chat-box {
  background: rgba(244, 241, 238, 0.08);
  /* Using the site theme colour #f4f1ee with slight opacity */
  backdrop-filter: blur(30px) saturate(140%);
  -webkit-backdrop-filter: blur(30px) saturate(140%);

  /* Stronger glass definition with greyish-white tint */
  border: 1px solid rgba(244, 241, 238, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 32px;

  /* Layered 3D shadows for the glass slab */
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(244, 241, 238, 0.05);

  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;

  /* Entry animation */
  opacity: 0;
  transform: translateY(60px) translate3d(0, 0, -80px) scale(0.85);
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.chat-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 241, 238, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.chat-box.visible {
  opacity: 1;
  transform: translateY(0) translate3d(0, 0, 30px) scale(1);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(244, 241, 238, 0.1);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ginger) 0%, #a44a2b 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(194, 93, 58, 0.2);
  position: relative;
}

.online-pulse {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #4ade80;
  border: 2px solid #111;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
  animation: pulse-green 2.5s infinite;
}

.chat-name {
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.chat-status {
  font-size: 0.8rem;
  color: #4ade80;
  font-weight: 500;
  opacity: 0.9;
}

#chat-scroller {
  height: 280px;
  /* Even more compact */
  overflow-y: hidden;
  position: relative;
  /* Scroll padding */
  scroll-behavior: smooth;
}

.chat-content {
  padding: 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  /* Tight, realistic chat gap */
}

.message {
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 90%;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  box-sizing: border-box;
}

.message.client {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  border-bottom-right-radius: 6px;
  font-weight: 500;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.message.gio {
  align-self: flex-start;
  background: rgba(194, 93, 58, 0.08);
  /* Sophisticated faint tint */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(194, 93, 58, 0.15);
  color: var(--white);
  border-bottom-left-radius: 6px;
  position: relative;
}

.typing-container {
  position: relative;
}

.typing-text {
  margin: 0;
}

.typing-text-other {
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--ginger);
  font-size: 0.95rem;
}

/* Right Side: Text */
.text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.showcase-heading {
  color: var(--white);
  /* Re-ensure white text for heading in this section */
}

.digital-employee-desc {
  font-size: var(--body-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
}

/* Background Decorations */
.digital-employee-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(194, 93, 58, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .digital-employee-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 4rem;
    padding-top: 6rem;
  }

  .chat-side {
    width: 100%;
    height: auto;
    perspective: 1000px;
  }

  .text-side {
    align-items: center;
  }

  .digital-employee-desc {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .chat-container {
    max-width: 320px;
    /* Even smaller for mobile */
  }

  .chat-box {
    padding: 1.2rem;
    gap: 1rem;
    border-radius: 20px;
  }

  #chat-scroller {
    height: 240px;
  }

  .message {
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    border-radius: 16px;
  }

  .chat-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .chat-name {
    font-size: 0.9rem;
  }

  .digital-employee-desc {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .chat-container {
    max-width: 280px;
  }

  .chat-side {
    margin-top: -2rem;
    /* Bring it closer to the revealed text */
  }

  #chat-scroller {
    height: 180px;
  }

  .chat-content {
    gap: 0.6rem;
  }

  .showcase-heading {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .digital-employee-inner {
    gap: 2.5rem;
    padding-top: 4rem;
  }
}

.showcase-appointments .showcase-bg::before,
.showcase-appointments .showcase-bg::after {
  display: none;
}


/* Obsolete blending block removed */

/* ==========================================================================
   SHOWCASE GALLERY — Multiple Screenshots per Example
   ========================================================================== */

/* ─── 3D UI Stack Cluster ─── */
.ui-3d-stack {
  position: relative;
  width: 100%;
  height: min(480px, 60vh);
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(40px);
  /* Offset to the right to balance with left text */
}

@media (max-width: 992px) {
  .ui-3d-stack {
    height: 400px;
    transform: translateX(0) scale(0.9);
  }
}

@media (max-width: 768px) {
  .ui-3d-stack {
    height: 350px;
    transform: scale(0.75);
    margin-top: -2rem;
  }
}

.ui-card {
  position: absolute;
  width: 300px;
  /* Use a premium cubic-bezier for high-end feel */
  transition:
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.8s ease,
    z-index 0.8s step-end,
    filter 0.6s ease;
  transform-style: preserve-3d;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  will-change: transform, opacity;
}

/* Ensure z-index flips immediately when becoming active to stay on top */
.ui-card.is-active {
  transition:
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.8s ease,
    z-index 0s,
    filter 0.6s ease;
}

.ui-card.visible {
  opacity: 1;
  pointer-events: auto;
}

/* 3D Positions — applied only when visible or as base with offset */
.h-1 {
  z-index: 30;
  transform: translate3d(0, 100px, 80px) rotateX(10deg) rotateY(-15deg);
}

.h-1.visible {
  transform: translate3d(0, 0, 80px) rotateX(10deg) rotateY(-15deg);
  animation: float-3d-1 6s ease-in-out infinite;
  transition: transform 1.2s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 1.2s ease;
}

.h-2 {
  z-index: 20;
  transform: translate3d(140px, -40px, 0px) rotateX(10deg) rotateY(-15deg);
}

.h-2.visible {
  transform: translate3d(140px, -100px, 0px) rotateX(10deg) rotateY(-15deg);
  animation: float-3d-2 7s ease-in-out infinite;
  transition: transform 1.2s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 1.2s ease;
}

.h-3 {
  z-index: 10;
  transform: translate3d(-120px, 140px, -40px) rotateX(10deg) rotateY(-15deg);
}

.h-3.visible {
  transform: translate3d(-120px, 100px, -40px) rotateX(10deg) rotateY(-15deg);
  animation: float-3d-3 8s ease-in-out infinite;
  transition: transform 1.2s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 1.2s ease;
}

/* ─── ACTIVE / CENTERED STATE ─── */
.ui-card.is-active {
  z-index: 100 !important;
  transform: translate3d(0, 0, 150px) rotateX(0deg) rotateY(0deg) scale(1.1) !important;
  animation: none !important;
  filter: none !important;
}

/* Dim others when one is focused */
.ui-3d-stack.has-active .ui-card:not(.is-active) {
  opacity: 0.3;
  filter: blur(4px) grayscale(80%);
  transform: translate3d(0, 0, -100px) scale(0.8);
  pointer-events: none;
}

@keyframes float-3d-1 {

  0%,
  100% {
    transform: translate3d(0, 0, 50px) rotateX(10deg) rotateY(-15deg);
  }

  50% {
    transform: translate3d(0, -15px, 60px) rotateX(12deg) rotateY(-12deg);
  }
}

@keyframes float-3d-2 {

  0%,
  100% {
    transform: translate3d(120px, -80px, 0px) rotateX(10deg) rotateY(-15deg);
  }

  50% {
    transform: translate3d(130px, -95px, 10px) rotateX(8deg) rotateY(-18deg);
  }
}

@keyframes float-3d-3 {

  0%,
  100% {
    transform: translate3d(-100px, 120px, -50px) rotateX(10deg) rotateY(-15deg);
  }

  50% {
    transform: translate3d(-110px, 105px, -40px) rotateX(12deg) rotateY(-12deg);
  }
}

/* Clean pipeline rows */
.pipeline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 6px;
}

.pipeline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.dot-green {
  color: #28C840;
  background: #28C840;
}

.dot-amber {
  color: #FEBC2E;
  background: #FEBC2E;
}

.dot-blue {
  color: #007AFF;
  background: #007AFF;
}

.pipeline-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}

.pipeline-status {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}

.showcase-gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

/* ─── Glass Card ─── */
.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1rem;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 10px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all var(--duration-slow) var(--ease-out);
  will-change: transform;
  width: 100%;
}

.glass-card-sm {
  padding: 0.5rem;
}

.glass-card::after {
  content: '✦';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 8px;
  color: var(--ginger);
  opacity: 0;
  transform: scale(0.5) rotate(-45deg);
  transition: all var(--duration-normal) var(--ease-bounce);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.45),
    0 20px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ─── Device Mockup inside card ─── */
.device-mockup {
  background: #0d0d0f;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
}

.device-mockup-smoke {
  background: #1e1b21;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Browser chrome */
.device-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
}

.device-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.device-dot:nth-child(1) {
  background: #FF5F57;
}

.device-dot:nth-child(2) {
  background: #FEBC2E;
}

.device-dot:nth-child(3) {
  background: #28C840;
}

.device-url {
  flex: 1;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

/* Device screen content */
.device-screen {
  padding: 1rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
}

.device-screen-compact {
  padding: 0.7rem;
  min-height: 100px;
  gap: 0.4rem;
}

/* Chat interface mockup */
.chat-bubble {
  padding: 0.6rem 1rem;
  border-radius: 16px;
  font-size: 0.82rem;
  max-width: 90%;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.chat-bot {
  background: rgba(194, 93, 58, 0.22);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(194, 93, 58, 0.2);
  backdrop-filter: blur(5px);
}

.chat-user {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Smokey chat variants */
.chat-bot-smoke {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-user-smoke {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Schedule/calendar mockup */
.schedule-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.schedule-time {
  font-size: 0.7rem;
  color: var(--ginger);
  font-weight: 600;
  width: 42px;
  flex-shrink: 0;
}

.schedule-name {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}

.schedule-badge {
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(194, 93, 58, 0.12);
  color: var(--ginger);
  font-weight: 600;
  flex-shrink: 0;
}

.schedule-badge-pending {
  background: rgba(254, 188, 46, 0.12);
  color: #FEBC2E;
}

.schedule-badge-open {
  background: rgba(40, 200, 64, 0.12);
  color: #28C840;
}

/* Stats mockup */
.stats-row {
  display: flex;
  gap: 0.5rem;
}

.stat-card-mini {
  flex: 1;
  padding: 0.45rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label-mini {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1px;
}

/* Pipeline/workflow mockup */
.pipeline-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
}

.pipeline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green {
  background: #28C840;
  box-shadow: 0 0 6px rgba(40, 200, 64, 0.4);
}

.dot-amber {
  background: #FEBC2E;
  box-shadow: 0 0 6px rgba(254, 188, 46, 0.4);
}

.dot-blue {
  background: #5B9BD5;
  box-shadow: 0 0 6px rgba(91, 155, 213, 0.4);
}

.pipeline-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}

.pipeline-status {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

/* Calendar mini mockup */
.cal-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cal-month {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.cal-nav {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3em;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  text-align: center;
}

.cal-day {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 0;
}

.cal-num {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 2px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cal-booked {
  background: rgba(194, 93, 58, 0.15);
  color: var(--ginger);
  font-weight: 600;
}

.cal-today {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.06);
}


/* ==========================================================================
   SERVICES SECTION — Return to Origin (dark → light gradient)
   ========================================================================== */

.services {
  background: linear-gradient(to bottom,
      #0d0d0d 0%,
      #0d0d0d 5%,
      #111111 10%,
      #1a1614 18%,
      #36302b 28%,
      #595452 42%,
      #827d7a 58%,
      #bcb7b4 72%,
      #dbd6d1 85%,
      #e9e5e1 92%,
      #f1edea 97%,
      #f4f1ee 100%);
  margin-top: -1px;
  /* Micro overlap */
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--section-padding);
  position: relative;
  margin-top: -5px;
  /* Pull up to avoid white gap from body bg */
}

/* Grain texture for services */
.services::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

.services>* {
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  max-width: 600px;
}

.services-label {
  font-size: var(--body-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ginger);
  margin-bottom: var(--space-sm);
}

.services-heading {
  font-size: var(--heading-xl);
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: rgba(255, 255, 255, 0.95);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width);
  width: 100%;
}

.service-card {
  padding: var(--space-lg);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--duration-slow) var(--ease-out);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '✦';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  color: var(--ginger);
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--duration-normal) var(--ease-bounce);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 93, 58, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(194, 93, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.06);
}

.service-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.service-card h3 {
  font-size: var(--heading-md);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-heading);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-sm);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--body-sm);
  color: rgba(255, 255, 255, 0.5);
}

.service-list li::before {
  content: '✦';
  color: var(--ginger);
  font-size: 7px;
  flex-shrink: 0;
}

/* ==========================================================================
   START A PROJECT — Contact Section
   ========================================================================== */

.contact {
  background: #f4f1ee;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--section-padding);
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: -5px;
  /* Overlap services bottom */
}

/* Subtle grain texture overlay */
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

.contact>* {
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  max-width: 800px;
}

.contact-heading {
  font-size: var(--heading-xl);
  font-weight: 800;
  white-space: normal;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.contact-sub {
  font-size: var(--body-lg);
  color: var(--gray-500);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 520px;
  width: 100%;
}

.form-row {
  display: flex;
  gap: var(--space-md);
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: var(--body-sm);
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  background: var(--card-white);
  color: var(--black);
  font-size: var(--body-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all var(--duration-fast) var(--ease-out);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ginger);
  box-shadow: var(--shadow-md), 0 0 0 3px var(--ginger-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23A3A3A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: 0.75rem;
  color: #E53E3E;
  display: none;
  margin-top: 2px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #E53E3E;
}

.form-group.error .form-error {
  display: block;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  font-size: var(--body-md);
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
  align-self: center;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ginger);
  opacity: 0;
  border-radius: inherit;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.btn-submit:hover {
  color: var(--white);
  border-color: var(--ginger);
  box-shadow: 0 0 40px var(--ginger-glow), var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  animation: fadeInUp 0.6s var(--ease-out);
}

.form-success .success-icon {
  font-size: 3rem;
}

.form-success h3 {
  font-size: var(--heading-md);
  font-weight: 700;
  color: var(--black);
}

.form-success p {
  color: var(--gray-500);
}

/* ==========================================================================
   CUSTOM GINGER CURSOR — Strong visible dot
   ========================================================================== */

.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #C25D3A;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

.cursor-trail {
  display: none;
}

/* Hide system cursor only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  * {
    cursor: none !important;
  }
}

/* Show system cursor on touch devices */
@media (hover: none),
(pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

/* ==========================================================================
   LANGUAGE POPUP & BADGE
   ========================================================================== */



.lang-popup {
  position: fixed;
  top: 5.5rem;
  left: 2rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.lang-popup.lang-popup-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-size: var(--body-sm);
  font-weight: 500;
  color: var(--gray-600);
  font-family: var(--font);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.lang-option:hover {
  background: rgba(194, 93, 58, 0.08);
  color: var(--ginger);
  transform: translateX(3px);
}

.lang-option.lang-active {
  color: var(--ginger);
  font-weight: 600;
}

.lang-flag {
  font-size: 1.15rem;
}

/* "Click again" hint tooltip */
.logo-hint {
  position: fixed;
  top: 2rem;
  left: 6rem;
  z-index: 1001;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ginger);
  background: rgba(194, 93, 58, 0.08);
  border: 1px solid rgba(194, 93, 58, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  font-family: var(--font);
  letter-spacing: 0.02em;
}

.logo-hint.hint-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ==========================================================================
   GALLERY ENTRANCE ANIMATIONS — Premium Smooth
   ========================================================================== */

.gallery-anim {
  opacity: 0;
  transform: translateY(50px) scale(0.92);
  filter: blur(6px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.gallery-anim.gallery-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.gallery-anim-delay-1 {
  transition-delay: 0.2s;
}

.gallery-anim-delay-2 {
  transition-delay: 0.4s;
}

/* ==========================================================================
   CONTACT INFO STRIP — Email Left, Newsletter Right
   ========================================================================== */

.contact-info-strip {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem 2.5rem;
  background: var(--white);
}

/* ─── Email — Bottom Left ─── */
.contact-email-box {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-email-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ginger);
}

.contact-email-link {
  font-size: var(--body-sm);
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--duration-fast) var(--ease-out);
  word-break: break-all;
}

.contact-email-link:hover {
  color: var(--ginger);
}

/* ─── Newsletter — Bottom Right (NO glass background) ─── */
.newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
  max-width: 320px;
}

.newsletter-title {
  font-size: var(--body-sm);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.newsletter-sub {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.newsletter-sub strong {
  color: var(--ginger);
  font-weight: 700;
}

.newsletter-form {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 100px;
  background: var(--card-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 16px;
  color: var(--black);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast) var(--ease-out);
  min-width: 0;
}

.newsletter-input:focus {
  border-color: var(--ginger);
  box-shadow: 0 0 0 3px var(--ginger-light);
}

.newsletter-input::placeholder {
  color: var(--gray-400);
}

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  background: var(--ginger);
  color: var(--card-white);
  font-size: var(--body-sm);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: 0 4px 15px rgba(194, 93, 58, 0.3);
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(194, 93, 58, 0.4), 0 0 30px rgba(194, 93, 58, 0.15);
}

.newsletter-btn .btn-arrow-nl {
  transition: transform var(--duration-fast) var(--ease-out);
}

.newsletter-btn:hover .btn-arrow-nl {
  transform: translateX(3px);
}

.newsletter-trust {
  font-size: 0.65rem;
  color: var(--gray-400);
}

/* ==========================================================================
   10% DISCOUNT POPUP
   ========================================================================== */

.discount-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
}

.discount-popup.popup-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.discount-popup-inner {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  padding: var(--space-xl) var(--space-lg);
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-out);
}

.discount-popup.popup-visible .discount-popup-inner {
  transform: scale(1) translateY(0);
}

.discount-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  font-size: 0.85rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-out);
}

.discount-close:hover {
  background: var(--ginger-light);
  color: var(--ginger);
}

.discount-icon {
  font-size: 2.5rem;
  color: var(--ginger);
  display: block;
  margin-bottom: var(--space-sm);
}

.discount-heading {
  font-size: var(--heading-md);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.discount-text {
  font-size: var(--body-md);
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}

.discount-text strong {
  color: var(--ginger);
}

.discount-code {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--ginger);
  background: var(--ginger-light);
  padding: 0.7rem 2rem;
  border-radius: 14px;
  border: 2px dashed rgba(194, 93, 58, 0.3);
  margin-bottom: var(--space-sm);
}

.discount-note {
  font-size: var(--body-sm);
  color: var(--gray-400);
}

/* ==========================================================================
   CONTACT GLASS CONTAINER
   ========================================================================== */

.contact-glass-container {
  position: relative;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  max-width: 580px;
  width: 100%;
  box-shadow:
    0 30px 80px rgba(194, 93, 58, 0.08),
    0 10px 30px rgba(194, 93, 58, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.contact-glass-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 93, 58, 0.3), transparent);
}

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

.footer {
  padding: var(--space-lg) var(--section-padding);
  text-align: center;
  background: #f4f1ee;
  border-top: 1px solid var(--gray-100);
}

.footer p {
  font-size: var(--body-sm);
  color: var(--gray-400);
}

.footer-ginger {
  color: var(--ginger);
  font-weight: 600;
}

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

@media (max-width: 1024px) {
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 4rem 1.5rem;
  }

  .showcase-content.reverse {
    direction: ltr;
  }

  .showcase-text {
    align-items: center;
    margin-bottom: 2rem;
  }

  .showcase-features {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 1.5rem;

    /* Slightly smaller typography on mobile */
    --heading-hero: clamp(1.4rem, 5vw, 1.85rem);
    --heading-xl: clamp(1.9rem, 4.5vw, 3.2rem);
    --heading-lg: clamp(1.5rem, 3.5vw, 2.4rem);
    --heading-md: clamp(1.15rem, 2.2vw, 1.5rem);
    --body-lg: clamp(0.95rem, 1.4vw, 1.1rem);
    --body-md: 0.925rem;
    --body-sm: 0.8rem;
  }

  html {
    scroll-snap-type: y proximity;
  }

  /* iOS safe area support */
  .snap-section {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }

  .logo-fixed {
    top: 1.5rem;
    left: 1.5rem;
  }

  .logo-fixed svg {
    width: 54px;
    height: 54px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.05));
  }



  .lang-popup {
    top: 4rem;
    left: 1.2rem;
  }

  .logo-hint {
    top: 1.4rem;
    left: 4.5rem;
    font-size: 0.6rem;
  }

  /* Floating dock mobile */
  .floating-dock {
    bottom: 1.25rem;
    padding: 0.7rem 1.2rem;
    gap: 0.4rem;
    width: auto;
    border-radius: 100px;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  /* Show only specific links on mobile */
  .dock-link {
    display: none;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .dock-link[href="#hero"],
  .dock-link[href="#contact"] {
    display: block;
  }

  /* Hide hamburger menu */
  .dock-menu-toggle {
    display: none !important;
  }

  .hide-mobile {
    display: none !important;
  }

  .floating-dock.open {
    /* Reset any open state styles since toggle is gone */
    flex-direction: row;
    padding: 0.8rem 1.4rem;
    bottom: 1.5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Gallery responsive — focus on main interaction */
  .showcase-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  .ui-3d-stack {
    perspective: 1000px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery-screen {
    flex: 0 0 calc(100vw - 3rem);
    max-width: 340px;
    margin: 0 auto;
    position: absolute;
    transition: all 0.6s var(--ease-out);
  }

  /* Hide offset cards on mobile for focus */
  .ui-card:not(.h-1) {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9) translateY(20px) !important;
  }

  .ui-card.h-1 {
    opacity: 1;
    transform: none !important;
    position: relative;
    z-index: 10;
  }

  /* ─── HERO SINGLE-SECTION SCROLL REVEAL (mobile) ─── */
  .hero {
    padding: 0 var(--section-padding);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
  }

  /* Phases: show all phases naturally on mobile if JS animation is disabled */
  .hero-phase {
    opacity: 1 !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }

  .hero-headline-stage {
    margin-bottom: 1rem;
  }

  /* Bold, sentence-case hero heading on mobile */
  .hero-heading {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
    font-weight: 500;
    line-height: 1.25;
    text-transform: none;
    margin-bottom: 0;
    padding: 0;
  }

  /* Hero subtitle on mobile */
  .hero-sub {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 0 auto;
    padding: 0 5%;
    max-width: 100%;
    white-space: normal;
  }

  /* Show CTA button on mobile and style it for impact */
  #hero-cta,
  #manifesto-cta {
    display: inline-flex;
    margin-top: 2rem;
  }

  /* CTA button: smaller, ginger bg, white text, no arrow */
  .btn-glass {
    padding: 0.65rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    background: var(--ginger);
    color: var(--white);
    border-color: var(--ginger);
    box-shadow: 0 4px 20px rgba(194, 93, 58, 0.2);
  }

  .btn-glass::before {
    display: none;
  }

  .btn-arrow {
    display: none;
  }

  /* Tighter service cards on mobile */
  .service-card {
    padding: 1.5rem;
    min-height: auto;
  }

  .service-list {
    margin-top: 1rem;
    gap: 0.6rem;
  }

  .service-list li {
    font-size: 0.9rem;
  }

  /* Hide spark particles on mobile */
  .hero-sparks {
    display: none;
  }

  /* Hide architectural corner text on mobile */
  .contact .arch-frame {
    display: none;
  }

  /* Services */
  .services {
    padding: 4rem var(--section-padding);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 450px;
    margin: 0 auto;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Contact glass */
  .contact-glass-container {
    padding: var(--space-lg) var(--space-md);
    border-radius: 20px;
    margin: 0 1rem;
  }

  .contact-info-strip {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: 1.5rem var(--space-md);
    text-align: center;
  }

  .newsletter-box {
    text-align: center;
    max-width: 100%;
  }

  .newsletter-form {
    justify-content: center;
  }

  /* Reduced parallax on mobile */
  .showcase-bg {
    inset: -20px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.6rem !important;
    line-height: 1.25;
  }

  .glass-card {
    padding: 0.6rem;
    border-radius: 14px;
  }

  .service-card {
    padding: 1.25rem;
  }

  .contact-glass-container {
    padding: 2.5rem 1.25rem;
    border-radius: 18px;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   LOADING OVERLAY — Form Submission
   ========================================================================== */

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(216, 212, 206, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
  pointer-events: none;
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.loading-logo {
  width: 80px;
  height: 80px;
  opacity: 0;
  animation: loadingLogoIn 0.8s var(--ease-out) 0.2s forwards;
}

.loading-logo .logo-spark {
  animation: breathe 2s ease-in-out infinite;
}

.loading-text {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  opacity: 0;
  animation: loadingTextIn 0.8s var(--ease-out) 0.6s forwards;
}

@keyframes loadingLogoIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loadingTextIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 0.5;
    transform: translateY(0);
  }
}

/* ─── iOS height fix ─── */
@supports (-webkit-touch-callout: none) {
  .snap-section {
    min-height: -webkit-fill-available;
  }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .gallery-anim {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .custom-cursor,
  .cursor-trail {
    display: none !important;
  }
}


/* ==========================================================================
   ARCHITECTURAL TEXT FRAME — Contact Section
   ========================================================================== */

.contact .arch-frame {
  position: absolute;
  z-index: 0;
  /* Behind the glass container */
  pointer-events: none;
  font-family: var(--font);
  font-weight: 400;
  color: var(--gray-800);
  /* Matches reference image grey */
  line-height: 1.25;
  width: auto;
  /* Ensure it doesn't take full width */
}

.frame-tl {
  top: var(--section-padding);
  left: var(--section-padding);
  text-align: left;
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  max-width: 240px;
}

.frame-br {
  bottom: var(--section-padding);
  right: var(--section-padding);
  text-align: right;
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  max-width: 320px;
}

/* ─── Staggered Reveal Animation ─── */
.word-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.22em;
  /* Tightly controlled phrase-like word spacing */
  padding-bottom: 0.1em;
  /* Prevent descender clipping */
}

.word-inner {
  display: inline-block;
  transform: translateY(110%);
  /* Start below the "floor" */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  /* Quicker, smoother easing curve for overlapping feel */
  will-change: transform;
}

/* Trigger state */
.split-anim.visible .word-inner {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .frame-tl {
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1rem;
    max-width: 200px;
  }

  .frame-br {
    bottom: 6rem;
    /* Make room for footer/nav */
    right: 1.5rem;
    font-size: 0.9rem;
    max-width: 220px;
  }
}

/* ==========================================================================
   INTRO SPLASH ANIMATION
   ========================================================================== */

/* Prevent scroll during intro */
body.intro-active {
  overflow: hidden;
}

/* Hide the real fixed logo during the intro */
body.intro-active .logo-fixed {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Full-screen overlay */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #f4f1ee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out);
}

.intro-overlay.intro-fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Logo + text group — centered by default */
.intro-logo-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    scale 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, scale;
}

/* Intro logo — slightly larger for dramatic effect */
.intro-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

/* Text wrapper with overflow hidden for the slide-up reveal */
.intro-text-wrapper {
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}

/* The text itself, starts below and invisible */
.intro-text {
  font-family: var(--font);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 52px;
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Phase: text revealed (slides up into place) */
.intro-text.intro-text-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Phase: text fades out cleanly */
.intro-text.intro-text-hide {
  transform: translateY(-40%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Phase: fly to top-left corner */
/* Phase: fly to top-left corner — transform set dynamically via JS */

/* Mobile adjustments for intro */
@media (max-width: 768px) {
  .intro-logo {
    width: 38px;
    height: 38px;
  }

  .intro-text-wrapper {
    height: 38px;
  }

  .intro-text {
    font-size: 1.4rem;
    line-height: 38px;
  }
}

/* ==========================================================================
   NEW CUSTOM STYLES
   ========================================================================== */

/* Urgency Badge */
.urgency-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ginger);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.de-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

/* Form Disclaimer */
.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Background Images */
.breakdown-bg {
  background-image: url('assets/breakdown-bg.png') !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.services {
  background-image: url('assets/services-bg.png') !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

/* Overlays */
.breakdown-bg::before,
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.75);
  /* Dark overlay */
  z-index: 0;
  pointer-events: none;
}

.services-header,
.services-grid {
  position: relative;
  z-index: 2;
}

.z-index-content {
  position: relative;
  z-index: 2;
}

/* Text coloring fixes for dark sections */
.dark-section .bridge-heading,
.dark-section .bridge-closing {
  color: var(--white);
}

/* Breakdown Layout */
.breakdown-wrapper {
  margin-top: 2rem;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.breakdown-label {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ginger);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.breakdown-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

/* Connecting line */
.breakdown-timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.breakdown-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 400;

  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.breakdown-step.visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.breakdown-step span:not(.step-num) {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  flex: 1;
  display: flex;
  align-items: center;
  line-height: 1.3;
}

.breakdown-step .step-num {
  width: 35px;
  height: 35px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#bridge-cta-top {
  margin-top: 1.5rem;
}

/* Digital Employee 2 Col Layout */
.digital-employee-cols {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.de-col-header {
  text-align: center;
  margin-bottom: 4rem;
}

.de-col-header .showcase-heading {
  margin-bottom: 1.5rem;
}

.digital-employee-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 1;
  transform: none;
}

.de-cols-wrapper {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
}

.de-col {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.de-list-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.de-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.de-list li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}

.de-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--ginger);
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(194, 93, 58, 0.5);
}

.de-list li.highlight-item {
  color: var(--white);
  font-weight: 500;
}

.de-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .de-cols-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .de-col {
    padding: 2rem 1.5rem;
  }

  .de-list-title {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

/* ==========================================================================
   DIGITAL EMPLOYEE AI CARDS (Static Layout)
   ========================================================================== */

.de-cards-section {
  position: relative;
  background: #0d0d0d;
  width: 100%;
  color: var(--white);
  padding: 8rem 0;
}

.de-cards-section .grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: 1;
}

.de-cards-viewport {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.de-cards-header {
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 5%;
  margin-bottom: 4rem;
  z-index: 10;
}

.de-cards-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ginger);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.de-cards-heading {
  font-size: var(--heading-lg);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.de-cards-sub {
  font-size: var(--body-lg);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ─── Track & Cards ─── */
.de-cards-track {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.de-card {
  width: 380px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
  max-width: 100%;
  display: flex;
}

.de-card.card-offset {
  transform: translateY(40px);
}

.de-card-inner {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  width: 100%;
}

.de-card-inner:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 93, 58, 0.15);
  /* Faint ginger tint */
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(194, 93, 58, 0.05);
  /* Soft ginger glow */
}

/* Texture & Highlight */
.card-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  z-index: 0;
}

.card-highlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  z-index: 1;
}

/* Card Content Details */
.de-card-inner>* {
  position: relative;
  z-index: 2;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(194, 93, 58, 0.15);
  color: var(--ginger);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 8px;
  margin-bottom: 24px;
}

.de-card-inner h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.de-card-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.card-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.de-card-inner ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.de-card-inner li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.de-card-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ginger);
  box-shadow: 0 0 8px rgba(194, 93, 58, 0.4);
}


/* Mobile Stack View */
@media (max-width: 768px) {
  .de-cards-section {
    padding: 60px 0 80px 0;
  }

  .de-cards-viewport {
    display: block;
    overflow: visible;
  }

  .de-cards-header {
    margin-bottom: 40px;
    margin-top: 20px;
  }

  .de-cards-label {
    font-size: 0.75rem;
  }

  .de-cards-heading {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .de-cards-track {
    flex-direction: column;
    padding: 0 20px;
    gap: 24px;
  }

  .de-card {
    width: 100%;
  }

  .de-card.card-offset {
    transform: translateY(0);
  }

  .de-card-inner {
    padding: 24px;
  }

  .breakdown-step {
    font-size: 1rem;
    gap: 1rem;
  }

  .breakdown-step .step-num {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}