/* Pishonhead - Premium Fintech Design System */

/* === Design Tokens === */
:root {
  /* Brand Colors */
  --brand-primary: #1F4591;
  --brand-dark: #0D1B2A;
  --brand-accent: #3B82F6;
  --brand-gradient: linear-gradient(135deg, #1F4591 0%, #3B82F6 100%);
  
  /* Neutrals */
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Accent Gradients */
  --gradient-1: linear-gradient(135deg, #1F4591 0%, #3B82F6 100%);
  --gradient-2: linear-gradient(135deg, #059669 0%, #10B981 100%);
  --gradient-3: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
  --gradient-4: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 60px rgba(31, 69, 145, 0.3);
  
  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* === Typography === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* === Layout === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

section {
  padding: var(--space-24) 0;
  position: relative;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

.btn-primary {
  background: var(--brand-gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(31, 69, 145, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 69, 145, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  background: var(--gray-50);
}

.btn-white {
  background: var(--white);
  color: var(--brand-primary);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* === Section Tags === */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, rgba(31, 69, 145, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--brand-primary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-16);
}

.section-header.light {
  color: var(--white);
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

.section-header.light p {
  opacity: 0.8;
}

.section-header.light .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.125rem;
}

/* === Header === */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-primary);
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-icon {
  height: 32px;
  width: auto;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brand-gradient);
  color: white;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: var(--space-2) var(--space-4);
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-links li a:hover {
  color: var(--brand-primary);
  background: var(--gray-50);
}

.nav-links li a.btn {
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: var(--space-24);
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1a365d 50%, var(--brand-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(31, 69, 145, 0.2) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.hero-badge i {
  color: #4ADE80;
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  opacity: 0.8;
}

.hero-trust i {
  color: #4ADE80;
}

/* Hero Visual Card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-2xl);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: white;
}

.hero-card-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: #4ADE80;
}

.pulse {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat.highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(31, 69, 145, 0.2) 100%);
  border-color: rgba(59, 130, 246, 0.3);
}

.hero-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-1);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-feature i {
  color: #4ADE80;
}

/* === Services Grid === */
.services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

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

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 20px rgba(31, 69, 145, 0.25);
}

.service-icon.gradient-2 { background: var(--gradient-2); box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25); }
.service-icon.gradient-3 { background: var(--gradient-3); box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25); }
.service-icon.gradient-4 { background: var(--gradient-4); box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25); }
.service-icon.gradient-5 { background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%); box-shadow: 0 8px 20px rgba(8, 145, 178, 0.25); }

.service-card h3 {
  margin-bottom: var(--space-3);
  font-size: 1.1rem;
}

.service-card > p {
  color: var(--gray-500);
  margin-bottom: var(--space-5);
  line-height: 1.6;
  font-size: 0.9rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: gap var(--transition-fast);
  margin-top: auto;
}

.service-link:hover {
  gap: var(--space-3);
}

/* === Value Proposition === */
.value-prop {
  background: white;
}

.value-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-16);
  align-items: center;
}

.value-content h2 {
  margin-bottom: var(--space-4);
}

.value-lead {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.value-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.value-item {
  display: flex;
  gap: var(--space-5);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 6px 16px rgba(31, 69, 145, 0.25);
}

.value-item h4 {
  margin-bottom: var(--space-2);
}

.value-item p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Metric Cards */
.metric-cards {
  display: grid;
  gap: var(--space-4);
}

.metric-card {
  background: var(--brand-dark);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.metric-card.main {
  background: var(--brand-gradient);
}

.metric-card.secondary {
  background: var(--gray-800);
}

.metric-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  opacity: 0.9;
}

.metric-value {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--space-2);
  position: relative;
}

.metric-label {
  font-size: 0.9rem;
  opacity: 0.8;
  position: relative;
}

/* === Compliance Section === */
.compliance {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1a365d 100%);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.compliance-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  color: white;
  transition: all var(--transition-base);
}

.compliance-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.compliance-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.compliance-card h4 {
  color: white;
  margin-bottom: var(--space-3);
  font-size: 1.1rem;
}

.compliance-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === How It Works - Timeline === */
.how-it-works {
  background: var(--gray-50);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border-radius: var(--radius-full);
}

.timeline-item {
  position: relative;
  text-align: center;
}

.timeline-number {
  width: 56px;
  height: 56px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 25px rgba(31, 69, 145, 0.35);
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.timeline-icon {
  width: 52px;
  height: 52px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 1.25rem;
  color: var(--brand-primary);
}

.timeline-content h4 {
  margin-bottom: var(--space-2);
}

.timeline-content p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === CTA Section === */
.cta {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1a365d 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: var(--space-10);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

/* === Footer === */
footer {
  background: var(--brand-dark);
  color: white;
  padding: var(--space-20) 0 var(--space-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
  color: white;
  margin-bottom: var(--space-4);
  display: inline-flex;
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--space-6);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom i {
  color: #4ADE80;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .value-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .metric-cards {
    grid-template-columns: repeat(3, 1fr);
    order: -1;
  }
  
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline::before {
    display: none;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-6);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  section {
    padding: var(--space-16) 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .compliance-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
  
  .metric-cards {
    grid-template-columns: 1fr;
  }
  
  .metric-value {
    font-size: 2.5rem;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
