/* Base styles and variables */
:root {
  --color-primary: #ff6600;
  --color-primary-light: #ff8c00;
  --color-primary-dark: #cc5200;
  --color-secondary: #000000;
  --color-secondary-light: #2c3445;
  --color-secondary-dark: #12151e;
  --color-background: #000000;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-border: #333333;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --transition-default: all 0.3s ease;
  --gradient-primary: linear-gradient(to right, var(--color-primary-light), var(--color-primary), var(--color-primary-dark));
}

/* Reset and base styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition-default);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: var(--color-text-muted);
}

/* Buttons */
.primary-button, .secondary-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: var(--transition-default);
}

.primary-button {
  background: var(--gradient-primary);
  color: white;
  border: none;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.secondary-button {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.secondary-button:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Custom cursor */
.cursor-glow {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 102, 0, 0.3);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: 
    width 0.2s, 
    height 0.2s, 
    background-color 0.2s, 
    transform 0.1s;
  display: none;
}

@media (min-width: 768px) {
  .cursor-glow {
    display: block;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  transition: var(--transition-default);
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 700;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
  position: relative;
}

.logo-bg, .logo-bg-dark {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
}

.logo-bg {
  background-color: var(--color-primary);
  z-index: 2;
}

.logo-bg-dark {
  background-color: var(--color-primary-dark);
  transform: rotate(12deg) translate(0.25rem, 0);
  z-index: 1;
}

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

.logo-text-black {
  color: black;
}

.logo-text-white {
  color: white;
}

.nav-links {
  display: none;
}

.nav-links a {
  margin-left: 2rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.cta-button {
  background: var(--gradient-primary);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  margin-left: 2rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.menu-icon, .close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle.active .menu-icon {
  display: none;
}

.menu-toggle.active .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.95);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0;
  font-weight: 500;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--color-primary);
}

.mobile-cta {
  margin-top: 0.5rem;
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem;
  border-radius: 0.375rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
  
  .menu-toggle {
    display: none;
  }
}

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

.hero-content {
  max-width: 600px;
  z-index: 10;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* 3D Canvas */
.three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.three-canvas.shifted-right {
  position: absolute;
  top: 0; left: 20%; /* shift right by 20% */
  width: 80%; /* only cover 80% width, starting from 20% */
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: left 0.3s, width 0.3s;
}

.hero-3d-overlay.strong-contrast {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.10) 100%);
  z-index: 2;
  pointer-events: none;
}

.shifted-left {
  /* Adjust the value as needed for your layout */
  transform: translateX(-60px);
  /* Optionally, add smooth transition */
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: var(--color-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: var(--transition-default);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: var(--color-secondary);
  padding: 4rem 0 2rem;
}

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

.footer-about {
  max-width: 350px;
}

.footer-about p {
  color: var(--color-text-muted);
  margin: 1.5rem 0;
}

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

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}

.social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

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

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

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

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

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

/* Page Hero (for inner pages) */
.page-hero {
  padding: 10rem 0 5rem;
  background-color: var(--color-background);
}

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

/* Products page styles */
.products-section {
  padding: 5rem 0;
  background-color: var(--color-secondary);
}

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

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

.product-card {
  background-color: black;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: var(--transition-default);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-image {
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image.ai-analytics {
  background: linear-gradient(to right, var(--color-primary-light), var(--color-primary));
}

.product-image.nlp-engine {
  background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
}

.product-image.cv-platform {
  background: linear-gradient(to right, var(--color-primary-dark), var(--color-secondary-dark));
}

.product-image.ai-automation {
  background: linear-gradient(to right, var(--color-secondary-dark), var(--color-primary-dark));
}

.product-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: white;
}

.product-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.product-content p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.product-features {
  margin-bottom: 1.5rem;
}

.product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.product-link {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 500;
}

.product-link svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  transition: var(--transition-default);
}

.product-link:hover svg {
  transform: translateX(3px);
}

.product-price {
  text-align: right;
}

.price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Integration section */
.integration-section {
  padding: 5rem 0;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}

.integration-item {
  background-color: var(--color-secondary-light);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}

.integration-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.integration-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

/* CTA Banner */
.cta-banner {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(to right, rgba(26, 31, 44, 0.9), rgba(18, 21, 30, 0.9)), url('img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Product Detail Page */
.breadcrumbs {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

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

.breadcrumbs .separator {
  margin: 0 0.5rem;
  color: var(--color-text-muted);
}

.product-hero {
  padding: 10rem 0 5rem;
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.product-hero-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-hero-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--color-primary);
}

.product-hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-hero-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-hero-image img {
  max-height: 400px;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Product Features */
.product-features {
  padding: 5rem 0;
  background-color: var(--color-secondary);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: var(--transition-default);
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.feature-item-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--color-text-muted);
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.25rem;
  border-radius: 0.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  background: none;
  border: none;
  color: var(--color-text-muted);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: var(--transition-default);
}

.pricing-tab.active {
  background-color: rgba(255, 102, 0, 0.1);
  color: var(--color-primary);
}

.pricing-tab .discount {
  font-size: 0.75rem;
  background-color: var(--color-primary);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background-color: rgba(26, 31, 44, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: var(--transition-default);
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.pricing-card-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-period {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.pricing-card-header p {
  color: var(--color-text-muted);
}

.pricing-card-features {
  padding: 2rem;
}

.pricing-card-features ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.pricing-card-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.pricing-card-action {
  padding: 0 2rem 2rem;
  text-align: center;
}

.yearly-price {
  display: none;
}

.yearly-price.active {
  display: block;
}

.monthly-price.hidden {
  display: none;
}

.custom-price {
  font-size: 2.5rem;
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: var(--color-secondary);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.testimonial-content {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transform: rotate(45deg);
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.125rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-left: 2rem;
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

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

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.testimonial-controls button {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}

.testimonial-controls button:hover {
  color: var(--color-primary);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-text-muted);
  cursor: pointer;
}

.testimonial-dot.active {
  background-color: var(--color-primary);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-default);
}

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

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: var(--transition-default);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition-default);
}

.faq-item.active .faq-answer {
  padding: 0 0 1.5rem;
  height: auto;
}

.faq-answer p {
  color: var(--color-text-muted);
}

/* Responsive Adjustments */
@media (min-width: 576px) {
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.75rem;
  }
  
  h3 {
    font-size: 2.25rem;
  }
  
  .product-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  h3 {
    font-size: 2.5rem;
  }
  
  .product-hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 992px) {
  .cta-buttons {
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
  
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
