/* ==========================================================================
   STANDARD ENTERPRISES PREMIUM STYLE SHEET
   ========================================================================== */

/* --- Design Tokens / Theme Variables --- */
:root {
  /* Colors */
  --bg-primary: #060608;
  --bg-secondary: #0c0d12;
  --bg-tertiary: #13151f;
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  --accent-color: #7c3aed;       /* Electric Violet */
  --accent-glow: rgba(124, 58, 237, 0.45);
  --accent-rgb: 124, 58, 237;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(12, 13, 18, 0.6);
  --glass-border: rgba(255, 255, 255, 0.07);
  
  /* Fonts */
  --font-title: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --max-width: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base Resets & Setup --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

ul {
  list-style: none;
}

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

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

/* --- Layout Containers --- */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px;
}

/* --- Typographical Utilities --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

.font-accent {
  font-family: var(--font-accent);
}

.text-gradient {
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Button Component --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #9333ea 100%);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  box-shadow: 0 4px 15px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-full {
  display: flex;
  width: 100%;
}

.btn-nav {
  padding: 8px 20px;
  font-size: 0.85rem;
  background: var(--accent-color);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-nav:hover {
  background: #6d28d9;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

/* --- Section Headers --- */
.section-subtitle {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: #c084fc;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* --- Header & Navigation --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(6, 6, 8, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.main-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 70px;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-accent {
  color: var(--accent-color);
}

.header-logo-link, .footer-logo-link {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.header-logo-link:hover, .footer-logo-link:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.header-brand-text {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;  /* bold white text */
  text-transform: uppercase;
  white-space: nowrap;
}

.header-logo-img {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.main-header.scrolled .header-logo-img {
  height: 40px;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  transition: var(--transition-smooth);
}

.nav-menu ul {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary); /* light gray */
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.nav-close-btn {
  display: none;
}

.menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary); /* white */
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* resizes height to fit the screen exactly */
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height); /* alignment starting below navbar */
  overflow: hidden;
}

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

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(6, 6, 8, 0.3) 0%, rgba(6, 6, 8, 0.9) 80%);
}

.hero-content-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end; /* card sits on the right side */
  align-items: center;
}

/* --- New Hero Template Layout --- */
.hero-glass-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: rgba(10, 10, 16, 0.7);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  margin-top: 60px; /* push card slightly below center */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  text-align: left;
  overflow: visible;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(ellipse at 60% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.card-accent-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.card-accent-label .label-icon {
  width: 12px;
  height: 12px;
  color: #c084fc;
}

.hero-card-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-bottom: 28px;
}

.hero-step-item {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.step-icon-wrapper {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.step-icon-wrapper i {
  width: 16px;
  height: 16px;
}

/* Theme color variations for premium feel */
.step-icon-wrapper.theme-emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.step-icon-wrapper.theme-sapphire {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  color: #60a5fa;
}

.step-icon-wrapper.theme-crimson {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #f87171;
}
/* ---- Hero Card Inner Elements ---- */

/* Step 1: Pill badge */
.hero-pill-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.4);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  color: #c084fc;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-pill-badge .hero-pill-icon {
  width: 13px;
  height: 13px;
  color: #c084fc;
  flex-shrink: 0;
}

/* Step 2: Large bold headline sized to prevent wrapping shifts */
.hero-main-title {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 4.2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

.hero-rotating-wrapper {
  display: block;
  position: relative;
  min-height: 2.6em; /* fixed height for 2 lines to stop layout shift */
}

.hero-rotate-item {
  display: none;
  color: #ffffff; /* white text; only .title-hl parts are purple */
  -webkit-text-fill-color: #ffffff;
}

.hero-rotate-item.active {
  display: block;
  animation: heroTitleFade 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Purple/violet highlighted words inside the rotating title */
.title-hl {
  font-style: normal;
  background: linear-gradient(90deg, #a855f7 0%, #7c3aed 60%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

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

/* Step 3: Description card area */
.hero-desc-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  width: 100%;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.quote-text {
  color: var(--text-primary);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-step-title {
  display: inline-flex;
  align-items: center;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero-quotes-rotator {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 2em;
}

.hero-quotes-rotator .hero-quote-item {
  display: none;
  width: 100%;
  opacity: 0;
}

.hero-quotes-rotator .hero-quote-item.active {
  display: flex;
  align-items: center;
  animation: heroQuoteFadeSlide 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.quote-text {
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

/* Step 3: Blockquote style — white left border + bold text like image */
.hero-blockquote {
  position: relative;
  z-index: 1;
  border-left: 3px solid rgba(255, 255, 255, 0.55);
  padding-left: 18px;
  width: 100%;
}

.hero-description {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.97rem;
  color: #ffffff; /* bold white */
  line-height: 1.6;
  font-weight: 600; /* bold text as in image */
  margin: 0;
}

/* Desktop: buttons side by side in same row */
.hero-actions-group {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
}

.hero-actions-group .btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 0.84rem;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 50px;
  white-space: nowrap;
}

/* --- About Section --- */
.about-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 80px;
  align-items: center;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.body-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
}

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

.about-divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
  width: 100%;
}

.about-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0) 0%, var(--accent-color) 50%, rgba(124, 58, 237, 0) 100%);
  position: relative;
}

.about-divider .divider-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon-container {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.feature-icon-container i {
  width: 22px;
  height: 22px;
}

.feature-details h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

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

/* Glass visual panel */
.about-visuals {
  position: relative;
}

.visual-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-video-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats under about text content */
.about-stats-row {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.about-stat-box {
  flex: 1;
  min-width: 0;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.about-stat-box .stat-number {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.about-stat-box .stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Continuous Rolling Marquee Quote Loop */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: linear-gradient(180deg, rgba(6, 6, 8, 0.4) 0%, rgba(6, 6, 8, 0) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 0; /* very compact vertical height */
  margin-top: 36px; /* reduced space below about grid */
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 24s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px; /* highly compact padding for sleeker design */
  margin: 0 10px;
  background: rgba(15, 12, 28, 0.65);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50px;
  font-family: var(--font-accent); /* modern clean look */
  font-size: 0.9rem; /* compact font size */
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, border-color 0.3s;
}

.marquee-item:hover {
  transform: scale(1.03);
}

.marquee-item span {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.25rem;
  vertical-align: middle;
  line-height: 1;
}

.marquee-item span:first-child {
  margin-right: 6px;
}

.marquee-item span:last-child {
  margin-left: 6px;
}

/* Premium Capsule Themes with Glow effects matching products */
.marquee-item.theme-sapphire {
  background: rgba(15, 32, 66, 0.45);
  border: 1px solid rgba(59, 130, 246, 0.45);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 4px 15px rgba(59, 130, 246, 0.15);
}
.marquee-item.theme-sapphire span {
  color: #60a5fa;
}
.marquee-item.theme-sapphire:hover {
  border-color: rgba(59, 130, 246, 0.85);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 6px 20px rgba(59, 130, 246, 0.3);
}

.marquee-item.theme-crimson {
  background: rgba(86, 15, 15, 0.45);
  border: 1px solid rgba(239, 68, 68, 0.45);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 4px 15px rgba(239, 68, 68, 0.15);
}
.marquee-item.theme-crimson span {
  color: #f87171;
}
.marquee-item.theme-crimson:hover {
  border-color: rgba(239, 68, 68, 0.85);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 6px 20px rgba(239, 68, 68, 0.3);
}

.marquee-item.theme-emerald {
  background: rgba(6, 66, 45, 0.45);
  border: 1px solid rgba(16, 185, 129, 0.45);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 4px 15px rgba(16, 185, 129, 0.15);
}
.marquee-item.theme-emerald span {
  color: #34d399;
}
.marquee-item.theme-emerald:hover {
  border-color: rgba(16, 185, 129, 0.85);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 6px 20px rgba(16, 185, 129, 0.3);
}

.marquee-item.theme-obsidian {
  background: rgba(59, 15, 110, 0.45);
  border: 1px solid rgba(167, 139, 250, 0.45);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 4px 15px rgba(167, 139, 250, 0.15);
}
.marquee-item.theme-obsidian span {
  color: #c084fc;
}
.marquee-item.theme-obsidian:hover {
  border-color: rgba(167, 139, 250, 0.85);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 6px 20px rgba(167, 139, 250, 0.3);
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* --- Products Section --- */
.products-section {
  background-color: var(--bg-primary);
}

.product-split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.product-slider-wrapper {
  position: relative;
  width: 100%;
}

.slider-arrow {
  display: none; /* hidden on desktop */
}

.slider-dots {
  display: none; /* hidden on desktop */
}

.product-list-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-list-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-list-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.product-list-card.active {
  background: rgba(124, 58, 237, 0.04);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-right {
  width: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.product-list-card .product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0b0c10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-list-card .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-list-card:hover .product-img {
  transform: scale(1.06);
}

.star-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(253, 224, 71, 0.2);
  border: 1px solid rgba(253, 224, 71, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fde047;
  box-shadow: 0 0 10px rgba(253, 224, 71, 0.3);
  z-index: 2;
}

.star-badge i {
  width: 12px;
  height: 12px;
  fill: #fde047;
}

.product-tag {
  font-size: 0.7rem;
  color: var(--accent-color);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
}

.product-desc-container {
  margin: 12px 0 18px 0;
}

.product-short-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
}

.product-more-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-weight: 300;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.3s ease;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.read-more-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.read-more-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.06);
}

.read-more-btn:active {
  transform: scale(0.9);
}

.read-more-btn .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.enquiry-btn {
  font-size: 0.82rem;
  padding: 8px 18px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.enquiry-btn:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Right Column: Sticky Featured Showcase Card */
.product-featured-column {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.product-featured-card {
  padding: 32px;
  background: rgba(12, 13, 18, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: opacity 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(20px);
}

.featured-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  background: #0b0c10;
}

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

.featured-img-wrapper .star-badge {
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
}

.featured-img-wrapper .star-badge i {
  width: 14px;
  height: 14px;
}

.featured-info {
  display: flex;
  flex-direction: column;
}

.featured-badge {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fde047;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.featured-name {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.featured-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 300;
}

.featured-action .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #9333ea 100%);
  border: none;
}

.featured-action .btn-primary:hover {
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ==============================================
   REVIEWS / TESTIMONIALS — infinite marquee
   Row 1 → scrolls RIGHT | Row 2 → scrolls LEFT
   ============================================== */

/* ── Keyframe Animations ── */
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0%);   }
}

@keyframes marquee-left {
  0%   { transform: translateX(0%);   }
  100% { transform: translateX(-50%); }
}

/* ── Section wrapper ── */
.reviews-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 0;
  overflow: hidden;
}

.reviews-section .section-container {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ── Track wrapper: clips the overflowing cards ── */
.reviews-track-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  /* Edge fade overlays */
}

.reviews-track-wrapper:last-of-type {
  margin-bottom: 0;
}

/* Fade on left edge */
.reviews-fade-left {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
  z-index: 2;
  pointer-events: none;
}

/* Fade on right edge */
.reviews-fade-right {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ── The scrolling track ── */
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0 16px; /* vertical breathing room so shadows show */
}

/* Row 1 — moves RIGHT */
.reviews-track--right {
  animation: marquee-right 35s linear infinite;
}

/* Row 2 — moves LEFT */
.reviews-track--left {
  animation: marquee-left 38s linear infinite;
}

/* Pause on hover for readability */
.reviews-track-wrapper:hover .reviews-track {
  animation-play-state: paused;
}

/* ══════════════════════
   REVIEW CARD
   ══════════════════════ */
.review-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(10, 10, 14, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 28px 26px 24px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.review-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 24px rgba(124, 58, 237, 0.07);
  transform: translateY(-4px);
}

/* Accent variant: subtle violet left border glow */
.review-card--accent {
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(14, 10, 24, 0.65);
}

.review-card--accent:hover {
  border-color: rgba(124, 58, 237, 0.45);
}

/* Star row */
.review-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #f59e0b; /* amber */
}

/* Review quote */
.review-text {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}

/* Author row */
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar circle with initials */
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.review-name {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-company {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Mobile: slightly smaller cards, slower scroll ── */
@media (max-width: 640px) {
  .review-card {
    width: 270px;
    padding: 22px 20px 20px;
  }

  .reviews-track--right {
    animation-duration: 25s;
  }
  .reviews-track--left {
    animation-duration: 28s;
  }

  .reviews-fade-left,
  .reviews-fade-right {
    width: 60px;
  }
}

/* =============================================
   BLOG SECTION — Simple numbered list (1, 2, 3)
   ============================================= */

.blog-section {
  background: #22252a; /* Dark charcoal/gray background matching template */
  border-top: 1px solid var(--border-color);
}

.blog-section-main-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  text-align: center;
}

.blog-section-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 48px;
  text-align: center;
  font-weight: 400;
}

.blog-section-subtitle a {
  text-decoration: underline;
  color: inherit;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* ── Trending Premium Blog Card Template ── */
.blog-card-template {
  background: #ffffff;
  border: 10px solid #ffffff; /* Thick white border/frame around the entire content */
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  overflow: hidden;
}

.blog-card-template:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.blog-card-img-holder {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaeaea;
}

.blog-card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-template:hover .blog-card-img-holder img {
  transform: scale(1.08);
}

.blog-card-content-holder {
  padding: 36px 24px;
  text-align: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.blog-card-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: #111111;
  line-height: 1.3;
  margin-bottom: 16px;
  text-align: center;
}

.blog-card-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 400;
}

.blog-card-readmore {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  text-decoration: none;
}

.blog-card-readmore:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.blog-learn-more-container {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  width: 100%;
}

.blog-learn-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.blog-learn-more-btn:hover {
  background: #ffffff;
  color: #1b1d21;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Responsive grid overrides */
@media (max-width: 992px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .blog-card-template {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}



/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 0;
}

.contact-section .section-container {
  padding-bottom: 20px;
}

/* Header banner at top of section */
.contact-header-banner {
  background: linear-gradient(135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(9, 9, 11, 0) 60%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  padding: 140px 20px 50px;
}

.contact-header-sub {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 10px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Two-column layout: left CTA | right form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0 20px;
}

/* ── Left: CTA Panel ── */
.contact-info-panel {
  padding-right: 20px;
}

.contact-cta-label {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-cta-big {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 48px;
}

.contact-cta-accent {
  color: var(--accent-color);
}

/* Contact method rows */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.method-item i {
  color: var(--accent-color);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.method-item h4 {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.method-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ── Right: Form Panel ── */
.contact-form-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 44px 40px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-hint {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* Custom styled select dropdown */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 44px 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.select-wrapper select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.select-wrapper select option {
  background: #0d0d14;
  color: #fff;
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-submit-btn {
  width: 100%;
  margin-top: 8px;
  gap: 10px;
  padding: 16px 28px;
  font-size: 0.95rem;
}

/* Contact Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0;
  }

  .contact-info-panel {
    padding-right: 0;
  }

  .contact-cta-big {
    font-size: 3.5rem;
    margin-bottom: 32px;
  }
}

@media (max-width: 540px) {
  .contact-form-panel {
    padding: 28px 22px;
  }

  .contact-header-banner {
    padding: 110px 20px 36px;
  }
}

/* ============================================
   FOOTER — 3-column: Logo+Address | Quick Links | Social
   ============================================ */
.main-footer {
  background: #030305;
  border-top: 1px solid var(--border-color);
  padding-top: 72px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}

/* ── Left: Logo + Address ── */
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-addr-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-addr-item i {
  width: 15px;
  height: 15px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Center: Quick Links ── */
.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links li a:hover {
  color: var(--accent-color);
  padding-left: 6px;
}

/* ── Right: Social Platforms ── */
.footer-social-col {
  display: flex;
  flex-direction: column;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-social-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-social-item:hover {
  color: #fff;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

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

.footer-social-wa  { background: #128c7e; color: #fff; }
.footer-social-ig  { background: linear-gradient(135deg, #c13584, #e1306c); color: #fff; }
.footer-social-fb  { background: #1877f2; color: #fff; }
.footer-social-yt  { background: #ff0000; color: #fff; }
.footer-social-li  { background: #0077b5; color: #fff; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 32px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Footer Mobile: center-aligned ── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-addr-item {
    justify-content: center;
  }

  .footer-links-col,
  .footer-social-col {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-social-links {
    align-items: center;
  }

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  /* Only the button sits here; tooltip floats absolutely above it */
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  font-size: 32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn .pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #25d366;
  animation: pulse-ring-anim 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  z-index: -1;
}

.whatsapp-tooltip {
  width: 280px;
  background: #0f1016;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  /* Float ABOVE the button — never affects button position */
  position: absolute;
  bottom: calc(100% + 14px); /* 14px gap above the button */
  right: 0;
  transform: scale(0.9) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s;
  backdrop-filter: blur(12px);
  /* Small arrow tip pointing down toward button */
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #0f1016;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.whatsapp-tooltip.show {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.tooltip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
}

.tooltip-header strong {
  color: #fff;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.online {
  background-color: #25d366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
}

.whatsapp-tooltip p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0;
  padding-right: 16px;
}

.tooltip-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip-close:hover {
  color: #fff;
}

.tooltip-close i {
  width: 14px;
  height: 14px;
}

/* --- Scroll Animations (Dynamic Fade-in) --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Animation Keyframes --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring-anim {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  70%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET SUPPORT)
   ========================================================================== */

@media (max-width: 1100px) {
  .product-split-layout {
    gap: 24px;
  }
  
  .about-grid {
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-section {
    justify-content: center;
    padding: 0 20px;
  }
  
  .hero-content-container {
    justify-content: center;
    padding: 0;
  }
  
  .hero-glass-card {
    max-width: 600px;
    padding: 40px 32px;
    margin: 0;
  }
  
  .hero-tagline {
    font-size: 2.8rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  /* Collapse products layout to single column on tablet, hide featured showcase */
  .product-split-layout {
    grid-template-columns: 1fr;
  }
  
  .product-featured-column {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section-container {
    padding: 60px 20px;
  }
  
  /* Fix: prevent hero content from going behind logo/header on mobile */
  .hero-section {
    padding-top: var(--header-height);
    height: 100vh;
    min-height: 600px;
    align-items: flex-end; /* card sits at bottom so video shows on top */
    padding-bottom: 32px;
  }

  .hero-content-container {
    padding: 0 16px;
    justify-content: center;
    align-items: flex-end;
  }
  
  .hero-glass-card {
    max-width: 100%;
    margin-top: 0;
    padding: 24px 20px;
    border-radius: 18px;
    gap: 16px;
  }

  .hero-main-title {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
  }

  .hero-description {
    font-size: 0.9rem;
  }

  /* Mobile: stack buttons vertically one by one */
  .hero-actions-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-actions-group .btn {
    width: 100%;
    flex: none;
    padding: 11px 14px;
    font-size: 0.82rem;
  }

  .header-brand-text {
    font-size: 0.72rem;
  }

  .header-logo-img {
    height: 32px;
  }
  
  /* Mobile Header Navigation menu (Translucent Floating Curved Glass Card Drawer) */
  .menu-toggle {
    display: flex;
    z-index: 101; /* sits on top of overlay menu */
  }

  .nav-close-btn {
    display: flex;
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background-color 0.25s, color 0.25s, transform 0.25s;
    z-index: 1000;
  }
  
  .nav-close-btn:hover {
    background-color: rgba(124, 58, 237, 0.2);
    color: #fff;
    transform: rotate(90deg);
  }
  
  .nav-close-btn i {
    width: 16px;
    height: 16px;
  }
  
  .nav-menu {
    position: fixed;
    top: 85px; /* sit just below the header line */
    right: 16px;
    width: 220px;
    height: auto;
    background: linear-gradient(135deg, rgba(28, 18, 56, 0.98) 0%, rgba(16, 10, 32, 0.98) 100%); /* premium deep highlighted violet/purple gradient */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(124, 58, 237, 0.45); /* glowing electric violet border */
    border-radius: 16px; /* straight, modern rounded corners */
    z-index: 999;
    transform: translateY(-15px) scale(0.95);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
    opacity: 0;
    pointer-events: none;
    padding: 48px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(124, 58, 237, 0.25); /* enhanced drop shadow and violet glow */
  }
  
  .nav-menu.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Staggered slide/fade animation for links */
  .nav-menu ul {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start; /* straight, one-by-one list */
    width: 100%;
    padding-left: 8px;
  }
  
  .nav-menu li {
    margin-right: 0 !important; /* clear curving offsets! */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-menu.open li {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-menu.open li:nth-child(1) { transition-delay: 0.04s; }
  .nav-menu.open li:nth-child(2) { transition-delay: 0.08s; }
  .nav-menu.open li:nth-child(3) { transition-delay: 0.12s; }
  .nav-menu.open li:nth-child(4) { transition-delay: 0.16s; }
  .nav-menu.open li:nth-child(5) { transition-delay: 0.20s; }
  .nav-menu.open li:nth-child(6) { transition-delay: 0.24s; }
  
  .nav-link {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary); /* light color on dark mobile menu background */
  }
  
  .nav-menu.open .nav-link:hover, 
  .nav-menu.open .nav-link.active {
    color: #fff;
  }
  
  .btn-nav {
    display: none; /* Hide top explore button on mobile */
  }
  
  /* Hamburger transform when menu is active */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Fix: reduce margins & gap in About Section on mobile to close empty space */
  .about-grid {
    gap: 24px;
  }
  
  .about-text-content {
    text-align: center;
    margin-bottom: 16px;
  }
  
  .about-text-content .section-subtitle {
    display: flex;
    justify-content: center;
  }
  
  .body-text {
    margin-bottom: 20px;
  }
  
  /* Mobile Products Horizontal Slider implementation */
  .product-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 44px; /* leaves clean margin on left/right for navigation arrows */
  }
  
  .product-list-column {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .product-list-card {
    flex: 0 0 100%;
    width: 100%;
    flex-direction: column-reverse;
    gap: 16px;
    padding: 20px 16px;
    background: rgba(12, 13, 18, 0.45);
    border-radius: 16px;
  }
  
  .card-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .product-list-card .product-img-wrapper {
    aspect-ratio: 16 / 10;
    width: 100%;
    height: 180px;
    max-width: 280px;
  }
  
  /* Slider navigation arrows */
  .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(12, 13, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }
  
  .slider-arrow:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
  }
  
  .prev-arrow {
    left: 4px;
  }
  
  .next-arrow {
    right: 4px;
  }
  
  .slider-arrow i {
    width: 18px;
    height: 18px;
  }
  
  /* Slider pagination indicators */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
  }
  
  .slider-dots .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--accent-color);
  }
  
  .hero-tagline {
    font-size: 2.3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-tagline {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .hero-main-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-pill-badge {
    font-size: 0.68rem;
    padding: 6px 14px;
  }

  .hero-desc-card {
    padding: 14px 16px;
  }
  
  .whatsapp-sticky {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-tooltip {
    width: 260px;
    bottom: calc(100% + 12px);
    right: 0;
  }
  
  .visual-card {
    padding: 20px 16px;
  }
  
  /* Place stats boxes in the SAME line (side-by-side) on mobile */
  .about-stats-row {
    flex-direction: row;
    gap: 12px;
    margin-top: 24px;
  }
  
  .about-stat-box {
    flex: 1;
    padding: 16px 8px;
    text-align: center;
  }
  
  .about-stat-box .stat-number {
    font-size: 1.6rem;
  }
  
  .about-stat-box .stat-label {
    font-size: 0.72rem;
    line-height: 1.2;
  }
}

@media (min-width: 769px) {
  /* Prevent horizontal transform shifts on desktop screen view */
  .product-list-column {
    transform: none !important;
  }
}
/* --- Tutorial Section --- */
.tutorial-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 45px 0; /* reduced padding top/bottom */
}

.tutorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.tutorial-steps-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tutorial-step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tutorial-step-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.05);
}

.tutorial-step-number {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  background: linear-gradient(135deg, #c084fc, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.tutorial-step-details {
  flex: 1;
}

.tutorial-step-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.tutorial-step-desc {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

.tutorial-video-column {
  width: 100%;
}

.tutorial-video-wrapper {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.video-responsive-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

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

/* Mobile responsive for Tutorial grid */
@media (max-width: 991px) {
  .tutorial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- Scroll to Top Button --- */
.scroll-to-top {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 16, 22, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.scroll-to-top i {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top.show.wa-open {
  transform: translateY(-135px); /* Move above the WhatsApp tooltip */
}

.scroll-to-top:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
  transform: translateY(-3px);
}

.scroll-to-top:hover.wa-open {
  transform: translateY(-138px); /* Keep above tooltip when hovered */
}

.scroll-to-top:hover i {
  transform: translateY(-2px);
}

.scroll-to-top:active {
  transform: translateY(0);
}

.scroll-to-top:active.wa-open {
  transform: translateY(-135px);
}

/* Mobile responsive for Scroll to Top */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 90px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
  .scroll-to-top.show.wa-open {
    transform: translateY(-145px); /* Move above WhatsApp tooltip on mobile */
  }
  .scroll-to-top i {
    width: 18px;
    height: 18px;
  }
}

.blog-card-template.blog-hidden {
  display: none !important;
}

.blog-more-content p {
  color: #555555 !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 400;
}
