/* Impronta Style - Premium Italian Design Aesthetic */

:root {
  /* Typography */
  --font-serif: 'Playfair Display', "Shippori Mincho", "Yu Mincho", serif;
  --font-sans: 'Montserrat', "Zen Kaku Gothic New", "Yu Gothic", sans-serif;

  /* Colors */
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-accent: #b21920;
  --color-accent-dark: #8a1419;
  --color-overlay: rgba(0, 0, 0, 0.3);

  /* Spacing */
  --spacing-container: 1400px;
  --spacing-mobile: 20px;

  /* Animation - Premium Easing */
  --transition-slow: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Custom Cursor - Disabled */
.cursor,
.cursor-follower {
  display: none;
}

/* Smooth Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  z-index: 10000;
  transition: width 0.1s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

/* Responsive Display Helpers */
.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
  .pc-only {
    display: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--spacing-container);
  margin: 0 auto;
  padding: 0 40px;
}

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

/* Advanced Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Text Reveal Animation */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-out-expo);
}

.text-reveal.visible span {
  transform: translateY(0);
}

/* Split Text Animation */
.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotate(10deg);
  transition: opacity 0.6s ease, transform 0.8s var(--ease-out-expo);
}

.split-text.visible .char {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Line Draw Animation */
.line-draw {
  position: relative;
}

.line-draw::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.6s var(--ease-out-expo);
}

.line-draw:hover::after,
.line-draw.visible::after {
  width: 100%;
}

/* Magnetic Button Effect */
.magnetic-btn {
  position: relative;
  display: inline-block;
  transition: transform 0.3s var(--ease-out-expo);
}

.magnetic-btn:hover {
  transform: scale(1.05);
}

/* Header */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  mix-blend-mode: difference;
  color: white;
  transform: translateY(-100%);
  transition: transform 0.8s var(--ease-out-expo);
}

.lp-header.visible {
  transform: translateY(0);
}

.lp-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.lp-logo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out-expo);
}

.lp-logo:hover::before {
  transform: translateX(0);
}

.lp-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.lp-nav li {
  overflow: hidden;
}

.lp-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding: 5px 0;
}

.lp-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}

.lp-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero Section */
.lp-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(178,25,32,0.2) 100%);
  z-index: 0;
  pointer-events: none;
}

.lp-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.lp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 0 20px;
}

.lp-hero-content.visible .lp-hero-title {
  animation: heroTitleReveal 1.2s var(--ease-out-expo) forwards;
}

.lp-hero-content.visible .lp-hero-subtitle {
  animation: heroSubtitleReveal 1s var(--ease-out-expo) 0.3s forwards;
}

.lp-hero-content.visible .feature-summary {
  animation: heroSubtitleReveal 1s var(--ease-out-expo) 0.5s forwards;
}

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

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

.lp-hero-title {
  font-size: 4.5rem;
  margin-bottom: 30px;
  letter-spacing: -1px;
  opacity: 0;
  font-weight: 400;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.lp-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0;
  font-weight: 300;
}

.feature-summary {
  opacity: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, white, transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.btn-outline {
  display: inline-block;
  padding: 18px 50px;
  border: 1px solid white;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out-expo);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.btn-outline:hover {
  color: black;
}

.btn-outline:hover::before {
  transform: translateY(0);
}

/* CTA Button with accent color */
.btn-accent {
  display: inline-block;
  padding: 18px 50px;
  background: var(--color-accent);
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  border: none;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(178, 25, 32, 0.4);
}

.btn-accent:hover::before {
  left: 100%;
}

/* Intro Section */
.lp-intro {
  padding: 120px 0;
  display: flex;
  justify-content: center;
}

.lp-intro-text {
  max-width: 800px;
  text-align: center;
}

.lp-intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.lp-intro-text p {
  font-size: 1.1rem;
  color: var(--color-text-light);
}

/* Showcase Grid */
.lp-showcase {
  padding-bottom: 100px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 150px;
}

.grid-2.reverse {
  direction: rtl;
}

.grid-2.reverse .grid-content {
  direction: ltr;
}

.grid-image {
  position: relative;
  overflow: hidden;
  height: 650px;
}

/* Image Mask Reveal Effect */
.grid-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.2s var(--ease-out-expo);
}

.grid-image.visible::before {
  transform: scaleX(0);
}

.grid-image img,
.grid-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out-expo), filter 0.5s ease;
  filter: grayscale(20%);
}

.grid-image:hover img,
.grid-image:hover video {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* Floating Number Badge */
.grid-image::after {
  content: attr(data-number);
  position: absolute;
  top: 30px;
  left: 30px;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: white;
  z-index: 3;
  opacity: 0.9;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  mix-blend-mode: difference;
}

.grid-content {
  padding: 50px;
}

.grid-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: block;
  font-weight: 600;
}

.grid-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.3;
}

.grid-content p {
  line-height: 1.9;
  font-size: 1.05rem;
}

.grid-content p:first-of-type {
  font-size: 1.15rem;
  color: var(--color-text);
  font-weight: 400;
}

.grid-content ul {
  margin: 30px 0;
  padding: 0;
}

.grid-content li {
  line-height: 1.8;
  position: relative;
  padding: 12px 0 12px 35px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  list-style: none;
  font-size: 1rem;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.grid-content li:last-child {
  border-bottom: none;
}

.grid-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 50%;
  opacity: 0.9;
}

.grid-content li::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

.grid-content li:hover {
  padding-left: 45px;
  color: var(--color-accent);
}

/* Highlight Box for Key Points */
.highlight-box {
  background: linear-gradient(135deg, #fef8f8 0%, #fff 100%);
  border-left: 4px solid var(--color-accent);
  padding: 25px 30px;
  margin: 25px 0;
  position: relative;
}

.highlight-box::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 3rem;
  font-family: var(--font-serif);
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
}

/* Feature Tags */
.feature-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(178, 25, 32, 0.08);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* Stats/Numbers Display */
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Icon List Style */
.icon-list {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
  transition: all 0.4s var(--ease-out-expo);
}

.icon-list-item:hover {
  background: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateX(10px);
}

.icon-list-item i {
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(178, 25, 32, 0.08);
  border-radius: 12px;
}

.icon-list-item-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.icon-list-item-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}

.grid-link {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  display: inline-block;
  margin-top: 20px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.grid-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* Section Link Button - Arrow Style */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 16px 28px;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.section-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-accent);
  z-index: -1;
  transition: width 0.4s var(--ease-out-expo);
}

.section-link span {
  position: relative;
  z-index: 1;
}

.section-link i {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  transition: transform 0.4s var(--ease-out-expo);
}

.section-link:hover {
  color: white;
  border-color: var(--color-accent);
}

.section-link:hover::before {
  width: 100%;
}

.section-link:hover i {
  transform: translateX(5px);
}

/* Featured Parallax / Merits Section */
.lp-featured {
  position: relative;
  height: auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.lp-featured-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.lp-featured-content {
  background: white;
  padding: 60px 80px;
  text-align: center;
  max-width: 500px;
}

/* Merit Cards */
.merit-card {
  flex: 1;
  min-width: 320px;
  padding: 50px 40px;
  background: white;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
}

.merit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-accent);
  transition: height 0.5s var(--ease-out-expo);
}

.merit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.merit-card:hover::before {
  height: 100%;
}

.merit-card i {
  transition: transform 0.5s var(--ease-out-expo);
}

.merit-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* ========================================
   ENHANCED MERITS SECTION
   ======================================== */

.merits-section {
  padding: 140px 0 120px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.merits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

/* Header */
.merits-header {
  text-align: center;
  margin-bottom: 80px;
}

.merits-label {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.merits-title {
  font-size: 2.8rem;
  font-weight: 400;
  font-family: var(--font-serif);
  margin-bottom: 30px;
  line-height: 1.4;
}

.merits-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid */
.merits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Enhanced Card */
.merit-card-enhanced {
  background: white;
  padding: 50px 40px 45px;
  position: relative;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  transition: all 0.6s var(--ease-out-expo);
  border-radius: 0;
}

.merit-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), #d94048);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.merit-card-enhanced::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(178, 25, 32, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.merit-card-enhanced:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.merit-card-enhanced:hover::before {
  transform: scaleX(1);
}

.merit-card-enhanced:hover::after {
  opacity: 1;
}

/* Number Badge */
.merit-number {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: rgba(178, 25, 32, 0.08);
  line-height: 1;
  transition: color 0.5s ease;
}

.merit-card-enhanced:hover .merit-number {
  color: rgba(178, 25, 32, 0.15);
}

/* Icon */
.merit-icon-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f8f8, #fff);
  border: 2px solid rgba(178, 25, 32, 0.1);
  margin-bottom: 25px;
  transition: all 0.5s var(--ease-out-expo);
}

.merit-icon-wrap i {
  font-size: 1.6rem;
  color: var(--color-accent);
  transition: transform 0.5s var(--ease-out-expo);
}

.merit-card-enhanced:hover .merit-icon-wrap {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.merit-card-enhanced:hover .merit-icon-wrap i {
  color: white;
  transform: scale(1.1);
}

/* Titles */
.merit-title {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-sans);
  margin-bottom: 8px;
  color: var(--color-text);
}

.merit-subtitle {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 25px;
  font-weight: 500;
}

/* Content */
.merit-content {
  border-top: 1px solid #eee;
  padding-top: 25px;
}

.merit-lead {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 25px;
  font-weight: 400;
}

/* List */
.merit-list {
  list-style: none;
  margin-bottom: 25px;
}

.merit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  border-bottom: 1px dashed #eee;
}

.merit-list li:last-child {
  border-bottom: none;
}

.merit-list-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(178, 25, 32, 0.08);
  border-radius: 50%;
  margin-top: 2px;
}

.merit-list-icon i {
  font-size: 0.55rem;
  color: var(--color-accent);
}

/* Comparison */
.merit-comparison {
  background: #fafafa;
  padding: 18px;
  margin-top: 10px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.comparison-item:first-child {
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.comparison-label {
  flex-shrink: 0;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 3px;
}

.comparison-item.bad .comparison-label {
  background: #f0f0f0;
  color: #888;
}

.comparison-item.good .comparison-label {
  background: var(--color-accent);
  color: white;
}

.comparison-text {
  color: #666;
}

.comparison-item.good .comparison-text {
  color: var(--color-text);
  font-weight: 500;
}

/* Bottom Message */
.merits-bottom {
  margin-top: 80px;
  text-align: center;
}

.merits-message {
  display: inline-block;
  background: white;
  padding: 40px 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  position: relative;
}

.merits-message::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 4rem;
  font-family: var(--font-serif);
  color: rgba(178, 25, 32, 0.1);
  line-height: 1;
}

.merits-message-text {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--color-text);
}

.highlight-text {
  color: var(--color-accent);
  font-weight: 600;
}

/* ========================================
   CLIENTS SECTION - Logo Grid
   ======================================== */

.clients-section {
  padding: 120px 0 100px;
  background: #fff;
  position: relative;
}

.clients-label {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 15px;
  font-weight: 500;
}

.clients-title {
  font-size: 2.5rem;
  font-weight: 400;
  font-family: var(--font-serif);
  margin-bottom: 20px;
}

.clients-subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

/* Logo Grid */
.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  transition: all 0.4s var(--ease-out-expo);
  min-height: 100px;
}

.client-logo-item:hover {
  background: white;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
  border-color: transparent;
}

.client-logo-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.clients-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* ========================================
   AI SECTION - Enhanced
   ======================================== */

.ai-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ai-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.ai-section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--color-accent) 0%, #d32f2f 100%);
  padding: 8px 20px;
  margin-bottom: 25px;
  font-weight: 600;
}

.ai-section-title {
  font-size: 2.5rem;
  font-weight: 400;
  font-family: var(--font-serif);
  margin-bottom: 25px;
  color: var(--color-text);
}

.ai-section-lead {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

.ai-section-lead strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* AI Capabilities Grid */
.ai-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.ai-capability-card {
  background: white;
  padding: 35px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.ai-capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.ai-capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: transparent;
}

.ai-capability-card:hover::before {
  transform: scaleX(1);
}

.ai-capability-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(178, 25, 32, 0.08) 0%, rgba(178, 25, 32, 0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-out-expo);
}

.ai-capability-icon i {
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.4s var(--ease-out-expo);
}

.ai-capability-card:hover .ai-capability-icon {
  background: var(--color-accent);
}

.ai-capability-card:hover .ai-capability-icon i {
  color: white;
  transform: scale(1.1);
}

.ai-capability-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.ai-capability-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 18px;
}

.ai-capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
}

.ai-capability-list li {
  font-size: 0.82rem;
  color: #666;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.ai-capability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* AI Message Box */
.ai-section-message {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 40px;
  margin-bottom: 40px;
  border-left: 4px solid var(--color-accent);
}

.ai-message-content {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.ai-message-icon {
  font-size: 2rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.ai-message-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text);
  margin: 0;
}

.ai-message-content strong {
  color: var(--color-accent);
}

/* AI Section CTA */
.ai-section-cta {
  text-align: center;
}

/* AI Section Responsive */
@media (max-width: 1024px) {
  .ai-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ai-section {
    padding: 0 5px;
  }

  .ai-section-header {
    margin-bottom: 40px;
  }

  .ai-section-label {
    font-size: 0.7rem;
    padding: 6px 16px;
    letter-spacing: 2px;
  }

  .ai-section-title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .ai-section-lead {
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: left;
    padding: 0 5px;
  }

  .ai-capabilities-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 0 20px 15px;
    margin: 0 -20px;
    width: calc(100% + 40px);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .ai-capabilities-grid::-webkit-scrollbar {
    display: none;
  }

  /* Scroll hint indicator for AI section - using wrapper instead of ::after */
  .ai-scroll-hint {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    opacity: 0.6;
    margin-top: 10px;
    animation: scrollHint 2s ease-in-out infinite;
  }

  .ai-capability-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 30px 25px;
  }

  .ai-capability-icon {
    width: 50px;
    height: 50px;
  }

  .ai-capability-icon i {
    font-size: 1.2rem;
  }

  .ai-capability-title {
    font-size: 1.1rem;
  }

  .ai-capability-desc {
    font-size: 0.88rem;
    line-height: 1.8;
  }

  .ai-capability-list li {
    font-size: 0.8rem;
    padding: 5px 0;
    padding-left: 20px;
  }

  .ai-section-message {
    padding: 25px 20px;
    margin: 0 -5px 30px;
  }

  .ai-message-content {
    flex-direction: column;
    gap: 15px;
    text-align: left;
  }

  .ai-message-content p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .ai-message-icon {
    margin: 0;
    font-size: 1.5rem;
  }

  .ai-section-cta .btn-outline {
    padding: 14px 30px;
    font-size: 0.85rem;
  }
}

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

/* CTA Section */
.footer-cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.footer-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), #d94048, var(--color-accent));
}

.footer-cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(178, 25, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-cta-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-cta-title {
  font-size: 2.8rem;
  font-family: var(--font-serif);
  font-weight: 400;
  color: white;
  margin-bottom: 25px;
  line-height: 1.4;
}

.footer-cta-text {
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.footer-cta-btn.primary {
  background: var(--color-accent);
  color: white;
  border: 2px solid var(--color-accent);
}

.footer-cta-btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.footer-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(178, 25, 32, 0.4);
}

.footer-cta-btn.primary:hover::before {
  left: 100%;
}

.footer-cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-cta-btn.secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.footer-cta-btn i {
  font-size: 1.1rem;
}

.footer-cta-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-cta-note i {
  margin-right: 8px;
  color: var(--color-accent);
}

/* Footer Main */
.footer-main {
  background: #0a0a0a;
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Company Info */
.footer-company {

}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: white;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.footer-company-name {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
}

.footer-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* Footer Links */
.footer-links {

}

.footer-links-title {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 25px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-3px);
}

/* Parent Company */
.footer-parent {
  margin-top: 20px;
}

.footer-parent-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.footer-parent-link {
  display: inline-block;
}

.footer-parent-link img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer-parent-link:hover img {
  opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
  background: #050505;
  padding: 25px 0;
}

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

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-cta-section {
    padding: 70px 0;
  }

  .footer-cta-title {
    font-size: 1.8rem;
  }

  .footer-cta-text {
    font-size: 1rem;
  }

  .footer-cta-text br {
    display: none;
  }

  .footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-logo::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom-links {
    gap: 20px;
  }
}

/* Legacy Footer (keeping for compatibility) */
.lp-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: white;
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.lp-footer-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 30px;
  display: inline-block;
  letter-spacing: 6px;
  position: relative;
}

.lp-footer-logo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-accent);
}

.lp-footer p {
  font-size: 0.9rem;
  color: #666;
}

.lp-footer a {
  transition: color 0.3s ease;
}

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

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0.7em 1.2em;
  margin: 0;
  font-size: 0.9rem;
  background: #f7f7f7;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #888;
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 0.7em;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.1em;
}

.breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #d0121b;
  text-decoration: underline;
}

.breadcrumb span[itemprop="name"] {
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.8rem;
    padding: 0.6em 1em;
  }
}

/* FAQ Accordion Styles */
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.faq-item dt {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-item dt::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item.active dt::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Target Section */
.target-section {
  background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
  border: 2px solid var(--color-accent);
  position: relative;
  overflow: hidden;
}

.target-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
}

.target-section li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.target-section.visible li {
  opacity: 1;
  transform: translateX(0);
}

.target-section.visible li:nth-child(1) { transition-delay: 0.1s; }
.target-section.visible li:nth-child(2) { transition-delay: 0.2s; }
.target-section.visible li:nth-child(3) { transition-delay: 0.3s; }
.target-section.visible li:nth-child(4) { transition-delay: 0.4s; }
.target-section.visible li:nth-child(5) { transition-delay: 0.5s; }

/* Parallax Sections */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* Parallax Container */
.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}

/* Parallax Image Effect */
.parallax-image {
  position: relative;
  overflow: hidden;
}

.parallax-image img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Parallax Text */
.parallax-text {
  will-change: transform;
}

/* Floating Elements */
.float-element {
  animation: floatAnimation 6s ease-in-out infinite;
}

.float-element-delay {
  animation: floatAnimation 6s ease-in-out infinite;
  animation-delay: -3s;
}

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

/* Horizontal Parallax Scroll */
.parallax-horizontal {
  will-change: transform;
}

/* Depth Layers */
.depth-layer-1 { --parallax-speed: 0.1; }
.depth-layer-2 { --parallax-speed: 0.2; }
.depth-layer-3 { --parallax-speed: 0.3; }

/* Split Section Parallax */
.split-parallax {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}

.split-parallax .split-image {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.split-parallax .split-content {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Zoom Parallax on Scroll */
.zoom-parallax {
  will-change: transform;
  transition: transform 0.3s ease-out;
}

/* Reveal on Scroll */
.reveal-parallax {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s var(--ease-out-expo);
}

.reveal-parallax.visible {
  clip-path: inset(0 0 0 0);
}

/* Text Parallax Slide */
.text-slide-up {
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.8s var(--ease-out-expo), opacity 0.6s ease;
}

.text-slide-up.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Section Divider with Parallax */
.section-divider {
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.section-divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

/* Perspective Container for 3D Effect */
.perspective-container {
  perspective: 1000px;
  perspective-origin: center;
}

.perspective-item {
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out-expo);
}

.perspective-item:hover {
  transform: rotateX(5deg) rotateY(5deg) translateZ(20px);
}

/* Responsive */
@media (max-width: 768px) {
  /* Disable custom cursor on mobile */
  body {
    cursor: auto;
  }

  .cursor, .cursor-follower {
    display: none;
  }

  .lp-header {
    padding: 20px;
  }

  .lp-nav {
    display: none;
  }

  .lp-hero-title {
    font-size: 2.5rem !important;
    line-height: 1.3;
  }

  .lp-hero-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 80px;
  }

  .grid-2.reverse {
    direction: ltr;
  }

  .grid-image {
    height: 350px;
  }

  .grid-image::after {
    font-size: 2.5rem;
    top: 20px;
    left: 20px;
  }

  .grid-content {
    padding: 40px 25px;
    text-align: left;
  }

  .grid-title {
    font-size: 1.8rem !important;
  }

  .grid-subtitle {
    font-size: 0.75rem;
  }

  .container {
    padding: 0 20px;
  }

  .lp-featured-content {
    width: 90%;
    padding: 40px 20px;
  }

  .merit-card {
    min-width: 100%;
    padding: 35px 25px;
  }

  /* Enhanced Merits Section - Mobile */
  .merits-section {
    padding: 60px 0 50px;
  }

  .merits-section::before {
    height: 40px;
  }

  .merits-header {
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .merits-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .merits-title {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .merits-subtitle {
    font-size: 0.9rem;
    padding: 0 5px;
    line-height: 1.8;
    text-align: left;
  }

  .merits-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 0 20px 15px;
    margin: 0 -20px;
    width: calc(100% + 40px);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .merits-grid::-webkit-scrollbar {
    display: none;
  }

  /* Scroll hint indicator - using wrapper instead of ::after */
  .merits-scroll-hint {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    opacity: 0.6;
    margin-top: 10px;
    animation: scrollHint 2s ease-in-out infinite;
  }

  @keyframes scrollHint {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.3; }
  }

  .merit-card-enhanced {
    flex: 0 0 88%;
    scroll-snap-align: center;
    padding: 35px 22px 30px;
  }

  .merit-number {
    font-size: 2.2rem;
    top: 18px;
    right: 18px;
  }

  .merit-icon-wrap {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
  }

  .merit-icon-wrap i {
    font-size: 1.3rem;
  }

  .merit-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .merit-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .merit-content {
    padding-top: 20px;
  }

  .merit-lead {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .merit-list {
    margin-bottom: 20px;
  }

  .merit-list li {
    font-size: 0.82rem;
    padding: 8px 0;
    gap: 10px;
  }

  .merit-list-icon {
    width: 18px;
    height: 18px;
  }

  .merit-list-icon i {
    font-size: 0.5rem;
  }

  .merit-comparison {
    padding: 14px;
    margin-top: 8px;
  }

  .comparison-item {
    flex-wrap: nowrap;
    font-size: 0.75rem;
    align-items: flex-start;
  }

  .comparison-item:first-child {
    padding-bottom: 10px;
  }

  .comparison-label {
    font-size: 0.6rem;
    padding: 2px 8px;
    flex-shrink: 0;
  }

  .comparison-text {
    flex: 1;
    line-height: 1.5;
  }

  .merits-bottom {
    margin-top: 40px;
    padding: 0 10px;
  }

  .merits-message {
    padding: 25px 20px;
    margin: 0;
  }

  .merits-message::before {
    font-size: 2.5rem;
    top: 8px;
    left: 12px;
  }

  .merits-message-text {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .highlight-text {
    display: block;
    margin-bottom: 8px;
  }

  /* Clients Section - Mobile */
  .clients-section {
    padding: 80px 0 60px;
  }

  .clients-title {
    font-size: 1.8rem;
  }

  .clients-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .clients-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 20px;
  }

  .client-logo-item {
    padding: 20px 15px;
    min-height: 80px;
  }

  .client-logo-item img {
    max-height: 40px;
  }

  .clients-note {
    font-size: 0.85rem;
    margin-top: 30px;
  }

  .lp-intro-text h2 {
    font-size: 1.5rem !important;
  }

  .lp-footer {
    padding: 80px 0 40px;
  }

  .lp-footer-logo {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .scroll-indicator {
    display: none;
  }

  /* Reduce animation intensity on mobile */
  .fade-in-up {
    transform: translateY(30px);
  }

  .fade-in-left,
  .fade-in-right {
    transform: translateX(0);
    opacity: 0;
  }

  /* Intro Checklist - Mobile */
  .intro-checklist {
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
  }

  .intro-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
  }

  .intro-checklist li i {
    margin-top: 4px;
    flex-shrink: 0;
  }

  /* Target Section - Mobile */
  .target-section {
    padding: 40px 20px !important;
    margin-bottom: 60px !important;
  }

  .target-section h3 {
    font-size: 1.5rem !important;
    margin-bottom: 25px !important;
  }

  .target-section ul {
    font-size: 0.95rem !important;
    line-height: 2 !important;
    text-align: left !important;
    display: block !important;
    padding: 0 !important;
  }

  .target-section li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.6 !important;
  }

  .target-section li i {
    margin-top: 4px;
    flex-shrink: 0;
  }

  /* FAQ Section - Mobile */
  .faq-section-mobile {
    padding: 0 20px !important;
    max-width: 100% !important;
  }

  .faq-section-mobile h3 {
    font-size: 1.5rem !important;
    margin-bottom: 30px !important;
  }

  .faq-section-mobile dl {
    padding: 0;
  }

  .faq-section-mobile dt {
    font-size: 1rem !important;
    line-height: 1.5;
    margin-bottom: 8px !important;
  }

  .faq-section-mobile dd {
    font-size: 0.95rem !important;
    padding-left: 0 !important;
    line-height: 1.7;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .lp-hero-title {
    font-size: 2rem !important;
  }

  .grid-image {
    height: 280px;
  }

  .btn-outline,
  .btn-accent {
    padding: 14px 30px;
    font-size: 0.8rem;
  }

  .icon-list-item {
    padding: 15px;
  }

  .icon-list-item i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .highlight-box {
    padding: 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .feature-tag {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  /* Clients Section - Small Mobile */
  .clients-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .client-logo-item {
    padding: 15px 10px;
    min-height: 70px;
  }

  .client-logo-item img {
    max-height: 35px;
  }

  .section-link {
    padding: 12px 20px;
    font-size: 0.8rem;
    margin-top: 20px;
  }
}