/* ============================================
   LANEX AUTO — Design System & Styles
   Mobile-first responsive CSS
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --color-primary: #0B1F3A;
  --color-primary-light: #132d52;
  --color-primary-dark: #071428;
  --color-accent: #4A90E2;
  --color-accent-light: #6BA3E8;
  --color-accent-dark: #3578c7;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-medium-gray: #E0E0E0;
  --color-dark-gray: #888888;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-success: #27AE60;
  --color-error: #E74C3C;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Sizing */
  --max-width: 1200px;
  --header-height: 70px;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-accent: 0 4px 20px rgba(74, 144, 226, 0.3);

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

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ---------- Skip Link (Accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.section-padding {
  padding: var(--space-2xl) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(74, 144, 226, 0); }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-transform: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::after {
  opacity: 1;
  animation: shimmer 1.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-accent);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.45);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Focus styles (Accessibility) */
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}

.header__logo img {
  height: 42px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-white);
  letter-spacing: 1px;
}

.header__logo-text span {
  font-weight: 400;
  font-size: 0.85rem;
  display: block;
  color: var(--color-accent-light);
  letter-spacing: 0;
  line-height: 1;
  margin-top: -2px;
}

/* Navigation */
.nav {
  display: none;
}

.nav.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  z-index: 1000;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-white);
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--color-accent-light);
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: var(--space-xs);
  z-index: 1001;
  cursor: pointer;
}

.hamburger__line {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(7, 20, 40, 0.75) 0%,
    rgba(11, 31, 58, 0.65) 40%,
    rgba(11, 31, 58, 0.80) 100%
  );
}

.hero__content {
  padding: calc(var(--header-height) + var(--space-lg)) var(--space-sm) var(--space-2xl);
  max-width: 700px;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(74, 144, 226, 0.15);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-accent-light);
  letter-spacing: 0.5px;
  margin-bottom: var(--space-md);
}

.hero__divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto var(--space-md);
  border-radius: 2px;
}

.hero__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  animation: float 2s ease-in-out infinite;
}

.hero__scroll-indicator svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--color-light-gray);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-title-underline {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-sm) auto 0;
  border-radius: 2px;
}

.about__description {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.about__description p + p {
  margin-top: var(--space-sm);
}

/* Highlight Cards */
.highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.highlight-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

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

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

.highlight-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.highlight-card:hover .highlight-card__icon {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.highlight-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  transition: color var(--transition-base);
}

.highlight-card:hover .highlight-card__icon svg {
  color: var(--color-white);
}

.highlight-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.highlight-card__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.form-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.form-section .section-label {
  color: var(--color-accent-light);
}

.form-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
  font-size: 0.95rem;
}

.form-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.form-group label .required {
  color: var(--color-accent-light);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.form-control.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.form-error {
  display: none;
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 0.35rem;
}

.form-group.has-error .form-error {
  display: block;
}

/* File upload */
.file-upload {
  position: relative;
}

.file-upload__area {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.file-upload__area:hover {
  border-color: var(--color-accent);
  background: rgba(74, 144, 226, 0.05);
}

.file-upload__area svg {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.file-upload__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.file-upload__text span {
  color: var(--color-accent-light);
  font-weight: 500;
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload__preview {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.file-upload__preview-item {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.file-upload__preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-upload__preview-item .remove-file {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: rgba(231, 76, 60, 0.9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
  line-height: 1;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-group label a {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.checkbox-group label a:hover {
  color: var(--color-white);
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-sm);
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-success), #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  animation: pulse-glow 2s ease-in-out infinite;
}

.form-success__icon svg {
  width: 36px;
  height: 36px;
  color: white;
}

.form-success__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}

.form-success__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--color-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-sm);
  border-radius: var(--radius-md);
  background: var(--color-light-gray);
  transition: all var(--transition-base);
  text-decoration: none;
}

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

.contact-card__icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon--phone {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.contact-card__icon--email {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.contact-card__icon--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.contact-card__info {
  min-width: 0;
}

.contact-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-dark-gray);
  margin-bottom: 2px;
}

.contact-card__value {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.contact__whatsapp-btn {
  margin-top: var(--space-md);
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0 var(--space-sm);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__brand {
  text-align: center;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-xs);
}

.footer__logo img {
  height: 36px;
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
  letter-spacing: 1px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__section {
  text-align: center;
}

.footer__section-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
}

.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-accent-light);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 0.3rem 0;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: var(--space-sm);
}

.footer__bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-white);
  padding: var(--space-md) var(--space-sm);
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: var(--space-xs);
}

.cookie-banner__btn {
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.cookie-banner__btn--accept {
  background: var(--color-accent);
  color: var(--color-white);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-accent-dark);
}

.cookie-banner__btn--decline {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--decline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  min-height: 80vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-page p {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.legal-page ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.legal-page ul li {
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

.legal-page a {
  color: var(--color-accent);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--color-accent-dark);
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --space-2xl: 5rem;
    --space-3xl: 7rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__subtitle {
    font-size: 1.3rem;
  }

  .hero__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-wrapper {
    padding: var(--space-xl);
  }

  .contact__grid {
    max-width: 600px;
  }

  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    text-align: left;
  }

  .footer__brand,
  .footer__section {
    text-align: left;
  }

  .footer__contact-item {
    justify-content: flex-start;
  }

  .cookie-banner__inner {
    flex-direction: row;
    text-align: left;
  }

  .legal-page h1 {
    font-size: 2.2rem;
  }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav__link {
    font-size: 0.9rem;
  }

  .header__cta {
    display: inline-flex;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero__title {
    font-size: 4.2rem;
    letter-spacing: 5px;
  }

  .hero__subtitle {
    font-size: 1.4rem;
  }

  .hero__text {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .highlights {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }

  .contact__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* ---------- Prefers Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
  }
}
