/* 
 * Landing Page CSS - ShowGo VMS
 * Modern Premium Design - Blue Theme
 * รองรับ Light & Dark Theme
 */

/* === ฟอนต์ Prompt (Local) === */
@font-face {
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/prompt/Prompt-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/prompt/Prompt-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/prompt/Prompt-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/prompt/Prompt-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Prompt';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/prompt/Prompt-700.woff2') format('woff2');
}

/* === CSS Variables (Light Theme) === */
:root {
  --primary: #0d4882;
  --primary-dark: #0a3662;
  --primary-light: #1565c0;
  --secondary: #3b82f6;
  --accent: #60a5fa;
  --accent-light: #93c5fd;
  --light-blue: #dbeafe;
  --lighter-blue: #eff6ff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f9ff;
  --border-color: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.3);
  --gradient-hero: linear-gradient(135deg, #0d4882 0%, #1e40af 50%, #3b82f6 100%);
  --gradient-cta: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --gradient-card: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --footer-bg: #0f172a;
  --footer-text: #94a3b8;
}

/* === Dark Theme === */
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --bg-body: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #293548;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
    --glass-bg: rgba(30, 41, 59, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d3462 50%, #1e40af 100%);
    --gradient-card: linear-gradient(135deg, #1e293b 0%, #1a2744 100%);
    --navbar-bg: rgba(15, 23, 42, 0.95);
    --footer-bg: #020617;
    --footer-text: #64748b;
    --light-blue: #1e3a5f;
    --lighter-blue: #172554;
  }
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
  50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -50px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 50px) scale(1.05); }
}

/* === Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-body);
  overflow-x: hidden;
  line-height: 1.7;
}

/* === Navbar === */
.landing-navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}
.landing-navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.landing-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.landing-navbar .navbar-brand img {
  height: 38px;
  width: auto;
}
.landing-navbar .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.landing-navbar .nav-link {
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.landing-navbar .nav-link:hover,
.landing-navbar .nav-link.active {
  color: var(--primary) !important;
  background: var(--lighter-blue);
}
.landing-navbar .btn-nav-login {
  background: var(--gradient-cta);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.6rem 1.8rem !important;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.landing-navbar .btn-nav-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  color: var(--white) !important;
}

/* Navbar Toggler (Mobile Menu Button) */
.landing-navbar .navbar-toggler {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 0.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.landing-navbar .navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.2);
}
.landing-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}
.landing-navbar .navbar-toggler-icon {
  filter: brightness(0) invert(1); /* บังคับให้ไอคอนเป็นสีขาวเพื่อความชัดเจน */
}

/* Adjust for Light Theme if needed (but currently hero is dark) */
@media (prefers-color-scheme: light) {
  .landing-navbar.scrolled .navbar-toggler {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1) !important;
  }
  .landing-navbar.scrolled .navbar-toggler-icon {
    filter: none; /* Return to default in light scrolled state if background is light */
  }
}

/* === Hero Section === */
.hero-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* สูงกว่าปกติเพื่อให้มีพื้นที่ให้เลื่อน (Parallax) */
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 72, 130, 0.85) 0%, rgba(30, 64, 175, 0.7) 100%);
  z-index: 2;
}
.hero-container {
  position: relative;
  z-index: 5;
  will-change: transform, opacity;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: blob 15s infinite ease-in-out;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: blob 20s infinite ease-in-out reverse;
}
/* คลื่นด้านล่าง */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.hero-content {
  position: relative;
  animation: fadeInLeft 0.8s ease-out;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge i {
  color: #fbbf24;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.hero-title span {
  background: linear-gradient(135deg, #93c5fd, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: var(--primary);
  background: var(--lighter-blue);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.hero-device-container {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
  text-align: center;
}
.hero-device-img {
  max-width: 100%;
  height: auto;
  max-height: 520px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
  animation: float 6s ease-in-out infinite;
  border-radius: 16px;
}

/* === Section Common === */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gradient-card);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* === Features Section === */
.features-section {
  padding: 6rem 0;
  background: var(--bg-body);
  position: relative;
}
.feature-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--gradient-card);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-wrap {
  background: var(--gradient-cta);
  color: var(--white);
  transform: scale(1.05);
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* === Device Showcase Section === */
.showcase-section {
  padding: 6rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.showcase-content {
  position: relative;
  z-index: 2;
}
.showcase-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.showcase-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}
.showcase-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.showcase-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.showcase-feature-list li i {
  color: #34d399;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.showcase-device-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
.showcase-device-img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* === How It Works Section === */
.how-section {
  padding: 6rem 0;
  background: var(--bg-body);
}
.step-card {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--gradient-cta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
  transition: all 0.3s ease;
}
.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}
.step-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}
/* เส้นเชื่อมระหว่าง Steps */
.step-connector {
  display: none;
}
@media (min-width: 768px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 55px;
    right: -24%;
    width: 48%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent-light));
    z-index: 1;
  }
  .step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--secondary);
    border-top: 2px solid var(--secondary);
    transform: rotate(45deg);
  }
}

/* === CTA Section === */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient-cta);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-weight: 300;
}
.btn-cta {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: var(--primary);
}

/* === Footer === */
.landing-footer {
  background: var(--footer-bg);
  padding: 3rem 0 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-brand img {
  height: 32px;
}
.footer-brand span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.footer-desc {
  color: var(--footer-text);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.7;
}
.footer-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--footer-text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-contact li i {
  color: var(--accent);
  width: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.footer-bottom p {
  color: var(--footer-text);
  font-size: 0.85rem;
  margin: 0;
}

/* === Scroll Animation (intersection observer) === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }
.animate-on-scroll.delay-7 { transition-delay: 0.7s; }
.animate-on-scroll.delay-8 { transition-delay: 0.8s; }
.animate-on-scroll.delay-9 { transition-delay: 0.9s; }

/* === Responsive Design === */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 2.7rem;
  }
}
@media (max-width: 991.98px) {
  .hero-section {
    padding: 5rem 0 4rem;
    min-height: auto;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-device-container {
    margin-top: 3rem;
  }
  .hero-device-img {
    max-height: 380px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .showcase-section .row {
    text-align: center;
  }
  .showcase-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .showcase-feature-list {
    display: inline-block;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    padding: 4rem 0 3rem;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-stats {
    gap: 1.2rem;
  }
  .hero-stat-number {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .showcase-title {
    font-size: 1.8rem;
  }
  .cta-title {
    font-size: 1.7rem;
  }
  .step-connector {
    display: none !important;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}
