@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ==========================================================================
   SUPREME COMPUTERS INDIA — HUMANIZED & REALISTIC DESIGN SYSTEM
   Authentic IT Hardware & Corporate Support Infrastructure
   ========================================================================== */

:root {
  /* Typography */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-tech: 'Plus Jakarta Sans', var(--font-body);
  --font-mono: 'JetBrains Mono', monospace;

  /* ==========================================================================
     LIGHT THEME (Default: Clean, High-Trust, Grounded & Crisp)
     ========================================================================== */
  --bg-darkest: #f8fafc;
  --bg-dark: #f1f5f9;
  --bg-slate: #f8fafc;
  --bg-surface-1: #ffffff;
  --bg-surface-2: #f8fafc;
  --bg-surface-3: #e2e8f0;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --bg-glass-card: #ffffff;
  --bg-glass-elevated: #ffffff;
  --nav-bg: rgba(255, 255, 255, 0.92);

  /* Typography Colors */
  --text-white: #0f172a;       /* Primary text / Headings */
  --text-main: #1e293b;        /* Body main text */
  --text-secondary: #475569;   /* Body secondary text */
  --text-muted: #64748b;       /* Subtext / Muted */
  --text-dim: #94a3b8;         /* Micro labels / Disabled */
  --text-dark: #0f172a;

  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-highlight: #94a3b8;
  --border-glow-orange: rgba(234, 88, 12, 0.25);
  --border-glow-cyan: rgba(37, 99, 235, 0.25);

  /* Refined Brand Accents */
  --orange-primary: #ea580c;
  --orange-gradient: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  --orange-hover: #c2410c;
  --orange-light: #f97316;
  --orange-soft: #fff7ed;
  --orange-border: #fed7aa;
  --orange-glow: rgba(234, 88, 12, 0.15);

  --cyan-primary: #2563eb;
  --cyan-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --cyan-hover: #1d4ed8;
  --cyan-soft: #eff6ff;
  --cyan-border: #bfdbfe;
  --cyan-glow: rgba(37, 99, 235, 0.15);

  --emerald-primary: #059669;
  --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --emerald-soft: #ecfdf5;
  --emerald-border: #a7f3d0;

  --purple-accent: #6d28d9;
  --purple-soft: #f5f3ff;
  --amber-gold: #d97706;
  --amber-soft: #fffbeb;

  /* Real-World Natural Layered Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-glow-orange: 0 8px 20px rgba(234, 88, 12, 0.12);
  --shadow-glow-cyan: 0 8px 20px rgba(37, 99, 235, 0.12);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Animation Easing */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.2s ease;
}

/* ==========================================================================
   DARK THEME (Deep Slate / Navy High-Contrast)
   ========================================================================== */
[data-theme="dark"], body.dark-theme {
  --bg-darkest: #0b0f17;
  --bg-dark: #111827;
  --bg-slate: #111827;
  --bg-surface-1: #1a2234;
  --bg-surface-2: #1e293b;
  --bg-surface-3: #334155;
  --bg-card: #1a2234;
  --bg-glass: rgba(26, 34, 52, 0.92);
  --bg-glass-card: #1a2234;
  --bg-glass-elevated: #242f47;
  --nav-bg: rgba(11, 15, 23, 0.94);

  --text-white: #f8fafc;
  --text-main: #e2e8f0;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-dark: #f8fafc;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-highlight: rgba(255, 255, 255, 0.22);
  --border-glow-orange: rgba(234, 88, 12, 0.3);
  --border-glow-cyan: rgba(59, 130, 246, 0.3);

  --orange-light: #fb923c;
  --orange-soft: rgba(234, 88, 12, 0.15);
  --orange-border: rgba(234, 88, 12, 0.35);
  --orange-glow: rgba(234, 88, 12, 0.25);

  --cyan-primary: #3b82f6;
  --cyan-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  --cyan-hover: #60a5fa;
  --cyan-soft: rgba(59, 130, 246, 0.15);
  --cyan-border: rgba(59, 130, 246, 0.35);
  --cyan-glow: rgba(59, 130, 246, 0.25);

  --emerald-primary: #10b981;
  --emerald-soft: rgba(16, 185, 129, 0.15);
  --emerald-border: rgba(16, 185, 129, 0.3);

  --purple-accent: #a78bfa;
  --purple-soft: rgba(167, 139, 250, 0.15);
  --amber-gold: #fbbf24;
  --amber-soft: rgba(251, 191, 36, 0.15);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 35px rgba(0, 0, 0, 0.6);
  --shadow-glow-orange: 0 8px 25px rgba(234, 88, 12, 0.2);
  --shadow-glow-cyan: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */

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

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  background-color: var(--bg-darkest);
  color: var(--text-main);
  overflow-x: hidden;
  transition: background-color 0.25s ease, color 0.25s ease;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange-primary);
}

::selection {
  background: var(--orange-primary);
  color: #ffffff;
}

main {
  flex: 1;
  padding-top: 4.75rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.text-gradient-orange {
  color: var(--orange-primary);
  font-weight: 800;
}

.text-gradient-cyan {
  color: var(--cyan-primary);
  font-weight: 800;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-primary);
  padding: 0.35rem 0.85rem;
  background: var(--orange-soft);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  white-space: nowrap;
}

.section-eyebrow.cyan {
  color: var(--cyan-primary);
  background: var(--cyan-soft);
  border-color: var(--cyan-border);
}

.section-eyebrow.emerald {
  color: var(--emerald-primary);
  background: var(--emerald-soft);
  border-color: var(--emerald-border);
}

.section-heading {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 2.65rem;
  }
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 44rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ==========================================================================
   CONTAINERS & GRIDS
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

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

@media (min-width: 768px) {
  .section-padding {
    padding: 5.5rem 0;
  }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4.75rem;
  background-color: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease;
}

.brand-logo:hover img {
  transform: scale(1.04);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-white);
  line-height: 1.15;
  white-space: nowrap;
}

.brand-title span {
  color: var(--orange-primary);
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Desktop Nav Menu Links */
.nav-links {
  list-style: none;
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.nav-link:hover {
  color: var(--orange-primary);
  background-color: var(--orange-soft);
}

.nav-link.active {
  color: var(--orange-primary);
  background-color: var(--orange-soft);
  border: 1px solid var(--orange-border);
  font-weight: 700;
}

/* Header Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: var(--bg-surface-3);
  color: var(--orange-primary);
  border-color: var(--orange-border);
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .nav-phone {
    display: inline-flex;
  }
}

.nav-phone:hover {
  color: var(--orange-primary);
  border-color: var(--orange-border);
  background: var(--orange-soft);
}

.nav-quote-btn {
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  padding: 0.45rem;
  cursor: pointer;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: var(--bg-surface-3);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 4.75rem;
  left: 0;
  right: 0;
  background-color: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-medium);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-spring);
  z-index: 999;
  max-height: calc(100vh - 4.75rem);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--orange-soft);
  color: var(--orange-primary);
  border: 1px solid var(--orange-border);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-lg, .btn-primary-lg {
  padding: 0.9rem 1.85rem;
  font-size: 0.98rem;
  border-radius: var(--radius-md);
}

.btn-primary, .btn-primary-lg {
  background-color: var(--orange-primary);
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover, .btn-primary-lg:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-cyan {
  background-color: var(--cyan-primary);
  color: #ffffff !important;
  box-shadow: var(--shadow-sm);
}

.btn-cyan:hover {
  background-color: var(--cyan-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-glass {
  background: var(--bg-surface-1);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
}

.btn-glass:hover {
  background: var(--bg-surface-2);
  color: var(--text-white);
  border-color: var(--border-highlight);
  transform: translateY(-1px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-medium);
}

.btn-outline-navy:hover {
  background: var(--bg-surface-2);
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff !important;
  border: none;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   CARDS & SURFACES
   ========================================================================== */

.glass-card, .card-base {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
}

.card-hover:hover, .glass-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-medium);
}

.card-hover-glow-orange:hover {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}

.card-hover-glow-cyan:hover {
  border-color: var(--cyan-border);
  box-shadow: var(--shadow-lg), var(--shadow-glow-cyan);
}

/* ==========================================================================
   BADGES & PILLS
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.badge-orange {
  background: var(--orange-soft);
  color: var(--orange-primary);
  border: 1px solid var(--orange-border);
}

.badge-cyan {
  background: var(--cyan-soft);
  color: var(--cyan-primary);
  border: 1px solid var(--cyan-border);
}

.badge-emerald, .badge-green {
  background: var(--emerald-soft);
  color: var(--emerald-primary);
  border: 1px solid var(--emerald-border);
}

.badge-purple {
  background: var(--purple-soft);
  color: var(--purple-accent);
  border: 1px solid rgba(109, 40, 217, 0.25);
}

.badge-navy, .badge-dark {
  background: var(--bg-surface-2);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
}

.trust-badge, .trust-pill {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.trust-badge:hover, .trust-pill:hover {
  transform: translateY(-2px);
  border-color: var(--orange-border);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   PAGE HERO BANNERS (Bright, Clean & High-Trust)
   ========================================================================== */

.page-hero {
  padding: 4.5rem 0 3rem;
  background: 
    radial-gradient(circle at 50% 0%, rgba(234, 88, 12, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.8;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 2.85rem;
  }
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 44rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   HOMEPAGE MULTI-BANNER HERO CAROUSEL (Light, Bright & SMART Graphics)
   ========================================================================== */

.hero-carousel-section {
  padding: 6.5rem 0 3.5rem;
  background: 
    radial-gradient(circle at 10% 20%, rgba(234, 88, 12, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(5, 150, 105, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-carousel-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(to right, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 32px 32px, 64px 64px, 64px 64px;
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.hero-glow-orb.orange { top: -100px; left: -80px; background: #ea580c; }
.hero-glow-orb.cyan { top: -50px; right: -80px; background: #2563eb; animation-delay: -4s; }
.hero-glow-orb.emerald { bottom: -100px; left: 35%; background: #059669; animation-delay: -8s; }

.hero-carousel-wrapper {
  position: relative;
  min-height: 520px;
  z-index: 2;
}

.hero-slide {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-slide-grid {
    grid-template-columns: 1.1fr 1.1fr;
  }
}

.hero-slide-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-white);
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.85rem;
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 38rem;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   SMART COMPOSITE IMAGE & TELEMETRY CARDS
   ========================================================================== */

.smart-composite-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smart-composite-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
}

.smart-image-frame {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f1f5f9;
}

@media (min-width: 768px) {
  .smart-image-frame {
    height: 280px;
  }
}

.smart-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.smart-composite-card:hover .smart-hero-img {
  transform: scale(1.03);
}

.smart-floating-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.smart-composite-body {
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.smart-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.smart-telemetry-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.smart-telemetry-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
}

.smart-telemetry-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
}

.smart-telemetry-val.orange { color: var(--orange-primary); }
.smart-telemetry-val.cyan { color: var(--cyan-primary); }
.smart-telemetry-val.emerald { color: var(--emerald-primary); }
.smart-telemetry-val.purple { color: #7c3aed; }

.smart-features-strip {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.smart-feature-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.smart-graphic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}

.smart-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.smart-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.smart-metric-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.smart-metric-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
}

.smart-metric-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.smart-metric-val.orange { color: #fb923c; }
.smart-metric-val.cyan { color: #60a5fa; }
.smart-metric-val.emerald { color: #34d399; }
.smart-metric-val.purple { color: #c084fc; }

.smart-spec-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.smart-spec-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.smart-live-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.smart-live-row span:last-child {
  font-weight: 700;
  font-family: var(--font-mono);
}

.smart-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.4rem;
}

.smart-progress-fill {
  height: 100%;
  border-radius: 3px;
}

.smart-progress-fill.orange { background: linear-gradient(90deg, #ea580c, #f97316); width: 92%; }
.smart-progress-fill.cyan { background: linear-gradient(90deg, #2563eb, #60a5fa); width: 99.8%; }
.smart-progress-fill.emerald { background: linear-gradient(90deg, #059669, #34d399); width: 96%; }
.smart-progress-fill.purple { background: linear-gradient(90deg, #7c3aed, #c084fc); width: 94%; }

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(234, 88, 12, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-white);
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.85rem;
  }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 38rem;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

/* Slider Navigation Controls */
.hero-slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-dots-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--border-medium);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.hero-dot.active {
  width: 32px;
  background: var(--orange-primary);
  border-radius: 6px;
}

.hero-nav-arrows {
  display: flex;
  gap: 0.5rem;
}

.hero-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-arrow-btn:hover {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
}

/* ==========================================================================
   SEARCH & FILTER CONTROLS
   ========================================================================== */

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  background: var(--bg-surface-1);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.search-input:focus {
  border-color: var(--orange-primary);
  background: var(--bg-surface-1);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.filter-btn:hover {
  background: var(--bg-surface-2);
  color: var(--text-white);
  border-color: var(--border-highlight);
}

.filter-btn.active {
  background: var(--orange-primary);
  color: #ffffff !important;
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   DYNAMIC CATALOG & PRODUCT CARDS
   ========================================================================== */

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange-border);
  box-shadow: var(--shadow-lg);
}

.product-thumb-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  margin: 0.85rem 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-thumb-img {
  transform: scale(1.05);
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0.75rem 0 0.45rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.product-title:hover {
  color: var(--orange-primary);
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.15rem;
}

.product-specs {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

/* ==========================================================================
   INTERACTIVE CALCULATORS & WIZARDS
   ========================================================================== */

.calculator-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.tile-radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .tile-radio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tile-radio {
  background: var(--bg-surface-2);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tile-radio:hover {
  border-color: var(--border-highlight);
  background: var(--bg-surface-3);
}

.tile-radio.selected {
  border-color: var(--orange-primary);
  background: var(--orange-soft);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.1);
}

.tile-icon {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.tile-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
}

.tile-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.stepper-control {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.5rem;
}

.stepper-btn {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  border: none;
  background: var(--bg-surface-2);
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.stepper-btn:hover {
  background: var(--orange-primary);
  color: #ffffff;
}

.stepper-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange-primary);
  min-width: 1.5rem;
  text-align: center;
}

.amc-tier-card {
  background: var(--bg-surface-2);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.amc-tier-card:hover {
  border-color: var(--border-highlight);
  background: var(--bg-surface-3);
  transform: translateY(-2px);
}

.amc-tier-card.selected {
  border-color: var(--orange-primary);
  background: var(--orange-soft);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.12);
}

.rental-device-tile {
  background: var(--bg-surface-2);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rental-device-tile:hover {
  border-color: var(--border-highlight);
  background: var(--bg-surface-3);
}

.rental-device-tile.selected {
  border-color: var(--cyan-primary);
  background: var(--cyan-soft);
}

.rental-tenure-btn {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rental-tenure-btn.active {
  background: var(--cyan-primary);
  color: #ffffff !important;
  font-weight: 700;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   WIZARD STEPS BAR & PANES
   ========================================================================== */

.wizard-container {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.wizard-steps-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.wizard-steps-bar::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--border-medium);
  z-index: 1;
}

.wizard-step-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.wizard-step-circle {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--bg-surface-2);
  border: 2px solid var(--border-medium);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.wizard-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.wizard-step-node.active .wizard-step-circle {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: #ffffff;
}

.wizard-step-node.active .wizard-step-label {
  color: var(--orange-primary);
  font-weight: 700;
}

.wizard-step-node.completed .wizard-step-circle {
  background: var(--emerald-primary);
  border-color: transparent;
  color: #ffffff;
}

.wizard-pane {
  display: none;
}

.wizard-pane.active {
  display: block;
}

.wizard-nav-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   PC BUILDER STUDIO STYLING
   ========================================================================== */

.builder-presets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .builder-presets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.preset-card {
  background: var(--bg-surface-1);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.preset-card:hover {
  border-color: var(--border-highlight);
  background: var(--bg-surface-2);
  transform: translateY(-2px);
}

.preset-card.active {
  border-color: var(--cyan-primary);
  background: var(--cyan-soft);
}

.preset-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.preset-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.builder-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .builder-layout {
    grid-template-columns: 1.45fr 0.85fr;
  }
}

.component-group {
  margin-bottom: 1.75rem;
}

.component-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.component-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .option-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.15rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-card:hover {
  border-color: var(--border-highlight);
  background: var(--bg-surface-2);
}

.option-card.selected {
  border-color: var(--orange-primary);
  background: var(--orange-soft);
}

.option-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
}

.option-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.option-price {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange-primary);
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.builder-summary-card {
  position: sticky;
  top: 6rem;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-label {
  color: var(--text-muted);
  font-weight: 600;
}

.summary-val {
  color: var(--text-white);
  font-weight: 700;
  text-align: right;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-total-box {
  margin-top: 1.25rem;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.summary-total-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--orange-primary);
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background-color: var(--bg-surface-1);
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
  font-size: 0.92rem;
}

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

.form-control::placeholder {
  color: var(--text-dim);
}

/* ==========================================================================
   FAQ ACCORDION & CONTACT GRID
   ========================================================================== */

.faq-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.faq-question:hover {
  color: var(--orange-primary);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active {
  border-color: var(--orange-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.25fr;
  }
}

/* ==========================================================================
   MODALS
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

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

.modal-box {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  max-width: 36rem;
  width: 100%;
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  transform: scale(0.96);
  transition: all 0.25s var(--ease-spring);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--text-main);
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-medium);
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.modal-close:hover {
  color: var(--text-white);
  background-color: var(--bg-surface-3);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
}

.toast {
  background-color: var(--text-white);
  color: var(--bg-darkest);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-highlight);
  animation: toastFade 3.5s ease forwards;
}

@keyframes toastFade {
  0% { opacity: 0; transform: translateY(12px); }
  12% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-12px); }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (HUMAN SUPPORT ACTION)
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: #ffffff !important;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

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

/* ==========================================================================
   AUTHENTIC HUMAN TOUCHES (REVIEWS, PARTNERS, WORKSHOP)
   ========================================================================== */

/* ==========================================================================
   AUTHENTIC HUMAN TOUCHES (REVIEWS, PARTNERS, WORKSHOP)
   ========================================================================== */

/* Partner Ribbon */
.partner-ribbon {
  background: var(--bg-surface-1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}

.partner-ribbon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .partner-ribbon-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.partner-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}

.partner-brands {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-brand-item {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.partner-brand-item:hover {
  color: var(--orange-primary);
  border-color: var(--orange-border);
  background: var(--orange-soft);
  transform: translateY(-1px);
}

/* Grids */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Glass Card & Feature Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.glass-card.card-hover:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
}

/* Feature Icons */
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon.bg-orange {
  background: var(--orange-soft);
  color: var(--orange-primary);
  border: 1px solid var(--orange-border);
}

.feature-icon.bg-cyan {
  background: var(--cyan-soft);
  color: var(--cyan-primary);
  border: 1px solid var(--cyan-border);
}

.feature-icon.bg-emerald {
  background: var(--emerald-soft);
  color: var(--emerald-primary);
  border: 1px solid var(--emerald-border);
}

.feature-icon.bg-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #a855f7;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: '✓';
  color: var(--orange-primary);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Stats Counter Ribbon */
.stats-ribbon {
  background: var(--bg-surface-2);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 0;
}

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

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number.orange { color: var(--orange-primary); }
.stat-number.cyan { color: var(--cyan-primary); }
.stat-number.emerald { color: var(--emerald-primary); }
.stat-number.purple { color: #c084fc; }

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Humanized Testimonials */
.testimonial-card-human {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.testimonial-card-human:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rating-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-primary);
  border: 1px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.client-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-white);
}

.client-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Workshop Strip */
.workshop-strip {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .workshop-strip {
    flex-direction: row;
    align-items: center;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-main);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  }
}

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--orange-primary);
  border-radius: 2px;
}

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

.footer-link {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-link:hover {
  color: var(--orange-primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
