/* ============================================================
   Threat Forge — Section-Specific Styles
   ============================================================ */


/* ─────────────────────────────────────────────────────────────
   1. NAVBAR
   ───────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  padding: var(--space-5) 0;
  transition: all 0.4s var(--ease-out);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Scrolled state — glassmorphism kicks in */
.navbar.scrolled {
  padding: var(--space-3) 0;
  background: rgba(10, 14, 26, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-heading);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

.navbar-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--primary);
  font-size: 1.1rem;
}

.navbar-logo:hover .navbar-logo-icon {
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.navbar-logo-text span {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* Navigation links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Mobile hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: calc(var(--z-navbar) + 10);
}

.navbar-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ─────────────────────────────────────────────────────────────
   2. HERO
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--space-32);
  padding-bottom: var(--space-16);
}

/* Particle canvas sits behind content */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-base);
  pointer-events: none;
}

/* Mesh gradient overlay for depth */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  z-index: var(--z-base);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: var(--z-base);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: var(--z-above);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.hero-badge {
  margin-bottom: var(--space-8);
  animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero-title span {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-title .typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--primary);
  margin-left: 4px;
  animation: typingCursor 1s step-end infinite;
  vertical-align: text-bottom;
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-10);
  line-height: var(--leading-normal);
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  margin-top: var(--space-16);
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

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

.hero-stat-number {
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  color: var(--primary);
  display: block;
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-1);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-xs);
  animation: bounce 2.5s infinite;
  z-index: var(--z-above);
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
}


/* ─────────────────────────────────────────────────────────────
   3. TRUSTED BY (Logo Strip)
   ───────────────────────────────────────────────────────────── */
.trusted {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.trusted-label {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  font-weight: var(--weight-medium);
}

.trusted-marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Fade edges */
.trusted-marquee::before,
.trusted-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: var(--z-above);
  pointer-events: none;
}

.trusted-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.trusted-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark), transparent);
}

.trusted-track {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.trusted-track:hover {
  animation-play-state: paused;
}

.trusted-logo {
  flex-shrink: 0;
  height: 32px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.4s var(--ease-out);
}

.trusted-logo:hover {
  opacity: 0.8;
  filter: grayscale(0%) brightness(1);
}

/* Text-based logos fallback */
.trusted-logo-text {
  flex-shrink: 0;
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  opacity: 0.3;
  white-space: nowrap;
  transition: opacity 0.4s var(--ease-out);
  user-select: none;
}

.trusted-logo-text:hover {
  opacity: 0.7;
}


/* ─────────────────────────────────────────────────────────────
   4. SERVICES
   ───────────────────────────────────────────────────────────── */
.services {
  background: var(--bg-dark);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.service-card {
  position: relative;
  padding: var(--space-10);
}

.service-card .icon-container {
  margin-bottom: var(--space-6);
}

.service-card h3 {
  margin-bottom: var(--space-3);
  color: var(--text-heading);
}

.service-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-6);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--primary);
  transition: gap 0.3s var(--ease-out);
}

.service-card-link:hover {
  gap: var(--space-3);
}

/* Staggered hover accent colors */
.service-card:nth-child(2) .icon-container {
  background: var(--secondary-glow);
  border-color: rgba(123, 97, 255, 0.12);
  color: var(--secondary);
}

.service-card:nth-child(2):hover {
  border-color: rgba(123, 97, 255, 0.25);
  box-shadow: 0 0 25px rgba(123, 97, 255, 0.08),
              0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:nth-child(2)::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 97, 255, 0.3),
    transparent
  );
}

.service-card:nth-child(3) .icon-container {
  background: var(--accent-glow);
  border-color: rgba(255, 61, 113, 0.12);
  color: var(--accent);
}

.service-card:nth-child(3):hover {
  border-color: rgba(255, 61, 113, 0.25);
  box-shadow: 0 0 25px rgba(255, 61, 113, 0.08),
              0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:nth-child(3)::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 61, 113, 0.3),
    transparent
  );
}


/* ─────────────────────────────────────────────────────────────
   5. STATS
   ───────────────────────────────────────────────────────────── */
.stats {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  overflow: hidden;
}

/* Subtle grid background */
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: var(--z-above);
}

.stat-item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  position: relative;
}

/* Vertical dividers between stats */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--border-light),
    transparent
  );
}

.stat-number {
  font-size: var(--text-5xl);
  font-weight: var(--weight-extrabold);
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--space-3);
  display: block;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: var(--weight-medium);
}

.stat-sublabel {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}


/* ─────────────────────────────────────────────────────────────
   6. WHY US
   ───────────────────────────────────────────────────────────── */
.why-us {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

/* Ambient glow in background */
.why-us::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-us-content {
  max-width: 520px;
}

.why-us-content .section-heading {
  margin-bottom: var(--space-6);
}

.why-us-content > p {
  margin-bottom: var(--space-10);
}

.why-us-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.why-us-feature {
  padding: var(--space-6);
}

.why-us-feature .icon-container {
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.why-us-feature h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
  color: var(--text-heading);
}

.why-us-feature p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-snug);
}

/* Checkmark list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.check-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-snug);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: var(--primary);
  font-size: 0.7rem;
  margin-top: 1px;
}


/* ─────────────────────────────────────────────────────────────
   7. PROCESS (Timeline)
   ───────────────────────────────────────────────────────────── */
.process {
  background: var(--bg-dark);
  position: relative;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Connecting vertical line */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--border-light) 10%,
    var(--border-light) 90%,
    transparent
  );
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-bottom: var(--space-12);
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

/* Step number (center) */
.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-cyan);
  color: var(--primary);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  position: relative;
  z-index: var(--z-above);
  transition: all 0.3s var(--ease-out);
}

.process-step:hover .process-step-number {
  background: var(--primary-glow);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

/* Content blocks */
.process-step-content {
  padding: var(--space-8);
}

.process-step-content h3 {
  margin-bottom: var(--space-2);
}

.process-step-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Alternating layout */
.process-step:nth-child(odd) .process-step-content:first-child {
  text-align: right;
}

.process-step:nth-child(odd) .process-step-content:last-child {
  visibility: hidden;
}

.process-step:nth-child(even) .process-step-content:first-child {
  visibility: hidden;
}

.process-step:nth-child(even) .process-step-content:last-child {
  text-align: left;
}


/* ─────────────────────────────────────────────────────────────
   8. CASE STUDY (Featured Success Story)
   ───────────────────────────────────────────────────────────── */
.case-study {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-12);
  margin-top: var(--space-8);
}

.case-study-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case-study-details h3 {
  font-size: var(--text-2xl);
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  color: var(--text-heading);
}

.case-study-details p {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.case-study-metrics {
  display: flex;
  gap: var(--space-10);
  border-top: 1px solid var(--border-light);
  width: 100%;
  padding-top: var(--space-6);
}

.case-study-metric {
  border-left: 2px solid var(--primary);
  padding-left: var(--space-4);
}

.case-study-metric-value {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--primary);
  line-height: var(--leading-tight);
}

.case-study-metric-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
}

.case-study-visual {
  background: rgba(10, 14, 23, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  font-family: 'Courier New', Courier, monospace;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.6;
  box-shadow: inset 0 0 20px rgba(0, 229, 255, 0.02);
  position: relative;
}

.case-study-visual-tag {
  color: var(--border-cyan);
  margin-bottom: var(--space-4);
  font-weight: var(--weight-semibold);
}

.case-study-log-line {
  margin-bottom: var(--space-2);
}

.case-study-log-line.info {
  color: var(--primary);
}

.case-study-log-line.warning {
  color: #ff5e62;
}

.case-study-log-line.success {
  color: #2ec4b6;
}

.case-study-code {
  color: #48cae4;
  border-top: 1px solid var(--border-light);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
}

@media (max-width: 992px) {
  .case-study-card {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: var(--space-8);
  }
}


/* ─────────────────────────────────────────────────────────────
   9. CONTACT / CTA
   ───────────────────────────────────────────────────────────── */
.contact {
  position: relative;
  overflow: hidden;
}

/* Animated gradient mesh background */
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  opacity: 0.6;
  z-index: var(--z-behind);
}

.contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  z-index: var(--z-base);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
  position: relative;
  z-index: var(--z-above);
}

/* Form side */
.contact-form-wrapper {
  padding: var(--space-10);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: var(--space-4);
  padding: 1rem;
}

/* Info side */
.contact-info {
  padding: var(--space-4) 0;
}

.contact-info h2 {
  margin-bottom: var(--space-6);
}

.contact-info > p {
  margin-bottom: var(--space-10);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-detail .icon-container {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}

.contact-detail-text h4 {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-heading);
  margin-bottom: var(--space-1);
}

.contact-detail-text p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* CTA banner variant */
.cta-banner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: var(--z-above);
}

.cta-banner h2 {
  margin-bottom: var(--space-6);
}

.cta-banner p {
  margin: 0 auto var(--space-8);
  max-width: 540px;
}

.cta-banner .hero-actions {
  justify-content: center;
}


/* ─────────────────────────────────────────────────────────────
   10. FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

/* Footer brand column */
.footer-brand {
  max-width: 300px;
}

.footer-brand .navbar-logo {
  margin-bottom: var(--space-5);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-6);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s var(--ease-out);
}

.footer-social-link:hover {
  color: var(--primary);
  border-color: var(--border-cyan);
  background: var(--primary-glow);
  transform: translateY(-2px);
}

/* Footer link columns */
.footer-column h4 {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

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

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

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

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: var(--text-muted);
  transition: color 0.3s var(--ease-out);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* Newsletter in footer (optional) */
.footer-newsletter {
  margin-top: var(--space-6);
}

.footer-newsletter-form {
  display: flex;
  gap: var(--space-2);
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: var(--text-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: border-color 0.3s var(--ease-out);
}

.footer-newsletter-form input:focus {
  border-color: var(--primary);
  outline: none;
}

.footer-newsletter-form button {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--bg-dark);
  background: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.footer-newsletter-form button:hover {
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
