/* GNZAP - HTML Version Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --background: hsl(220, 10%, 7%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(220, 10%, 10%);
  --card-foreground: hsl(0, 0%, 98%);
  --primary: hsl(24, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(220, 10%, 15%);
  --muted: hsl(220, 10%, 18%);
  --muted-foreground: hsl(220, 10%, 60%);
  --border: hsl(220, 10%, 20%);
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg, hsl(24, 100%, 50%) 0%, hsl(35, 100%, 55%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(220, 10%, 7%) 0%, hsl(220, 10%, 5%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(220, 10%, 12%) 0%, hsl(220, 10%, 8%) 100%);
  --shadow-glow: 0 0 60px -12px hsla(24, 100%, 50%, 0.4);
  --shadow-card: 0 25px 50px -12px hsla(0, 0%, 0%, 0.5);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  backdrop-filter: blur(16px);
  background-color: hsla(220, 10%, 10%, 0.6);
  border: 1px solid hsla(220, 10%, 20%, 0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px 0 hsla(24, 100%, 50%, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 hsla(24, 100%, 50%, 0.5);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  color: var(--foreground);
  background: hsla(220, 10%, 20%, 0.5);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 3rem;
  width: auto;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: hsla(24, 100%, 50%, 0.05);
  filter: blur(100px);
}

.hero-trigger {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-trigger span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .hero-trigger span {
    font-size: 2rem;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(24, 100%, 50%, 0.1);
  border: 1px solid hsla(24, 100%, 50%, 0.2);
  margin-bottom: 2rem;
}

.hero-badge span {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

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

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: auto;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-ctas {
    justify-content: flex-start;
  }
}

.hero-trial-text {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 3rem;
}

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

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Video Container */
.hero-video {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsla(24, 100%, 50%, 0.2);
  box-shadow: var(--shadow-card);
}

.video-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, hsla(24, 100%, 50%, 0.3), hsla(24, 100%, 50%, 0.1));
  border-radius: 1.25rem;
  filter: blur(20px);
  z-index: -1;
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: hsla(24, 100%, 50%, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Business Banner */
.business-banner {
  background: linear-gradient(180deg, var(--background) 0%, hsla(24, 100%, 50%, 0.05) 50%, var(--background) 100%);
}

.banner-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--card);
  border: 1px solid hsla(220, 10%, 20%, 0.5);
  border-radius: 1.5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .banner-card {
    grid-template-columns: 1fr 1fr;
  }
}

.banner-image {
  position: relative;
  min-height: 350px;
}

.banner-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.banner-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Features Grid */
.features-section {
  background: linear-gradient(180deg, transparent, hsla(24, 100%, 50%, 0.03), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--gradient-card);
  border: 1px solid hsla(220, 10%, 20%, 0.5);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsla(24, 100%, 50%, 0.5);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsla(24, 100%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Differentials */
.differentials-section {
  background: linear-gradient(180deg, hsla(220, 10%, 15%, 0.3) 0%, var(--background) 100%);
}

.differential-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .differential-item {
    flex-direction: row;
    gap: 4rem;
  }
  
  .differential-item.reverse {
    flex-direction: row-reverse;
  }
}

.differential-content,
.differential-image {
  flex: 1;
}

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

@media (min-width: 1024px) {
  .differential-content {
    text-align: left;
  }
}

.differential-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsla(24, 100%, 50%, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.differential-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.differential-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .differential-content h3 {
    font-size: 2rem;
  }
}

.differential-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.differential-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(24, 100%, 50%, 0.05);
  border: 1px solid hsla(24, 100%, 50%, 0.2);
  border-radius: 0.5rem;
}

.differential-highlight .pulse {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.differential-highlight span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.differential-image img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid hsla(220, 10%, 20%, 0.5);
  box-shadow: var(--shadow-card);
}

/* ChatGPT Integration */
.chatgpt-section {
  background: linear-gradient(135deg, hsla(24, 100%, 50%, 0.05) 0%, var(--background) 50%, hsla(24, 100%, 50%, 0.1) 100%);
  overflow: hidden;
}

.chatgpt-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .chatgpt-content {
    flex-direction: row;
    gap: 5rem;
  }
}

.chatgpt-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .chatgpt-logos {
    gap: 2.5rem;
  }
}

.logo-gnzap,
.logo-chatgpt {
  position: relative;
}

.logo-gnzap img {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-gnzap img {
    width: 10rem;
    height: 10rem;
  }
}

.logo-glow-orange {
  position: absolute;
  inset: -1rem;
  background: hsla(24, 100%, 50%, 0.2);
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
}

.logo-glow-green {
  position: absolute;
  inset: -1rem;
  background: hsla(142, 71%, 45%, 0.2);
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
}

.logo-chatgpt .chatgpt-icon {
  width: 7rem;
  height: 7rem;
  background: #10a37f;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .logo-chatgpt .chatgpt-icon {
    width: 10rem;
    height: 10rem;
  }
}

.logo-chatgpt .chatgpt-icon svg {
  width: 4rem;
  height: 4rem;
}

@media (min-width: 768px) {
  .logo-chatgpt .chatgpt-icon svg {
    width: 6rem;
    height: 6rem;
  }
}

.connection-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.connection-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.connection-dot.orange {
  background: var(--primary);
}

.connection-dot.green {
  background: #10a37f;
}

.connection-bar {
  width: 3rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--primary), #10a37f);
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .connection-bar {
    width: 5rem;
  }
}

.chatgpt-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .chatgpt-text {
    text-align: left;
  }
}

.chatgpt-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: hsla(142, 71%, 45%, 0.1);
  color: #22c55e;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid hsla(142, 71%, 45%, 0.2);
  margin-bottom: 1rem;
}

.chatgpt-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .chatgpt-text h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .chatgpt-text h2 {
    font-size: 3rem;
  }
}

.ai-gradient-text {
  background: linear-gradient(90deg, var(--primary), #10a37f, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chatgpt-text > p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.chatgpt-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .chatgpt-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: hsla(220, 10%, 10%, 0.5);
  border: 1px solid hsla(220, 10%, 20%, 0.5);
  border-radius: 0.75rem;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsla(24, 100%, 50%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.benefit-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Pricing Section */
.pricing-section {
  position: relative;
}

.pricing-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: hsla(24, 100%, 50%, 0.05);
  filter: blur(100px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--card);
  border: 1px solid hsla(220, 10%, 20%, 0.5);
}

.pricing-card.popular {
  background: var(--gradient-card);
  border-color: hsla(24, 100%, 50%, 0.5);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
}

.pricing-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pricing-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card.popular .pricing-icon {
  background: hsla(24, 100%, 50%, 0.2);
}

.pricing-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--muted-foreground);
}

.pricing-card.popular .pricing-icon svg {
  color: var(--primary);
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.pricing-price .currency {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-price .period {
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-cta p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(180deg, var(--background) 0%, hsla(220, 10%, 15%, 0.3) 50%, var(--background) 100%);
}

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

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid hsla(220, 10%, 20%, 0.5);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: hsla(24, 100%, 50%, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-quote {
  width: 2.5rem;
  height: 2.5rem;
  color: hsla(24, 100%, 50%, 0.3);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #facc15;
  color: #facc15;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsla(24, 100%, 50%, 0.3), hsla(142, 71%, 45%, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid hsla(24, 100%, 50%, 0.3);
}

.author-avatar span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.author-info h4 {
  font-weight: 600;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(180deg, transparent, hsla(24, 100%, 50%, 0.03), transparent);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid hsla(220, 10%, 20%, 0.5);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: hsla(24, 100%, 50%, 0.5);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, hsla(24, 100%, 50%, 0.1), hsla(24, 100%, 50%, 0.05), hsla(24, 100%, 50%, 0.1));
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: hsla(24, 100%, 50%, 0.1);
  filter: blur(100px);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}

.cta-content > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-trial-text {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icon.youtube {
  background: #dc2626;
}

.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid hsla(220, 10%, 20%, 0.5);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo img {
  height: 2.5rem;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--foreground);
}

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

@media (min-width: 768px) {
  .footer-right {
    text-align: right;
  }
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-social a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-info {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1rem;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--foreground);
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Scrolled Header */
.site-header.scrolled {
  background: hsla(220, 10%, 7%, 0.95);
  backdrop-filter: blur(12px);
}
