/* ===================================================================
   LANDING PAGE STYLES - Fintelligence.ai
   Using system design tokens
   =================================================================== */

/* CSS Variables - Matching system design */
:root {
  --color-primary: #ff6b35;
  --color-primary-hover: #e55a2e;
  --color-primary-light: #ffebe2;
  --color-secondary: #2563eb;
  --color-secondary-hover: #1d4ed8;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-white: #ffffff;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.3s ease;
}

/* ===================================================================
   BASE STYLES
   =================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-800);
  background: var(--color-white);
  height: 100%;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 72px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================================
   NAVIGATION
   =================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-200);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav__brand:hover {
  opacity: 0.8;
}

.nav__logo {
  height: 80px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  color: var(--color-gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-gray-700);
  cursor: pointer;
}

/* ===================================================================
   BUTTONS
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
}

.btn--primary {
  background: #ffa07a;
  color: var(--color-white);
}

.btn--primary:hover {
  background: #ff8a5c;
  transform: translateY(-2px);
}

.btn--secondary {
  background: #ffa07a;
  color: var(--color-white);
}

.btn--secondary:hover {
  background: #ff8a5c;
}

.btn--outline {
  background: transparent;
  color: #ffa07a;
  border: 2px solid #ffa07a;
}

.btn--outline:hover {
  background: #ffa07a;
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--outline-blue {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn--outline-blue:hover {
  background: #3b82f6;
  color: var(--color-white);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */

.hero {
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #fef7f4 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-gray-900);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero__title--gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero__stats {
  display: flex;
  gap: 48px;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.stat__label {
  font-size: 14px;
  color: var(--color-gray-600);
}

.hero__visual {
  position: relative;
  height: 550px;
  animation: fadeIn 0.8s ease 0.5s backwards;
}

.hero__card {
  position: absolute;
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.hero__card--1 {
  top: 50px;
  left: 0;
  width: 280px;
  z-index: 2;
}

.hero__card--2 {
  top: 200px;
  right: 0;
  width: 280px;
  animation-delay: 1s;
}

.hero__card--3 {
  top: 350px;
  left: 80px;
  width: 280px;
  animation-delay: 2s;
  z-index: 3;
}

.hero__card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__card--link:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.15);
}

.card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-gray-700);
  font-weight: 600;
}

.card__header i {
  font-size: 20px;
  color: var(--color-primary);
}

.card__line {
  height: 8px;
  background: var(--color-gray-200);
  border-radius: 4px;
  margin-bottom: 8px;
}

.card__line--short {
  width: 60%;
}

.card__line--medium {
  width: 80%;
}

.card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

.card__badge--success {
  background: #d1fae5;
  color: #059669;
}

.card__badge--warning {
  background: #fef3c7;
  color: #b45309;
}

.card__badge--danger {
  background: #fee2e2;
  color: #dc2626;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  opacity: 0.1;
  z-index: 0;
}

.hero__shape--1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.hero__shape--2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

/* ===================================================================
   SECTION HEADERS
   =================================================================== */

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section__title {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__description {
  font-size: 18px;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* ===================================================================
   FEATURES SECTION
   =================================================================== */

.features {
  padding: 100px 0;
  background: var(--color-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature__card {
  padding: 32px;
  background: var(--color-gray-50);
  border-radius: 16px;
  transition: var(--transition);
}

.feature__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: var(--color-white);
}

.feature__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature__icon--primary {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.feature__icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.feature__icon--purple {
  background: #ede9fe;
  color: #8b5cf6;
}

.feature__icon--green {
  background: #d1fae5;
  color: #10b981;
}

.feature__icon--orange {
  background: #ffedd5;
  color: #f97316;
}

.feature__icon--red {
  background: #fee2e2;
  color: #ef4444;
}

.feature__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 12px;
}

.feature__description {
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* ===================================================================
   HOW IT WORKS SECTION
   =================================================================== */

.how-it-works {
  padding: 100px 0;
  background: var(--color-gray-50);
}

.steps {
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: -48px;
  width: 2px;
  background: var(--color-gray-200);
}

.step:last-child::before {
  display: none;
}

.step--reverse {
  grid-template-columns: 44px 1fr;
}

.step--reverse .step__visual {
  display: none;
}

.step__number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff8a5c 0%, #5b8def 100%);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  flex-shrink: 0;
}

.step__content {
  z-index: 1;
}

.step__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 12px;
}

.step__description {
  font-size: 16px;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.step__visual {
  display: none;
}

.step__icon {
  font-size: 72px;
  color: var(--color-primary);
  opacity: 0.3;
}

/* ===================================================================
   USE CASES SECTION
   =================================================================== */

.use-cases {
  padding: 100px 0;
  background: var(--color-white);
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.use-case__card {
  padding: 40px;
  background: var(--color-gray-50);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.use-case__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: var(--color-white);
}

.use-case__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 12px;
  font-size: 28px;
  margin-bottom: 24px;
}

.use-case__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 12px;
}

.use-case__description {
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.use-case__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.use-case__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-gray-700);
}

.use-case__list i {
  color: var(--color-success);
  font-size: 16px;
}

/* ===================================================================
   CUSTOMERS SECTION
   =================================================================== */

.customers {
  padding: 30px 0 80px;
  background: var(--color-white);
  overflow: hidden;
}

.customers .section__header {
  margin-bottom: 32px;
}

.customers__grid {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.customers__grid:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.customer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-width: 200px;
  height: 80px;
  background: transparent;
  border-radius: 0;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}

.customer__logo:hover {
  transform: scale(1.1);
}

.customer__logo img {
  max-width: 180px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.8;
  transition: var(--transition);
}

.customer__logo:hover img {
  opacity: 1;
}

/* Placeholder styles for demo */
.customer__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-gray-400);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.customer__placeholder i {
  font-size: 32px;
  color: var(--color-gray-300);
}

.customer__placeholder span {
  font-size: 14px;
  font-weight: 600;
}

.customer__logo:hover .customer__placeholder {
  color: var(--color-primary);
}

.customer__logo:hover .customer__placeholder i {
  color: var(--color-primary);
}

.customers__note {
  text-align: center;
  font-size: 14px;
  color: var(--color-gray-500);
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: var(--color-gray-50);
  border-radius: 8px;
}

.customers__note i {
  color: var(--color-primary);
  font-size: 16px;
}

.customers__note code {
  background: var(--color-white);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--color-primary);
}

/* ===================================================================
   TRY FREE SECTION
   =================================================================== */

.try-free {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #fef3ee 100%);
}

.try-free__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.try-free__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  background: var(--color-white);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.try-free__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.try-free__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 32px;
  margin-bottom: 24px;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.try-free__card:nth-child(2) .try-free__icon {
  background: #dbeafe;
  color: #2563eb;
}

.try-free__card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-gray-900);
}

.try-free__card p {
  font-size: 15px;
  color: var(--color-gray-500);
  line-height: 1.6;
  margin-bottom: 28px;
}

.try-free__card .btn {
  margin-top: auto;
}

/* ===================================================================
   CTA SECTION
   =================================================================== */

.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta__description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta__form {
  max-width: 600px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 20px;
}

.form__input {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-family: var(--font-family);
  color: var(--color-gray-900);
  background: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: var(--transition);
  outline: none;
}

.form__input::placeholder {
  color: var(--color-gray-400);
}

.form__input:focus {
  border-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===================================================================
   FOOTER
   =================================================================== */

.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-400);
  padding: 60px 0 0;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-gray-800);
}

.footer__col--brand {
  max-width: 480px;
  width: 100%;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.footer__logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1); /* Makes SVG white for dark footer */
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer__logo:hover img {
  opacity: 1;
}

.footer__description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: var(--color-gray-300);
}

.footer__social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.footer__social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-800);
  color: var(--color-gray-400);
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  font-size: 20px;
}

.footer__social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(255, 107, 53, 0.25);
}

.footer__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: var(--color-gray-400);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  padding: 28px 0;
  text-align: center;
}

.footer__copyright {
  font-size: 14px;
  color: var(--color-gray-500);
  letter-spacing: 0.02em;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */

@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    height: 400px;
    margin-top: 40px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-cases__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    transition: left 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__toggle {
    display: block;
  }

  .nav__actions {
    display: none;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__description {
    font-size: 18px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__stats {
    flex-direction: column;
    gap: 24px;
  }

  .section__title {
    font-size: 32px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .try-free__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .step__visual {
    display: none;
  }

  .step--reverse {
    grid-template-columns: 40px 1fr;
  }

  .step__number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 14px;
  }

  .step::before {
    left: 19px;
    top: 40px;
  }

  .cta__title {
    font-size: 32px;
  }

  .cta__actions {
    flex-direction: column;
  }

  .footer__grid {
    padding-bottom: 32px;
  }

  .footer__col--brand {
    max-width: 100%;
  }

  .footer__logo img {
    height: 36px;
  }

  .footer__description {
    font-size: 15px;
  }

  .footer__bottom {
    padding: 24px 0;
  }
}

/* ===================================================================
   FOOTER PRIVACY LINK
   =================================================================== */

.footer__separator {
  color: var(--color-gray-600);
  margin: 0 8px;
}

.footer__link {
  color: var(--color-gray-500);
  text-decoration: none;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--color-gray-300);
}

/* ===================================================================
   PRIVACY MODAL
   =================================================================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  max-width: 800px;
  max-height: 85vh;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--color-gray-100);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-gray-600);
  transition: var(--transition);
  z-index: 1;
}

.modal__close:hover {
  background: var(--color-gray-200);
  color: var(--color-gray-800);
}

.modal__body {
  padding: 48px;
  overflow-y: auto;
  max-height: 85vh;
}

.modal__body h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 32px;
}

.modal__body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-gray-800);
  margin-top: 24px;
  margin-bottom: 12px;
}

.modal__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .modal__body {
    padding: 32px 24px;
  }

  .modal__body h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .modal__body h3 {
    font-size: 16px;
  }

  .modal__body p {
    font-size: 14px;
  }
}
