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

/* CSS Variables */
:root {
  --font-title: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette */
  --bg-main: #0b0b0f;
  --bg-darker: #04080a;
  --text-primary: #ffffff;
  --text-secondary: #b4d5da;
  --text-muted: #83a5aa;

  /* Gradients */
  --glow-cyan: #46ffc4;
  --glow-blue: #15d5e3;
  --gradient-accent: radial-gradient(51.68% 146.29% at 65.07% -28.85%, #46ffc4 26.68%, #15d5e3 100%);
  --gradient-accent-hover: radial-gradient(67.03% 100% at 49.76% 99.23%, #ff8b2e 0, #dbd646 36.72%, #00c3b3 100%);
  --gradient-card: radial-gradient(61.37% 128.95% at 16.83% 106.91%, #0f4552 0%, #0a2a32 28.69%, #0c1921 100%);
  --gradient-brand-card: radial-gradient(114.85% 105.23% at 87.17% -18.95%, rgba(255, 112, 23, 0.29) 0, rgba(9, 39, 53, 0) 69.85%), radial-gradient(84.91% 94.78% at 69.5% 94.35%, #013a48 0, #0d202d 82.26%);
  --gradient-brand-card-hover: radial-gradient(114.85% 105.23% at 87.17% -18.95%, rgba(255, 112, 23, 0.4) 0, rgba(9, 39, 53, 0) 69.85%), radial-gradient(84.91% 94.78% at 69.5% 94.35%, #013a48 0, #0d202d 82.26%);
  --border-card: rgba(24, 116, 139, 0.5);
  --border-brand: rgba(255, 157, 77, 0.39);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes gradientBg {

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

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

@keyframes from-bottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes from-top {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes imageSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contentSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes drawCircle {
  0% {
    stroke-dashoffset: 320;
  }

  30% {
    stroke-dashoffset: 0;
  }

  80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  85% {
    stroke-dashoffset: 0;
    opacity: 0;
  }

  90% {
    stroke-dashoffset: 320;
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 320;
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

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

/* Animation utilities */
[data-anim] {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-anim].visible {
  opacity: 1;
  transform: none;
}

[data-anim="from-bottom"] {
  transform: translateY(20px);
}

[data-anim="from-top"] {
  transform: translateY(-20px);
}

[data-anim="fade-in"] {
  transform: none;
}

[data-anim-delay="1"] {
  transition-delay: 0.1s;
}

[data-anim-delay="2"] {
  transition-delay: 0.2s;
}

[data-anim-delay="3"] {
  transition-delay: 0.3s;
}

[data-anim-delay="4"] {
  transition-delay: 0.4s;
}

[data-anim-delay="5"] {
  transition-delay: 0.5s;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.8rem;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 769px) {
  header {
    height: 5rem;
  }
}

.blur-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.blur-1 {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  mask-image: linear-gradient(to bottom, #000 10%, rgba(0, 0, 0, 0) 30%);
  -webkit-mask-image: linear-gradient(to bottom, #000 10%, rgba(0, 0, 0, 0) 30%);
}

.blur-2 {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  mask-image: linear-gradient(to bottom, #000 25%, rgba(0, 0, 0, 0) 50%);
  -webkit-mask-image: linear-gradient(to bottom, #000 25%, rgba(0, 0, 0, 0) 50%);
}

.blur-3 {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask-image: linear-gradient(to bottom, #000 45%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, rgba(0, 0, 0, 0) 70%);
}

.blur-4 {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(to bottom, #000 65%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask-image: linear-gradient(to bottom, #000 65%, rgba(0, 0, 0, 0) 90%);
}

.blur-5 {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  mask-image: linear-gradient(to bottom, #000 80%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, rgba(0, 0, 0, 0) 100%);
}

.header-gradient {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 10, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {

  .blur-1,
  .blur-2,
  .blur-3,
  .blur-4 {
    display: none;
  }

  .blur-5 {
    backdrop-filter: blur(calc(25px * var(--scroll-blur, 0))) !important;
    -webkit-backdrop-filter: blur(calc(25px * var(--scroll-blur, 0))) !important;
  }

  .header-gradient {
    background: rgba(4, 8, 10, calc(0.3 * var(--scroll-blur, 0))) !important;
    border-color: rgba(255, 255, 255, calc(0.06 * var(--scroll-blur, 0))) !important;
  }
}

@media (min-width: 769px) {
  .blur-5 {
    backdrop-filter: blur(calc(35px * var(--scroll-blur, 0))) !important;
    -webkit-backdrop-filter: blur(calc(35px * var(--scroll-blur, 0))) !important;
  }

  .header-gradient {
    background: rgba(4, 8, 10, calc(0.4 * var(--scroll-blur, 0))) !important;
  }
}

.header-container {
  width: 100%;
  max-width: 124rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  height: 100%;
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0 4.5rem;
  }
}

.logo-btn {
  display: block;
  width: 11rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 769px) {
  .logo-btn {
    width: 14rem;
  }
}

.logo-btn img {
  width: 100%;
  display: block;
}

.logo-btn:hover {
  opacity: 0.9;
}

.logo-btn:active {
  transform: scale(0.97);
}

header nav {
  display: none;
  flex: 1;
  justify-content: center;
}

@media (min-width: 769px) {
  header nav {
    display: flex;
  }
}

header nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.zg-nav-link {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1.8rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  letter-spacing: 0.3px;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}

.zg-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #4fd8f5;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.zg-nav-link:hover {
  color: #4fd8f5;
}

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

.zg-contact-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(51.68% 146.29% at 65.07% -28.85%, #46ffc4 26.68%, #15d5e3 100%);
  box-shadow: 0 -5px 3.5px 0 rgba(132, 202, 255, 0.18) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 0.93) inset;
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

@media (min-width: 769px) {
  .zg-contact-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin-left: auto;
  }
}

.zg-contact-btn span {
  position: relative;
  z-index: 10;
}

.zg-contact-btn .hover-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(67.03% 100% at 49.76% 99.23%, #ff8b2e 0, #dbd646 36.72%, #00c3b3 100%);
  box-shadow: 0 2px 10.1px 0 rgba(62, 250, 184, 0.5), 0 -3px 2.5px 0 rgba(255, 228, 132, 0.58) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 0.93) inset;
  z-index: 1;
}

.zg-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 -5px 3.5px 0 rgba(132, 202, 255, 0.25) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 1) inset, 0 8px 24px rgba(70, 255, 196, 0.2);
}

.zg-contact-btn:hover .hover-overlay {
  opacity: 1;
}

.zg-ham {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
  position: relative;
}

@media (min-width: 769px) {
  .zg-ham {
    display: none;
  }
}

.zg-ham span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.zg-ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.zg-ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.zg-ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.zg-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: radial-gradient(106.93% 100.62% at 50.09% 100%, rgba(21, 41, 46, 0.81) 0, rgba(8, 14, 16, 0.81) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.zg-mobile-menu.open {
  transform: translateX(0);
}

.zg-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 4.8rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zg-mobile-menu-header span {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

.zg-mobile-nav-scroll {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.zg-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.4rem 1.25rem 4rem;
}

.zg-mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.6rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.2px;
}

.zg-mob-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #4fd8f5;
}

.zg-mob-link-arrow {
  color: #4fd8f5;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zg-mob-link:hover .zg-mob-link-arrow {
  transform: translateX(5px);
}

.zg-mob-contact {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 10rem;
  background: rgba(79, 216, 245, 0.08);
  border: 2px solid #4fd8f5;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.zg-mob-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(79, 216, 245, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zg-mob-contact:hover {
  background: rgba(79, 216, 245, 0.12);
  border-color: #7ff3ff;
  box-shadow: 0 0 20px rgba(79, 216, 245, 0.28);
  transform: translateY(-2px);
}

.zg-mob-contact:hover::before {
  opacity: 1;
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-main);
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 80% at 50% 0, rgba(27, 87, 88, 0.58) 0, rgba(13, 11, 16, 0) 80.49%), #0b0b0f;
  background-size: 125% 125%;
  animation: gradientBg 20s ease infinite;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
  background-size: 214.4px 169.6px;
  background-position: 50% 50%;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.hero-img {
  position: absolute;
  left: -4rem;
  top: -5rem;
  pointer-events: none;
  display: flex;
  z-index: 1;
  width: 46vw;
  max-width: 82rem;
}

.hero-img img {
  width: 100%;
  height: auto;
}

.container-hero {
  max-width: 124rem;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 841px) {
  .container-hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 4rem 5rem;
  }
}

.hero-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  gap: 1.2rem;
}

@media (min-width: 841px) {
  .hero-content-wrap {
    min-height: 460px;
  }
}

.hero-h1 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  background: linear-gradient(147deg, rgba(255, 255, 255, 0.95) 10%, rgba(200, 230, 227, 0.9) 90%), #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 601px) {
  .hero-h1 {
    font-size: 3.2rem;
  }
}

@media (min-width: 1024px) {
  .hero-h1 {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.hero-stats-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 769px) {
  .hero-stats-grid {
    display: grid;
  }
}

.hero-stat-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 1.2rem 1.5rem;
  backdrop-filter: blur(4px);
  background: rgba(15, 69, 82, 0.4);
  transition: all 0.3s ease;
}

.hero-stat-card:hover {
  border-color: rgba(21, 213, 227, 0.5);
  transform: translateY(-2px);
}

.hero-stat-card h3 {
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-form-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-card-container {
  width: 100%;
  border-radius: 1.25rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  background: radial-gradient(135% 100% at 50% 0%, rgba(70, 255, 196, 0.08) 0%, rgba(21, 213, 227, 0.04) 25%, rgba(15, 69, 82, 0.3) 100%);
  border: 1px solid rgba(70, 255, 196, 0.25);
  box-shadow: 0 8px 32px 0 rgba(70, 255, 196, 0.1), inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 769px) {
  .contact-card-container {
    padding: 2.5rem;
  }
}

.form-glow-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(70, 255, 196, 0.1) 0%, transparent 50%);
}

/* Tablet responsiveness */
@media (max-width: 840px) {
  .hero-section {
    padding: 4rem 0;
  }

  .container-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }

  .hero-img {
    width: 28rem;
    left: 50%;
    top: -3rem;
    transform: translateX(-50%);
  }
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .hero-section {
    padding-top: 9rem;
    padding-bottom: 2.5rem;
  }

  .container-hero {
    padding: 0 1.2rem;
    gap: 1.5rem;
  }

  .hero-img {
    width: 22rem;
    left: 45%;
    top: -2rem;
    transform: translateX(-15%);
  }

  .hero-h1 {
    font-size: 1.85rem;
  }
}

/* ── CONTACT FORM ── */
.contact-form-title-wrap {
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.helpdesk-gif {
  width: 4rem;
  object-contain: true;
  filter: drop-shadow(0 0 10px rgba(70, 255, 196, 0.3));
}

.contact-form-h2 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 601px) {
  .contact-form-h2 {
    font-size: 2.2rem;
  }
}

.free-badge-wrapper {
  position: relative;
  display: inline-block;
  color: var(--glow-cyan);
  margin: 0 0.4rem;
  padding: 0 0.5rem;
  font-weight: 800;
}

.free-badge-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 125%;
  height: 145%;
  pointer-events: none;
  overflow: visible;
}

.animated-circle-path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: drawCircle 4s ease-in-out infinite;
}

.success-message-banner {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(70, 255, 196, 0.15);
  border: 1px solid rgba(70, 255, 196, 0.4);
  border-radius: 0.5rem;
}

.success-message-banner p {
  color: var(--glow-cyan);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form-element {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-label span {
  color: var(--glow-cyan);
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.6rem;
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input {
  height: 2.75rem;
}

@media (min-width: 769px) {
  .form-input {
    height: 3rem;
  }
}

.form-textarea {
  resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--glow-cyan);
  background: rgba(255, 255, 255, 0.12);
}

.form-error-msg {
  color: #ff5e7e;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.form-submit-btn {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  box-shadow: 0 -5px 3.5px 0 rgba(132, 202, 255, 0.18) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 0.93) inset, 0 0 25px rgba(70, 255, 196, 0.25);
  border: none;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0b0b0f;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

@media (min-width: 769px) {
  .form-submit-btn {
    height: 3.5rem;
    font-size: 1.05rem;
    margin-top: 1.5rem;
  }
}

.form-submit-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 20px rgba(70, 255, 196, 0.4), 0 -5px 3.5px 0 rgba(132, 202, 255, 0.25) inset;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-submit-btn span {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent-hover);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 9999px;
}

.form-submit-btn:hover::before {
  opacity: 1;
}

.submit-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px border-transparent;
  border-top-color: #0b0b0f;
  border-right-color: #0b0b0f;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── FEATURES TABS ── */
.features-tab-section {
  position: relative;
  background: linear-gradient(to bottom, #000, #0a0e14, #000);
  padding: 4rem 0;
}

.container-tabs {
  max-width: 77rem;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

@media (min-width: 601px) {
  .container-tabs {
    padding: 0 2rem;
  }
}

.tabs-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
  scroll-behavior: smooth;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

@media (min-width: 841px) {
  .tabs-nav {
    justify-content: center;
    margin-bottom: 3.5rem;
  }
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  background: rgba(30, 41, 59, 0.7);
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 769px) {
  .tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    gap: 0.65rem;
  }
}

.tab-btn svg {
  display: none;
}

@media (min-width: 601px) {
  .tab-btn svg {
    display: block;
    width: 1rem;
    height: 1rem;
  }
}

.tab-btn:hover {
  background: rgba(30, 41, 59, 0.95);
  color: #fff;
}

.tab-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.tab-content-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  animation: contentSlideIn 0.6s ease-out forwards;
}

@media (min-width: 1024px) {
  .tab-content-panel {
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
  }
}

.tab-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .tab-image-wrapper {
    aspect-ratio: auto;
    height: 100%;
  }
}

.tab-img-blur {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(21, 213, 227, 0.3), rgba(6, 182, 212, 0.2));
  border-radius: 1rem;
  filter: blur(24px);
  animation: pulse 3s infinite;
}

.tab-image-wrapper img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: block;
}

.tab-text-card {
  width: 100%;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gradient-card);
  border: 1px solid var(--border-card);
}

@media (min-width: 769px) {
  .tab-text-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .tab-text-card {
    padding: 3rem;
  }
}

.tab-text-card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

@media (min-width: 769px) {
  .tab-text-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.tab-text-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

@media (min-width: 769px) {
  .tab-text-card p {
    font-size: 1.1rem;
  }
}

/* ── STAGES PROCESS ── */
.stages-section {
  position: relative;
  background-color: var(--bg-main);
  padding: 4rem 0;
  overflow: visible;
}

.stages-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(91.68% 48.4% at 29.55% 73.5%, rgba(43, 255, 191, 0.1) 0%, rgba(13, 11, 16, 0) 46.4%);
  pointer-events: none;
}

.stages-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 8rem 6.3rem;
  background-position: 50% 50%;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.stages-container {
  max-width: 82rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 10;
}

.stages-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .stages-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.stages-sticky-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .stages-sticky-left {
    position: sticky;
    top: 7rem;
    align-self: start;
  }
}

.stages-sticky-left h2 {
  font-family: var(--font-title);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-align: center;
}

@media (min-width: 769px) {
  .stages-sticky-left h2 {
    font-size: 2.4rem;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .stages-sticky-left h2 {
    font-size: 3rem;
  }
}

.stages-sticky-left p {
  display: none;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (min-width: 769px) {
  .stages-sticky-left p {
    display: block;
  }
}

@media (min-width: 1024px) {
  .stages-sticky-left p {
    font-size: 1.1rem;
  }
}

.stages-cta-wrap {
  display: flex;
  justify-content: center;
}

@media (min-width: 769px) {
  .stages-cta-wrap {
    justify-content: flex-start;
  }
}

.stages-cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  box-shadow: 0 -5px 3.5px 0 rgba(132, 202, 255, 0.18) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 0.93) inset;
  border: none;
  border-radius: 9999px;
  padding: 0.8rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b0b0f;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stages-cta-btn span {
  position: relative;
  z-index: 2;
}

.stages-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent-hover);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 9999px;
}

.stages-cta-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(70, 255, 196, 0.3), 0 -5px 3.5px 0 rgba(132, 202, 255, 0.25) inset;
}

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

.stages-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 769px) {
  .stages-cards-list {
    gap: 1.25rem;
  }
}

.stage-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1.6rem;
  background: var(--gradient-card);
  border: 1px solid var(--border-card);
  transition: all 0.3s ease;
}

@media (min-width: 601px) {
  .stage-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .stage-card {
    padding: 3rem;
  }
}

.stage-card:hover {
  box-shadow: 0 10px 30px rgba(21, 213, 227, 0.12);
  border-color: rgba(21, 213, 227, 0.4);
}

.stage-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(21, 213, 227, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 601px) {
  .stage-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
  }
}

.stage-icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--glow-blue);
}

@media (min-width: 601px) {
  .stage-icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.stage-card-content h3 {
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

@media (min-width: 601px) {
  .stage-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}

.stage-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── BRAND VALUES / BUILT FOR OPERATORS ── */
.brand-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-main);
  padding: 4.5rem 0;
}

@media (min-width: 1024px) {
  .brand-section {
    padding: 7.5rem 0;
  }
}

.brand-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="134.4" height="106"%3E%3Crect width="134.4" height="106" fill="%23ffffff" opacity="0"/%3E%3Cpath d="M 0 0 L 134.4 0 M 0 53 L 134.4 53 M 0 106 L 134.4 106" stroke="%23ffffff" stroke-width="1" opacity="0.1"/%3E%3Cpath d="M 0 0 L 0 106 M 67.2 0 L 67.2 106 M 134.4 0 L 134.4 106" stroke="%23ffffff" stroke-width="1" opacity="0.1"/%3E%3C/svg%3E');
  background-size: 134.4px 106px;
  background-position: 50% 50%;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.brand-container {
  width: 100%;
  max-width: 77rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 10;
}

.brand-title-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 769px) {
  .brand-title-wrap {
    margin-bottom: 4rem;
  }
}

.brand-title-wrap h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(147deg, rgba(255, 255, 255, 0.33) 10%, rgba(61, 75, 71, 0.33) 90%), #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 50rem;
  margin: 0 auto 0.75rem;
}

@media (min-width: 601px) {
  .brand-title-wrap h2 {
    font-size: 2.8rem;
  }
}

@media (min-width: 1024px) {
  .brand-title-wrap h2 {
    font-size: 3.5rem;
  }
}

.brand-title-wrap p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 400;
  max-width: 40rem;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .brand-title-wrap p {
    font-size: 1.1rem;
  }
}

.brand-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 70rem;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .brand-values-grid {
    gap: 1rem;
    padding: 0 1rem;
  }
}

.brand-card {
  width: calc(50% - 0.25rem);
  border-radius: clamp(1rem, 2vw, 2.4rem);
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1rem, 2vw, 1.8rem);
  background: var(--gradient-brand-card);
  border: 1px solid var(--border-brand);
  box-shadow: 0 -2px 4.7px 0 rgba(121, 219, 255, 0.29) inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(90px, 20vw, 160px);
  transition: background 0.3s ease;
}

.brand-card:hover {
  background: var(--gradient-brand-card-hover);
}

@media (min-width: 769px) {
  .brand-card {
    width: calc(33.333% - 0.67rem);
    flex-basis: calc(33.333% - 0.67rem);
  }

  .brand-card:nth-child(4),
  .brand-card:nth-child(5) {
    width: calc(33.333% - 0.67rem);
    flex-basis: calc(33.333% - 0.67rem);
  }
}

@media (min-width: 1024px) {
  .brand-card {
    width: calc(33.333% - 0.8rem);
    flex-basis: calc(33.333% - 0.8rem);
  }

  .brand-card:nth-child(4),
  .brand-card:nth-child(5) {
    width: calc(33.333% - 0.8rem);
    flex-basis: calc(33.333% - 0.8rem);
  }
}

.brand-card-count {
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(1.35rem, 3.5vw, 2.35rem);
  margin-bottom: clamp(0.4rem, 1.5vw, 0.75rem);
}

.brand-card-label {
  color: var(--text-secondary);
  line-height: 1.4;
  font-size: clamp(0.8rem, 2.1vw, 1rem);
  font-weight: 400;
}

/* ── OPPORTUNITIES ── */
.opportunities-section {
  position: relative;
  background-color: var(--bg-main);
  padding: 3rem 0;
  overflow: visible;
}

.opportunities-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

/* Base style: Mobile (<= 480px) */
.opportunities-block {
  padding: 10rem 1.6rem 1.6rem;
  border-radius: 2.4rem;
  border: 1px solid rgba(109, 185, 251, 0.2);
  background: radial-gradient(45.98% 116.69% at 18.63% 99.93%, rgba(243, 170, 74, 0.6) 0, rgba(245, 94, 0, 0.24) 32.64%, rgba(9, 34, 41, 0) 100%), radial-gradient(187.98% 100% at 50% 100%, #0a141a 42.07%, #07232a 83.8%, #0b3742 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: visible;
}

.opportunities-img {
  width: 14rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -5rem;
  z-index: 1;
}

.opportunities-img img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity 400ms ease;
}

.opportunities-content {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.2rem;
}

.opportunities-h2 {
  font-family: var(--font-title);
  font-size: clamp(16px, 1.8rem, 1.8rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1.2rem 0;
  background: linear-gradient(147deg, rgba(255, 255, 255, 0.33) 10%, rgba(61, 75, 71, 0.33) 90%), #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-blend-mode: darken, normal;
  text-align: center;
  max-width: 100%;
}

.opportunities-subtitle {
  color: var(--text-secondary);
  font-size: clamp(12px, 1rem, 1rem);
  line-height: 1.44;
  margin: 0 0 1.4rem 0;
  text-align: center;
}

.opportunities-btn {
  position: relative;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.6rem;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  border-radius: 9999px;
  color: #000;
  white-space: nowrap;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
  background: radial-gradient(51.68% 146.29% at 65.07% -28.85%, #46ffc4 26.68%, #15d5e3 100%);
  box-shadow: 0 -5px 3.5px 0 rgba(132, 202, 255, 0.18) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 0.93) inset;
}

.opportunities-btn span {
  position: relative;
  z-index: 10;
}

.opportunities-btn .hover-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(67.03% 100% at 49.76% 99.23%, #ff8b2e 0, #dbd646 36.72%, #00c3b3 100%);
  box-shadow: 0 2px 10.1px 0 rgba(62, 250, 184, 0.5), 0 -3px 2.5px 0 rgba(255, 228, 132, 0.58) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 0.93) inset;
  z-index: 1;
}

.opportunities-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 -5px 3.5px 0 rgba(132, 202, 255, 0.25) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 1) inset, 0 8px 24px rgba(70, 255, 196, 0.2);
}

.opportunities-btn:hover .hover-overlay {
  opacity: 1;
}

/* Medium Mobile (481px to 600px) */
@media (min-width: 481px) {
  .opportunities-block {
    padding: 12rem 0 2rem;
    border-radius: 2.4rem;
  }

  .opportunities-img {
    width: 20rem;
    top: -6rem;
  }

  .opportunities-content {
    padding: 1.6rem 1rem;
  }

  .opportunities-h2 {
    font-size: clamp(18px, 2.2rem, 2.2rem);
  }

  .opportunities-subtitle {
    font-size: clamp(13px, 1.1rem, 1.1rem);
  }
}

/* Tablet (601px to 840px) */
@media (min-width: 601px) {
  .opportunities-block {
    padding: 2rem 1.5rem;
    min-height: auto;
    flex-direction: row;
    justify-content: flex-end;
  }

  .opportunities-img {
    width: 30rem;
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
  }

  .opportunities-content {
    max-width: 26rem;
    text-align: left;
    padding: 0;
  }

  .opportunities-h2 {
    font-size: clamp(20px, 2.8rem, 2.8rem);
    text-align: left;
  }

  .opportunities-subtitle {
    font-size: clamp(13px, 1.2rem, 1.2rem);
    text-align: left;
    max-width: 85%;
  }

  .opportunities-btn {
    width: auto;
    height: 4rem;
    padding: 0.7rem 2rem;
    font-size: clamp(11px, 1.2rem, 1.2rem);
  }
}

/* Desktop (>= 841px) */
@media (min-width: 841px) {
  .opportunities-block {
    min-height: 30rem;
    padding: 2rem 3rem 2rem 1rem;
    border-radius: 3.2rem;
  }

  .opportunities-img {
    width: 40rem;
    left: -2%;
  }

  .opportunities-content {
    max-width: 30rem;
  }

  .opportunities-h2 {
    max-width: 66%;
    margin-bottom: 1.2rem;
  }

  .opportunities-subtitle {
    margin-bottom: 3.2rem;
    max-width: 100%;
  }
}

/* ── FAQ ── */
.faq-section {
  position: relative;
  background-color: #000000;
  padding: 4rem 0;
}

.faq-gradient {
  position: absolute;
  inset: 0;
  background: bg-gradient-to-b from-slate-900/20 via-black to-black;
  pointer-events: none;
}

.faq-container {
  width: 100%;
  max-width: 57rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

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

@media (min-width: 769px) {
  .faq-header {
    margin-bottom: 5rem;
  }
}

.faq-header h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

@media (min-width: 601px) {
  .faq-header h2 {
    font-size: 2.8rem;
  }
}

@media (min-width: 1024px) {
  .faq-header h2 {
    font-size: 3.5rem;
  }
}

.faq-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (min-width: 769px) {
  .faq-header p {
    font-size: 1.1rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 769px) {
  .faq-item {
    padding: 2rem 0;
  }
}

.faq-q-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.faq-question {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

@media (min-width: 769px) {
  .faq-question {
    font-size: 1.25rem;
  }
}

.faq-toggle-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item:hover .faq-toggle-btn {
  color: #fff;
}

.faq-item.open .faq-toggle-btn {
  transform: rotate(45deg);
}

.faq-answer-wrapper {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-item.open .faq-answer-wrapper {
  max-height: 1000px;
  opacity: 1;
  margin-top: 1.25rem;
}

.faq-answer {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 300;
}

@media (min-width: 769px) {
  .faq-answer {
    font-size: 1.05rem;
  }
}

/* ── FOOTER ── */
footer {
  position: relative;
  background-color: var(--bg-main);
  border-t: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0;
}

.footer-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(91.68% 48.4% at 29.55% 100%, rgba(43, 255, 191, 0.08) 0%, rgba(13, 11, 16, 0) 46.4%);
}

.footer-container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 66rem;
  margin: 0 auto;
  text-align: center;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 500;
}

@media (min-width: 769px) {
  .footer-disclaimer {
    font-size: 1rem;
  }
}

.footer-disclaimer span {
  color: var(--glow-cyan);
  font-weight: 600;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
  margin: 1.2rem 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

@media (min-width: 769px) {
  .footer-copyright {
    font-size: 0.875rem;
  }
}

/* ── MOBILE BOTTOM BANNER ── */
.mobile-bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: radial-gradient(50% 100% at 50% 0%, rgb(16, 31, 29) 0%, rgb(11, 15, 19) 70%, rgb(11, 11, 15) 100%);
  border-top: 1px solid rgba(70, 255, 196, 0.2);
  padding: 0.85rem 1rem;
  box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.85);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

@media (min-width: 769px) {
  .mobile-bottom-banner {
    display: none !important;
  }
}

.mobile-bottom-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.banner-glow-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #46ffc4, transparent);
  opacity: 0.65;
  pointer-events: none;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.banner-icon-wrap {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 481px) {
  .banner-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.banner-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(70, 255, 196, 0.35));
  transform: rotate(-90deg);
}

.banner-text h3 {
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.25;
  margin: 0;
  white-space: nowrap;
}

@media (min-width: 481px) {
  .banner-text h3 {
    font-size: 0.875rem;
  }
}

.free-text-highlight {
  color: #46ffc4;
  font-weight: 800;
  position: relative;
  padding: 0 0.25rem;
}

.free-pulse-underline {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(239, 68, 68, 0.85);
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.banner-text p {
  color: #9ca3af;
  font-size: 0.625rem;
  font-weight: 500;
  margin: 0.125rem 0 0 0;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 481px) {
  .banner-text p {
    font-size: 0.75rem;
  }
}

.banner-action {
  flex-shrink: 0;
}

.animate-attract-shake {
  animation: attractShake 0.6s ease-in-out infinite;
}

.banner-btn {
  position: relative;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 2.25rem;
  padding: 0 1rem;
  font-size: 0.75rem;
  border-radius: 9999px;
  color: #000;
  border: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  background: radial-gradient(51.68% 146.29% at 65.07% -28.85%, #46ffc4 26.68%, #15d5e3 100%);
  box-shadow: 0 -3px 2px 0 rgba(132, 202, 255, 0.15) inset, 0 1px 1px 0 rgba(255, 244, 230, 0.8) inset;
}

.banner-btn span {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.banner-btn .hover-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 9999px;
  background: radial-gradient(67.03% 100% at 49.76% 99.23%, #ff8b2e 0, #dbd646 36.72%, #00c3b3 100%);
  box-shadow: 0 2px 10px 0 rgba(62, 250, 184, 0.4), 0 -2px 2px 0 rgba(255, 228, 132, 0.5) inset;
  z-index: 1;
}

.banner-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(70, 255, 196, 0.4);
}

.banner-btn:hover .hover-overlay {
  opacity: 1;
}

.banner-btn:hover .arrow-icon {
  transform: translateX(3px);
}

.arrow-icon {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.3s ease;
}

@keyframes attractShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-2.5px);
  }

  75% {
    transform: translateX(2.5px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 360px) {
  .mobile-bottom-banner {
    padding: 0.75rem 0.6rem;
    gap: 0.5rem;
  }

  .banner-content {
    gap: 0.4rem;
  }

  .banner-icon-wrap {
    width: 1.85rem;
    height: 1.85rem;
  }

  .banner-text h3 {
    font-size: 0.65rem;
    gap: 0.25rem;
  }

  .banner-text p {
    font-size: 0.55rem;
  }

  .banner-btn {
    height: 2rem;
    padding: 0 0.65rem;
    font-size: 0.7rem;
  }
}

/* ── THANK YOU PAGE ── */
.thankyou-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 100vh;
  font-family: var(--font-body), sans-serif;
}

.modal-window {
  position: relative;
  z-index: 1010;
  display: flex;
  width: 100%;
  max-width: 40rem;
  flex-direction: column;
  align-items: center;
}

.modal-close {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-close:hover {
  opacity: 0.7;
}

.modal-close.desktop {
  display: none;
}

@media (min-width: 1024px) {
  .modal-close.desktop {
    display: flex;
    position: absolute;
    right: -3rem;
    top: -3rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.modal-close.mobile {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 1024px) {
  .modal-close.mobile {
    display: none;
  }
}

.modal-window-content {
  width: 100%;
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  background: radial-gradient(107.85% 100.05% at 50% -0.03%, rgba(48, 196, 255, 0.18) 0, rgba(75, 204, 255, 0) 52.41%), #141820;
  box-shadow: 0 12px 33.8px 0 rgba(0, 0, 0, 0.16), 0 2px 4.4px 0 rgba(128, 179, 255, 0.28) inset;
}

@media (min-width: 601px) {
  .modal-window-content {
    padding: 3.25rem;
    border-radius: 2rem;
  }
}

.modal-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form-response {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.form-response-icon {
  display: block;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 2rem;
}

.form-response-title h3 {
  font-family: var(--font-title), sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem 0;
}

@media (min-width: 601px) {
  .form-response-title h3 {
    font-size: 2rem;
  }
}

.form-response-text p {
  font-size: 1rem;
  color: #d1d5db;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

@media (min-width: 601px) {
  .form-response-text p {
    font-size: 1.125rem;
  }
}

.modal-continue-btn {
  position: relative;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1rem;
  border-radius: 9999px;
  color: #000;
  white-space: nowrap;
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
  cursor: pointer;
  width: 100%;
  background: radial-gradient(51.68% 146.29% at 65.07% -28.85%, #46ffc4 26.68%, #15d5e3 100%);
  box-shadow: 0 -5px 3.5px 0 rgba(132, 202, 255, 0.18) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 0.93) inset;
}

@media (min-width: 601px) {
  .modal-continue-btn {
    width: auto;
  }
}

.modal-continue-btn span {
  position: relative;
  z-index: 10;
}

.modal-continue-btn .hover-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(67.03% 100% at 49.76% 99.23%, #ff8b2e 0, #dbd646 36.72%, #00c3b3 100%);
  box-shadow: 0 2px 10.1px 0 rgba(62, 250, 184, 0.5), 0 -3px 2.5px 0 rgba(255, 228, 132, 0.58) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 0.93) inset;
  z-index: 1;
}

.modal-continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 -5px 3.5px 0 rgba(132, 202, 255, 0.25) inset, 0 1px 1.8px 0 rgba(255, 244, 230, 1) inset, 0 8px 24px rgba(70, 255, 196, 0.2);
}

.modal-continue-btn:hover .hover-overlay {
  opacity: 1;
}