/* 
  POS Ledger Plus - Main Stylesheet
  Theme: Blue & White Modern SaaS
  Typography: Plus Jakarta Sans & Inter (Google Fonts)
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #0F62FE;
  --primary-hover: #0043CE;
  --primary-dark: #002D9C;
  --primary-light: #EFF6FF;
  --primary-glow: rgba(15, 98, 254, 0.25);
  --secondary: #00D5FF;
  --accent-green: #10B981;
  --accent-orange: #F59E0B;
  
  --dark-bg: #0B132B;
  --dark-card: #1C2541;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-alt: #F1F5F9;
  --white: #FFFFFF;

  --border: #E2E8F0;
  --border-focus: #93C5FD;
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px 0 rgba(15, 98, 254, 0.08);

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(15, 98, 254, 0.15);
  --shadow-glow: 0 0 30px rgba(15, 98, 254, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

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

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

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border: 1px solid rgba(15, 98, 254, 0.15);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(15, 98, 254, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(15, 98, 254, 0.45);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--text-main);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-icon-store {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.btn-icon-store i {
  font-size: 1.75rem;
}

.btn-icon-store small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.85;
}

.btn-icon-store span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

/* STICKY NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-normal);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}

.brand-logo img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  background: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding-top: 9.5rem;
  padding-bottom: 6rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(15, 98, 254, 0.08) 0%, rgba(248, 250, 252, 0) 70%),
              linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  overflow: hidden;
}

/* BACKGROUND AURORA GLOWS & MESH GRID */
.hero-grid-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(15, 98, 254, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.hero-glow-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  left: -100px;
  background: linear-gradient(135deg, rgba(15, 98, 254, 0.3), rgba(0, 213, 255, 0.2));
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  top: 15%;
  right: -150px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(15, 98, 254, 0.2));
  animation: floatGlow 14s ease-in-out infinite alternate-reverse;
}

.hero-glow-3 {
  width: 350px;
  height: 350px;
  bottom: -50px;
  left: 30%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(0, 213, 255, 0.15));
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

/* HERO BADGE PILL & LIVE PULSE */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 98, 254, 0.2);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(15, 98, 254, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-content h1 {
  font-size: 3.35rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.btn-glow-effect {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 98, 254, 0.4);
}

.btn-glow-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg);
  animation: sweepShine 4s infinite;
}

@keyframes sweepShine {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  20%, 100% { transform: translate(100%, 100%) rotate(30deg); }
}

.hero-rating-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: inline-flex;
}

.rating-stars {
  color: #F59E0B;
  display: flex;
  gap: 0.15rem;
  font-size: 0.85rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1.75rem;
}

.hero-badge-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
}

.hero-badge-list span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-badge-list i {
  color: var(--accent-green);
}

/* HERO VISUAL & INTERACTIVE GARMENT DEMO CARD */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone-mockup {
  position: relative;
  z-index: 2;
  width: 310px;
  border-radius: 40px;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25), 0 0 40px rgba(15, 98, 254, 0.15);
  border: 10px solid var(--dark-bg);
  background-color: var(--dark-bg);
  transition: transform 0.5s ease;
}

.hero-phone-mockup:hover {
  transform: translateY(-6px) scale(1.01);
}

.hero-phone-mockup img {
  border-radius: 30px;
}

/* INTERACTIVE DEMO VARIANT CARD */
.hero-interactive-card {
  position: absolute;
  top: 15%;
  right: -45px;
  z-index: 4;
  width: 280px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -10px rgba(15, 98, 254, 0.18), 0 0 1px rgba(0, 0, 0, 0.1);
  transition: var(--transition-normal);
}

.hero-interactive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -10px rgba(15, 98, 254, 0.25);
}

.hic-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.hic-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hic-title i {
  font-size: 1.35rem;
}

.hic-title strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.2;
}

.hic-sku {
  display: block;
  font-size: 0.725rem;
  color: var(--primary);
  font-family: monospace;
  font-weight: 700;
}

.hic-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.hic-section label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.hero-variant-pills {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.hero-variant-pill {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-light);
  color: var(--text-main);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-variant-pill:hover,
.hero-variant-pill.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(15, 98, 254, 0.25);
}

.hic-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}

.hic-stock-badge {
  color: var(--accent-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hic-tax-tag {
  background: rgba(15, 98, 254, 0.08);
  color: var(--primary);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.floating-card:hover {
  transform: scale(1.05);
}

.floating-card-1 {
  bottom: 22%;
  left: -50px;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 6%;
  left: -20px;
  animation-delay: 2s;
}

.floating-card-3 {
  bottom: -20px;
  right: 10px;
  animation-delay: 4s;
}

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

.fc-blue { background: rgba(15, 98, 254, 0.1); color: var(--primary); }
.fc-green { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); }
.fc-purple { background: rgba(147, 51, 234, 0.1); color: #9333EA; }

.floating-card-text h5 {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.floating-card-text p {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

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

/* TRUSTED BY / STATS SECTION */
.stats-section {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 3.5rem 0;
}

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

.stat-item h3 {
  font-size: 2.75rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* SCREENSHOTS SLIDER & TABS */
.screenshots-section {
  background-color: var(--bg-light);
}

.screen-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(15, 98, 254, 0.25);
}

.screen-display-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.screen-content {
  display: none;
  align-items: center;
  gap: 3rem;
}

.screen-content.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

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

.screen-img {
  width: 280px;
  flex-shrink: 0;
  border-radius: 24px;
  border: 4px solid var(--dark-bg);
  box-shadow: var(--shadow-md);
}

.screen-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.screen-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.screen-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sh-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.sh-item i {
  color: var(--primary);
}

/* WHY CHOOSE CARDS */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.why-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(15, 98, 254, 0.15);
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* DOWNLOAD SECTION BANNER */
.download-banner {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.download-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.download-banner h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.download-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.download-btn-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.qr-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--text-main);
  max-width: 200px;
  margin: 0 auto;
}

.qr-placeholder {
  width: 140px;
  height: 140px;
  margin: 0 auto 0.75rem auto;
  background: #F1F5F9;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2.5rem;
  border: 2px dashed var(--primary);
}

.qr-box span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* TESTIMONIALS */
.testimonials-section {
  background-color: var(--bg-light);
}

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

.testi-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testi-text {
  font-size: 0.98rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.user-info h5 {
  font-size: 1rem;
}

.user-info small {
  color: var(--text-muted);
  font-weight: 500;
}

/* FAQ ACCORDION */
.faq-search-box {
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  position: relative;
}

.faq-search-box input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.faq-search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.faq-search-box i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  transition: max-height 0.35s ease-in-out;
}

/* CONTACT CTA SECTION */
.contact-cta-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  border-radius: var(--radius-lg);
  margin-bottom: 5rem;
}

.cta-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem 6rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-item i {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.cta-item h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.cta-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* FOOTER */
.footer {
  background-color: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-logo {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.25rem;
}

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

/* PAGE HEADER (FOR INTERNAL PAGES) */
.page-header {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumb a:hover { color: var(--primary); }

/* ABOUT PAGE SPECIFICS */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  padding-right: 2.5rem;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 2.5rem;
}

.timeline-dot {
  position: absolute;
  right: -9px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--primary);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -9px;
}

.timeline-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.timeline-date {
  font-weight: 800;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* CONTACT FORM & MAP */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition-fast);
  background: var(--bg-light);
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-light);
}

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

.map-placeholder {
  width: 100%;
  height: 380px;
  background: #E2E8F0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

/* HELP & SUPPORT GUIDES */
.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-normal);
}

.guide-card:hover {
  transform: translateY(-50px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.guide-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* LEGAL PAGES (PRIVACY & TERMS) */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p, .legal-content ul {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.5rem;
  list-style: disc;
}

/* 404 PAGE */
.error-page-wrapper {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-code {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* MODAL VIDEO */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 90%;
  max-width: 800px;
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* TOAST NOTIFICATION */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark-bg);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-normal);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification.success i { color: var(--accent-green); }
