/* Design System and Utilities for himedia Landing Page */

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

:root {
  --bg-color: #03020D;
  --bg-darker: #010006;
  --bg-light-navy: #0d0a1b;
  --teal-start: #00F5D4;
  --teal-end: #00F5D4;
  --accent-yg: #CEDD38;
  --orange-start: #F0A300;
  --orange-end: #F89E0C;
  --purple-accent: #9D4EDD;
  --fuchsia-accent: #FF007A;
  --text-primary: #FFFFFF;
  --text-secondary: #C9D4D8;
  --text-muted: #8AA0A6;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --nav-height: 80px;
  
  /* Brand Gradients - Sunset Gradient */
  --gradient-teal: #00F5D4;
  --gradient-orange: #F0A300;
  --gradient-signature: linear-gradient(90deg, #F0A300 0%, #FF007A 50%, #9D4EDD 100%);
  --gradient-signature-reverse: linear-gradient(90deg, #9D4EDD 0%, #FF007A 50%, #F0A300 100%);
  --gradient-glass: rgba(13, 10, 27, 0.65);
  --border-glass: rgba(157, 78, 221, 0.15);
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Core resets & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Fixed Parallax Background Layer */
.parallax-bg-layer {
  position: fixed;
  top: -15%;
  left: 0;
  width: 100%;
  height: 135%;
  z-index: -1;
  pointer-events: none;
  background-color: var(--bg-color);
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(255, 0, 122, 0.08) 0%, transparent 50%);
  background-size: 100% 100%, 100% 100%;
  will-change: transform;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(11, 175, 140, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--teal-end), var(--orange-start));
}

/* Scroll Indicators & Page Dividers */
.divider-wave-container {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.wave-divider {
  display: block;
  width: 100%;
  height: 24px;
  fill: none;
  stroke: var(--purple-accent);
  stroke-width: 2px;
  stroke-linecap: round;
  opacity: 0.65;
  filter: drop-shadow(0 0 6px rgba(157, 78, 221, 0.7));
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Navigation Header */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(0, 24, 34, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.glass-header.scrolled {
  height: 70px;
  background: rgba(0, 15, 22, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  color: var(--orange-start);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-start);
  transition: var(--transition-smooth);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

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

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: #FFFFFF;
  background: var(--gradient-signature);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 0 20px rgba(255, 0, 122, 0.35), 0 0 10px rgba(240, 163, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-signature-reverse);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 0, 122, 0.5), 0 0 15px rgba(240, 163, 0, 0.25);
  color: #FFFFFF;
}

.btn-cta:hover::before {
  opacity: 1;
}

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

.btn-nav {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Canvas background integration */
.canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

#network-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Sections Common Styles */
section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid var(--purple-accent);
  color: var(--fuchsia-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  background: rgba(157, 78, 221, 0.08);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.1);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title span {
  color: var(--teal-end);
  text-shadow: 0 0 12px rgba(0, 245, 212, 0.4);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

.highlight-teal {
  color: var(--teal-end);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 15px rgba(0, 245, 212, 0.6);
}

.highlight-teal::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--teal-end);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 245, 212, 0.8);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--gradient-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 158, 12, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(11, 175, 140, 0.05);
}

/* 1. Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  background-image: linear-gradient(180deg, rgba(3, 2, 13, 0.45) 0%, rgba(3, 2, 13, 0.9) 100%), url('./electrifying.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-headline {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-headline span {
  color: var(--teal-end);
}

.hero-subheadline {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

/* Trust Strip Panel */
.trust-container-panel {
  margin: 60px auto 0 auto;
  max-width: 900px;
  background: rgba(13, 10, 27, 0.55);
  border: 1px solid rgba(0, 245, 212, 0.35);
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.12);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2;
  position: relative;
}

.trust-label {
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 10px;
}

.trust-logo-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.trust-logo-card svg {
  fill: var(--text-muted);
  width: 18px;
  height: 18px;
  transition: var(--transition-smooth);
}

.trust-logo-card:hover svg {
  fill: var(--teal-end);
}

/* 2. Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.problem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 163, 0, 0.08);
  border: 1px solid rgba(240, 163, 0, 0.2);
  color: var(--orange-end);
}

.problem-card:hover .problem-icon-wrapper {
  background: rgba(240, 163, 0, 0.15);
  border-color: var(--orange-end);
  box-shadow: 0 0 15px rgba(240, 163, 0, 0.2);
}

.problem-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-card-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.problem-cta-container {
  text-align: center;
  margin-top: 20px;
}

/* 3. Solution Section (Two Pillars) */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 50px;
}

.solution-pillar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pillar-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.pillar-teal .pillar-icon-wrapper {
  background: rgba(11, 175, 140, 0.08);
  border: 1px solid rgba(11, 175, 140, 0.2);
  color: var(--teal-end);
}

.pillar-orange .pillar-icon-wrapper {
  background: rgba(240, 163, 0, 0.08);
  border: 1px solid rgba(240, 163, 0, 0.2);
  color: var(--orange-end);
}

.pillar-teal:hover .pillar-icon-wrapper {
  background: rgba(11, 175, 140, 0.15);
  border-color: var(--teal-end);
  box-shadow: 0 0 15px rgba(11, 175, 140, 0.3);
}

.pillar-orange:hover .pillar-icon-wrapper {
  background: rgba(240, 163, 0, 0.15);
  border-color: var(--orange-end);
  box-shadow: 0 0 15px rgba(240, 163, 0, 0.3);
}

.pillar-title {
  font-size: 1.45rem;
  font-weight: 800;
}

.pillar-image-container {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.pillar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.solution-pillar:hover .pillar-image {
  transform: scale(1.05);
}

.pillar-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.pillar-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pillar-bullet-item svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pillar-teal svg {
  fill: var(--teal-end);
}

.pillar-orange svg {
  fill: var(--orange-end);
}

/* 4. How It Works (Funnel Timeline) */
.timeline-outer {
  position: relative;
  padding: 40px 0;
  margin-bottom: 50px;
}

.timeline-line {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-signature);
  z-index: 1;
  border-radius: 4px;
}

.timeline-line-glow {
  position: absolute;
  top: 89px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-signature);
  z-index: 1;
  filter: blur(4px);
  opacity: 0.6;
  animation: linePulse 3s infinite alternate;
}

@keyframes linePulse {
  0% { opacity: 0.4; filter: blur(3px); }
  100% { opacity: 0.8; filter: blur(6px); }
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 16px;
}

.timeline-step {
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 4px solid var(--text-muted);
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  box-shadow: 0 0 0 4px var(--bg-color);
}

.timeline-step:nth-child(1) .timeline-node { border-color: #007A89; }
.timeline-step:nth-child(2) .timeline-node { border-color: #05958A; }
.timeline-step:nth-child(3) .timeline-node { border-color: #0BAF8C; }
.timeline-step:nth-child(4) .timeline-node { border-color: #6CC562; }
.timeline-step:nth-child(5) .timeline-node { border-color: #CEDD38; }
.timeline-step:nth-child(6) .timeline-node { border-color: #F89E0C; }

.timeline-step:hover .timeline-node,
.timeline-step.active .timeline-node {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(11, 175, 140, 0.4);
  color: var(--text-primary);
  background: var(--text-primary);
}

.timeline-step:nth-child(1):hover .timeline-node, .timeline-step:nth-child(1).active .timeline-node { background: #007A89; color: white; }
.timeline-step:nth-child(2):hover .timeline-node, .timeline-step:nth-child(2).active .timeline-node { background: #05958A; color: white; }
.timeline-step:nth-child(3):hover .timeline-node, .timeline-step:nth-child(3).active .timeline-node { background: #0BAF8C; color: white; }
.timeline-step:nth-child(4):hover .timeline-node, .timeline-step:nth-child(4).active .timeline-node { background: #6CC562; color: white; }
.timeline-step:nth-child(5):hover .timeline-node, .timeline-step:nth-child(5).active .timeline-node { background: #CEDD38; color: #001822; }
.timeline-step:nth-child(6):hover .timeline-node, .timeline-step:nth-child(6).active .timeline-node { background: #F89E0C; color: white; }

.timeline-label {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.timeline-step.active .timeline-label {
  color: var(--accent-yg);
}

.timeline-service {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.timeline-step.active .timeline-service {
  background: rgba(11, 175, 140, 0.1);
  border-color: rgba(11, 175, 140, 0.3);
  color: var(--teal-end);
}

.timeline-desc-box {
  margin-top: 30px;
  min-height: 100px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-desc-content {
  font-size: 1.1rem;
  color: var(--text-secondary);
  background: rgba(0, 15, 22, 0.4);
  border: 1px solid var(--border-glass);
  padding: 20px 30px;
  border-radius: 12px;
  display: none;
  animation: fadeIn 0.4s var(--transition-smooth) forwards;
}

.timeline-desc-content.active {
  display: block;
}

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

/* 5. Why himedia Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 175, 140, 0.08);
  border: 1px solid rgba(11, 175, 140, 0.2);
  color: var(--teal-end);
  flex-shrink: 0;
}

.why-card:hover .why-icon-wrapper {
  background: rgba(11, 175, 140, 0.15);
  border-color: var(--teal-end);
  box-shadow: 0 0 15px rgba(11, 175, 140, 0.25);
}

.why-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 6. Proof Section (Placeholder results) */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.proof-card {
  background: rgba(13, 10, 27, 0.45);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.marching-ants-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.marching-ants-border rect {
  fill: none;
  stroke: rgba(0, 245, 212, 0.35);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  stroke-dashoffset: 0;
  animation: march-clockwise 0.8s linear infinite;
  transition: stroke var(--transition-smooth);
}

@keyframes march-clockwise {
  to {
    stroke-dashoffset: -14;
  }
}

.proof-card:hover {
  transform: translateY(-5px);
  background: rgba(13, 10, 27, 0.65);
  box-shadow: 0 0 25px rgba(240, 163, 0, 0.15);
}

.proof-card:hover .marching-ants-border rect {
  stroke: var(--orange-start);
}

.proof-stat {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.proof-card:hover .proof-stat {
  color: var(--orange-start);
}

.proof-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.proof-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* 7. Final Inquiry Form Section */
.inquiry-section {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-darker) 100%);
}

.inquiry-form-container {
  max-width: 650px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

/* Floating labels styling */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(12, 35, 47, 0.15);
  border-radius: 12px;
  color: var(--bg-darker);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

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

.form-label {
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-smooth);
  transform-origin: left center;
}

/* Float logic */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-28px) scale(0.8);
  color: var(--orange-start);
  background: var(--bg-color);
  padding: 0 6px;
  border-radius: 4px;
}

.form-select:focus,
.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange-start);
  box-shadow: 0 0 12px rgba(240, 163, 0, 0.2);
  background: #ffffff;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230c232f'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 24px;
}

.form-select:focus ~ .form-label,
.form-select:valid ~ .form-label {
  transform: translateY(-28px) scale(0.8);
  color: var(--orange-start);
  background: var(--bg-color);
  padding: 0 6px;
}

.form-helper {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

.form-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* Success Modal */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 22, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.success-modal {
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

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

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(11, 175, 140, 0.1);
  border: 2px solid var(--teal-end);
  color: var(--teal-end);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 0 20px rgba(11, 175, 140, 0.2);
}

.success-icon-wrapper svg {
  width: 40px;
  height: 40px;
}

.success-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.success-message {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Footer styling */
.glass-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-darker);
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Animation Reveals on Scroll */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Parallax slow scroll element */
.parallax-bg {
  transform: translateY(var(--scroll-offset, 0px));
  transition: transform 0.1s linear;
}

/* Responsiveness Media Queries */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 3rem;
  }
  
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    background: rgba(0, 15, 22, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px;
    gap: 30px;
    align-items: flex-start;
    border-left: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links .btn-cta {
    width: 100%;
    text-align: center;
  }
  
  .hero-headline {
    font-size: 2.2rem;
  }
  
  .hero-subheadline {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-actions .btn-cta {
    width: 100%;
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .timeline-line, .timeline-line-glow {
    display: none;
  }
  
  .timeline-steps {
    flex-direction: column;
    gap: 24px;
  }
  
  .timeline-step {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 24, 34, 0.4);
    border: 1px solid var(--border-glass);
    padding: 16px;
    border-radius: 12px;
  }
  
  .timeline-node {
    margin: 0;
    flex-shrink: 0;
    box-shadow: none;
  }
  
  .timeline-desc-box {
    display: none;
  }
  
  .timeline-step-mobile-desc {
    display: block;
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}
