/* 
========================================================================
   iCutz Solutions — Master Stylesheet
   Design Language: Dark Luxury, Matte Black, Silver & Gold accents, Futuristic Glow
========================================================================
*/

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

/* -----------------------------------------
   1. CSS VARIABLES & TOKENS
   ----------------------------------------- */
:root {
  --bg-primary: #050505;          /* Deep Matte Black */
  --bg-secondary: #0d0d0f;        /* Sleek Obsidian */
  --bg-tertiary: #141416;         /* Soft Dark Charcoal */
  
  --color-silver: #f1f5f9;        /* Matte Silver / White Text */
  --color-silver-muted: #94a3b8;  /* Muted Slate Silver Body */
  --color-gold: #d4af37;          /* Classic Gold */
  --color-gold-bright: #ffd700;   /* Bright Gold */
  --color-gold-pale: #e2b857;     /* Elegant Champagne Gold */
  
  --accent-cyan: #00f2fe;         /* Futuristic Laser Blue */
  --accent-blue-deep: #4facfe;    /* Electric Deep Blue */
  --accent-cyan-glow: rgba(0, 242, 254, 0.2);
  --accent-gold-glow: rgba(226, 184, 87, 0.15);
  
  --font-header: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --glass-bg: rgba(13, 13, 15, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.9);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* -----------------------------------------
   2. RESET & BASE ELEMENTS
   ----------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--color-silver);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(12, 15, 29, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(26, 18, 5, 0.25) 0%, transparent 45%);
  pointer-events: none;
  z-index: -1;
}

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

ul {
  list-style: none;
}

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-pale);
}

/* -----------------------------------------
   3. TYPOGRAPHY
   ----------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 40%, var(--color-gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 40%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-header);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-pale);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 2px;
  background: var(--color-gold-pale);
  box-shadow: 0 0 8px var(--color-gold-pale);
}

/* -----------------------------------------
   4. LAYOUT & GRID UTILITIES
   ----------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

/* -----------------------------------------
   5. NAVIGATION BAR
   ----------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.85);
  height: 70px;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  margin: -20px 0;
  transform: translateY(8px); /* Shifts the logo vertically down to center-align the visible text */
  filter: invert(1) brightness(1.1); /* Crucial inversion for premium white look on dark theme */
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
  height: 80px;
  margin: -15px 0;
  transform: translateY(5px); /* Adjusted shift for the scrolled smaller header */
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-header);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-silver-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-pale), var(--accent-cyan));
  transition: var(--transition-smooth);
  box-shadow: 0 0 8px rgba(226, 184, 87, 0.5);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-silver);
  transition: var(--transition-fast);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-actions {
    display: none;
  }
}

/* -----------------------------------------
   6. PREMIUM BUTTONS
   ----------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-header);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-pale) 0%, #aa7c11 100%);
  color: #000;
  border: 1px solid var(--color-gold-pale);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-silver);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-silver-muted);
  transform: translateY(-2px);
}

.btn-glow {
  border: 1px solid var(--accent-cyan);
  background: rgba(0, 242, 254, 0.05);
  color: var(--color-silver);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.btn-glow:hover {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
  transform: translateY(-2px);
}

/* -----------------------------------------
   7. GLASSMORPHIC CARDS
   ----------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.95);
}

/* -----------------------------------------
   8. HERO SECTION
   ----------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
  top: 10%;
  right: -10%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}

.hero-glow-alt {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 184, 87, 0.06) 0%, transparent 70%);
  bottom: 10%;
  left: -10%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}

select#intake-type option {
    color: #000 !important;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-headline {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--color-silver-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
    min-height: auto;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .hero-headline {
    font-size: 2.8rem;
  }
  .hero-subheadline {
    margin: 0 auto 2.5rem auto;
  }
  .hero-actions {
    justify-content: center;
  }
}

/* -----------------------------------------
   9. INTERACTIVE SVG HELMET RENDER
   ----------------------------------------- */
.helmet-container {
  width: 100%;
  max-width: 420px;
  position: relative;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.9));
  animation: float 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.laser-scanner {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  box-shadow: 0 0 15px var(--accent-cyan);
  animation: scan 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan {
  0% { top: 25%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 75%; opacity: 0; }
}

.hud-panel {
  position: absolute;
  padding: 0.8rem 1.2rem;
  font-family: var(--font-header);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(13, 13, 15, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  pointer-events: none;
}

.hud-panel span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse 1.5s infinite;
}

.hud-left {
  top: 15%;
  left: -20px;
}

.hud-right {
  bottom: 15%;
  right: -20px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 0.4; }
}

/* -----------------------------------------
   10. ABOUT SECTION
   ----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.about-intro {
  font-size: 1.1rem;
  color: var(--color-silver);
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-philosophy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.phil-item {
  display: flex;
  gap: 1.5rem;
}

.phil-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(226, 184, 87, 0.08);
  border: 1px solid rgba(226, 184, 87, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-pale);
  box-shadow: 0 0 15px rgba(226, 184, 87, 0.05);
}

.phil-content h4 {
  font-size: 1.2rem;
  color: var(--color-silver);
  margin-bottom: 0.4rem;
}

.phil-content p {
  font-size: 0.95rem;
  color: var(--color-silver-muted);
}

.stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-box {
  text-align: center;
  padding: 2rem;
}

.stat-num {
  font-family: var(--font-header);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold-pale);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(226, 184, 87, 0.1);
}

.stat-lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-silver-muted);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* -----------------------------------------
   11. HOW IT WORKS SECTION
   ----------------------------------------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

.section-header p {
  color: var(--color-silver-muted);
  font-weight: 300;
}

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

.step-card {
  position: relative;
  text-align: center;
}

.step-num-bubble {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin: 0 auto 2rem auto;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.step-card:hover .step-num-bubble {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
  transform: scale(1.1);
}

.step-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--color-silver-muted);
}

/* Infographic Glow Connector */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-cyan-glow), var(--accent-cyan), var(--accent-cyan-glow));
  z-index: 1;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .steps-grid::before {
    display: none;
  }
}

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

/* -----------------------------------------
   12. FEATURES SECTION
   ----------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feat-card {
  padding: 3rem 2rem;
}

.feat-icon {
  margin-bottom: 2rem;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
}

.feat-icon svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.3));
}

.feat-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--color-silver);
}

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

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

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

/* -----------------------------------------
   13. PRODUCT SHOWCASE SECTION
   ----------------------------------------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.showcase-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.sc-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(226, 184, 87, 0.06) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.blueprint-specs {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.spec-node {
  border-left: 2px solid var(--color-gold-pale);
  padding-left: 1.5rem;
  transition: var(--transition-smooth);
}

.spec-node:hover {
  border-color: var(--accent-cyan);
  padding-left: 2rem;
}

.spec-node h4 {
  font-size: 1.25rem;
  color: var(--color-silver);
  margin-bottom: 0.4rem;
}

.spec-node p {
  font-size: 0.95rem;
  color: var(--color-silver-muted);
}

@media (max-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* -----------------------------------------
   14. BRAND CTA SECTION
   ----------------------------------------- */
.cta-banner {
  text-align: center;
  padding: 6rem 4rem;
  background: linear-gradient(135deg, rgba(20, 20, 22, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(226, 184, 87, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.cta-banner p {
  color: var(--color-silver-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-size: 1.15rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 4rem 2rem;
  }
  .cta-banner h2 {
    font-size: 2.2rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/* -----------------------------------------
   15. FOOTER
   ----------------------------------------- */
.footer {
  background: #08080a;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2.5rem 0;
}

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

.footer-brand .logo-img {
  height: 90px !important;
  margin: -20px 0;
  transform: none;
}

.footer-brand p {
  color: var(--color-silver-muted);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  max-width: 280px;
}

.footer-links-col h4 {
  font-size: 1.1rem;
  color: var(--color-silver);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links-col a {
  color: var(--color-silver-muted);
  font-size: 0.95rem;
}

.footer-links-col a:hover {
  color: var(--color-gold-pale);
  padding-left: 5px;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  color: var(--color-silver);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-newsletter p {
  color: var(--color-silver-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.8rem 1rem;
  color: var(--color-silver);
  font-size: 0.9rem;
}

.newsletter-form button {
  padding: 0.8rem 1.5rem;
  background: var(--color-gold-pale);
  color: #000;
  font-weight: 600;
  font-family: var(--font-header);
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--color-gold-bright);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-silver-muted);
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-silver-muted);
  transition: var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--color-gold-pale);
  color: var(--color-gold-pale);
  box-shadow: 0 0 10px rgba(226, 184, 87, 0.2);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* -----------------------------------------
   16. SPECIFIC PAGES STYLING
   ----------------------------------------- */

/* Helmet Page Layout */
.product-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
}

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

.benefit-card {
  padding: 3rem 2.5rem;
  border-left: 1px solid var(--glass-border);
}

.benefit-card:hover {
  border-left: 1px solid var(--color-gold-pale);
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-silver);
}

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

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

/* Phone App Showcase Layout */
.app-showcase-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 5rem;
  align-items: center;
}

.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 290px;
  height: 580px;
  background: #000;
  border: 10px solid #222;
  border-radius: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.95), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.phone-speaker {
  width: 60px;
  height: 4px;
  background: #333;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0a0a0c;
  padding: 40px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.8rem;
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, transparent 70%);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.8rem;
}

.phone-header h5 {
  font-size: 0.85rem;
  color: var(--color-silver);
  font-family: var(--font-header);
}

.phone-battery {
  width: 20px;
  height: 10px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  position: relative;
}

.phone-battery::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 12px;
  height: 4px;
  background: var(--accent-cyan);
}

.phone-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.hairstyle-node-map {
  width: 160px;
  height: 160px;
  border: 2px dashed rgba(0, 242, 254, 0.2);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hairstyle-face-render {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,242,254,0.15);
  color: var(--accent-cyan);
  font-family: var(--font-header);
  font-weight: bold;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0,242,254,0.02);
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% { border-color: rgba(0,242,254,0.4); }
  50% { border-color: rgba(0,242,254,1); }
  100% { border-color: rgba(0,242,254,0.4); }
}

.h-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold-pale);
  box-shadow: 0 0 10px var(--color-gold-pale);
}

.hn-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.hn-2 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.hn-3 { left: 10px; top: 50%; transform: translateY(-50%); }
.hn-4 { right: 10px; top: 50%; transform: translateY(-50%); }

.phone-app-styling {
  width: 100%;
}

.style-selector {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  padding: 0.8rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.style-selector.active {
  border-color: var(--color-gold-pale);
  background: rgba(226, 184, 87, 0.05);
}

.phone-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--accent-cyan);
  color: #000;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .app-showcase-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Pricing Page & Form Styling */
.preorder-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.preorder-card {
  padding: 3rem;
}

.preorder-price {
  font-family: var(--font-header);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-silver);
  margin-bottom: 0.5rem;
}

.preorder-price span {
  font-size: 1rem;
  color: var(--color-silver-muted);
  font-weight: 400;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.pay-icon {
  height: 24px;
  opacity: 0.6;
  filter: grayscale(1) invert(1);
  transition: var(--transition-fast);
}

.pay-icon:hover {
  opacity: 1;
  filter: none;
}

@media (max-width: 992px) {
  .preorder-showcase {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* -----------------------------------------
   17. CONTACT & BOOKING PORTAL STYLING
   ----------------------------------------- */
.booking-portal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.booking-info-pane h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.booking-info-pane p {
  color: var(--color-silver-muted);
  margin-bottom: 3rem;
}

.booking-channels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.channel-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.channel-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.channel-details h4 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.channel-details p {
  font-size: 0.9rem;
  color: var(--color-silver-muted);
  margin-bottom: 0;
}

/* Glassmorphism Form Design */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-field label {
  font-family: var(--font-header);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-silver-muted);
}

.form-field input, .form-field select, .form-field textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.2rem;
  border-radius: 6px;
  color: var(--color-silver);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-gold-pale);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 15px var(--accent-gold-glow);
}

@media (max-width: 768px) {
  .booking-portal-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* Partnership Panels */
.partnerships-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.partner-niche {
  padding: 3rem 2.5rem;
}

.partner-niche h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-gold-pale);
}

.partner-niche p {
  font-size: 0.95rem;
  color: var(--color-silver-muted);
}

@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}/* Partnerships Banner Styling */
.partnerships-banner {
  margin-bottom: 4rem;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  overflow: hidden;
  border-radius: 12px;
  min-height: 380px;
}

.partnerships-banner-text {
  padding: 4rem 3rem;
}

.partnerships-banner-img-wrapper {
  height: 100%;
  min-height: 380px;
  position: relative;
}

.partnerships-banner-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
  transition: var(--transition-smooth);
}

.partnerships-banner:hover .partnerships-banner-img-wrapper img {
  transform: scale(1.03);
}

.partner-card-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.partner-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
  transition: var(--transition-smooth);
}

.glass-card:hover .partner-card-img-wrapper img {
  transform: scale(1.05);
}

.materials-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.materials-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.15);
  transition: var(--transition-smooth);
}

.glass-card:hover .materials-img-wrapper img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .partnerships-banner {
    grid-template-columns: 1fr;
  }
  .partnerships-banner-img-wrapper {
    min-height: 250px;
    height: 250px;
  }
  .partnerships-banner-text {
    padding: 3rem 2rem;
  }
}

/* -----------------------------------------
   18. UTILITY ENTRANCE ANIMATIONS
   ----------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
