/* ============================================
   POPS BY AJ LLC - Corporate Website Styles
   ============================================ */

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

:root {
  --navy-950: #080e2e;
  --navy-900: #0c1844;
  --navy-800: #12205a;
  --navy-700: #162b70;
  --navy-600: #1e3a7a;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-100: #fef3c7;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font);
  color: var(--slate-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--blue-600); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy-700); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-900);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-500);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.7;
}

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

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* Section Divider */
.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--gold-400));
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}

.btn-primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border-color: var(--blue-600);
}

.btn-outline:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: var(--header-height);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: var(--transition);
  line-height: 1;
}

.scrolled .logo {
  color: var(--navy-900);
}

.logo span { color: var(--gold-400); }

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

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  text-decoration: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav a:hover { color: var(--white); }

.scrolled .main-nav a { color: var(--slate-600); }
.scrolled .main-nav a:hover { color: var(--navy-900); }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--blue-600);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

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

.nav-cta:hover {
  background: var(--navy-700) !important;
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.scrolled .mobile-toggle span { background: var(--navy-900); }

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 30%, var(--navy-800) 60%, var(--navy-700) 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  opacity: 0.5;
}

.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 720px; }

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gold-400);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-400), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 600px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.hero-stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.hero-stat-suffix {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold-400);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%);
  top: -150px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%);
  bottom: -50px;
  right: 15%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

/* Sections General */
section { padding: 100px 0; }

.section-light { background: var(--slate-50); }
.section-white { background: var(--white); }

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

.about-image { position: relative; }

.about-image-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.about-image-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 8px solid var(--gold-400);
  border-radius: var(--radius-md);
  bottom: -24px;
  right: -24px;
  z-index: -1;
  opacity: 0.3;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

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

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--slate-700);
}

.about-feature-icon {
  width: 24px;
  height: 24px;
  background: var(--blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--blue-600);
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--blue-600);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.service-card p {
  color: var(--slate-500);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Why Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--slate-500);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Process Section */
.process {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}

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

.process .section-subtitle { color: rgba(255,255,255,0.55); }

.process .section-badge {
  background: rgba(255,255,255,0.1);
  color: var(--gold-400);
}

.process .section-divider {
  background: linear-gradient(90deg, var(--blue-400), var(--gold-400));
}

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

.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.process-step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  font-family: var(--font);
}

.process-step h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 12px;
  position: relative;
  padding-top: 16px;
}

.process-step h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--gold-400);
  border-radius: 2px;
}

.process-step p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-text {
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-avatar.a1 { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }
.testimonial-avatar.a2 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.testimonial-avatar.a3 { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--slate-800);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--slate-400);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(245,158,11,0.08) 0%, transparent 50%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--slate-500);
  margin-bottom: 36px;
  font-size: 1.0625rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  flex-shrink: 0;
  font-size: 1.125rem;
}

.contact-item-text h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: var(--slate-800);
}

.contact-item-text p, .contact-item-text a {
  color: var(--slate-500);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-item-text a:hover { color: var(--blue-600); }

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
}

.contact-form-wrap h3 {
  font-size: 1.375rem;
  margin-bottom: 24px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: var(--slate-50);
  color: var(--slate-800);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.375rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 340px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.9375rem;
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
}

.footer-contact-icon {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.875rem;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover { color: var(--gold-400); }

/* Legal Pages */
.legal-page {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
}

.legal-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 80px 0 60px;
}

.legal-header h1 {
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.legal-header p {
  color: rgba(255,255,255,0.55);
  font-size: 1.0625rem;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--navy-900);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--navy-800);
}

.legal-content p {
  color: var(--slate-600);
  margin-bottom: 16px;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-content li {
  color: var(--slate-600);
  margin-bottom: 10px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }

.legal-content strong {
  color: var(--slate-800);
  font-weight: 600;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--slate-500);
  font-size: 0.9375rem;
}

.legal-back:hover { color: var(--blue-600); }

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero h1 { font-size: 3.25rem; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .main-nav.open a {
    color: var(--slate-700);
    font-size: 1rem;
    padding: 12px 0;
  }
  .main-nav.open a::after { background: var(--blue-600); }
  .main-nav.open .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
  .mobile-toggle { display: flex; }
  .hero h1 { font-size: 2.5rem; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .why-grid, .process-steps, .testimonials-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero { min-height: 90vh; }
  .hero-content { max-width: 100%; }
  .legal-header h1 { font-size: 2rem; }
  .contact-form-wrap, .contact-form { padding: 24px; }
  .about-image-placeholder { height: 340px; }
  .about-features { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 1.75rem; }
  .legal-header { padding: 60px 0 40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* Print */
@media print {
  .site-header { position: relative; background: var(--white); }
  .hero { min-height: auto; padding: 60px 0; }
  .hero h1 { color: var(--navy-900); }
  .hero h1 .highlight { -webkit-text-fill-color: var(--navy-900); }
  .hero p { color: var(--slate-600); }
  .hero-stat-number { color: var(--navy-900); }
  .hero-stats { border-top-color: var(--slate-200); }
  .mobile-toggle, .hero-grid-bg, .hero-shape, .hero::before { display: none; }
  .process { background: var(--slate-50); }
  .process .section-title, .process-step h3 { color: var(--navy-900); }
  .process .section-subtitle, .process-step p { color: var(--slate-500); }
  .process-step { background: var(--white); border-color: var(--slate-200); }
  .site-footer { background: var(--slate-900); }
  .nav-cta { display: none; }
}
