/* ========================================
   CSS Variables & Reset
======================================== */
:root {
  /* Clean White Backgrounds for high contrast */
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  
  /* Deep Navy Text (Authority & Trust) */
  --fg: #0F172A;
  --fg-muted: #64748B;
  
  /* Primary Accent: Royal/Navy Blue */
  --accent: #1D4ED8;       /* Deep Royal Blue */
  --accent-hover: #1E40AF; /* Darker Navy for hover */
  --accent-light: rgba(29, 78, 216, 0.08);
  
  /* System Colors */
  --card: #FFFFFF;
  --border: #E2E8F0;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);

  /* Radius & Transitions */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body); /* Changed to Inter */
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
}

/* ========================================
   Typography
======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); /* Changed to Plus Jakarta Sans */
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--fg-muted);
}

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

/* ========================================
   Layout
======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  max-width: 640px;
  margin: 0 auto;
}

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 76, 0.3);
}

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

.btn-secondary:hover {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}

.btn-full {
  width: 100%;
}

/* ========================================
   Navigation
======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 249, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 2px;
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color var(--transition-fast);
}

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

.nav-cta {
  padding: 10px 20px !important;
  background: var(--fg);
  color: white !important;
  border-radius: var(--radius-sm);
}

.nav-cta:hover {
  background: var(--accent) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(232, 93, 76, 0.08) 0%, transparent 70%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
  background-size: 48px 48px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
  margin-bottom: 24px;
}

.text-accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: flex-start; 
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-actions .btn-secondary {
  margin-top: -2px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: transparent; /* Removed white background */
  /* border: 1px solid var(--border);  <-- Remove border */
  border-radius: var(--radius-lg);
  /* box-shadow: var(--shadow-md); <-- Remove shadow */
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .stat-divider {
    width: 60%;
    height: 1px;
  }
}

/* ========================================
   Services Section
======================================== */
.services {
  padding: 120px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  
  /* Smooth 1s transition for the movement */
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), border-color 1s ease;
  transform: translateY(0);
}

/* The Shadow Layer */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  
  /* UPDATED: Much darker shadow with more spread */
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.1),
    0 12px 20px -8px rgba(0, 0, 0, 0.15);
  
  opacity: 0;
  z-index: -1;
  transition: opacity 0.8s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-title {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.9375rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   Why Us Section
======================================== */
.why-us {
  padding: 120px 0;
  background: var(--bg-alt);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.why-us-intro {
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-point {
  display: flex;
  gap: 16px;
}

.why-point-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  color: white;
}

.why-point h4 {
  margin-bottom: 4px;
}

.why-point p {
  font-size: 0.9375rem;
}

/* Visual Card */
.why-us-visual {
  position: relative;
}

.visual-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.visual-header {
  padding: 16px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

.visual-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.visual-dot:first-child { background: #EF4444; }
.visual-dot:nth-child(2) { background: #F59E0B; }
.visual-dot:nth-child(3) { background: #22C55E; }

.visual-content {
  padding: 32px;
}

.visual-metric {
  margin-bottom: 32px;
}

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

.metric-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  margin: 8px 0 16px;
}

.metric-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}

.chart-bar {
  flex: 1;
  background: var(--border);
  border-radius: 4px 4px 0 0;
  height: var(--height);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-bar.highlight {
  background: var(--accent);
}

.visual-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

.comparison-bar {
  height: 8px;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
}

.comparison-fill {
  height: 100%;
  width: var(--width);
  background: var(--border);
  border-radius: 4px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-bar.highlight .comparison-fill {
  background: var(--accent);
}

.comparison-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.comparison-value.highlight {
  color: var(--accent);
}

@media (max-width: 968px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .why-us-content .section-title {
    text-align: center;
  }
  
  .why-us-intro {
    text-align: center;
  }
}

/* ========================================
   About Section
======================================== */
.about-section {
  padding: 120px 0;
  background: var(--bg);
}

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

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Decorative border behind the image */
.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  max-width: 400px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  z-index: 0;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover::before {
  transform: translate(-5px, -5px);
}

.about-image-wrapper img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5; /* Portrait ratio */
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-xl);
  background-color: var(--bg-alt); /* Placeholder bg color */
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  margin-bottom: 20px;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

.about-values {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrapper {
    order: -1; /* Image first on mobile */
  }

  .about-content .section-tag,
  .about-content .section-title,
  .about-text {
    text-align: center;
  }

  .about-values {
    justify-content: center;
  }
}

/* ========================================
   Process Section
======================================== */
.process {
  padding: 120px 0;
  background: var(--bg);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
}

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

.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--fg);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.process-step:hover .step-number {
  background: var(--accent);
  transform: scale(1.1);
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9375rem;
}

@media (max-width: 968px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .process-step {
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .step-number {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

/* ========================================
   Results Section
======================================== */
.results {
  padding: 120px 0;
  background: var(--bg-alt);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.result-card {
  position: relative; /* Needed for pseudo-element */
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  
  /* Smooth 1s transition for movement and border */
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1), border-color 1s ease;
  transform: translateY(0);
}

/* The Shadow Layer */
.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  
  /* Lighter shadow values (matching previous request) */
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.10),
    0 12px 20px -8px rgba(0, 0, 0, 0.06);
  
  opacity: 0;
  z-index: -1;
  transition: opacity 0.8s ease;
}

.result-card:hover {
  transform: translateY(-8px); /* Matches service card lift */
  border-color: transparent;
}

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

/* Ensure content stays above the shadow layer */
.result-industry {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.result-title {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.result-desc {
  font-size: 0.9375rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.result-metrics {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

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

.result-metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.result-metric-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials {
  padding: 120px 0;
  background: var(--bg);
}

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

.testimonial-card {
  display: none;
  padding: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fg);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  border-radius: 50%;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-weight: 600;
  color: var(--fg);
}

.author-role {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

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

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-dot:hover,
.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ========================================
   Contact Section
======================================== */
.contact {
  padding: 120px 0;
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.contact-intro {
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-muted);
}

.contact-item svg {
  color: var(--accent);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--card);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-content .section-title {
    text-align: center;
  }
  
  .contact-intro {
    text-align: center;
  }
  
  .contact-info {
    align-items: center;
  }
}

/* ========================================
   Footer
======================================== */
.footer {
  padding: 64px 0 32px;
  background: var(--fg);
  color: rgba(255, 255, 255, 0.7);
}

.footer .logo {
  color: white;
}

.footer .logo-mark {
  background: var(--accent);
}

.footer-tagline {
  margin-top: 16px;
  font-size: 0.9375rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-column h4 {
  color: white;
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 32px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    gap: 48px;
  }
}

/* ========================================
   Reveal Animations
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for grid items */
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }

.process-timeline .process-step:nth-child(2) { transition-delay: 0.15s; }
.process-timeline .process-step:nth-child(3) { transition-delay: 0.3s; }
.process-timeline .process-step:nth-child(4) { transition-delay: 0.45s; }

.results-grid .result-card:nth-child(2) { transition-delay: 0.1s; }
.results-grid .result-card:nth-child(3) { transition-delay: 0.2s; }

.why-point:nth-child(2) { transition-delay: 0.1s; }
.why-point:nth-child(3) { transition-delay: 0.2s; }
.why-point:nth-child(4) { transition-delay: 0.3s; }

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Adjusts space between button and text */
}

.cta-micro-text {
  font-size: 0.8125rem; /* 13px */
  color: var(--fg-muted);
  opacity: 0.9;
}

/* --- Updated Success Card Styles --- */

.success-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  height: 100%; /* Fill the form container */
  box-sizing: border-box;
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated Icon Circle */
.success-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0066CC, #004da3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
  animation: pulse 2s infinite;
}

.success-icon-wrapper svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Typography */
.success-card h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.success-card p {
  font-family: 'Inter', sans-serif;
  color: #6B7280;
  font-size: 16px;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 30px;
}

/* "Next Steps" Mini-List */
.next-steps {
  width: 100%;
  background: #F3F4F6;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.next-steps h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9CA3AF;
  margin-bottom: 12px;
  font-weight: 600;
}

.step-item {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-icon {
  color: #0066CC;
  margin-right: 10px;
  font-weight: bold;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 102, 204, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0); }
}