/**
 * Imporlan SEO Pages - Premium Landing Page Styles
 * Modern, responsive design for SEO-optimized pages
 * Version 1.0
 */

:root {
  --imporlan-primary: #0a1628;
  --imporlan-secondary: #1e3a5f;
  --imporlan-accent: #3b82f6;
  --imporlan-accent-light: #60a5fa;
  --imporlan-gold: #f59e0b;
  --imporlan-green: #10b981;
  --imporlan-purple: #8b5cf6;
  --imporlan-red: #ef4444;
  --imporlan-cyan: #06b6d4;
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --text-light-gray: #d1d5db;
  --border-color: #2d5a87;
  --card-bg: linear-gradient(145deg, #1e3a5f 0%, #152a45 100%);
  --shadow-blue: rgba(59, 130, 246, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--imporlan-primary);
  color: var(--text-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

a {
  color: var(--imporlan-accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--imporlan-accent);
}

/* Header / Navigation - Matching HOME design */
.seo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.seo-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
}

/* Logo section matching HOME */
.seo-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.seo-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.seo-logo-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.seo-logo-text {
  display: flex;
  flex-direction: column;
}

.seo-logo-text .brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.seo-logo-text .brand-name span {
  color: #22d3ee;
}

.seo-logo-text .brand-tagline {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-top: 2px;
}

/* Navigation menu matching HOME */
.seo-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

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

.seo-nav-links a:hover {
  color: var(--text-white);
}

/* Publicar button section matching HOME */
.seo-nav-publicar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.btn-publicar {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 20px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 8px;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}

.btn-publicar:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.publicar-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Auth buttons matching HOME */
.seo-nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-login:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-register {
  background: #3b82f6;
  color: var(--text-white) !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-register:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.header-cta {
  background: var(--imporlan-accent);
  color: var(--text-white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
}

.header-cta:hover {
  background: var(--imporlan-accent-light);
}

/* Hero Section */
.seo-hero {
  padding: 140px 20px 80px;
  background: linear-gradient(180deg, var(--imporlan-primary) 0%, var(--imporlan-secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.seo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--imporlan-accent), var(--imporlan-accent-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.hero-icon svg {
  width: 40px;
  height: 40px;
  color: var(--text-white);
}

.seo-hero h1 {
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn svg {
  width: 20px;
  height: 20px;
}

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

.btn-primary:hover {
  background: var(--imporlan-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--text-white);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

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

.btn-secondary:hover {
  border-color: var(--imporlan-accent);
  background: rgba(59, 130, 246, 0.1);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  background: rgba(30, 58, 95, 0.3);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 0.9rem;
}

.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs-list a {
  color: var(--text-gray);
}

.breadcrumbs-list a:hover {
  color: var(--imporlan-accent-light);
}

.breadcrumbs-list .current {
  color: var(--text-white);
}

.breadcrumbs-list .separator {
  color: var(--text-gray);
}

/* Benefits Cards Section */
.benefits-section {
  padding: 80px 20px;
  background: var(--imporlan-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--imporlan-accent);
  box-shadow: 0 8px 32px var(--shadow-blue);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--text-white);
}

.icon-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.icon-gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.icon-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }

.benefit-card h3 {
  color: var(--text-white);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
}

/* Process/Steps Section */
.process-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--imporlan-secondary) 0%, var(--imporlan-primary) 100%);
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--imporlan-accent);
  box-shadow: 0 8px 32px var(--shadow-blue);
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--imporlan-accent), var(--imporlan-accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

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

.step-content p {
  margin: 0;
  font-size: 0.95rem;
}

/* Content Section */
.content-section {
  padding: 80px 20px;
  background: var(--imporlan-primary);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  color: var(--imporlan-accent-light);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  color: var(--text-white);
  margin-top: 32px;
}

.content-wrapper p {
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.content-wrapper li {
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-wrapper strong {
  color: var(--text-white);
}

/* Table Styles */
.table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--imporlan-secondary);
}

.seo-table th {
  background: linear-gradient(135deg, var(--imporlan-accent), var(--imporlan-accent-light));
  color: var(--text-white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.seo-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-gray);
}

.seo-table tr:last-child td {
  border-bottom: none;
}

.seo-table tr:hover td {
  background: rgba(59, 130, 246, 0.05);
}

/* Checklist Section */
.checklist-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--imporlan-primary) 0%, var(--imporlan-secondary) 100%);
}

.checklist-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.checklist-box h2 {
  text-align: center;
  margin-bottom: 32px;
}

.checklist-items {
  list-style: none;
  padding: 0;
}

.checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-gray);
}

.checklist-items li:last-child {
  border-bottom: none;
}

.checklist-items .check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--imporlan-green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-items .check-icon svg {
  width: 14px;
  height: 14px;
  color: var(--text-white);
}

/* E-E-A-T / Why Imporlan Section */
.eeat-section {
  padding: 80px 20px;
  background: var(--imporlan-primary);
}

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

.eeat-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.eeat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--imporlan-accent), var(--imporlan-accent-light));
}

.eeat-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--imporlan-accent), var(--imporlan-accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.eeat-card-icon svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  color: var(--text-white);
}

.eeat-card h3 {
  color: var(--imporlan-accent-light);
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.eeat-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--imporlan-secondary) 0%, var(--imporlan-primary) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.1);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-gray);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--imporlan-accent) 0%, var(--imporlan-accent-light) 100%);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: var(--text-white);
  color: var(--imporlan-accent);
}

.cta-section .btn-primary:hover {
  background: var(--imporlan-primary);
  color: var(--text-white);
}

.cta-section .btn-whatsapp {
  background: #25d366;
}

/* Footer - Matching HOME design */
.seo-footer {
  background: var(--imporlan-primary);
  padding: 60px 20px 30px;
  border-top: 1px solid var(--border-color);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer brand section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text .brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}

.footer-logo-text .brand-name span {
  color: #22d3ee;
}

.footer-logo-text .brand-tagline {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.footer-brand-description {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(59, 130, 246, 0.2);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: var(--text-gray);
}

/* Footer columns */
.footer-col h4 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
}

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

.footer-col li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-col li svg {
  width: 18px;
  height: 18px;
  color: var(--text-gray);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col a {
  color: var(--text-gray);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--imporlan-accent-light);
}

.footer-col .contact-text {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-col .contact-note {
  display: block;
  font-size: 0.75rem;
  color: #22d3ee;
  font-style: italic;
}

/* Panel button in footer */
.footer-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3b82f6;
  color: var(--text-white) !important;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-panel-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.footer-panel-btn svg {
  width: 18px;
  height: 18px;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--text-gray);
}

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

.footer-legal a {
  color: var(--text-gray);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--text-white);
}

/* Legacy footer grid support */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Internal Links Section */
.internal-links-section {
  padding: 60px 20px;
  background: rgba(30, 58, 95, 0.3);
}

.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.internal-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.internal-link-card:hover {
  border-color: var(--imporlan-accent);
  transform: translateX(4px);
}

.internal-link-card .link-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.internal-link-card .link-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-white);
}

.internal-link-card .link-text h4 {
  color: var(--text-white);
  margin-bottom: 4px;
  font-size: 1rem;
}

.internal-link-card .link-text p {
  color: var(--text-gray);
  font-size: 0.85rem;
  margin: 0;
}

/* Mid-page CTA */
.mid-cta {
  background: var(--card-bg);
  border: 1px solid var(--imporlan-accent);
  border-radius: 16px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}

.mid-cta h3 {
  margin-bottom: 16px;
}

.mid-cta p {
  margin-bottom: 24px;
}

.mid-cta .cta-buttons {
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .seo-hero {
    padding: 120px 16px 60px;
  }
  
  .hero-icon {
    width: 64px;
    height: 64px;
  }
  
  .hero-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .seo-nav {
    display: none;
  }
  
  .benefits-section,
  .process-section,
  .content-section,
  .checklist-section,
  .eeat-section,
  .faq-section,
  .cta-section {
    padding: 60px 16px;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .checklist-box {
    padding: 24px;
  }
  
  .table-wrapper {
    margin: 24px -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-brand-description {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .seo-nav-links {
    display: none;
  }
  
  .seo-nav-auth {
    display: none;
  }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Print styles */
@media print {
  .seo-header,
  .hero-ctas,
  .cta-section,
  .mid-cta,
  .seo-footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .content-wrapper h2,
  .content-wrapper h3 {
    color: black;
  }
  
  .content-wrapper p,
  .content-wrapper li {
    color: #333;
  }
}
