/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
  /* Colors - Professional Corporate Palette */
  --primary-color: #0066cc;
  --primary-dark: #004499;
  --primary-light: #3385dd;
  --secondary-color: #00a86b;
  --accent-color: #ff6b35;

  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-light: #718096;

  --bg-white: #ffffff;
  --bg-light: #f7fafc;
  --bg-gray: #edf2f7;
  --bg-dark: #1a202c;

  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  line-height: var(--line-height-base);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.5;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-base);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  height: 40px;
  width: auto;
  transition: var(--transition-fast);
}

.logo:hover .logo-img {
  opacity: 0.8;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

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

.nav-cta {
  background: var(--primary-color);
  color: var(--bg-white) !important;
  padding: 10px 24px;
  border-radius: 6px;
}

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

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

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: radial-gradient(
      circle at 25% 25%,
      var(--primary-color) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75% 75%,
      var(--primary-color) 2px,
      transparent 2px
    );
  background-size: 50px 50px;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.hero-title {
  margin-bottom: 30px;
  color: var(--text-primary);
}

.hero-title .highlight {
  color: var(--primary-color);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .hero {
    padding: 140px 0 80px;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
  padding: 60px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.trust-text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
  opacity: 0.6;
  transition: var(--transition-fast);
}

.trust-logo:hover {
  opacity: 1;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .trust-logos {
    gap: 30px;
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 20px;
}

/* ============================================
   PROBLEM SOLUTION SECTION
   ============================================ */

.problem-solution {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.problem-card {
  padding: 40px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: var(--transition-base);
}

.problem-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.problem-icon i {
  font-size: 3rem;
}

.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.problem-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .problem-solution {
    padding: var(--section-padding-mobile) 0;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  border: 2px solid var(--border-color);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.service-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.service-header {
  margin-bottom: 20px;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-icon i {
  font-size: 3rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
}

.service-benefits {
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-benefits li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-benefits li:last-child {
  border-bottom: none;
}

.service-benefits strong {
  color: var(--text-primary);
}

.service-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.service-tech span {
  padding: 6px 14px;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.service-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}

.service-link:hover {
  gap: 8px;
}

@media (max-width: 968px) {
  .services-section {
    padding: var(--section-padding-mobile) 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================
   ROI SECTION
   ============================================ */

.roi-section {
  padding: var(--section-padding) 0;
  background: var(--bg-dark);
  color: var(--bg-white);
}

.roi-section .section-label {
  color: var(--primary-light);
}

.roi-section h2 {
  color: var(--bg-white);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.roi-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

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

.roi-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 10px;
}

.roi-unit {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.roi-description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.roi-calculator-cta {
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-calculator-cta h3 {
  color: var(--bg-white);
  font-size: 1.75rem;
  margin-bottom: 30px;
}

@media (max-width: 968px) {
  .roi-section {
    padding: var(--section-padding-mobile) 0;
  }

  .roi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 568px) {
  .roi-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

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

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 80px;
  bottom: -60px;
  width: 2px;
  background: var(--border-color);
}

.process-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1;
}

.process-content {
  flex-grow: 1;
  padding-top: 5px;
}

.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.process-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.process-deliverables {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-deliverables li {
  padding-left: 25px;
  position: relative;
  color: var(--text-secondary);
}

.process-deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .process-section {
    padding: var(--section-padding-mobile) 0;
  }

  .process-step {
    gap: 20px;
  }

  .process-step:not(:last-child)::after {
    left: 25px;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */

.case-studies-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.case-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  border: 2px solid var(--border-color);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.case-industry {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  width: fit-content;
}

.case-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.case-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 2px solid var(--border-color);
}

.case-metric {
  text-align: center;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

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

@media (max-width: 968px) {
  .case-studies-section {
    padding: var(--section-padding-mobile) 0;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us-section {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  text-align: center;
  padding: 40px 30px;
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.why-icon i {
  font-size: 3rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.why-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .why-us-section {
    padding: var(--section-padding-mobile) 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 568px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--bg-white);
}

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

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

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
  text-align: left;
}

.cta-benefit {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* Form Styles */
.contact-form {
  background: var(--bg-white);
  padding: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  margin-bottom: 50px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.form-privacy {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 20px;
  text-align: center;
}

.contact-alternative {
  color: rgba(255, 255, 255, 0.9);
}

.contact-alternative p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--bg-white);
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .cta-section {
    padding: var(--section-padding-mobile) 0;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h4 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.footer-section h5 {
  color: var(--bg-white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--bg-white);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ============================================
   LEGAL PAGE
   ============================================ */

.legal-page {
  padding: 140px 0 80px;
  background: var(--bg-light);
  min-height: calc(100vh - 400px);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 60px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

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

.legal-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .legal-page {
    padding: 120px 0 60px;
  }

  .legal-content {
    padding: 40px 30px;
    border-radius: 12px;
  }

  .legal-content h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .legal-content h2 {
    font-size: 1.375rem;
    margin-top: 30px;
  }

  .legal-content p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 30px 20px;
  }

  .legal-content h1 {
    font-size: 1.75rem;
  }

  .legal-content h2 {
    font-size: 1.25rem;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 30px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.cookie-banner-text p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-banner-text a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 12px 24px;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.btn-cookie-accept {
  background: var(--primary-color);
  color: var(--bg-white);
  border: 2px solid var(--primary-color);
}

.btn-cookie-accept:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-cookie-reject:hover {
  background: var(--bg-light);
  border-color: var(--text-secondary);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-cookie-settings:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}

@media (max-width: 968px) {
  .cookie-banner {
    padding: 25px 0;
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: 20px;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}

@media (max-width: 568px) {
  .cookie-banner {
    padding: 20px 0;
  }

  .cookie-banner-text h3 {
    font-size: 1.125rem;
  }

  .cookie-banner-text p {
    font-size: 0.875rem;
  }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}
