/* ==========================================================================
   SPOTLESS OFFICE SOLUTIONS - OFFICIAL BRAND DESIGN SYSTEM
   Theme: Executive Obsidian Black & Imperial Metallic Gold
   ========================================================================== */

:root {
  --bg: #090A0D;              /* Deep Pitch Onyx Black */
  --bg-pitch: #000000;        /* Pure True Black */
  --card-bg: #14171E;         /* Executive Obsidian Card */
  --card-elevated: #1B1F2A;   /* Elevated Obsidian Card */
  --card-hover: #1A202C;      /* Card Hover State */
  
  /* Metallic Gold Palette (True Gold, Never Neon Yellow) */
  --gold: #D4AF37;            /* Imperial Metallic Gold */
  --gold-light: #FCD34D;      /* Radiant Warm Gold */
  --gold-dark: #B48A1E;       /* Deep Burnished Gold */
  --gold-hover: #E6C25B;      /* Hover Gold */
  --gold-glow: rgba(212, 175, 55, 0.28);
  --gold-glow-strong: rgba(212, 175, 55, 0.45);
  
  /* Typography */
  --text-main: #FFFFFF;       /* Crisp White Headings & Primary Text */
  --text-body: #F1F5F9;       /* High-Readability Platinum White */
  --text-sub: #94A3B8;        /* Silver Secondary / Metadata */
  --text-muted: #64748B;      /* Muted Charcoal Text */
  
  /* Borders & Dividers */
  --border-gold: 1.5px solid var(--gold);
  --border-gold-thin: 1px solid rgba(212, 175, 55, 0.4);
  --silver-border: #2D3342;   /* Polished Silver Border */
  --silver-light: #1F2430;    /* Dark Platinum Field Background */
  
  /* Status Colors */
  --green: #10B981;
  --green-bg: rgba(16, 185, 129, 0.15);
  --red: #EF4444;
  --red-bg: rgba(239, 68, 68, 0.15);
  
  /* Layout Dimensions */
  --header-height: 74px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  background-color: var(--bg-pitch);
  color: var(--text-body);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-body);
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--gold-light);
}

.text-gold {
  color: var(--gold) !important;
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-sub {
  color: var(--text-sub) !important;
}

.text-center {
  text-align: center;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-darker {
  background-color: var(--bg);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Gold Divider */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.25rem auto;
  border-radius: 2px;
}

/* ==========================================================================
   BUTTONS (Gold with bold black lettering as mandated)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
}

/* Primary Action Buttons: Gold with Black Lettering */
.btn-gold,
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  color: #000000 !important;
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.btn-gold:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 30%, var(--gold) 100%);
  color: #000000 !important;
  box-shadow: 0 6px 24px var(--gold-glow-strong);
  transform: translateY(-2px);
}

.btn-gold:active,
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px var(--gold-glow);
}

/* Secondary Button: Black with Thin Gold Border & White/Gold text */
.btn-secondary {
  background: var(--card-bg);
  color: var(--text-main) !important;
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.btn-secondary:hover {
  background: var(--card-elevated);
  border-color: var(--gold-light);
  color: var(--gold-light) !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(1px);
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  border-radius: 6px;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   CARDS & CONTAINERS (Black with thin gold borders)
   ========================================================================== */
.card {
  background: var(--card-bg);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  position: relative;
}

.card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

.card-elevated {
  background: var(--card-elevated);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.card-pitch {
  background: var(--bg-pitch);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
}

/* ==========================================================================
   TOP APP BAR / HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
  object-fit: cover;
  display: block;
}

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

.brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-body);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Button */
.hamburger-btn {
  display: none;
  background: var(--card-bg);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: var(--transition);
}

.hamburger-btn:hover {
  background: var(--card-elevated);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Mobile Drawer Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1001;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-pitch);
  border-left: 2px solid var(--gold);
  z-index: 1002;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 1.5rem;
}

.drawer-close-btn {
  background: none;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  padding-left: 0.5rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0.98) 70%);
  border-bottom: 2px solid rgba(212, 175, 55, 0.35);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-body);
}

.trust-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-graphic-card {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
  position: relative;
}

.hero-emblem {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  box-shadow: 0 0 25px var(--gold-glow-strong);
  object-fit: cover;
  display: block;
}

.hero-card-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.hero-card-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.hero-card-text {
  font-size: 0.92rem;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SERVICES GRID & CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--card-bg);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 10px 30px var(--gold-glow);
  transform: translateY(-4px);
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0.45rem;
}

.service-feature-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
}

/* ==========================================================================
   WHY CHOOSE US / ADVANTAGES
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.feature-box {
  background: var(--bg-pitch);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.feature-box:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 25px var(--gold-glow);
  transform: translateY(-3px);
}

.feature-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.55;
}

/* ==========================================================================
   APP ECOSYSTEM SHOWCASE (Spotless Brand Line)
   ========================================================================== */
.apps-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.app-badge-card {
  background: var(--card-bg);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-badge-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 10px 30px var(--gold-glow-strong);
  transform: translateY(-4px);
}

.app-logo-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  box-shadow: 0 0 18px var(--gold-glow);
  margin-bottom: 1.25rem;
  object-fit: cover;
}

.app-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.app-role {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-sub);
  margin-bottom: 1rem;
}

.app-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   INTERACTIVE ESTIMATE CALCULATOR (Exact SOS Estimator Engine)
   ========================================================================== */
.calculator-card {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
  max-width: 950px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}

@media (max-width: 860px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
}

.calc-form-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
}

.form-label-sub {
  font-size: 0.78rem;
  color: var(--text-sub);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  background: var(--silver-light);
  border: 1px solid var(--silver-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: #14171E;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Stepper Controls */
.stepper-control {
  display: flex;
  align-items: center;
  background: var(--silver-light);
  border: 1px solid var(--silver-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.step-btn {
  background: #14171E;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 900;
  width: 46px;
  height: 44px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-btn:hover {
  background: var(--gold);
  color: #000000;
}

.step-val-display {
  flex-grow: 1;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-main);
}

/* Multi-select Pill Group */
.pill-grid {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill-option {
  flex: 1;
  min-width: 48px;
  padding: 0.65rem 0.5rem;
  background: var(--silver-light);
  border: 1px solid var(--silver-border);
  border-radius: var(--radius-sm);
  color: var(--text-sub);
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.pill-option:hover {
  border-color: var(--gold);
  color: var(--text-main);
}

.pill-option.active {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #000000;
  border-color: var(--gold-light);
  font-weight: 900;
  box-shadow: 0 2px 10px var(--gold-glow);
}

/* Calculator Results Box */
.calc-result-box {
  background: var(--bg-pitch);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.8);
  height: 100%;
}

.result-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  margin-bottom: 1rem;
}

.result-price-headline {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}

.result-price-sub {
  font-size: 0.88rem;
  color: var(--text-sub);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.result-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 1.25rem 0;
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-sub);
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-main);
}

.metric-value-gold {
  color: var(--gold);
}

/* ==========================================================================
   MODAL / POPUP (For Quote Submission & Confirmation)
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.95), 0 0 35px var(--gold-glow);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  cursor: pointer;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-pitch);
  border-top: 2px solid var(--gold);
  padding: 4.5rem 0 2rem;
  margin-top: auto;
}

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

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.footer-link {
  font-size: 0.92rem;
  color: var(--text-sub);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: 0.35rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 0.8rem;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (All Screen Sizes: Mobile, Tablet, Laptop, Desktop)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-trust-bar {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .section-title { font-size: 1.85rem; }
  
  .nav-menu,
  .header-actions .btn {
    display: none;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .hero {
    padding: 3.5rem 0 3rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.05rem;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .calculator-card {
    padding: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 0.98rem;
  }
  
  .brand-logo {
    width: 38px;
    height: 38px;
  }
  
  .hero-title {
    font-size: 1.85rem;
  }
  
  .result-price-headline {
    font-size: 2.2rem;
  }
  
  .result-metrics {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}
/* ==========================================================================
   VIDEO CLIP CONTAINER & HERO PLAYER
   ========================================================================== */
.hero-video-section {
  padding: 0 0 3.5rem;
}

.hero-video-wrapper {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.video-header-bar {
  background: #14171E;
  border-bottom: 1.5px solid var(--gold);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.15);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--gold);
}

.video-player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-player-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(20, 23, 30, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
}

.video-play-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding-left: 5px;
  box-shadow: 0 0 25px var(--gold-glow-strong);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.video-placeholder-overlay:hover .video-play-icon {
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--gold-glow-strong);
}

/* ==========================================================================
   SIDE-BY-SIDE PLUGIN BOXES FOR ESTIMATOR
   ========================================================================== */
.plugin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.plugin-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.plugin-box {
  background: var(--card-bg);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plugin-box:hover {
  border-color: var(--gold-light);
  box-shadow: 0 4px 18px var(--gold-glow);
}

.plugin-box-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.plugin-box-icon {
  font-size: 1.35rem;
  color: var(--gold);
}

.plugin-box-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.plugin-box-sub {
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-bottom: 0.75rem;
}

/* Detailed Time Breakdown Cards */
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
}

.breakdown-row:last-child {
  border-bottom: none;
}

.breakdown-label {
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breakdown-value {
  color: var(--text-main);
  font-weight: 800;
}

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

/* ==========================================================================
   WALKTHROUGH CALIBRATION DISCLAIMER & INTAKE WIZARD
   ========================================================================== */
.disclaimer-box {
  background: rgba(20, 23, 30, 0.95);
  border: 1.5px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.4rem;
  margin: 1.5rem 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.disclaimer-icon {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.disclaimer-title {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.disclaimer-text {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.55;
}

.intake-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
}

.intake-modal-overlay.active {
  display: flex;
}

.intake-modal-card {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.95), 0 0 40px var(--gold-glow);
  position: relative;
  animation: modalFadeIn 0.3s ease-out forwards;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.intake-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 1.25rem;
}

.intake-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.intake-modal-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.intake-modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.5;
}

.intake-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.intake-full-col {
  grid-column: 1 / -1;
}

.intake-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-sub);
  cursor: pointer;
  transition: var(--transition);
}

.intake-close-btn:hover {
  color: var(--gold);
}

.personalized-account-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   CINEMATIC 10-SECOND INTRO OVERLAY
   ========================================================================== */
.cinematic-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 5.0s cubic-bezier(0.2, 0, 0.2, 1), transform 5.0s ease-out;
}

.cinematic-intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
}

.cinematic-intro-overlay.quick-dismiss {
  transition: opacity 0.5s ease-out, transform 0.5s ease-out !important;
}

.intro-video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  overflow: hidden;
}

.intro-video-element {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  display: block;
  background: #000000;
}

.intro-top-bar {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: auto;
}

.intro-watermark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--gold);
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.intro-watermark-coin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  object-fit: cover;
}

.intro-watermark-text {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.intro-controls-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.intro-btn {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--gold);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.75px;
  padding: 8px 16px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.intro-btn:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #000000;
  box-shadow: 0 0 25px var(--gold-glow-strong);
}

.intro-btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #000000;
}