:root {
  --primary: #8B2500;
  --primary-light: #A0522D;
  --primary-dark: #5C1A00;
  --accent: #D4760A;
  --accent-warm: #E8A317;
  --accent-glow: rgba(212, 118, 10, 0.25);
  --earth: #6B4226;
  --earth-light: #8B6914;
  --saffron: #FF671F;
  --saffron-deep: #E8590C;
  --indigo: #1A3A5C;
  --cream: #FFF8F0;
  --warm-50: #FDF6EE;
  --warm-100: #FAECD8;
  --warm-200: #F5DCC0;
  --warm-300: #E8C9A0;
  --warm-500: #9A7B4F;
  --warm-700: #5C4033;
  --warm-800: #3D2B1F;
  --warm-900: #2A1B0E;
  --white: #ffffff;
  --success: #2E7D32;
  --success-light: #4CAF50;
  --warning: #F57F17;
  --info: #1565C0;
  --gradient-hero: linear-gradient(160deg, #5C1A00 0%, #8B2500 35%, #A0522D 70%, #D4760A 100%);
  --gradient-hero-alt: linear-gradient(135deg, #3D2B1F 0%, #6B4226 50%, #8B2500 100%);
  --gradient-cta: linear-gradient(135deg, #D4760A 0%, #E8A317 100%);
  --gradient-warm: linear-gradient(135deg, #FFF8F0 0%, #FDF6EE 100%);
  --gradient-footer: linear-gradient(180deg, #2A1B0E 0%, #1A0F08 100%);
  --shadow-sm: 0 1px 3px rgba(92, 26, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(92, 26, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(92, 26, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(92, 26, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(212, 118, 10, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html { scroll-behavior: smooth; }

body.landing-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--warm-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.landing-page a { text-decoration: none; color: inherit; }
.landing-page ul { list-style: none; }

.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.lp-navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

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

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  transition: color 0.3s;
}

.lp-navbar.scrolled .lp-logo { color: var(--primary); }

.lp-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--saffron));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.lp-nav-links { display: flex; align-items: center; gap: 32px; }

.lp-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.lp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-warm);
  transition: width 0.3s;
}

.lp-nav-links a:hover { color: var(--white); }
.lp-nav-links a:hover::after { width: 100%; }

.lp-navbar.scrolled .lp-nav-links a { color: var(--warm-700); }
.lp-navbar.scrolled .lp-nav-links a:hover { color: var(--primary); }

.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.lp-btn-primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 4px 18px var(--accent-glow);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--accent-glow);
}

.lp-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}

.lp-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.lp-navbar.scrolled .lp-btn-outline {
  color: var(--primary);
  border-color: var(--primary);
}

.lp-navbar.scrolled .lp-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.lp-nav-cta { display: flex; align-items: center; gap: 12px; }

.lp-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.lp-navbar.scrolled .lp-mobile-toggle { color: var(--primary); }

.lp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 118, 10, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  animation: heroPulse 8s ease-in-out infinite;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 103, 31, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  animation: heroPulse 10s ease-in-out infinite reverse;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 1; }
}

.lp-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, white 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 100px 100px;
}

.lp-hero .lp-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lp-hero-content { animation: fadeInUp 1s ease-out; }

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(212, 118, 10, 0.18);
  border: 1px solid rgba(212, 118, 10, 0.35);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #F5D0A9;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.lp-hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success-light);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}

.lp-hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.lp-hero h1 .highlight {
  background: linear-gradient(135deg, #F5D0A9, #E8A317);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero h1 .highlight-accent {
  background: linear-gradient(135deg, #FFAB91, #FF671F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-description {
  font-size: 1.12rem;
  color: rgba(255, 248, 240, 0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.lp-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.lp-hero-actions .lp-btn-primary {
  padding: 14px 32px;
  font-size: 1rem;
}

.lp-hero-actions .lp-btn-outline {
  padding: 14px 32px;
  font-size: 1rem;
}

.lp-hero-stats {
  display: flex;
  gap: 36px;
}

.lp-hero-stat { text-align: left; }

.lp-hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.lp-hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 248, 240, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.lp-hero-mockup {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 248, 240, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 248, 240, 0.12);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.lp-hero-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
}

.lp-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-dot-red { background: #ef4444; }
.lp-dot-yellow { background: #f59e0b; }
.lp-dot-green { background: #4CAF50; }

.lp-mockup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 248, 240, 0.05);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: all 0.3s;
  animation: mockupSlide 0.6s ease-out both;
}

.lp-mockup-row:nth-child(2) { animation-delay: 0.1s; }
.lp-mockup-row:nth-child(3) { animation-delay: 0.2s; }
.lp-mockup-row:nth-child(4) { animation-delay: 0.3s; }
.lp-mockup-row:nth-child(5) { animation-delay: 0.4s; }

@keyframes mockupSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.lp-mockup-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.lp-mockup-icon.amber { background: rgba(212, 118, 10, 0.25); color: #F5D0A9; }
.lp-mockup-icon.green { background: rgba(76, 175, 80, 0.2); color: #81C784; }
.lp-mockup-icon.saffron { background: rgba(255, 103, 31, 0.2); color: #FF8A65; }
.lp-mockup-icon.blue { background: rgba(21, 101, 192, 0.2); color: #64B5F6; }

.lp-mockup-text { flex: 1; }

.lp-mockup-text .title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 248, 240, 0.92);
  margin-bottom: 2px;
}

.lp-mockup-text .subtitle {
  font-size: 0.74rem;
  color: rgba(255, 248, 240, 0.45);
}

.lp-mockup-badge {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.lp-mockup-badge.completed { background: rgba(76, 175, 80, 0.2); color: #81C784; }
.lp-mockup-badge.pending { background: rgba(255, 103, 31, 0.2); color: #FF8A65; }
.lp-mockup-badge.progress { background: rgba(21, 101, 192, 0.2); color: #64B5F6; }

.lp-floating-card {
  position: absolute;
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 6s ease-in-out infinite;
  z-index: 3;
}

.lp-floating-card.card-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.lp-floating-card.card-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: 3s;
}

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

.lp-floating-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.lp-floating-icon.green { background: rgba(46, 125, 50, 0.12); color: var(--success); }
.lp-floating-icon.amber { background: rgba(212, 118, 10, 0.12); color: var(--accent); }

.lp-floating-text .value { font-size: 1.1rem; font-weight: 700; color: var(--warm-900); }
.lp-floating-text .label { font-size: 0.68rem; color: var(--warm-500); text-transform: uppercase; letter-spacing: 0.5px; }

.lp-section { padding: 100px 0; position: relative; }

.lp-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.lp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

.lp-section-label::before,
.lp-section-label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.5;
}

.lp-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--warm-900);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.lp-section-subtitle {
  font-size: 1.1rem;
  color: var(--warm-500);
  line-height: 1.75;
}

.lp-features { background: var(--gradient-warm); }

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: var(--white);
  border: 1px solid var(--warm-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.lp-feature-card.aos-animate,
.lp-feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.lp-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: transparent;
}

.lp-feature-card:hover::before { transform: scaleX(1); }

.lp-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.lp-feature-card:hover .lp-feature-icon { transform: scale(1.1) rotate(-5deg); }

.lp-feature-icon.amber { background: rgba(212, 118, 10, 0.1); color: var(--accent); }
.lp-feature-icon.green { background: rgba(46, 125, 50, 0.08); color: var(--success); }
.lp-feature-icon.saffron { background: rgba(255, 103, 31, 0.1); color: var(--saffron); }
.lp-feature-icon.blue { background: rgba(21, 101, 192, 0.08); color: var(--info); }
.lp-feature-icon.earth { background: rgba(107, 66, 38, 0.1); color: var(--earth); }
.lp-feature-icon.indigo { background: rgba(26, 58, 92, 0.08); color: var(--indigo); }

.lp-feature-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--warm-900);
  margin-bottom: 10px;
}

.lp-feature-card p {
  font-size: 0.88rem;
  color: var(--warm-500);
  line-height: 1.65;
}

.lp-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s;
}

.lp-feature-card:hover .lp-feature-link { gap: 10px; }

.lp-about { background: var(--white); }

.lp-about .lp-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lp-about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.lp-about-image {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background: var(--gradient-hero-alt);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.lp-about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(212, 118, 10, 0.25) 0%, transparent 50%),
    linear-gradient(225deg, rgba(255, 103, 31, 0.15) 0%, transparent 50%);
}

.lp-about-image::after {
  content: '\f4c4';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 5rem;
  color: rgba(255, 248, 240, 0.12);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lp-about-stats-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-xl);
  display: flex;
  gap: 24px;
}

.lp-about-stat { text-align: center; }

.lp-about-stat .number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.lp-about-stat .label {
  font-size: 0.72rem;
  color: var(--warm-500);
  margin-top: 4px;
}

.lp-about-content { opacity: 0; transform: translateX(30px); }
.lp-about-content.aos-animate,
.lp-about-content.visible { opacity: 1; transform: translateX(0); transition: all 0.8s ease; }

.lp-about-content .lp-section-label { justify-content: flex-start; }
.lp-about-content .lp-section-label::before { display: none; }

.lp-about-content .lp-section-title { text-align: left; font-size: 2.25rem; }

.lp-about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-about-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lp-about-item-icon {
  width: 28px;
  height: 28px;
  background: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-about-item-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--warm-900);
  margin-bottom: 2px;
}

.lp-about-item-text p {
  font-size: 0.84rem;
  color: var(--warm-500);
}

.lp-cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.lp-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 118, 10, 0.18) 0%, transparent 65%);
  border-radius: 50%;
}

.lp-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 30% 40%, white 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, white 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px;
}

.lp-cta .lp-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
}

.lp-cta h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.lp-cta p {
  font-size: 1.1rem;
  color: rgba(255, 248, 240, 0.72);
  margin-bottom: 36px;
  line-height: 1.75;
}

.lp-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-cta .lp-btn-primary {
  background: var(--white);
  color: var(--primary);
  padding: 14px 36px;
  font-size: 1rem;
}

.lp-cta .lp-btn-primary:hover {
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.lp-cta .lp-btn-outline { padding: 14px 36px; font-size: 1rem; }

.lp-footer {
  background: var(--gradient-footer);
  color: rgba(255, 248, 240, 0.55);
  padding: 60px 0 0;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 248, 240, 0.06);
}

.lp-footer-brand .lp-logo {
  color: var(--white);
  margin-bottom: 16px;
}

.lp-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.lp-footer h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.lp-footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 248, 240, 0.45);
  transition: color 0.3s;
}

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

.lp-footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.lp-footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-footer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.lp-footer-credit-label {
  color: rgba(255, 248, 240, 0.4);
}

.lp-footer-credit-name {
  color: var(--accent-warm);
  font-weight: 600;
  letter-spacing: 0.3px;
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1024px) {
  .lp-hero .lp-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .lp-hero h1 { font-size: 2.6rem; }
  .lp-hero-description { margin: 0 auto 36px; }
  .lp-hero-actions { justify-content: center; }
  .lp-hero-stats { justify-content: center; }
  .lp-hero-visual { order: -1; }
  .lp-hero-mockup { max-width: 400px; }
  .lp-floating-card { display: none; }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-about .lp-container { grid-template-columns: 1fr; gap: 40px; }
  .lp-about-visual { order: -1; }
  .lp-about-content .lp-section-title { text-align: center; }
  .lp-about-content .lp-section-label { justify-content: center; }
  .lp-about-content .lp-section-label::before { display: block; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lp-nav-links, .lp-nav-cta { display: none; }
  .lp-mobile-toggle { display: block; }
  .lp-hero { padding: 100px 0 60px; }
  .lp-hero h1 { font-size: 1.9rem; }
  .lp-hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .lp-section { padding: 60px 0; }
  .lp-section-title { font-size: 1.75rem; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-about-stats-card { position: relative; bottom: auto; right: auto; margin-top: -40px; margin-left: 20px; margin-right: 20px; }
  .lp-cta h2 { font-size: 1.9rem; }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .lp-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .lp-footer-credit { justify-content: center; }
  .lp-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .lp-nav-links.open a { color: var(--warm-700); }
}
