@font-face {
  font-family: 'Gasoek One';
  src: url('assets/fonts/GasoekOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #050508;
  --bg-panel: rgba(15, 15, 25, 0.65);
  --bg-panel-hover: rgba(25, 25, 42, 0.8);
  --border-color: rgba(255, 255, 255, 0.08);

  --accent-cyan: #00F0FF;
  --accent-magenta: #FF2E93;
  --accent-violet: #9D4EDD;

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);

  --font-heading: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Background Atmosphere */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.45;
  animation: float 25s infinite ease-in-out alternate;
}

.blob-1 {
  top: -15%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(255, 46, 147, 0.6) 0%, transparent 70%);
}

.blob-2 {
  top: 35%;
  right: -20%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.5) 0%, transparent 70%);
  animation-delay: -6s;
}

.blob-3 {
  bottom: -15%;
  left: 15%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.55) 0%, transparent 70%);
  animation-delay: -12s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, 40px) scale(1.15);
  }
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-heading);
}

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

.mt-4 {
  margin-top: 1.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Gasoek One', sans-serif;
  font-weight: normal;
  font-size: 1.55rem;
  letter-spacing: 0.5px;
}

.logo-text {
  background: linear-gradient(160deg, #c40c50 0%, #483bb0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
  color: white;
  box-shadow: 0 4px 14px 0 rgba(0, 240, 255, 0.25);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-magenta), var(--accent-cyan));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

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

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(255, 46, 147, 0.35);
}

.nav-cta {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  font-size: 0.9rem;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9rem 2rem 5rem;
  position: relative;
}

.hero-content {
  max-width: 850px;
  z-index: 10;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-title span {
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-magenta), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientShift 6s ease infinite;
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.15);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

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

.hero-demo-container {
  max-width: 800px;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0 auto 3rem;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(0, 240, 255, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  background: #020204;
  z-index: 20;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.hero-demo-container:hover {
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.9),
    0 0 70px rgba(255, 46, 147, 0.2);
}

/* Hero Slideshow Styling */
.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slideshow-indicators {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slideshow-indicators .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slideshow-indicators .dot.active {
  background: var(--accent-cyan);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.hero-demo-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 25%,
      transparent 60%,
      rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-demo-container.reveal {
  transition-delay: 0.15s;
  transition-duration: 1.2s;
}

/* Features / How it works */
.features {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 4rem;
  font-weight: 800;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.65) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3.5rem;
}

.feature-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card:hover {
  background: var(--bg-panel-hover);
  border-color: rgba(0, 240, 255, 0.25);
  transform: translateY(-6px);
}

.feature-text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* macOS Window Mockups */
.mac-window {
  background: #18181D;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
}

.title-bar {
  height: 34px;
  background: linear-gradient(180deg, #2B2B32 0%, #1F1F24 100%);
  border-bottom: 1px solid #111115;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.traffic-lights {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #FF5A52;
  border: 1px solid #E33E32;
}

.dot.yellow {
  background: #E6C029;
  border: 1px solid #C49B11;
}

.dot.green {
  background: #53C22B;
  border: 1px solid #389B16;
}

.window-content {
  flex-grow: 1;
  position: relative;
  background: #020204;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-img {
  opacity: 1;
}

/* Why Section / Accordions */
.why-us {
  padding: 5rem 1rem;
  position: relative;
}

.container-small {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-container {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.accordion-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background: var(--bg-panel-hover);
  border-color: rgba(255, 255, 255, 0.18);
}

.accordion-header {
  width: 100%;
  padding: 1.6rem 2.25rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  transition: color 0.3s ease;
}

.accordion-item[data-active="true"] .accordion-header {
  color: var(--accent-cyan);
}

.accordion-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
  flex-shrink: 0;
}

.accordion-item[data-active="true"] .accordion-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 2.25rem;
}

.accordion-item[data-active="true"] .accordion-content {
  max-height: 600px;
  padding-bottom: 1.6rem;
}

.accordion-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
}

.accordion-content ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.accordion-content li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 1.025rem;
  line-height: 1.6;
}

.accordion-content li strong {
  color: var(--text-primary);
}

/* Compatibility Table */
.compatibility {
  padding: 4rem 2rem 5rem;
  max-width: 850px;
  margin: 0 auto;
}

.table-container {
  background: linear-gradient(145deg, rgba(30, 30, 45, 0.45) 0%, rgba(20, 20, 30, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
}

.compat-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compat-table td {
  padding: 1.6rem 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.compat-table tr:last-child td {
  border-bottom: none;
}

.compat-table td:first-child {
  width: 35%;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.compat-table td strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 600px) {
  .compat-table td {
    display: block;
    width: 100% !important;
    padding: 1.25rem 1.75rem;
    border-right: none !important;
  }

  .compat-table td:first-child {
    padding-bottom: 0.25rem;
    border-bottom: none;
  }

  .compat-table td:last-child {
    padding-top: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .compat-table tr:last-child td:last-child {
    border-bottom: none;
  }
}

/* Pricing / Download Card */
.pricing {
  padding: 3rem 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(20, 20, 32, 0.85) 0%, rgba(10, 10, 16, 0.5) 100%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 28px;
  padding: 3.5rem 3.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 240, 255, 0.08);
}

.pricing-card h3 {
  font-size: 1.75rem;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  font-weight: 800;
}

.price {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.pricing-card p {
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.downloads-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  color: #ffffff;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.2);
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(157, 78, 221, 0.35);
}

.btn-download-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-download-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Testimonials Marquee */
.testimonials-container {
  margin-top: 3rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}

.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.stars {
  color: #FFB800;
  font-size: 1.6rem;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(255, 184, 0, 0.5);
}

.rating-badge span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.testimonial-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  --duration: 45s;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-mobile-only {
  --duration: 65s;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee var(--duration) linear infinite;
  will-change: transform;
}

.track-offset {
  animation-delay: calc(var(--duration) / -2);
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: 360px;
  flex-shrink: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.25rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05);
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-primary);
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.user-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Early Bird Badge */
.early-bird-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1rem;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.85), rgba(255, 46, 147, 0.85));
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

.badge-hero {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--accent-cyan);
  backdrop-filter: blur(10px);
  box-shadow: none;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 5rem 2rem 2.5rem;
  margin-top: 6rem;
  background: rgba(2, 2, 4, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4.5rem;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 2, 4, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: #0E0E14;
  margin: 8% auto;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 90%;
  max-width: 650px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close {
  color: var(--text-muted);
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  background: transparent;
  border: none;
  line-height: 1;
}

.close:hover {
  color: white;
}

.modal-body h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-body p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Page Container (Privacy, Terms, etc.) */
.page-container {
  max-width: 850px;
  margin: 110px auto;
  padding: 4.5rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.page-header {
  margin-bottom: 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 3.2rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.page-content h2 {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.page-content p {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 1.08rem;
}

.page-content ul {
  color: var(--text-primary);
  margin-left: 2.25rem;
  margin-bottom: 1.75rem;
  line-height: 1.75;
  font-size: 1.08rem;
}

.page-content li {
  margin-bottom: 0.85rem;
}

.page-content strong {
  color: #fff;
  font-weight: 700;
}

/* Contact Form Container */
.contact-container {
  max-width: 650px;
  margin: 110px auto;
  padding: 4rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.contact-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.contact-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.2rem;
  padding-right: 3rem;
}

select.form-control option {
  background: #0E0E14;
  color: white;
}

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

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  font-size: 1.1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: color 0.2s;
  font-weight: 500;
}

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

.back-link svg {
  margin-right: 0.6rem;
  transition: transform 0.2s;
}

.back-link:hover svg {
  transform: translateX(-3px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 420px;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 1.75rem;
  z-index: 1000;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
  transform: translateY(110px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  pointer-events: none;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .hero {
    padding-top: 8rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 8vw, 3.8rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .feature-card {
    padding: 1.75rem;
  }

  .price {
    font-size: 3.2rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.25rem;
  }

  .page-container,
  .contact-container {
    padding: 2.5rem 1.5rem;
    margin: 90px 1rem 40px;
  }

  .page-header h1 {
    font-size: 2.4rem;
  }
}

.marquee-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .marquee-mobile-only {
    display: block;
    margin-top: 1rem;
  }

  .testimonial-card {
    width: 290px;
    padding: 1.5rem;
  }

  .testimonial-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .accordion-header {
    padding: 1.35rem 1.6rem;
    font-size: 1.05rem;
  }

  .accordion-content {
    padding: 0 1.6rem;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

/* Accessibility & Focus States */
:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* High Contrast Adjustments */
@media (forced-colors: active) {

  .btn-primary,
  .btn-secondary,
  .btn-download,
  .btn-download-secondary {
    border: 2px solid CanvasText;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }

  .blob {
    display: none;
  }
}