/* ============================================
   LEGADO SERVICES — SHARED STYLES
   ============================================ */

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

:root {
  --black: #000000;
  --dark: #111111;
  --dark-mid: #1A1A1A;
  --gray-dark: #333333;
  --gray: #666666;
  --gray-light: #999999;
  --gray-lighter: #CCCCCC;
  --border: #E0E0E0;
  --off-white: #F5F5F5;
  --white: #FFFFFF;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --nav-height: 72px;
  --container-width: 1200px;
  --article-width: 800px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark-mid);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s, opacity 0.2s, border-color 0.2s; }

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


/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-cta {
  background: var(--white);
  color: var(--black);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}

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

/* Mobile menu button — hidden on desktop, shown via media query */
.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.97);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 16px 0;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: #fff;
}

.mobile-nav .nav-cta {
  display: inline-block !important;
  margin-top: 24px;
  padding: 14px 32px;
  font-size: 1rem;
}



/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: var(--white);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

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

.btn-primary-dark {
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

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

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: #fff;
  color: #fff;
}


/* ============================================
   HERO — HOMEPAGE
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gray-lighter);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================
   HERO — SUBPAGES
   ============================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: url('hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 600px;
}


/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--black);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
}


/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--black);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-top: 4px;
  font-weight: 500;
}


/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--black);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.3rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}


/* ============================================
   ABOUT
   ============================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--gray-dark);
  font-size: 1rem;
}

.quote-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.4;
}

.quote-attr {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 1px;
}


/* ============================================
   PROJECT CARDS — HOMEPAGE (3-col grid)
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.project-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.project-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--dark);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.project-card:hover .project-thumb img,
.project-card-full:hover .project-thumb img {
  transform: scale(1.05);
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.project-info .project-meta {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.project-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.project-link:hover { opacity: 0.6; }


/* ============================================
   PROJECT CARDS — PROJECTS PAGE (2-col grid)
   ============================================ */
.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.project-card-full:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.project-card-full .project-thumb {
  height: 240px;
}

.project-info-full {
  padding: 32px;
}

.project-info-full h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.project-info-full .project-meta {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.project-info-full .project-location {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 16px;
}

.project-info-full .project-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.project-stat {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.project-stat strong {
  color: var(--black);
}

.project-info-full p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}


/* ============================================
   BLOG / ARTICLES GRID
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.article-card:hover {
  border-color: var(--black);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.article-thumb {
  height: 200px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-thumb span {
  color: rgba(255,255,255,0.12);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.article-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-card .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--gray-light);
  font-weight: 500;
}

.article-date { color: var(--gray); font-weight: 600; }

.article-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-excerpt {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.article-link {
  color: var(--black);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.article-link:hover { opacity: 0.6; }
.article-link::after { content: ' \2192'; margin-left: 4px; }


/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.article-header {
  background: var(--off-white);
  padding: calc(var(--nav-height) + 48px) 24px 48px;
  border-bottom: 1px solid var(--border);
}

.article-header .container {
  max-width: var(--article-width);
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}

.article-header .article-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--gray);
  flex-wrap: wrap;
}

.article-header .article-meta strong {
  color: var(--black);
}

.reading-time { font-weight: 500; }

.article-body {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 48px 24px;
}

.article-body article {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-dark);
}

.article-body article p { margin-bottom: 1.8rem; }

.article-body article h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--black);
  line-height: 1.3;
}

.article-body article h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.article-body article strong {
  font-weight: 600;
  color: var(--black);
}

.article-body article em {
  font-style: italic;
  color: var(--gray);
}


/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 32px;
}

.contact-method { margin-bottom: 40px; }

.contact-method h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-method p {
  font-size: 1.1rem;
  color: var(--gray-dark);
}

.contact-method a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1px;
}

.contact-method a:hover { opacity: 0.6; }

.contact-info-note {
  padding: 24px;
  background: var(--off-white);
  border-left: 3px solid var(--black);
  border-radius: 4px;
  margin-top: 32px;
}

.contact-info-note p {
  font-size: 0.9rem;
  color: var(--gray);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.2s;
  color: var(--dark-mid);
  background: var(--white);
}

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

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-full { grid-column: 1 / -1; }

.form-submit {
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.form-submit:hover {
  background: var(--gray-dark);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 16px;
  font-style: italic;
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
  display: none;
}

.form-success p {
  color: #166534;
  font-weight: 500;
}


/* ============================================
   PARTNERS
   ============================================ */
.partners {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 32px;
}

.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.partner-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  opacity: 0.5;
  letter-spacing: 1px;
}


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--black);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

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

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}


/* ============================================
   RESPONSIVE — TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { gap: 24px; }
  .about-layout { gap: 48px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { gap: 24px; }
  .footer-grid { gap: 32px; }
}


/* ============================================
   RESPONSIVE — MOBILE (768px)
   ============================================ */
@media (max-width: 1024px) {
  /* Nav — hide desktop links and CTA, show hamburger */
  .nav-links { display: none !important; }
  nav .nav-cta { display: none !important; }
  .mobile-menu { display: flex !important; }
}

@media (max-width: 768px) {

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-layout { grid-template-columns: 1fr; gap: 32px; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }
  .projects-full-grid { grid-template-columns: 1fr; }

  /* Blog */
  .articles-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { padding: 32px; }
  .form-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Hero */
  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2.2rem; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .cta-section { padding: 64px 0; }

  /* Partners */
  .partners-grid { gap: 24px; }

  /* Article pages */
  .article-header { padding-top: calc(var(--nav-height) + 32px); padding-bottom: 32px; }
  .article-header h1 { font-size: 1.75rem; }
  .article-body { padding: 32px 16px; }
  .article-body article { font-size: 1rem; }
  .article-body article h2 { font-size: 1.5rem; }
}


/* ============================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item .stat-number { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .quote-block { padding: 32px; }
  .quote-text { font-size: 1.5rem; }
}
