/* ===================================================
   Darji Ghor (দর্জি ঘর) - Modern Luxury Tailoring Styles
   =================================================== */

:root {
  --primary-dark: #070d1e;
  --primary-navy: #0e1a38;
  --primary-slate: #1e293b;
  --primary-indigo: #2196f3;
  --primary-indigo-dark: #1976d2;
  
  --brand-blue: #2196f3;
  --brand-blue-dark: #1976d2;
  --brand-blue-light: #e3f2fd;
  --brand-green: #00c853;
  --brand-green-dark: #009624;
  --brand-green-light: #e8f5e9;

  --gold-primary: #d4a34b;
  --gold-light: #fef3c7;
  --gold-dark: #b88226;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  --gold-glow: rgba(245, 158, 11, 0.35);

  --emerald: #00c853;
  --emerald-bg: #e8f5e9;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark-card: #132247;
  
  --border-light: #e2e8f0;
  --border-gold: rgba(212, 163, 75, 0.4);
  
  --font-en: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-bn: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(14, 26, 56, 0.05);
  --shadow-md: 0 8px 24px rgba(14, 26, 56, 0.08);
  --shadow-lg: 0 16px 40px rgba(14, 26, 56, 0.12);
  --shadow-xl: 0 24px 60px rgba(14, 26, 56, 0.18);
  --shadow-gold: 0 10px 30px rgba(212, 163, 75, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-bn);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  touch-action: pan-y;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  outline: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Notification / Promo Bar */
.promo-bar {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.82rem;
  padding: 6px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1001;
}

.promo-bar span.badge {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.25);
}

/* Modern Glassmorphic Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(33, 150, 243, 0.18);
  background: #ffffff;
  padding: 3px;
  border: 1.5px solid rgba(33, 150, 243, 0.25);
  transition: var(--transition-smooth);
}

.logo-wrapper:hover .brand-logo-img {
  transform: scale(1.05);
  border-color: var(--brand-blue);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-text h1 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.4px;
  margin: 0;
  line-height: 1.2;
}

.badge-pro {
  font-size: 0.62rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #1565c0 100%);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(33, 150, 243, 0.3);
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Nav Links as Sleek SaaS Floating Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(241, 245, 249, 0.65);
  padding: 4px 6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  display: inline-block;
  letter-spacing: -0.1px;
}

.nav-link:hover {
  color: #0284c7;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.nav-link.active {
  color: #0284c7;
  background: #ffffff;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Modern Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  color: #64748b;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-btn.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.18);
}

/* Nav Download Button */
#btn-nav-download {
  background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(33, 150, 243, 0.35);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  cursor: pointer;
}

#btn-nav-download:hover {
  background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(33, 150, 243, 0.45);
}

#btn-nav-download svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2f63 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 163, 75, 0.4);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 26, 56, 0.25);
  border-color: var(--gold-primary);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #111827;
  font-weight: 800;
  border: none;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 163, 75, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--primary-navy);
  border: 1.5px solid var(--border-light);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: #f8fafc;
  border-color: var(--primary-indigo);
  color: var(--primary-indigo);
  transform: translateY(-2px);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #070d1e;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition-smooth);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.btn-store:hover {
  background: #111e3f;
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 24px rgba(14, 26, 56, 0.3);
}

.btn-store svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-store-text {
  text-align: left;
  line-height: 1.15;
}

.btn-store-text small {
  display: block;
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-store-text strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  padding: 6px;
  color: var(--primary-navy);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 163, 75, 0.12);
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(212, 163, 75, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(59, 82, 212, 0.06) 0%, transparent 40%),
              #ffffff;
  padding: 60px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-pattern-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(#0e1a38 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-right: 15px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary-navy);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241, 245, 249, 0.8);
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-slate);
}

.pill-item svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
}

/* Hero Media Mockup */
.hero-media {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
  transition: var(--transition-smooth);
}

.hero-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(14, 26, 56, 0.22);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Floating floating tags over hero mockup */
.float-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: floatMotion 4s ease-in-out infinite alternate;
}

.float-tag.top-left {
  top: 24px;
  left: 0;
}

.float-tag.bottom-right {
  bottom: 30px;
  right: 0;
  animation-delay: -2s;
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon svg {
  width: 22px;
  height: 22px;
}

.float-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary-navy);
}

.float-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

/* ===================================================
   STATS BAR
   =================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  padding: 44px 0;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(212, 163, 75, 0.3);
}

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

.stat-item {
  padding: 10px 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-en);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* ===================================================
   CORE FEATURES SECTION
   =================================================== */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-page);
}

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

.feature-card {
  background: var(--bg-card);
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 163, 75, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  margin-bottom: 22px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background: var(--primary-navy);
  color: var(--gold-primary);
  transform: scale(1.06);
}

.feature-icon-box svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ===================================================
   HOW IT WORKS SECTION
   =================================================== */
.how-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 8%;
  width: 84%;
  height: 2px;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 24px 18px;
  text-align: center;
}

.step-number-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-en);
  color: var(--primary-navy);
  box-shadow: 0 6px 18px rgba(212, 163, 75, 0.25);
  transition: var(--transition-smooth);
}

.step-card:hover .step-number-circle {
  background: var(--gold-gradient);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(212, 163, 75, 0.4);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ===================================================
   INTERACTIVE APP SCREEN TOUR
   =================================================== */
.preview-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.screen-tour-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.screen-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.screen-tab-btn {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 18px 22px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: var(--transition-smooth);
}

.screen-tab-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.screen-tab-btn.active {
  background: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(212, 163, 75, 0.18);
}

.tab-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-navy);
  transition: var(--transition-fast);
}

.screen-tab-btn.active .tab-icon-wrap {
  background: var(--primary-navy);
  color: var(--gold-primary);
}

.tab-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.tab-text h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.tab-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Phone Mockup Frame */
.phone-mockup-frame {
  position: relative;
  width: 320px;
  height: 620px;
  margin: 0 auto;
  background: #000000;
  border-radius: 44px;
  border: 8px solid #1e293b;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-speaker {
  width: 80px;
  height: 18px;
  background: #1e293b;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.phone-screen-content {
  flex: 1;
  background: #0e1a38;
  color: #fff;
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.screen-mockup-view {
  display: none;
  height: 100%;
  flex-direction: column;
  animation: fadeIn 0.4s ease;
}

.screen-mockup-view.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.mock-brand {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold-light);
}

.mock-logo-img {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
  padding: 2px;
  border: 1px solid rgba(212, 163, 75, 0.4);
  flex-shrink: 0;
  display: inline-block;
}

.mock-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
}

.mock-card-gold {
  background: linear-gradient(135deg, rgba(212, 163, 75, 0.2) 0%, rgba(212, 163, 75, 0.05) 100%);
  border: 1px solid var(--border-gold);
}

.mock-card h5 {
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.mock-card p {
  color: #94a3b8;
  font-size: 0.74rem;
}

.mock-track-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.mock-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
}

.mock-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #475569;
}

.mock-step-dot.done {
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

.mock-step-dot.active {
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.mock-cta-btn {
  margin-top: auto;
  background: var(--gold-gradient);
  color: #000;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
}

/* ===================================================
   SERVICES SECTION
   =================================================== */
.services-section {
  padding: 100px 0;
  background: #ffffff;
}

.services-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.srv-tab-btn {
  padding: 10px 22px;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-muted);
  border: 1.5px solid transparent;
  transition: var(--transition-fast);
}

.srv-tab-btn:hover {
  background: #e2e8f0;
}

.srv-tab-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--gold-primary);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.srv-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.srv-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #eff6ff;
  color: var(--primary-indigo);
  margin-bottom: 16px;
}

.srv-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.srv-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 22px;
  flex: 1;
}

.srv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-slate);
}

.srv-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
}

.srv-time svg {
  width: 16px;
  height: 16px;
}

/* Master Tailor Experience Banner Section */
.atelier-banner-section {
  padding: 80px 0;
  background: var(--bg-page);
}

.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  background: #0e1a38;
  color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.atelier-image {
  height: 100%;
  min-height: 420px;
}

.atelier-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atelier-content {
  padding: 44px 44px 44px 10px;
}

.atelier-content h3 {
  color: #ffffff;
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.atelier-content p {
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.atelier-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.atelier-hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gold-light);
  font-weight: 600;
}

.atelier-hl-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ===================================================
   TESTIMONIALS SECTION
   =================================================== */
.testimonials-section {
  padding: 100px 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.test-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.test-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.test-stars {
  color: #f59e0b;
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.test-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.test-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.test-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-meta h5 {
  font-size: 0.98rem;
  color: var(--primary-navy);
}

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

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq-section {
  padding: 100px 0;
  background: var(--bg-page);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(212, 163, 75, 0.12);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding-bottom: 22px;
}

/* ===================================================
   DOWNLOAD CTA SECTION
   =================================================== */
.cta-section {
  padding: 80px 0;
  background: #ffffff;
}

.cta-box {
  background: radial-gradient(circle at 90% 10%, rgba(212, 163, 75, 0.25) 0%, transparent 60%),
              linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(212, 163, 75, 0.3);
}

.cta-content h2 {
  font-size: 2.45rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-content p {
  color: #cbd5e1;
  font-size: 1.08rem;
  margin-bottom: 22px;
}

.cta-promo-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.cta-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-qr-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
}

.qr-code-wrapper {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.qr-code-wrapper svg {
  display: block;
  width: 140px;
  height: 140px;
}

.cta-qr-box h5 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cta-qr-box p {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--primary-dark);
  color: #94a3b8;
  padding: 70px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.social-icon.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
}

.social-icon.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.45);
}

.social-icon.wa:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.social-icon:hover svg {
  transform: scale(1.1);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* Floating Actions: WhatsApp & Scroll to top */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.float-btn-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.float-btn-top {
  background: var(--primary-navy);
  color: #ffffff;
  border: 1px solid var(--border-gold);
  opacity: 0;
  visibility: hidden;
}

.float-btn-top.visible {
  opacity: 1;
  visibility: visible;
}

.float-btn-top svg {
  width: 22px;
  height: 22px;
}

/* Modal Popup for Download */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 13, 30, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 34px;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--gold-primary);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 1.45rem;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--primary-navy);
  transition: var(--transition-fast);
}

.modal-btn:hover {
  background: #f1f5f9;
  border-color: var(--primary-navy);
  transform: translateX(4px);
}

.modal-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* Toast notification */
.toast-msg {
  position: fixed;
  top: 24px;
  right: 24px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-xl);
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.show {
  transform: translateX(0);
}

/* ===================================================
   MOBILE DRAWER & STICKY BOTTOM BAR STYLES
   =================================================== */

/* Mobile Navigation Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 13, 30, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(105%);
  visibility: hidden;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  z-index: 2600;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  background: #f8fafc;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  transition: var(--transition-fast);
}

.drawer-close-btn:hover {
  background: #cbd5e1;
}

.drawer-close-btn svg {
  width: 20px;
  height: 20px;
}

.drawer-nav-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex: 1;
}

.drawer-link {
  padding: 14px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease, color 0.2s ease;
}

.drawer-link:hover, .drawer-link:active {
  background: #f8fafc;
  color: var(--primary-indigo);
}

.drawer-link::after {
  content: '➔';
  font-size: 0.85rem;
  color: var(--gold-dark);
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-light);
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mobile Sticky Bottom Install Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 26, 56, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid var(--gold-primary);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
  z-index: 1800;
  padding: 10px 16px;
  animation: slideUpBottom 0.4s ease;
}

@keyframes slideUpBottom {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-bar-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: #ffffff;
  padding: 2px;
  border: 1px solid var(--gold-primary);
  flex-shrink: 0;
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.sticky-bar-info strong {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.sticky-bar-info span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
}

.btn-sticky-install {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-gradient);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(212, 163, 75, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Visibility Utilities */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.cta-mobile-app-box {
  display: none;
}

/* ===================================================
   RESPONSIVE DESIGN BREAKPOINTS
   =================================================== */

/* Tablet & Smaller Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  
  .hero-content {
    padding-right: 0;
  }
  
  .hero-subtitle {
    margin: 0 auto 28px;
  }
  
  .hero-cta-group, .hero-pills {
    justify-content: center;
  }
  
  .hero-media {
    max-width: 520px;
    margin: 0 auto;
  }

  .float-tag {
    display: none !important;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .steps-grid::before {
    display: none;
  }

  .screen-tour-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px;
  }

  .atelier-grid {
    grid-template-columns: 1fr;
  }
  
  .atelier-image {
    min-height: 260px;
  }

  .atelier-content {
    padding: 32px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 44px 30px;
  }
  
  .cta-store-buttons {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Medium Tablets & Narrow Viewports (max-width: 991px) */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--primary-navy);
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .container {
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  body {
    padding-bottom: 74px; /* Space for mobile sticky bottom bar */
  }

  .mobile-sticky-bar {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .cta-mobile-app-box {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(10px);
  }

  .cta-mobile-badge h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .cta-mobile-badge p {
    color: var(--gold-light);
    font-size: 0.84rem;
  }

  /* Compact Navbar */
  .navbar {
    height: 64px;
  }

  .nav-container {
    height: 64px;
    padding: 0 16px;
  }

  .logo-text span {
    display: none; /* Hide subtitle on mobile for cleaner look */
  }

  .logo-text h1 {
    font-size: 1.25rem;
  }

  .brand-logo-img {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    display: none; /* Desktop nav links hidden; mobile drawer handles it */
  }

  #btn-nav-download {
    display: none; /* Hide bulky download button in navbar on mobile */
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--primary-navy);
  }

  .lang-switcher {
    padding: 2px;
  }

  .lang-btn {
    padding: 4px 9px;
    font-size: 0.76rem;
  }

  /* Section Spacings on Mobile */
  .section-header {
    margin-bottom: 34px;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  /* Hero Section on Mobile */
  .hero-section {
    padding: 32px 0 44px;
  }

  .hero-badge-pill {
    font-size: 0.76rem;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.28;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 24px;
  }

  .btn-store {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }

  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-pills {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .pill-item {
    width: 100%;
    justify-content: flex-start;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .hero-media {
    max-width: 100%;
  }

  .hero-image-card {
    border-radius: 18px;
    border-width: 2px;
  }

  /* Stats Section on Mobile */
  .stats-section {
    padding: 28px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 8px;
  }

  .stat-item::after {
    display: none !important;
  }

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

  .stat-label {
    font-size: 0.82rem;
  }

  /* Features Grid on Mobile */
  .features-section {
    padding: 54px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .feature-icon-box svg {
    width: 24px;
    height: 24px;
  }

  .feature-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .feature-desc {
    font-size: 0.9rem;
  }

  /* How It Works on Mobile - Sleek Vertical Connected Timeline */
  .how-section {
    padding: 54px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    padding-left: 20px;
  }

  .steps-grid::before {
    display: block;
    top: 20px;
    left: 45px;
    width: 2px;
    height: calc(100% - 60px);
    border-top: none;
    border-left: 2.5px dashed var(--gold-primary);
  }

  .step-card {
    display: flex;
    text-align: left;
    gap: 18px;
    padding: 14px 0;
    align-items: flex-start;
  }

  .step-number-circle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 1.1rem;
    margin: 0;
    flex-shrink: 0;
    background: #ffffff;
  }

  .step-title {
    font-size: 1.08rem;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 0.86rem;
  }

  /* Inside the App (Preview Tour) on Mobile */
  .preview-section {
    padding: 54px 0;
  }

  .screen-tour-wrapper {
    padding: 20px 14px;
    border-radius: 20px;
    gap: 24px;
  }

  /* Horizontal Scrollable Tabs on Mobile */
  .screen-tabs {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .screen-tabs::-webkit-scrollbar {
    display: none;
  }

  .screen-tab-btn {
    flex-shrink: 0;
    padding: 10px 14px;
    border-radius: var(--radius-full);
    gap: 8px;
    align-items: center;
  }

  .screen-tab-btn .tab-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .screen-tab-btn .tab-icon-wrap svg {
    width: 16px;
    height: 16px;
  }

  .screen-tab-btn .tab-text h4 {
    font-size: 0.88rem;
    margin: 0;
    white-space: nowrap;
  }

  .screen-tab-btn .tab-text p {
    display: none; /* Hide detailed paragraph in compact pill tab */
  }

  /* Phone Mockup on Mobile */
  .phone-mockup-frame {
    width: 100%;
    max-width: 295px;
    height: 560px;
    border-radius: 36px;
    border-width: 6px;
  }

  .phone-screen-content {
    padding: 24px 14px 16px;
  }

  .mock-card {
    padding: 10px;
    margin-bottom: 8px;
  }

  .mock-card h5 {
    font-size: 0.82rem;
  }

  .mock-card p {
    font-size: 0.7rem;
  }

  /* Services Section on Mobile */
  .services-section {
    padding: 54px 0;
  }

  .services-filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 4px 12px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .srv-tab-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .srv-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  /* Atelier Section on Mobile */
  .atelier-banner-section {
    padding: 54px 0;
  }

  .atelier-content {
    padding: 24px 18px;
  }

  .atelier-content h3 {
    font-size: 1.55rem;
    margin-bottom: 12px;
  }

  .atelier-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .atelier-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .atelier-hl-item {
    font-size: 0.86rem;
  }

  /* Testimonials on Mobile */
  .testimonials-section {
    padding: 54px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .test-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .test-text {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  /* FAQ on Mobile */
  .faq-section {
    padding: 54px 0;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.96rem;
  }

  .faq-answer {
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 16px;
  }

  /* CTA Box on Mobile */
  .cta-section {
    padding: 44px 0;
  }

  .cta-box {
    padding: 34px 18px;
    border-radius: 20px;
    gap: 24px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 0.92rem;
  }

  .cta-promo-tag {
    font-size: 0.78rem;
    padding: 6px 14px;
    margin-bottom: 22px;
    display: block;
  }

  /* Footer on Mobile */
  .footer {
    padding: 50px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Floating Actions on Mobile (Repositioned above the bottom bar) */
  .floating-actions {
    bottom: 82px;
    right: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }

  .float-btn-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  /* Modal on Mobile */
  .modal-card {
    padding: 24px 18px;
    margin: 12px;
  }

  .modal-logo-img {
    width: 58px;
    height: 58px;
  }

  .modal-header h3 {
    font-size: 1.28rem;
  }

  .modal-btn {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
}

/* Extra Small Phones (max-width: 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn-store-text strong {
    font-size: 0.88rem;
  }

  .phone-mockup-frame {
    max-width: 270px;
  }
}

/* ===================================================
   NEW SECTIONS: PAIN POINTS COMPARISON
   =================================================== */
.pain-section {
  padding: 80px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pain-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition-smooth);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(33, 150, 243, 0.3);
}

.pain-problem {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 16px;
  height: 100%;
}

.pain-problem-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pain-problem-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pain-problem h4 {
  font-size: 0.95rem;
  color: #991b1b;
  margin: 0;
}

.pain-problem p {
  font-size: 0.82rem;
  color: #7f1d1d;
  margin: 0;
  line-height: 1.45;
}

.pain-arrow {
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-arrow svg {
  width: 28px;
  height: 28px;
}

.pain-solution {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 16px;
  height: 100%;
}

.pain-solution-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pain-solution-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00c853;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pain-solution h4 {
  font-size: 0.95rem;
  color: #166534;
  margin: 0;
}

.pain-solution p {
  font-size: 0.82rem;
  color: #14532d;
  margin: 0;
  line-height: 1.45;
}

/* ===================================================
   9 CORE FEATURE MODULES
   =================================================== */
.modules-section {
  padding: 90px 0;
  background: var(--bg-page);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 45px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-green) 100%);
  opacity: 0;
  transition: var(--transition-fast);
}

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(33, 150, 243, 0.4);
}

.module-card:hover::before {
  opacity: 1;
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.module-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.12) 0%, rgba(0, 200, 83, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  border: 1px solid rgba(33, 150, 243, 0.2);
}

.module-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.module-badge-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.module-title {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.module-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.module-points-list {
  border-top: 1px dashed var(--border-light);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--slate-700);
  font-weight: 500;
}

.module-point-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-green);
  flex-shrink: 0;
}

/* ===================================================
   VISUAL MEASUREMENT EXPLORER
   =================================================== */
.meas-section {
  padding: 85px 0;
  background: #ffffff;
}

.garment-chips-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.garment-chip {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--slate-700);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.garment-chip:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.garment-chip.active {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(33, 150, 243, 0.35);
}

.meas-explorer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.meas-visual-panel {
  background: #0f172a;
  border-radius: var(--radius-md);
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.meas-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.meas-garment-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.meas-garment-name span.en-name {
  font-size: 0.85rem;
  color: var(--brand-blue-light);
  font-weight: 500;
}

.meas-figure-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 10px;
  position: relative;
}

.meas-figure-icon {
  width: 100px;
  height: 100px;
  color: var(--brand-blue);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 16px rgba(33, 150, 243, 0.5));
}

.meas-figure-icon svg {
  width: 100%;
  height: 100%;
}

.meas-fitting-badge-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.meas-fit-pill {
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.meas-fit-pill.active {
  background: var(--brand-green);
  color: #000;
  font-weight: 700;
}

.meas-details-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meas-points-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.meas-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.meas-point-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--slate-800);
  font-weight: 600;
}

.meas-point-pill span.point-num {
  font-size: 0.75rem;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 2px 6px;
  border-radius: 4px;
}

.meas-custom-profile-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 0.82rem;
  color: #1e40af;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ===================================================
   BLUETOOTH THERMAL PRINTER & POS SIMULATOR
   =================================================== */
.thermal-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #070d1e 0%, #0e1a38 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.thermal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.thermal-info h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.thermal-info p.thermal-subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.thermal-feature-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.thermal-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.thermal-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(33, 150, 243, 0.15);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(33, 150, 243, 0.3);
}

.thermal-feat-icon svg {
  width: 22px;
  height: 22px;
}

.thermal-feat-text h4 {
  color: #ffffff;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.thermal-feat-text p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.45;
}

/* Thermal Paper Receipt */
.thermal-receipt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thermal-printer-hardware {
  width: 100%;
  max-width: 380px;
  background: #1e293b;
  border-radius: 20px 20px 0 0;
  padding: 16px 20px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  border: 2px solid #334155;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.printer-led-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.printer-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
}

.printer-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.thermal-paper-slip {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  color: #0f172a;
  font-family: 'Courier New', Courier, monospace;
  padding: 24px 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.4s ease;
}

/* Jagged Zigzag Edge */
.thermal-paper-slip::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: radial-gradient(circle, transparent, transparent 50%, #ffffff 50%, #ffffff 100%);
  background-size: 14px 14px;
}

.receipt-header-center {
  text-align: center;
  border-bottom: 1px dashed #94a3b8;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.receipt-shop-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 2px;
  font-family: var(--font-bn);
}

.receipt-shop-sub {
  font-size: 0.72rem;
  color: #475569;
  font-family: var(--font-bn);
}

.receipt-meta-info {
  font-size: 0.75rem;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.4;
  border-bottom: 1px dashed #cbd5e1;
  padding-bottom: 8px;
}

.receipt-items-table {
  width: 100%;
  font-size: 0.78rem;
  margin-bottom: 12px;
  border-bottom: 1px dashed #94a3b8;
  padding-bottom: 10px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.receipt-total-block {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.receipt-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

.receipt-due-row {
  color: #dc2626;
  font-size: 0.88rem;
  font-weight: 800;
  border-top: 1px solid #e2e8f0;
  padding-top: 4px;
}

.receipt-qr-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding-top: 6px;
}

.receipt-qr-code {
  width: 60px;
  height: 60px;
}

.receipt-qr-code svg {
  width: 100%;
  height: 100%;
}

.receipt-footer-text {
  font-size: 0.7rem;
  color: #64748b;
  font-family: var(--font-bn);
}

.receipt-sim-btn-wrapper {
  margin-top: 24px;
  width: 100%;
  max-width: 380px;
}

.btn-print-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-green);
  color: #000;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 200, 83, 0.4);
}

.btn-print-action:hover {
  background: #00e676;
  transform: translateY(-2px);
}

/* Printing Animation Class */
.thermal-paper-slip.printing {
  animation: receiptFeed 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===================================================
   KEY HIGHLIGHTS / 4 SELLING POINTS
   =================================================== */
.highlights-section {
  padding: 85px 0;
  background: #ffffff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.highlight-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue);
  background: #ffffff;
}

.highlight-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(33, 150, 243, 0.2);
}

.highlight-icon-box svg {
  width: 28px;
  height: 28px;
}

.highlight-card h4 {
  font-size: 1.05rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ===================================================
   VIDEO DEMO MODAL
   =================================================== */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 13, 30, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-card {
  width: 90%;
  max-width: 780px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92);
  transition: var(--transition-smooth);
  color: #fff;
  position: relative;
}

.video-modal-overlay.active .video-modal-card {
  transform: scale(1);
}

.video-modal-header {
  padding: 18px 24px;
  background: #1e293b;
  border-bottom: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-modal-header h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0;
}

.video-screen-player {
  padding: 30px 24px;
  background: #020617;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
  border-bottom: 1px solid #1e293b;
}

.video-play-ring {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 24px rgba(33, 150, 243, 0.6);
  cursor: pointer;
  transition: var(--transition-fast);
}

.video-play-ring:hover {
  transform: scale(1.08);
  background: var(--brand-green);
  color: #000;
}

.video-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 24px;
  background: #0f172a;
}

.video-step-col {
  background: #1e293b;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: #cbd5e1;
}

.video-step-col strong {
  display: block;
  color: var(--brand-blue-light);
  margin-bottom: 4px;
}

/* Responsive updates for newly added sections */
@media (max-width: 1024px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
  
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .meas-explorer-grid {
    grid-template-columns: 1fr;
  }

  .thermal-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Global Width & Container Protection */
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .container {
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Promo Bar Mobile Wrapping */
  .promo-bar {
    padding: 6px 12px;
    font-size: 0.74rem;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
  }

  .promo-bar span.badge {
    display: inline-block;
    padding: 4px 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    font-size: 0.7rem;
  }

  /* Pain Points Comparison */
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .pain-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .pain-arrow {
    transform: rotate(90deg);
    margin: 4px auto;
  }

  .pain-problem, .pain-solution {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 12px;
    word-break: break-word;
  }

  /* 9 Core Feature Modules */
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .module-card {
    width: 100%;
    box-sizing: border-box;
    padding: 22px 16px;
  }

  /* Visual Measurement Explorer */
  .garment-chips-bar {
    width: 100%;
    gap: 6px;
    margin: 16px 0 24px;
    padding: 0 4px;
    justify-content: center;
  }

  .garment-chip {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .meas-explorer-grid {
    grid-template-columns: 1fr;
    padding: 18px 14px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .meas-visual-panel {
    padding: 18px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .meas-points-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
    width: 100%;
  }

  .meas-point-pill {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .meas-custom-profile-note {
    font-size: 0.78rem;
    padding: 10px 12px;
  }

  .meas-figure-icon {
    width: 72px;
    height: 72px;
  }

  /* Bluetooth Thermal POS Simulator */
  .thermal-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
  }

  .thermal-info h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .thermal-printer-hardware {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px;
    box-sizing: border-box;
  }

  .thermal-paper-slip {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 14px;
    box-sizing: border-box;
  }

  .receipt-sim-btn-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }

  .receipt-items-table, .receipt-row, .receipt-total-row {
    font-size: 0.74rem;
  }

  /* Mockup App Screen Inside Preview Section */
  .mock-logo-img {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    max-width: 26px !important;
    object-fit: contain !important;
  }

  /* Key Highlights */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .highlight-card {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
  }

  /* Video Demo Modal */
  .video-steps-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .video-modal-card {
    width: 95%;
    max-width: 100%;
    margin: 10px;
  }
}
