/* ===== DMS Agency Landing Page v2 - Homepage Style ===== */

/* Variables V4 - Mystic Tech (Mage Stratégique) */
:root {
  --gradient-start: #0f2027;
  /* Deep Void */
  --gradient-end: #203a43;
  /* Mystic Forest */
  --primary: #cbb4d4;
  /* Moonstone */
  --secondary: #20002c;
  /* Sorcerer Purple */
  --accent-gold: #ffd700;
  /* Steampunk Gold */
  --accent-rainbow: linear-gradient(135deg, #00C6FF, #0072FF);
  /* Tech Mana */
  --dark: #050507;
  --glass-border: rgba(255, 215, 0, 0.15);
  /* Gold Trace */
  --white: #e0e0e0;
  /* Off-white parchment */

  /* Dual Typography */
  --font-tech: 'Rajdhani', sans-serif;
  --font-magic: 'Cinzel Decorative', serif;
  --font-body: 'Rajdhani', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
.hero-tag {
  font-family: var(--font-magic);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.navbar .logo img {
  transition: transform 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

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

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

.cta-nav {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white !important;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 70, 107, 0.3);
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ===== HERO V3 - NATURE X FUTURE ===== */
.hero-parallax {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MYSTIC ARTIFACTS (Animations) ===== */
@keyframes float-ethereal {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.9;
  }
}

@keyframes spin-tech {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-mana {
  0% {
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.6);
  }

  100% {
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.2);
  }
}

.artifact-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.artifact {
  position: absolute;
  z-index: 4;
}

/* 1. The Tech Gear (Top Left) */
.artifact-gear {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  border: 2px dashed var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: spin-tech 20s linear infinite;
}

/* 2. The Mana Orb (Bottom Right) */
.artifact-orb {
  bottom: 20%;
  right: 10%;
  width: 40px;
  height: 40px;
  background: var(--accent-rainbow);
  border-radius: 50%;
  filter: blur(15px);
  animation: float-ethereal 6s ease-in-out infinite;
}

/* 3. The Mystic Rune (Center Background) */
.artifact-rune {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: pulse-mana 8s infinite alternate;
  z-index: 1;
}

/* 4. Floating Particles ( Scattered) */
.artifact-particle {
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-gold);
}

.p1 {
  top: 30%;
  left: 20%;
  animation: float-ethereal 4s infinite 1s;
}

.p2 {
  bottom: 40%;
  right: 30%;
  animation: float-ethereal 5s infinite 2s;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
  /* Cinematic look */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(2, 2, 5, 0.3) 0%,
      rgba(2, 2, 5, 0.8) 90%,
      var(--dark) 100%);
  /* Seamless transition to dark body */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 1000px;
  margin-top: 50px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 4rem;
  /* Massive Headline */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 50px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CTA BUTTONS ===== */
.btn-cta-glow {
  position: relative;
  display: inline-block;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #FFD700, #FDB931);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-cta-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: spin 3s linear infinite;
  opacity: 0.3;
}

.btn-cta-glow span {
  position: relative;
  z-index: 1;
  color: #000;
  /* Contrast for gold button */
  font-family: var(--font-tech);
  font-weight: 700;
  letter-spacing: 1px;
}

.btn-cta-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(252, 70, 107, 0.5);
}

.btn-cta-glow-large {
  display: inline-block;
  padding: 22px 60px;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(252, 70, 107, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta-glow-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(252, 70, 107, 0.5);
}

.btn-cta-gradient {
  display: inline-block;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(252, 70, 107, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(252, 70, 107, 0.4);
}

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

  to {
    transform: rotate(360deg);
  }
}

.cta-center {
  text-align: center;
  margin-top: 50px;
}

/* ===== SECTION STYLES ===== */
section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--gray);
  margin-bottom: 60px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.problem-section .section-title {
  color: var(--white);
}

.problem-section ::selection {
  background: rgba(255, 255, 255, 0.2);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
  transform: translateZ(0);
}

.problem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.problem-card i {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

/* ===== GLOBAL V3 GLASS CARDS ===== */
.problem-card,
.step-card,
.support-card,
.pricing-card,
.testimonial-card,
.faq-item,
.deliverable-item {
  background: rgba(25, 25, 35, 0.4) !important;
  /* Unified dark glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
  color: var(--white);
}

.problem-card:hover,
.step-card:hover,
.support-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.deliverable-item:hover {
  background: rgba(40, 40, 60, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6) !important;
}

.section-title {
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.section-subtitle {
  color: var(--gray);
}

/* Specific Section Overrides */
.problem-section,
.about-section,
.plan-section,
.support-section,
.pricing-section,
.deliverables-section,
.testimonials-section,
.faq-section {
  background: var(--dark);
  /* Uniform Dark Background */
}

/* Clean Step Numbers */
.step-number {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--white);
  opacity: 0.3;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-content h3 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 1.4rem;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.results-list {
  margin-top: 30px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}

.result-item i {
  color: var(--teal);
  font-size: 1.5rem;
}

/* ===== PLAN SECTION ===== */
.plan-section {
  background: var(--white);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(252, 70, 107, 0.1);
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.step-icon {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.support-card {
  background: white;
  padding: 45px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.support-card i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* ===== PRICING SECTION ===== */
/* Section background removed to inherit global dark theme */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  background-origin: border-box;
  background-clip: content-box, border-box;
  transform: scale(1.08);
  box-shadow: 0 30px 70px rgba(252, 70, 107, 0.25);
}

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

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-header p {
  color: var(--gray);
  margin-bottom: 25px;
}

.pricing-price {
  text-align: center;
  margin: 30px 0;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 0.9rem;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
}

.pricing-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features i {
  color: var(--teal);
  font-size: 1.2rem;
}

.btn-pricing,
.btn-pricing-featured {
  display: block;
  text-align: center;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 25px;
}

.btn-pricing {
  background: var(--gray-light);
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-pricing:hover {
  background: var(--dark);
  color: white;
}

.btn-pricing-featured {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  box-shadow: 0 10px 30px rgba(252, 70, 107, 0.3);
}

.btn-pricing-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(252, 70, 107, 0.4);
}

/* ===== DELIVERABLES ===== */
.deliverables-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.deliverable-item {
  background: white;
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.deliverable-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.deliverable-item i {
  color: var(--teal);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
/* Section background removed */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--gray-light);
  padding: 40px;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial-header p {
  color: var(--teal);
  /* Highlight role */
  font-size: 0.9rem;
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.7);
}

.period {
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-text {
  margin: 20px 0;
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-results {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.result-badge {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: none;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--gray-light);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

/* ===== FAQ V3 (Dark Mode Fix) ===== */
.faq-question {
  background: transparent;
  color: var(--white);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Footer V3 ===== */
.footer {
  background: black;
  color: var(--gray);
  border-top: 1px solid var(--glass-border);
}

.footer-contact p,
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  line-height: 1.8;
  color: var(--gray);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.final-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--white);
  padding: 100px 0 120px;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.involveme_embed {
  min-height: 600px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer h4 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 60px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    gap: 20px;
  }

  .nav-links.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

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

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

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

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

  .pricing-card.featured {
    transform: scale(1);
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero-parallax {
    min-height: 600px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  section {
    padding: 60px 0;
  }

  .problems-grid,
  .plan-grid,
  .support-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .btn-cta-glow,
  .btn-cta-gradient {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .btn-cta-glow-large {
    padding: 18px 40px;
    font-size: 1rem;
  }

  .final-cta h2 {
    font-size: 2rem;
  }
}