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

:root {
  --bg-dark: #070707;
  --bg-card: #121212;
  --accent: #00E6FF;
  /* Aero Blue */
  --accent-glow: rgba(0, 230, 255, 0.4);
  --text-primary: #FFFFFF;
  --text-secondary: #909090;
  --glass: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.08);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* --- Navigation --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(7, 7, 7, 0.7);
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

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

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* --- Global Components --- */
.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-secondary {
  background: var(--glass);
  color: #fff;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Sections --- */
section {
  padding: 10rem 2rem;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 2.5rem;
  letter-spacing: -0.04em;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 1.3rem;
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.hero-visual img {
  width: 100%;
  border-radius: 40px;
  filter: drop-shadow(0 0 40px rgba(0, 230, 255, 0.2));
}

/* --- Stats --- */
.stats {
  padding: 8rem 2rem;
  background: #000;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

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

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  font-family: 'Outfit';
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

/* --- Bento Grid --- */
.bento-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 32px;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  position: relative;
}

.bento-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.bento-large {
  grid-column: span 2;
}

/* --- Products --- */
.product-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 2rem;
  transition: all 0.4s var(--transition);
}

.product-card:hover {
  border-color: var(--accent);
}

.product-img {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: #000;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: block;
}

/* --- Testimonials (FIXED) --- */
.testimonials {
  background: #0a0a0a;
}

.testimonial-track {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.quote {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-style: italic;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  filter: grayscale(1);
}

/* --- Pricing (FIXED) --- */
.pricing {
  background: #000;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 4rem 2rem;
  border-radius: 40px;
  text-align: center;
  position: relative;
  transition: all 0.3s var(--transition);
}

.pricing-card.popular {
  border-color: var(--accent);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.75rem;
}

.price {
  font-size: 4rem;
  font-weight: 800;
  margin: 2rem 0;
  display: block;
  font-family: 'Outfit';
}

.price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 3rem;
}

.pricing-features li {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
}

/* --- FAQ Accordion (FIXED) --- */
.faq-section {
  background: #070707;
}

.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 2.5rem;
}

/* --- Overhauled Contact Section --- */
.contact-overhaul {
  padding: 8rem 0;
}

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--bg-card);
  border-radius: 60px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.contact-info-panel {
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 230, 255, 0.05) 0%, transparent 100%);
}

.premium-tag {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}

.contact-info-panel h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.contact-info-panel h2 span {
  color: var(--accent);
}

.contact-details {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}

.detail-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-text strong {
  font-size: 1.1rem;
  color: #fff;
}

.contact-social {
  display: flex;
  gap: 1.5rem;
  font-size: 1.5rem;
}

.contact-social a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.contact-form-panel {
  padding: 6rem;
  background: #000;
  border-left: 1px solid var(--glass-border);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.floating-input {
  position: relative;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.floating-input:focus-within {
  border-color: var(--accent);
}

.floating-input input,
.floating-input textarea,
.floating-input select {
  width: 100%;
  padding: 1.5rem 0 0.75rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-family: inherit;
  outline: none;
}

.floating-input select option {
  background: #121212;
  color: #fff;
}

.floating-input label {
  position: absolute;
  top: 1.5rem;
  left: 0;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-input input:focus+label,
.floating-input input:not(:placeholder-shown)+label,
.floating-input textarea:focus+label,
.floating-input textarea:not(:placeholder-shown)+label,
.floating-input select:focus+label,
.floating-input select:valid+label {
  top: 0;
  font-size: 0.75rem;
  color: var(--accent);
}

.premium-submit {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 20px;
  border: none;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--transition);
}

.premium-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--accent-glow);
}

.consent-wrapper {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: -1rem;
}

.consent-wrapper a {
  color: var(--accent);
}

/* --- Footer (FIXED) --- */
footer {
  padding: 8rem 2rem 4rem;
  background: #030303;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 5rem;
  margin-bottom: 6rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 2rem;
  max-width: 350px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.footer-social a {
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

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

.footer-col h4 {
  color: #fff;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 1.2rem;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 4rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 1.8rem;
  color: var(--text-secondary);
}

/* --- Animations --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--transition);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Hub --- */
@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 4rem 2.5rem;
  }

  .contact-form-panel {
    border-left: none;
    border-top: 1px solid var(--glass-border);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 3.5rem;
  }

  .cta-group {
    justify-content: center;
  }

  .product-grid,
  .pricing-grid,
  .testimonial-track {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.8rem;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-panel h2 {
    font-size: 3rem;
  }
}