/* 
  Safe Hydrant - Premium SaaS Industrial Dashboard Styles 
*/

:root {
  /* Core Colors */
  --bg-dark: #090B10;
  --bg-card: rgba(18, 22, 33, 0.6);
  --bg-card-hover: rgba(25, 30, 45, 0.8);

  --primary: #00E5FF;
  --primary-glow: rgba(0, 229, 255, 0.3);
  --secondary: #4A6CFA;

  --text-main: #FFFFFF;
  --text-muted: #9CA3AF;

  /* Status Colors */
  --status-ready: #10B981;
  --status-warning: #F59E0B;
  --status-danger: #EF4444;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout & Effects */
  --border-radius: 16px;
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-blur: backdrop-filter: blur(16px);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --section-padding: 100px 0;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center {
  text-align: center;
}

.text-blue {
  color: var(--primary);
}

.text-green {
  color: var(--status-ready);
}

.max-width-mx {
  margin-left: auto;
  margin-right: auto;
}

/* Badge Layout */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.badge.outline {
  background: transparent;
  color: var(--text-muted);
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-glow);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline.hovering {
  width: 60px;
  height: 60px;
  background-color: var(--primary-glow);
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Links & Buttons */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #000;
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--primary-glow);
}

.cta-btn.secondary.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
}

.cta-btn.secondary.outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
}

.cta-btn.large {
  padding: 16px 36px;
  font-size: 1.125rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-heading);
}

.link-arrow i {
  transition: transform 0.3s ease;
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(9, 11, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  width: 140px;
  /* Adjust container width to make logo massive but bounded */
  max-width: 50vw;
  /* ensure it doesn't break mobile */
  transition: var(--transition);
}

.navbar.scrolled .logo {
  width: 100px;
  /* Shorter for sticky header */
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-btn {
  font-weight: 600;
  color: var(--text-main);
}

.login-btn:hover {
  filter: brightness(1.2);
}

.mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

.close-menu {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(9, 11, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  right: 0;
}

.close-menu {
  display: block;
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-nav-links a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Video Modal Settings */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 90%;
  max-width: 1100px;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}

.video-modal-overlay.active .video-modal-content {
  transform: scale(1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: var(--glass-border);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.close-modal-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.close-modal-btn:hover {
  color: var(--primary);
}


/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 180px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  right: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(60px);
  z-index: -1;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -2;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.play-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
}

.play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
}

.play-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  opacity: 0;
  animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.play-video-btn:hover .play-icon {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-visual {
  flex: 1;
  position: relative;
  perspective: 1000px;
}

.dashboard-mockup {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}

.mockup-header {
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
  gap: 12px;
}

.mockup-search {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 4px 12px;
  text-align: center;
}

.dashboard-img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-stat {
  position: absolute;
  background: rgba(18, 22, 33, 0.8);
  backdrop-filter: blur(12px);
  border: var(--glass-border);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.floating-stat i {
  font-size: 1.5rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.stat-1 {
  top: 15%;
  left: -20px;
  animation-delay: 0s;
}

.stat-2 {
  bottom: 20%;
  right: -30px;
  animation-delay: 3s;
}

/* Layout Grid general pattern */
.layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.layout-grid.reversed {
  grid-template-columns: 1.2fr 0.8fr;
}

/* Product Explanation Section */
.product-explain-section {
  padding: var(--section-padding);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-list h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.feature-list p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bento-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

.bento-item.wide {
  grid-column: span 2;
  min-height: 250px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-item.text-centric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(74, 108, 250, 0.1));
  border: 1px solid var(--primary-glow);
}

.bento-item.text-centric h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 8px;
}

/* Problem / Solution Section */
.problem-solution-section {
  padding: var(--section-padding);
  background: #06080C;
}

.split-cards {
  display: flex;
  gap: 32px;
  margin: 48px 0;
  position: relative;
}

.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  z-index: 10;
}

.card {
  flex: 1;
  padding: 40px;
  transition: var(--transition);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.card-header h3 {
  font-size: 1.5rem;
}

.problem-icon {
  font-size: 2rem;
  color: var(--text-muted);
}

.solution-icon {
  font-size: 2rem;
  color: var(--primary);
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.card-highlight {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.problem-card .card-highlight {
  color: var(--status-danger);
}

.solution-card .card-highlight {
  color: var(--status-ready);
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}

.card.active-glow {
  border: 1px solid var(--primary-glow);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.impact-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-left: 4px solid var(--secondary);
}

.banner-content {
  flex: 1;
  max-width: 600px;
}

.banner-content h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.banner-content p {
  color: var(--text-muted);
}

.metrics {
  display: flex;
  gap: 40px;
}

.metric {
  text-align: center;
}

.metric .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric .label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tanks Section */
.tanks-section {
  padding: var(--section-padding);
}

.tanks-container {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.tank-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tank-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
}

.tank-graphic {
  width: 160px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 8px 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.tank-fluid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 4px 4px;
  transition: height 2s ease;
  overflow: hidden;
}

.primary-fluid {
  height: 85%;
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.4), rgba(0, 229, 255, 0.8));
}

.standby-fluid {
  height: 98%;
  background: linear-gradient(180deg, rgba(74, 108, 250, 0.4), rgba(74, 108, 250, 0.8));
}

.tank-metrics {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.tank-metrics .level {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.tank-metrics .vol {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Wave Animations inside fluid */
.wave {
  position: absolute;
  top: -10px;
  width: 200%;
  height: 20px;
  background-repeat: repeat-x;
  background-size: 50% 100%;
}

.wave-back {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E");
  animation: move-wave-back 4s linear infinite;
}

.wave-front {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E");
  animation: move-wave-front 6s linear infinite;
  top: -5px;
}

@keyframes move-wave-back {
  100% {
    transform: translateX(-50%);
  }
}

@keyframes move-wave-front {
  100% {
    transform: translateX(-50%);
  }
}

/* Architecture / Pump Grid */
.architecture-section {
  padding: var(--section-padding);
}

.pump-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pump-card {
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pump-card:hover {
  transform: translateY(-5px);
}

.pump-card .card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.pump-card h4 {
  margin-bottom: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
}

.status.online {
  color: var(--status-ready);
}

.status.standby {
  color: var(--text-muted);
}

.status.warning {
  color: var(--status-warning);
}

.status span {
  font-size: 0.6rem;
  animation: pulse 2s infinite;
}

/* Valves Marquee */
.valves-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #06080C;
  overflow: hidden;
}

.valves-marquee-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.valves-marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-marquee 20s linear infinite;
}

.valve-tag {
  padding: 16px 32px;
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  white-space: nowrap;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Scrolls exactly half since duplicated */
}

/* Service / Value section */
.value-section {
  padding: var(--section-padding);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Bottom CTA */
.bottom-cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 108, 250, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: -1;
}

.bottom-cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.bottom-cta-section p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
  background: #06080C;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
}

.footer-brand .mission {
  color: var(--text-muted);
  margin: 20px 0;
  max-width: 300px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.contact-methods a:hover {
  color: var(--primary);
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.link-column h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.link-column a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.link-column a:hover {
  color: #fff;
  padding-left: 5px;
}

.location {
  margin-bottom: 16px;
}

.location p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.newsletter p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #fff;
  width: 100%;
  outline: none;
}

.newsletter-form button {
  background: var(--primary);
  border: none;
  padding: 0 16px;
  cursor: pointer;
  color: #000;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--secondary);
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a:hover {
  color: #fff;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.fade-up {
  transform: translateY(50px);
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.scale-up {
  transform: scale(0.9);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

  .nav-links,
  .nav-actions .login-btn,
  .nav-actions .cta-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 50px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-note {
    justify-content: center;
  }

  .layout-grid,
  .layout-grid.reversed {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .layout-grid.reversed .tanks-visual {
    order: 2;
  }

  .layout-grid.reversed .tanks-text {
    order: 1;
  }

  .feature-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pump-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .section-padding {
    padding: 60px 0;
  }

  .split-cards {
    flex-direction: column;
  }

  .vs-badge {
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
  }

  .pump-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    flex-direction: column;
    gap: 20px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.wide {
    grid-column: span 1;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}