/* ==========================================
   deekenSolutions - Fresh Modern Design
   ========================================== */

:root {
  /* Core Colors */
  --primary: #0066FF;
  --primary-dark: #0052CC;
  --dark: #1A1D29;
  --dark-light: #2A2D3A;
  
  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  
  /* System */
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 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);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* ==========================================
   Base Styles
   ========================================== */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================
   Header & Navigation
   ========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  padding: 1rem 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(14%) sepia(17%) saturate(1316%) hue-rotate(207deg) brightness(96%) contrast(94%);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 2rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero-text {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--gray-200);
  animation: float 6s ease-in-out infinite;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.hero-card-title {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

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

.hero-card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
}

.hero-card-dots span:first-child {
  background: #FF5F57;
}

.hero-card-dots span:nth-child(2) {
  background: #FFBD2E;
}

.hero-card-dots span:last-child {
  background: #28CA42;
}

.hero-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chart-area {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: var(--radius);
}

.chart-header {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.chart {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 40px;
}

.chart-bar {
  background: linear-gradient(to top, var(--primary), var(--primary-dark));
  border-radius: 2px;
  flex: 1;
  min-height: 8px;
  transition: var(--transition);
  opacity: 0.8;
}

.chart-bar:hover {
  opacity: 1;
  transform: scaleY(1.1);
}

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

/* ==========================================
   Buttons
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  transform: translateY(-2px);
  color: var(--gray-700);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ==========================================
   About Section
   ========================================== */

.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-info .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--primary);
  font-weight: 600;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

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

.stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-card .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.3;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.tag:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ==========================================
   Section Headers
   ========================================== */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==========================================
   Services Section
   ========================================== */

.services {
  padding: 6rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: center;
}

.service-features li {
  color: var(--gray-700);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

/* ==========================================
   Contact Section
   ========================================== */

.contact {
  padding: 6rem 0;
  background: var(--dark);
  color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
}

.contact-info p {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
  color: var(--white);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}

/* WhatsApp spezifische Farbe */
.contact-icon.whatsapp {
  background: #25D366 !important;
}

.contact-method .fa-whatsapp {
  color: white !important;
  font-size: 1.4rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
  font-size: 0.9rem;
}

.contact-value {
  color: var(--gray-300);
  font-size: 0.9rem;
}

.contact-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
  max-width: 400px;
}

.cta-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.cta-card p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--dark-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
}

.footer-brand img {
  height: 28px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(100%);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.9rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-light);
}

.footer-bottom small {
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* ==========================================
   Legal Pages (Impressum/Datenschutz)
   ========================================== */

.main-content {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--gray-50);
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.legal-header p {
  color: var(--gray-600);
  font-size: 1rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.legal-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-section h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--primary);
  border-radius: 2px;
}

.legal-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.5rem 0 1rem;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.info-item i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item div {
  flex: 1;
  line-height: 1.6;
  width: 100%;
}

.info-item strong {
  color: var(--dark);
  font-weight: 600;
}

.info-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.info-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.text-content {
  line-height: 1.7;
}

.text-content p {
  margin-bottom: 1.25rem;
  color: var(--gray-700);
}

.text-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--gray-700);
}

.text-content li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.legal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

/* ==========================================
   Request Form Styles
   ========================================== */

.request-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-indicator {
  margin-bottom: 2rem;
  text-align: center;
}

.step-counter {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: width 0.3s ease;
}

.form-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.step-description {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
  color: var(--gray-700);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

.form-control.is-invalid {
  border-color: #ef4444;
}

.invalid-feedback {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.success-message h3 {
  color: #10b981;
  margin-bottom: 1rem;
}

.alert {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.alert-danger {
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.alert-success {
  background-color: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-option {
  cursor: pointer;
  transition: var(--transition);
}

.service-option input[type="checkbox"] {
  display: none;
}

.service-card-small {
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  background: var(--white);
}

.service-option:hover .service-card-small {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.service-option input[type="checkbox"]:checked + .service-card-small {
  border-color: var(--primary);
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.service-icon-small {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-title {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.3;
}

.service-option.is-invalid .service-card-small {
  border-color: #ef4444;
}

.privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.privacy-icon {
  color: #10b981;
  font-size: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.privacy-text {
  flex: 1;
}

.privacy-text p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray-600);
}

.privacy-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.privacy-text a:hover {
  text-decoration: underline;
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
  
  .container {
    padding: 0 2rem;
  }
  
  .legal-page {
    padding: 2rem 1rem;
  }
  
  .legal-section {
    padding: 1.75rem;
  }
  
  .legal-header {
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-container {
    justify-content: center;
    padding: 0 1.5rem;
  }
  
  .nav-logo img {
    height: 32px;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-visual {
    order: 1;
  }
  
  .hero-card {
    max-width: 320px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .about-info .section-header {
    text-align: center;
  }
  
  .stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .expertise-tags {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  /* Legal Pages Tablet */
  .main-content {
    padding-top: 90px;
  }
  
  .legal-page {
    padding: 2rem 0;
    max-width: 100%;
  }
  
  .legal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .legal-header h1 {
    font-size: 2rem;
  }
  
  .legal-content {
    gap: 2rem;
  }
  
  .legal-section {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .legal-section h2::before {
    width: 3px;
    height: 20px;
  }
  
  .info-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .info-item i {
    align-self: center;
    font-size: 1.25rem;
    margin-top: 0;
  }
  
  .info-item div {
    text-align: center !important;
    width: 100%;
  }
  
  .info-card {
    gap: 1.25rem;
  }
  
  .legal-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .legal-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
  
  .text-content {
    font-size: 0.9rem;
  }
  
  .text-content p {
    margin-bottom: 1rem;
  }
  
  .text-content ul {
    margin-left: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

/* Mobile Large */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-logo img {
    height: 28px;
  }
  
  .hero-container {
    padding: 0 1rem;
  }
  
  .services {
    padding: 4rem 0;
  }
  
  .about {
    padding: 4rem 0;
  }
  
  .about-text {
    font-size: 1rem;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.25rem;
  }
  
  .contact {
    padding: 4rem 0;
  }
  
  .service-card,
  .cta-card {
    padding: 1.5rem;
  }
  
  /* Legal Pages Mobile */
  .main-content {
    padding-top: 80px;
  }
  
  .legal-page {
    padding: 1.5rem 0;
  }
  
  .legal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  
  .legal-header h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .legal-header p {
    font-size: 0.9rem;
  }
  
  .legal-content {
    gap: 1.5rem;
  }
  
  .legal-section {
    padding: 1.25rem;
    margin: 0 0.25rem;
    border-radius: var(--radius);
  }
  
  .legal-section h2 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .legal-section h2::before {
    width: 30px;
    height: 3px;
  }
  
  .legal-section h3 {
    font-size: 1rem;
    margin: 1.25rem 0 0.75rem;
  }
  
  .info-item {
    padding: 1.25rem;
    gap: 0.875rem;
  }
  
  .info-item i {
    font-size: 1.125rem;
  }
  
  .info-item div {
    font-size: 0.9rem;
    text-align: center !important;
    width: 100%;
  }
  
  .text-content {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .text-content p {
    margin-bottom: 0.875rem;
  }
  
  .text-content ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
  
  .text-content li {
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
  }
  
  .legal-actions {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    gap: 0.5rem;
  }
  
  .legal-actions .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* Mobile Small */
@media (max-width: 375px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .legal-section {
    margin: 0;
    padding: 1rem;
  }
  
  .legal-header h1 {
    font-size: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1rem;
  }
  
  .info-item {
    padding: 1rem;
  }
  
  .info-item div {
    text-align: center !important;
    width: 100%;
  }
  
  .text-content {
    font-size: 0.8rem;
  }
  
  .legal-actions .btn {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Request Form Mobile */
  .request-form-container {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .service-card-small {
    padding: 0.875rem;
  }
  
  .service-title {
    font-size: 0.85rem;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .privacy-notice {
    padding: 0.875rem;
    gap: 0.75rem;
  }
  
  .privacy-text p {
    font-size: 0.8rem;
  }
}
