/* ==========================================================================
   GOOGLE FONTS (LOCALLY HOSTED/GDPR Compliant)
   ========================================================================== */
/* --- Bebas Neue (Regular 400) --- */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/bebas-neue-v16-latin-regular.woff2") format("woff2");
}
/* --- Poppins (Light 300) --- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../../assets/fonts/poppins-v24-latin-300.woff2") format("woff2");
}
/* --- Poppins (Regular 400) --- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/poppins-v24-latin-regular.woff2") format("woff2");
}
/* --- Poppins (Regular 400 Italic) --- */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/poppins-v24-latin-italic.woff2") format("woff2");
}
/* --- Poppins (Semi-Bold 600) --- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../assets/fonts/poppins-v24-latin-600.woff2") format("woff2");
}
/* --- Poppins (Bold 700) --- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../assets/fonts/poppins-v24-latin-700.woff2") format("woff2");
}
/* ==========================================================================
   APPLY THE FONTS TO YOUR ELEMENTS
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}

body,
p,
li,
a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

:root {
  --font-sans: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --accent: #C45C2A;
  --accent-light: rgba(131, 75, 255, 0.1);
  --dark: #323243;
  --text: #222222;
  --text-muted: #666666;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.05);
  --glass: rgba(55, 48, 71, 0.8);
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-accent: 0 10px 20px rgba(131, 75, 255, 0.2);
  --shadow-dark-bg: 0 10px 20px rgba(235, 83, 13, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.2px;
  color: var(--dark);
}

h2 {
  font-size: 4.3rem;
  line-height: 1em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Grid Background --- */
.grid-bg {
  background: #030407;
}

.mar-bot-4 {
  margin-bottom: 4rem;
}

.mar-bot-5 {
  margin-bottom: 5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 52px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 18px;
  letter-spacing: 0.5px;
  width: -moz-max-content;
  width: max-content;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark-bg);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #C45C2A;
  color: var(--white);
}

.btn-outline:hover {
  background-color: #C45C2A;
  color: var(--white);
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark-bg);
}

.btn-ghost {
  background-color: transparent;
  color: #fff;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
}
.btn-ghost svg {
  position: relative;
  top: 2px;
}

.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark-bg);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
}

.header.scrolled {
  padding: 16px 0;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header.hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .inner-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
  padding-right: 3rem;
}

.logo img {
  width: 150px;
  height: 100%;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 120px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn-primary {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .mobile-menu {
    background: black;
  }
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: #C45C2A;
}

/* --- Hero Section --- */
.hero {
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.hero-grid .disclaimer {
  color: var(--text-muted);
  margin-top: 0.7rem;
  font-size: 0.85rem;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: #0b1124;
  color: var(--white);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1em;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-title span {
  color: var(--accent);
}

.hero-text {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-btns .btn {
    width: 100%;
  }
}

.hero-image-container {
  position: relative;
  display: block;
}
.hero-image-container img {
  border-radius: 10px;
}
@media (max-width: 768px) {
  .hero-image-container {
    display: none;
  }
}

.hero-image {
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  filter: blur(5px);
}

.floating-card {
  position: absolute;
  top: 20%;
  left: -30px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* --- Feature Highlight --- */
.feature-highlight {
  padding: 120px 0;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
@media (max-width: 768px) {
  .feature-highlight {
    padding: 80px 0;
  }
}

.feature-highlight h2 {
  margin-bottom: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.feature-highlight h2 span {
  color: #C45C2A;
}

.feature-highlight p {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 1000px;
  margin: 0 auto 0.5rem auto;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 80rem;
  margin: 2rem auto 0 auto;
}
.stats-grid .stat-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: #05070d;
  position: relative;
  transition: background 0.3s;
  flex: 1 1 30%;
  position: relative;
  overflow: hidden;
}
.stats-grid .stat-card::before {
  content: "";
  position: absolute;
  inset: 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: 40px 40px;
}
.stats-grid .stat-card .stat-box-number {
  position: absolute;
  content: "";
  top: 10px;
  right: 15px;
  font-size: 60px;
  opacity: 0.1;
  pointer-events: 0;
  font-weight: 800;
}
.stats-grid .stat-card .stat-icon {
  width: 70px;
  height: 70px;
}
.stats-grid .stat-card .stat-icon img {
  max-width: 100%;
}
.stats-grid .stat-number {
  position: relative;
  z-index: 1;
  font-size: 3.25rem;
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}
.stats-grid .stat-desc {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.6em;
  padding: 0 1rem;
  font-weight: 500;
  font-family: var(--font-body);
}
@media (max-width: 768px) {
  .stats-grid .stat-card {
    flex: 1 1 100%;
  }
}

.two-col-section {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.two-col-section .sect-column {
  flex: 1 1 50%;
  max-width: 460px;
}

.highlight-dark {
  background: transparent;
  position: relative;
}
.highlight-dark .background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #101113;
}
.highlight-dark {
  /* GRID */
}
.highlight-dark .background::before {
  content: "";
  position: absolute;
  inset: 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: 40px 40px;
}
.highlight-dark {
  /* =========================
     CIRCLES
  ========================= */
}
.highlight-dark .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: floatPulse 12s ease-in-out infinite;
}
.highlight-dark {
  /* PURPLE */
}
.highlight-dark .circle.one {
  width: 520px;
  height: 520px;
  top: 5%;
  left: 10%;
  background: radial-gradient(circle, #5b97e6, transparent 70%);
  animation-delay: 0s;
}
.highlight-dark h2 {
  color: var(--white);
}
.highlight-dark .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 80rem;
  margin: 2rem auto 0 auto;
}
.highlight-dark .stats-grid .stat-card {
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(252, 71, 0, 0.6);
  border-radius: 8px;
  background: #ffffff;
  position: relative;
  transition: background 0.3s;
  flex: 1 1 30%;
  position: relative;
  overflow: hidden;
}
.highlight-dark .stats-grid .stat-card .small-title {
  color: var(--text-muted);
  text-align: left;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
  margin-top: 1.8rem;
  font-weight: 600;
}
.highlight-dark .stats-grid .stat-card::before {
  content: "";
  position: absolute;
  inset: 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: 40px 40px;
}
.highlight-dark .stats-grid .stat-card.negative-card {
  background-color: #C45C2A;
}
.highlight-dark .stats-grid .stat-card.negative-card .small-title,
.highlight-dark .stats-grid .stat-card.negative-card .stat-number,
.highlight-dark .stats-grid .stat-card.negative-card .stat-desc,
.highlight-dark .stats-grid .stat-card.negative-card .stat-box-number {
  color: #fff;
}
.highlight-dark .stats-grid .stat-number {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  text-align: left;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}
.highlight-dark .stats-grid .stat-desc {
  text-align: left;
  color: var(--dark);
  font-size: 1.2rem;
  line-height: 1.4em;
  padding: 0;
  font-weight: 300;
  font-family: var(--font-body);
}
@media (max-width: 768px) {
  .highlight-dark .stats-grid .stat-card {
    flex: 1 1 100%;
  }
}

/* --- Comparison Section --- */
.comparison {
  padding: 100px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.comparison-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
@media (max-width: 768px) {
  .comparison-image {
    display: none;
  }
}

.comparison-content h2 {
  font-size: 4rem;
  margin-bottom: 48px;
  color: var(--white);
  letter-spacing: 1px;
}
.comparison-content h2 span {
  color: var(--accent);
}

.comparison-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.comparison-light {
  background-color: var(--white);
  opacity: 1;
}
.comparison-light .comparison-content h2 {
  font-size: 4rem;
  margin-bottom: 30px;
  color: #222;
  letter-spacing: 1px;
}
.comparison-light .comparison-content h2 span {
  color: var(--accent);
}
.comparison-light p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6em;
}
.comparison-light p.strong {
  font-weight: 600;
  font-size: 18px;
}
.comparison-light .comparison-image {
  box-shadow: none;
}

.list-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.list-title.usually {
  color: var(--white);
  opacity: 0.5;
}

.list-title.aber {
  color: var(--accent);
}

.list-title.aber2 {
  color: var(--white);
  text-transform: initial;
  font-weight: 400;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--white);
}
.list-item span {
  font-size: 16px;
}
.list-item.list-muted {
  color: var(--white);
  opacity: 0.8;
}

.list-item svg {
  flex-shrink: 0;
  margin-top: 5px;
}

/* --- Video Section --- */
.video-section {
  padding: 100px 0;
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  position: relative;
}

.video-section .grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.video-content {
  position: relative;
  z-index: 1;
}

.video-section h2 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 24px;
}

.video-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
}

.video-placeholder {
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  background: rgba(255, 255, 255, 0.08);
}

.play-btn {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.1);
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background-color: var(--white);
}
.cta-section .btn-ghost {
  color: #101113;
  border: 1px solid var(--accent);
}
.cta-section .cta-sect-image {
  margin-top: 3rem;
}

.cta-section h2 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.cta-section h2 span {
  color: var(--accent);
}

.cta-section p.subtitle {
  margin-bottom: 1rem;
  color: var(--dark);
  margin-bottom: 3rem;
}

.cta-section .disclaimer {
  color: var(--text-muted);
  margin-top: 0.7rem;
  font-size: 0.85rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .cta-btns .btn {
    width: 100%;
  }
}

.cta-slogan {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
}

/* --- Pricing Section --- */
.pricing {
  padding: 100px 0;
  background-color: var(--white);
}

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

.pricing-header .badge {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.pricing-header h2 {
  font-size: 3rempx;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pricing-header h2 span {
  color: var(--white);
}

p.subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  background: rgba(19, 22, 32, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(131, 75, 255, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--accent);
  position: relative;
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 1.5rem;
  font-family: var(--font-sans);
  letter-spacing: 2px;
}

.pricing-card p {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.pricing-card hr {
  border: 0;
  border-bottom: 1px solid rgb(114, 114, 114);
  margin-bottom: 1rem;
}

.pricing-card ul {
  margin-bottom: 2rem;
}
.pricing-card ul li {
  font-size: 1rem;
  color: var(--white);
  flex-grow: 1;
}
.pricing-card ul li svg {
  position: relative;
  top: 2px;
  margin-right: 0.5rem;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 32px;
  color: var(--white);
}

.price span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- Final CTA --- */
.final-cta {
  padding: 100px 0;
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta .grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
}

.final-cta p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 48px;
}

.final-cta .btn-primary {
  background-color: var(--white);
  color: var(--accent);
  padding: 18px 40px;
}

.about-us-section {
  padding: 100px 0;
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-us-section .grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.about-us-section .about-us-section-content {
  position: relative;
  z-index: 1;
}
.about-us-section h2 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
}
.about-us-section p {
  text-align: left;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 100%;
  margin: 0 auto 5px;
}
.about-us-section .btn-primary {
  background-color: var(--white);
  color: var(--accent);
  padding: 18px 40px;
}
.about-us-section .micro-copy {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.micro-copy {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Footer --- */
.footer {
  padding: 80px 0 40px;
  background-color: #101113;
  color: var(--white);
  text-align: center;
  z-index: 1;
  position: relative;
}

.footer-logo {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 48px;
  max-width: 250px;
  margin: 0 auto 4rem auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.4);
}

.social-links a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
  .hero-grid {
    gap: 40px;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-card:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn-outline {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-image-container {
    margin-top: 40px;
  }
  .feature-highlight h2 {
    font-size: 50px;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .comparison-lists {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card:last-child {
    grid-column: span 1;
  }
  .final-cta h2 {
    font-size: 40px;
  }
}
/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* =========================
   BACKGROUND
========================= */
.background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #101113;
}

/* GRID */
.background::before {
  content: "";
  position: absolute;
  inset: 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: 40px 40px;
}

/* =========================
   CIRCLES
========================= */
.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: floatPulse 12s ease-in-out infinite;
}

/* PURPLE */
.circle.one {
  width: 520px;
  height: 520px;
  top: 5%;
  left: 10%;
  background: radial-gradient(circle, #5b97e6, transparent 70%);
  animation-delay: 0s;
}

/* TEAL */
.circle.two {
  width: 520px;
  height: 520px;
  bottom: 5%;
  right: 10%;
  background: radial-gradient(circle, #7da2d2, transparent 80%);
  animation-delay: 3s;
}

/* =========================
   ANIMATION (premium)
========================= */
@keyframes floatPulse {
  0% {
    transform: scale(1) translate(0px, 0px);
    opacity: 0.3;
  }
  25% {
    transform: scale(1.04) translate(8px, -10px);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.08) translate(0px, -15px);
    opacity: 0.5;
  }
  75% {
    transform: scale(1.04) translate(-8px, -10px);
    opacity: 0.4;
  }
  100% {
    transform: scale(1) translate(0px, 0px);
    opacity: 0.3;
  }
}
.contact-form {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

form .ff-btn-submit {
  font-family: "Poppins", sans-serif !important;
  color: #fff !important;
  text-align: center !important;
  font-size: 17px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  background-color: var(--accent) !important;
  border: 1px solid var(--accent) !important;
  border-radius: 6px !important;
  padding: 18px 30px 14px 30px !important;
  margin: 10px auto !important;
  width: 100% !important;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
  line-height: 1em !important;
}
form .ff-btn-submit:hover {
  color: var(--accent) !important;
  background-color: #fff !important;
}