/* Modern Premium CSS Reset & Styles for Growth Manch */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  /* Brand Color Tokens */
  --primary-purple: #7964FF;
  --primary-purple-hover: #6752F5;
  --primary-purple-glow: rgba(121, 100, 255, 0.3);
  --primary-purple-light: rgba(121, 100, 255, 0.08);
  --charcoal-grey: #2E3346;
  --charcoal-grey-dark: #1F2230;
  --white: #FFFFFF;
  --light-grey: #F8FAFC;
  --border-grey: #E5E7EB;
  --text-grey: #6B7280;
  
  --gradient-primary: linear-gradient(135deg, #7964FF 0%, #9A8BFF 100%);
  --gradient-glow: linear-gradient(135deg, rgba(121,100,255,0.15) 0%, rgba(154,139,255,0.05) 100%);
  --gradient-dark: linear-gradient(135deg, #2E3346 0%, #1F2230 100%);
  
  /* Font Families */
  --font-headings: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Card Design Rules */
  --card-bg: #FFFFFF;
  --card-border: 1px solid #E5E7EB;
  --card-radius: 20px;
  --card-shadow: 0 10px 40px rgba(46, 51, 70, 0.06);
  --card-shadow-hover: 0 20px 50px rgba(121, 100, 255, 0.12);
  
  /* Animation Speeds */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--charcoal-grey);
  line-height: 1.25;
}

p {
  color: var(--text-grey);
  font-size: 1rem;
}

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

/* Background Blur Ambient Glows */
.ambient-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 100, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.ambient-glow-2 {
  position: absolute;
  top: 40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 100, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section-padding {
  padding: 100px 0;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-size: 1.125rem;
}

/* Badge Style */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-purple-light);
  color: var(--primary-purple);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(121, 100, 255, 0.15);
  margin-bottom: 24px;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--primary-purple);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(121, 100, 255, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(121, 100, 255, 0.35);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--charcoal-grey);
  border: 1px solid var(--border-grey);
}

.btn-secondary:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 51, 70, 0.05);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal-grey);
}

.logo-icon {
  background: var(--gradient-primary);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(121, 100, 255, 0.3);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-grey);
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Interactive 3D CSS Dashboard Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-container {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  position: relative;
  perspective: 1000px;
}

.dashboard-base {
  width: 100%;
  height: 100%;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 24px;
  transform: rotateY(-15deg) rotateX(10deg);
  transform-style: preserve-3d;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-container:hover .dashboard-base {
  transform: rotateY(-5deg) rotateX(5deg);
  box-shadow: var(--card-shadow-hover);
}

.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-grey);
  padding-bottom: 12px;
}

.db-dots {
  display: flex;
  gap: 6px;
}

.db-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E5E7EB;
}

.db-dot:nth-child(1) { background-color: #FF5F56; }
.db-dot:nth-child(2) { background-color: #FFBD2E; }
.db-dot:nth-child(3) { background-color: #27C93F; }

.db-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-grey);
}

/* Floating widgets inside dashboard representation */
.widget {
  background: var(--white);
  border: var(--card-border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.widget-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-grey);
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--charcoal-grey);
}

.metric-trend {
  font-size: 0.7rem;
  font-weight: 600;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Dynamic Live SVG Graph Widget */
.chart-widget {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.chart-svg-container {
  width: 100%;
  height: 120px;
  margin-top: 12px;
  position: relative;
}

.chart-svg-container svg {
  width: 100%;
  height: 100%;
}

.chart-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease forwards infinite;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* Floating Widgets orbiting */
.floating-widget {
  position: absolute;
  z-index: 10;
  transform: translateZ(40px);
  filter: drop-shadow(0 15px 30px rgba(46, 51, 70, 0.15));
  animation: floatEffect 6s ease-in-out infinite;
}

.fw-google {
  top: 10%;
  right: -40px;
  animation-delay: 0s;
}

.fw-meta {
  bottom: 20%;
  left: -50px;
  animation-delay: 2s;
}

.fw-seo {
  bottom: -20px;
  right: 20px;
  animation-delay: 4s;
}

@keyframes floatEffect {
  0%, 100% {
    transform: translateY(0) translateZ(40px);
  }
  50% {
    transform: translateY(-12px) translateZ(50px);
  }
}

/* Trust / Stats Section */
.trust-section {
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
  padding: 60px 0;
  background-color: var(--light-grey);
}

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

.stat-card {
  text-align: center;
  background: var(--white);
  padding: 24px;
  border-radius: var(--card-radius);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary-purple);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-purple);
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal-grey);
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-grey);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(121, 100, 255, 0.2);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--primary-purple-light);
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background-color: var(--primary-purple);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
}

/* Why Choose Growth Manch (Split Layout) */
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.why-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.funnel-svg {
  width: 100%;
  max-width: 420px;
}

.funnel-layer {
  transition: var(--transition-smooth);
  cursor: pointer;
}

.funnel-layer:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
  transform-origin: center;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-mini-card {
  background: var(--white);
  border: var(--card-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.feature-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary-purple);
}

.feature-mini-icon {
  color: var(--primary-purple);
  margin-bottom: 12px;
}

.feature-mini-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-mini-card p {
  font-size: 0.85rem;
}

/* Process Section */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 40px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12%;
  width: 76%;
  height: 2px;
  background-color: var(--border-grey);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-grey);
  color: var(--text-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 24px auto;
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  color: var(--white);
  box-shadow: 0 0 0 6px var(--primary-purple-light);
}

.process-card {
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.85rem;
}

/* Featured Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.project-card {
  grid-column: span 3;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.project-card.wide {
  grid-column: span 3;
}

.project-card.full-width {
  grid-column: span 6;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.project-image-wrapper {
  background: #F1F3F9;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.project-mockup {
  width: 90%;
  background: var(--white);
  border-radius: 12px;
  border: var(--card-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.project-card:hover .project-mockup {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 15px 40px rgba(46, 51, 70, 0.12);
}

.mockup-header {
  height: 24px;
  background-color: var(--light-grey);
  border-bottom: 1px solid var(--border-grey);
  padding: 0 12px;
  display: flex;
  align-items: center;
}

.mockup-dots {
  display: flex;
  gap: 4px;
}

.mockup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #E5E7EB;
}

.mockup-content {
  padding: 24px;
  text-align: center;
}

.project-info {
  padding: 24px;
}

.project-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 8px;
  display: inline-block;
}

.project-info h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.9rem;
}

/* Testimonial Section */
.testimonials {
  background-color: var(--light-grey);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-container {
  overflow: hidden;
  position: relative;
  min-height: 260px;
}

.testimonial-slide {
  display: none;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  padding: 48px;
  box-shadow: var(--card-shadow);
  text-align: center;
  position: relative;
}

.testimonial-slide.active {
  display: block;
  animation: fadeInSlide 0.5s ease forwards;
}

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

.quote-icon {
  font-size: 4rem;
  color: var(--primary-purple-light);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal-grey);
  margin-bottom: 24px;
}

.testimonial-author h4 {
  font-size: 1.05rem;
  color: var(--charcoal-grey);
}

.testimonial-author p {
  font-size: 0.85rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-grey);
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-dot.active {
  background-color: var(--primary-purple);
  transform: scale(1.2);
}

/* Final CTA Section with dynamic growth grids */
.final-cta {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(121, 100, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(121, 100, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}

.cta-graph-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.cta-floating-arrow {
  position: absolute;
  font-size: 3.5rem;
  color: var(--primary-purple);
  opacity: 0.4;
  animation: dynamicArrowScale 4s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

.cta-floating-arrow.pos-left {
  bottom: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cta-floating-arrow.pos-right {
  top: 20%;
  right: 10%;
  transform: rotate(45deg);
  animation-delay: 2s;
}

@keyframes dynamicArrowScale {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(-15deg);
    filter: drop-shadow(0 0 10px rgba(121,100,255,0.4));
  }
  50% {
    transform: translateY(-25px) scale(1.2) rotate(15deg);
    filter: drop-shadow(0 0 25px rgba(121,100,255,0.8));
    color: #9A8BFF;
  }
}

.cta-wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.final-cta p {
  color: #A3A8BA;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Footer Section */
footer {
  background-color: #1F2230;
  color: var(--white);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
  color: #A3A8BA;
  margin-top: 16px;
  max-width: 280px;
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #A3A8BA;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A3A8BA;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
  background-color: var(--primary-purple);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #6B7280;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #6B7280;
  font-size: 0.85rem;
}

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

/* FAQ Accordion Styling */
.faq-accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal-grey);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-purple);
  transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
  content: '−';
}

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

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 24px 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card, .project-card.wide, .project-card.full-width {
    grid-column: span 6;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 992px) {
  .nav-wrapper {
    position: relative;
    padding: 0 16px;
  }

  .nav-links, .nav-cta {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(121, 100, 255, 0.08);
    border: 1px solid rgba(121, 100, 255, 0.18);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    margin-right: 4px;
    flex-shrink: 0;
  }

  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--charcoal-grey);
    border-radius: 2px;
    transition: var(--transition-fast);
  }

  .menu-open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 24px;
    padding: 28px 24px;
    gap: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    z-index: 1001;
    animation: appleSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 24px;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 1001;
    animation: appleSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes appleSlideDown {
    from { opacity: 0; transform: translateY(-10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .menu-open .nav-links li a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal-grey);
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .menu-open .nav-cta {
    display: block !important;
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 1001;
  }

  .menu-open .nav-cta .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(121, 100, 255, 0.4);
  }

  /* Apple-inspired Hero & Typography Touch Sizing */
  .hero-content h1 {
    font-size: 2.2rem !important;
    letter-spacing: -0.03em;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.5;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 1rem;
  }

  /* Grid Adjustments */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .stat-card {
    padding: 20px 14px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-title {
    font-size: 1.85rem !important;
    letter-spacing: -0.02em;
  }
}

