/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: var(--space-lg);
  z-index: 9999;
  box-shadow: 0 -4px 20px var(--shadow);
  display: none;
}

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

.cookie-banner__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-banner__content h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--text-light);
}

.cookie-banner__content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.cookie-banner__content a:hover {
  color: var(--accent-hover);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.cookie-banner__btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-banner__btn--primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.cookie-banner__btn--primary:hover {
  background: var(--accent-hover);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.cookie-banner__btn--secondary:hover {
  background: var(--bg-mid);
  color: var(--text-light);
}

.cookie-banner__preferences {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: var(--space-lg);
  margin-top: var(--space-md);
  display: none;
}

.cookie-banner__preferences.active {
  display: block;
}

.cookie-banner__preferences h4 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.cookie-banner__preference {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

.cookie-banner__preference:last-child {
  border-bottom: none;
}

.cookie-banner__preference-label {
  flex: 1;
}

.cookie-banner__preference-label strong {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
}

.cookie-banner__preference-label span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.cookie-banner__toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.cookie-banner__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-banner__toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border);
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-banner__toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-light);
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-banner__toggle input:checked + .cookie-banner__toggle-slider {
  background-color: var(--accent);
}

.cookie-banner__toggle input:checked + .cookie-banner__toggle-slider:before {
  transform: translateX(20px);
}

.cookie-banner__toggle input:disabled + .cookie-banner__toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .cookie-banner__container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .cookie-banner__content {
    flex: 1;
    max-width: 600px;
  }

  .cookie-banner__actions {
    flex-shrink: 0;
  }
}

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

:root {
  /* Colour palette - industrial, warm accent */
  --bg-dark: #0d0d0d;
  --bg-mid: #1a1a1a;
  --bg-card: #222222;
  --text-light: #f5f5f5;
  --text-muted: #9a9a9a;
  --accent: #d4a03c;
  --accent-hover: #e8b94a;
  --border: #333333;
  --shadow: rgba(0, 0, 0, 0.4);
  
  /* Typography */
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', var(--font-system);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Container */
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-system);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
  color: var(--text-muted);
  font-size: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

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

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

.hero--service {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero__content--centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__content--centered .hero__subtitle {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.hero__content--centered .hero__actions {
  justify-content: center;
}

.hero--service .hero__badge {
  display: inline-flex;
}

@media (min-width: 768px) {
  .hero--service {
    min-height: 60vh;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
}

.logo__img {
  height: 40px;
  width: auto;
}

.logo__text {
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav__link--cta {
  background: var(--accent);
  color: var(--bg-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: 4px;
  font-weight: 500;
}

.nav__link--cta:hover {
  background: var(--accent-hover);
  color: var(--bg-dark);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide video on mobile, show poster instead */
.hero-video--mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video--desktop {
    display: none;
  }
  .hero-video--mobile {
    display: block;
  }
}

.hero__video-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.85) 0%, rgba(31, 25, 19, 0.80) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23333333" fill-opacity="0.1"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(212, 160, 60, 0.1);
  border: 1px solid var(--accent);
  padding: var(--space-xs) var(--space-md);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.hero__title {
  margin-bottom: var(--space-lg);
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero__note svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero__form {
  background: var(--bg-card);
  border-radius: 12px;
  padding: var(--space-xl);
  border: 1px solid var(--border);
}

.hero__form-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn--large {
  padding: var(--space-md) var(--space-2xl);
  font-size: 1.05rem;
  font-weight: 600;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-dark);
}

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

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

.btn--secondary:hover {
  border-color: var(--text-muted);
}

.btn--whatsapp {
  background: #25D366;
  color: white;
}

.btn--whatsapp:hover {
  background: #128C7E;
}

/* Trust bar */
.trust-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

/* Stats */
.stats {
  padding: var(--space-3xl) 0;
  background: var(--bg-dark);
  content-visibility: auto;
  contain-intrinsic-size: 200px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-mid);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat__label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Services */
.services {
  padding: var(--space-3xl) 0;
  background: var(--bg-mid);
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__subtitle {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

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

.section__description {
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid - centered flex so incomplete rows stay centered */
.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

/* Default: up to 4 cards per row */
.services__grid > .service-card {
  flex: 0 1 calc((100% - 3 * var(--space-lg)) / 4);
  min-width: 240px;
}

/* 3-up variant for pages with 3 or 5 cards */
.services__grid--3 > .service-card {
  flex-basis: calc((100% - 2 * var(--space-lg)) / 3);
}

@media (max-width: 640px) {
  .services__grid > .service-card,
  .services__grid--3 > .service-card {
    flex-basis: 100%;
  }
}

.services__grid--2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  width: 100%;
}

@media (max-width: 640px) {
  .services__grid--2 {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.service-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.service-card--large {
  display: flex;
  flex-direction: column;
}

.service-card__image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg-card));
}

.service-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 160, 60, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.service-card__description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
}

.service-card__features li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.4em;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
}

.service-card__link:hover {
  color: var(--text);
}

.services__grid--full {
  gap: var(--space-lg);
}

/* Why Us */
.why-us {
  padding: var(--space-3xl) 0;
  background: var(--bg-dark);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.why-card {
  padding: var(--space-xl);
  background: var(--bg-mid);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 160, 60, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

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

.why-card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.why-card__text {
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--bg-mid);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: var(--space-xl);
  border: 1px solid var(--border);
}

.testimonial-card__stars {
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--bg-dark);
}

.testimonial-card__name {
  font-weight: 500;
  font-size: 0.9rem;
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Gallery */
.gallery {
  padding: var(--space-3xl) 0;
  background: var(--bg-dark);
  content-visibility: auto;
  contain-intrinsic-size: 1200px;
}

.gallery__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.gallery__item {
  flex: 0 1 calc((100% - 3 * var(--space-md)) / 4);
  min-width: 200px;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery__item:hover {
  transform: scale(1.02);
}

/* Gallery: 2-up on tablet, 1-up on phone */
@media (max-width: 900px) {
  .gallery__item {
    flex-basis: calc((100% - var(--space-md)) / 2);
  }
}

@media (max-width: 480px) {
  .gallery__item {
    flex-basis: 100%;
    min-width: 0;
  }
}

/* Video Showcase */
.video-showcase {
  padding: var(--space-3xl) 0;
  background: var(--bg-dark);
}

.video-showcase__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-showcase__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.video-showcase__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .video-showcase__wrapper {
    max-width: 100%;
  }
}

/* Video Showcase Grid (Homepage) */
.video-showcase-grid {
  padding: var(--space-3xl) 0;
  background: var(--bg-dark);
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.video-grid__item {
  text-align: center;
}

.video-grid__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: var(--space-md);
}

.video-grid__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Lazy-loaded YouTube embed */
.video-grid__embed--lazy {
  cursor: pointer;
}

.video-grid__embed--lazy .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.video-grid__embed--lazy:hover .video-thumbnail {
  opacity: 0.9;
}

.video-grid__embed--lazy .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.video-grid__embed--lazy:hover .play-button {
  background: rgba(255, 0, 0, 0.9);
}

.video-grid__embed--lazy .play-button svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 4px;
}

.video-grid__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

.video-grid__title a {
  color: var(--text-light);
  text-decoration: none;
}

.video-grid__title a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* CTA */
.cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #1f1913 0%, var(--bg-dark) 100%);
  content-visibility: auto;
  contain-intrinsic-size: 400px;
}

.cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.cta__text {
  margin-bottom: var(--space-xl);
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

/* Footer */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  display: block;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.footer__bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.footer__copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

/* Mobile responsive */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
  
  .hero__form {
    display: block;
    max-width: 400px;
    margin: var(--space-xl) auto 0;
  }
  
  .services__grid,
  .why-us__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile menu toggle - hidden on desktop */
.menu-toggle {
  display: none;
}

.menu-overlay {
  display: none;
}

/* Alternate nav structure (used on legal/blog pages) */
.nav__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.nav__logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

.nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.nav__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-xl);
}

.nav__menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav__menu a:hover {
  color: var(--text-light);
}

/* Services dropdown (nav) */
.nav__item--dropdown {
  position: relative;
}

.nav__arrow {
  font-size: 0.65em;
  margin-left: 0.3rem;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.nav__item--dropdown:hover .nav__arrow {
  transform: rotate(180deg);
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 32px var(--shadow);
  padding: var(--space-xs) 0;
  z-index: 200;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  display: block;
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav__dropdown-link:hover {
  color: var(--text-light);
  background: rgba(212, 160, 60, 0.08);
}

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

  .menu-overlay {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 80px var(--space-xl) var(--space-xl);
    gap: var(--space-lg);
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
    z-index: 99;
  }

  .nav.active {
    right: 0;
  }

  .nav__link {
    font-size: 1rem;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__link--cta {
    margin-top: var(--space-md);
    text-align: center;
    border-bottom: none;
  }

  /* Mobile menu toggle */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 100;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 98;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Alternate nav mobile styles */
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 80px var(--space-xl) var(--space-xl);
    gap: var(--space-md);
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
    z-index: 99;
    list-style: none;
    margin: 0;
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__menu li {
    border-bottom: 1px solid var(--border);
  }

  .nav__menu a {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1rem;
  }
  
  .services__grid,
  .why-us__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-bar__inner {
    gap: var(--space-lg);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__brand {
    max-width: 100%;
  }
}

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

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

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

/* Form Status */
.form-status {
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  text-align: center;
}

.form-status--success {
  color: #4ade80;
}

.form-status--error {
  color: #f87171;
}

/* Page Hero (for subpages) */
.hero--page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(31, 25, 19, 0.90) 100%);
}

.hero--page .container {
  text-align: center;
  max-width: 800px;
}

/* Content Section (for About page) */
.content-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-dark);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.content-text {
  color: var(--text-muted);
  line-height: 1.8;
}

.content-text p {
  margin-bottom: var(--space-lg);
}

.content-text p:last-child {
  margin-bottom: 0;
}

.content-image {
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .content-image {
    min-height: 250px;
    order: -1;
  }
}

/* Team Section */
.team-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-mid);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-card:nth-child(even) {
  /* No longer needed for side-by-side layout */
}

.team-card__image {
  height: 100%;
  min-height: 350px;
  background-color: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card__placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.team-card__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-card__name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.team-card__bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.team-card__bio:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-card__image {
    min-height: 250px;
  }
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

/* Contact Section */
.contact-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

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

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  padding: var(--space-2xl);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.contact-form__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.contact-form__subtitle {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.btn--full {
  width: 100%;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__card {
  background: var(--bg-card);
  padding: var(--space-xl);
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.contact-info__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--accent);
}

.contact-info__icon--whatsapp {
  background: #25D366;
  color: white;
}

.contact-info__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.contact-info__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.contact-info__link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.contact-info__link:hover {
  color: var(--accent-hover);
}

/* Map Section */
.map-section {
  padding: 0 0 var(--space-3xl);
}

.map-placeholder {
  background: var(--bg-mid);
  border-radius: 8px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.map-placeholder__content {
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder__content svg {
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.map-placeholder__content p {
  margin-bottom: var(--space-sm);
}

.map-placeholder__tag {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Nav active state */
.nav__link--active {
  color: var(--accent);
}
/* ===================================
   BLOG STYLES
   =================================== */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.page-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog Category */
.blog-category {
  margin-bottom: var(--space-3xl);
}

.blog-category__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card__image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background-color: var(--bg-mid);
}

.blog-card__content {
  padding: var(--space-md);
}

.blog-card__category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
  line-height: 1.35;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card:hover .blog-card__title {
  color: var(--accent);
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Article Styles */
.article {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.article__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.article__breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.article__breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

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

.article__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.article__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto var(--space-md);
}

.article__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article__meta span:not(:last-child)::after {
  content: " · ";
}

.article__content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.article__lead {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.article__content h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  scroll-margin-top: 100px;
}

.article__content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.article__content p {
  margin-bottom: var(--space-md);
}

.article__content ul,
.article__content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.article__content li {
  margin-bottom: var(--space-sm);
}

.article__table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.95rem;
}

.article__table th,
.article__table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.article__table th {
  background: var(--bg-mid);
  font-weight: 600;
}

.article__table tr:hover td {
  background: var(--bg-light);
}

.article__cta {
  text-align: center;
  margin: var(--space-2xl) 0;
  padding: var(--space-xl);
  background: var(--bg-light);
  border-radius: 12px;
}

/* Article Gallery */
.article__gallery {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--bg-light);
  border-radius: 12px;
}

.article__gallery h3 {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.article__gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.article__gallery .gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.article__gallery .gallery-grid img:hover {
  transform: scale(1.02);
}

.article__gallery .gallery-caption {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Team Photos */
.article__team {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--bg-light);
  border-radius: 12px;
}

.article__team h3 {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.team-photos {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: var(--space-sm);
  border: 3px solid var(--accent);
}

.team-member span {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.team-member small {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.team-note {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Article Video */
.article__video {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--bg-light);
  border-radius: 12px;
}

.article__video h3 {
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-dark);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.video-caption {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* FAQ Accordion */
.article__faq {
  margin-top: var(--space-xl);
}

.article__faq details {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.article__faq summary {
  padding: var(--space-md) var(--space-lg);
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s ease;
}

.article__faq summary:hover {
  background: var(--bg-light);
}

.article__faq summary::marker {
  color: var(--accent);
}

.article__faq details[open] summary {
  border-bottom: 1px solid var(--border);
}

.article__faq details p {
  padding: var(--space-lg);
  background: var(--bg-light);
  margin: 0;
}

.article__footer {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.article__author {
  flex: 1;
}

.article__author strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.article__author p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.article__back {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.article__back:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #c41e3a 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-section__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* Legal Page */
.legal-page {
  padding: var(--space-3xl) 0;
  min-height: 60vh;
}

.legal-page__header {
  margin-bottom: var(--space-2xl);
}

.legal-page__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.legal-page__date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-page__content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--text-light);
}

.legal-page__content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: var(--space-xl) 0 var(--space-sm);
  color: var(--text-light);
}

.legal-page__content p {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-page__content ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-xl);
  color: var(--text-muted);
}

.legal-page__content li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.legal-page__content a {
  color: var(--accent);
  text-decoration: none;
}

.legal-page__content a:hover {
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
  padding: var(--space-md);
  text-align: left;
  border: 1px solid var(--border);
}

.legal-table th {
  background: var(--bg-mid);
  font-weight: 600;
  color: var(--text-light);
}

.legal-table td {
  color: var(--text-muted);
}

.legal-table tr:hover td {
  background: var(--bg-mid);
}

/* Footer Legal Links */
.footer__legal {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__legal a {
  color: var(--text-muted);
  text-decoration: none;
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
  .page-hero__title {
    font-size: 2rem;
  }
  
  .article__title {
    font-size: 1.8rem;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .article__footer {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-page__title {
    font-size: 1.8rem;
  }
  
  .legal-table {
    font-size: 0.85rem;
  }
  
  .legal-table th,
  .legal-table td {
    padding: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card__image {
    height: 160px;
  }
}
