:root {
  --font-primary: 'Inter', sans-serif;
  --color-background: #0a0a0a;
  --color-text: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-accent: #ff4d4d;
  --color-card-bg: #151515;
  --color-border: rgba(255, 255, 255, 0.1);
  --spacing-unit: 1rem;
  --container-width: 1440px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Layout & Container */
.section-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 4rem;
}

/* Common Elements */
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: linear-gradient(
    to right,
    var(--color-text),
    rgba(255, 255, 255, 0.7)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header Styles */
.site-header {
  padding: 2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
}

.primary-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 4rem;
}

.logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  position: relative;
  background: var(--color-card-bg);
  overflow: hidden;
}

.faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.faq-sphere {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(50px);
  animation: rotate 20s linear infinite;
}

.faq-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255, 77, 77, 0.05) 2px,
    rgba(255, 77, 77, 0.05) 4px
  );
}

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

.faq-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-top: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.faq-cards {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  width: 120px;
  height: 160px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.card-1 {
  top: 20%;
  left: 20%;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  top: 40%;
  right: 20%;
  animation: float 6s ease-in-out infinite reverse;
}

.card-icon {
  font-size: 2rem;
  color: var(--color-accent);
  font-weight: 700;
}

.card-line {
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
  opacity: 0.5;
}

/* Hero Section */
.hero-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--color-background) 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  transform: translateY(100px);
  opacity: 0;
  animation: floatIn 0.5s ease-out forwards;
  animation-delay: 1s;
}

.floating-cta .primary-button {
  padding: 1.5rem 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(255, 77, 77, 0.3);
}

.button-content {
  position: relative;
  z-index: 2;
}

.button-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

.floating-cta-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(20px);
  animation: pulse 2s ease-in-out infinite;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.label-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  animation: blink 2s infinite;
}

.label-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-highlight {
  display: block;
  color: var(--color-accent);
  position: relative;
}

.title-decoration {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
}

.description-highlight {
  color: var(--color-accent);
  font-weight: 500;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.feature-check {
  color: var(--color-accent);
  font-weight: 700;
}

.hero-image {
  width: 638px;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 77, 77, 0.1) 100%
  );
  border-radius: 12px;
}

.hero-particles {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 140%;
  height: 140%;
  background-image: radial-gradient(
    circle,
    var(--color-accent) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  opacity: 0.1;
  animation: particlesMove 20s linear infinite;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(45deg, var(--color-card-bg) 0%, transparent 100%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
}

/* Reviews Section */
.reviews-section {
  padding: 8rem 0;
  background-color: var(--color-card-bg);
  position: relative;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-slider {
  position: relative;
  padding: 2rem 0;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  transform: rotate(-5deg);
}

.reviews-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--color-accent) 0%, transparent 100%);
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* Screenshots Section */
.screenshots-section {
  padding: 8rem 0;
  background-color: var(--color-background);
  position: relative;
}

.screenshots-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}

.screenshots-display {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.screenshot-main {
  transform: translateY(-2rem);
}

.screenshot-secondary {
  transform: translateY(2rem);
}

.screenshots-display img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.screenshots-display img:hover {
  transform: scale(1.05);
  border-color: var(--color-accent);
}

/* Features Section */
.features-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-background) 0%, #1a1a1a 100%);
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.features-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 90% 10%,
    var(--color-accent-transparent) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.features-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-top: 1rem;
}

.features-showcase {
  position: relative;
  z-index: 2;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  perspective: 1000px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  overflow: hidden;
  opacity: 1;
  animation: fadeIn 0.5s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-15px) rotateX(10deg);
  border-color: var(--color-accent);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 77, 77, 0.2);
}

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

.feature-card-primary {
  background: linear-gradient(
    135deg,
    rgba(255, 77, 77, 0.15) 0%,
    rgba(255, 77, 77, 0.05) 100%
  );
}

.feature-card-secondary {
  background: linear-gradient(
    135deg,
    rgba(77, 166, 255, 0.15) 0%,
    rgba(77, 166, 255, 0.05) 100%
  );
}

.feature-card-tertiary {
  background: linear-gradient(
    135deg,
    rgba(255, 184, 77, 0.15) 0%,
    rgba(255, 184, 77, 0.05) 100%
  );
}

.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}

.feature-icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) translateY(-5px);
}

.feature-icon img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 20px var(--color-accent));
}

.feature-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.3;
  transition: all 0.4s ease;
  filter: blur(10px);
}

.feature-card:hover .feature-icon-bg {
  transform: scale(1.5);
  opacity: 0.5;
}

.feature-text {
  position: relative;
  z-index: 1;
}

.feature-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--color-text) 0%,
    var(--color-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-text h3 {
  transform: translateY(-5px);
}

.feature-text p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-text p {
  transform: translateY(-3px);
}

.feature-badge {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.2);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-accent);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-badge {
  background: rgba(255, 77, 77, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 77, 77, 0.2);
}

.feature-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
  transform: scale(1.2) rotate(10deg);
  opacity: 0.3;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--color-card-bg);
  overflow: hidden;
  padding: 8rem 0 3rem;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  position: relative;
}

.footer-branding {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.footer-branding img {
  width: 32px;
  margin-bottom: 1.5rem;
}

.footer-branding::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--color-accent), transparent);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.footer-branding:hover::before {
  opacity: 0.2;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.footer-nav-column {
  position: relative;
}

.footer-nav-column h4 {
  color: var(--color-accent);
  margin-bottom: 2rem;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-nav-column h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

.footer-nav-column ul {
  position: relative;
}

.footer-nav-column li {
  margin-bottom: 1.5rem;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.footer-nav-column li:hover {
  transform: translateX(10px);
}

.social-button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-origin: center;
  transition: all 0.3s ease;
}

.social-button:hover {
  transform: scale(1.05) rotate(-2deg);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
}

.footer-bottom {
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent) 50%,
    transparent 100%
  );
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-links a {
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

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

.separator {
  color: var(--color-accent);
  opacity: 0.5;
  transform: scale(1.5);
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.15;
    transform: scale(1.1);
  }
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  20%,
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes particlesMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100px);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-inner {
    padding: 0 2rem;
  }

  .site-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .primary-navigation {
    display: none;
  }

  .site-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-text h3 {
    font-size: 1.5rem;
  }
}

/* Hero Features Grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 8rem 4rem;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-background) 0%, #1a1a1a 100%);
}

.grid-column {
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-section {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(
    135deg,
    var(--color-text) 0%,
    var(--color-accent) 100%
  );
  -webkit-background-clip: text;
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.hero-image-container {
  margin-top: 3rem;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* transform: perspective(1000px) rotateX(5deg); */
  transition: transform 0.3s ease;
}

.hero-image-container:hover {
  transform: perspective(1000px) rotateX(0deg);
}

/* Features Section */
.features-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  transform: translateX(50px);
  /* opacity: 0; */
  animation: slideIn 0.5s ease forwards;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.cta-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
  border-radius: 30px;
}

.primary-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #ff7070 100%);
  border: none;
  border-radius: 30px;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 0;
  width: 150px;
  align-items: center;
  justify-content: center;
  height: 62px;
}

.primary-button:hover {
  transform: translateY(-2px);
}

.button-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.button-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.primary-button:hover .button-glow {
  opacity: 0.2;
}

/* FAQ List Styles */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  perspective: 1000px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.faq-item:nth-child(odd) {
  transform: rotate(-2deg) translateY(5px);
}

.faq-item:nth-child(even) {
  transform: rotate(2deg) translateY(-5px);
}

.faq-item:hover {
  transform: scale(1.02) rotate(0);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 1rem;
}

.faq-item.active {
  transform: rotate(0) translateY(0);
  background: rgba(255, 255, 255, 0.1);
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(
    180deg,
    var(--color-background) 0%,
    rgba(18, 18, 18, 0.95) 100%
  );
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-branding img {
  width: 32px;
  height: auto;
}

.footer-description {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-button {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.social-icon {
  font-size: 1.2rem;
  color: var(--color-text);
  transition: transform 0.3s ease;
}

.social-hover {
  position: absolute;
  font-size: 0.8rem;
  color: var(--color-text);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}

.social-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* .social-button:hover .social-icon {
  transform: translateY(-100%);
}

.social-button:hover .social-hover {
  transform: translateY(0);
} */

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

.footer-nav-column h4 {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-nav-column h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-column ul li {
  margin-bottom: 0.8rem;
}

.footer-nav-column ul li a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.footer-nav-column ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.2s ease;
}

.footer-nav-column ul li a:hover {
  color: var(--color-text);
}

.footer-nav-column ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.separator {
  color: var(--color-text-secondary);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
