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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  background: #000;
  color: #c8c8c8;
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: #c8c8c8;
  text-decoration: none;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: #fff;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .btn {
    padding: 14px 36px;
    font-size: 14px;
  }
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: #e2e2e2;
  color: #000;
}

@media (min-width: 768px) {
  .btn-primary:hover {
    transform: translateY(-1px);
  }
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

@media (min-width: 768px) {
  .btn-outline:hover {
    transform: translateY(-1px);
  }
}

.btn-full {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ===== Header ===== */
.header {
  background: transparent;
  border-bottom: 1px solid transparent;
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

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

.header.scrolled {
  background: rgba(0,0,0,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@media (min-width: 768px) {
  .header.scrolled {
    padding: 14px 0;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .header-brand {
    font-size: 20px;
    letter-spacing: 3px;
  }
}

.header-nav {
  display: none;
  gap: 36px;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open */
@media (max-width: 767px) {
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.97);
    padding: 20px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    animation: navSlideDown 0.2s ease;
  }

  .header-nav.open a {
    font-size: 15px;
    padding: 4px 0;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 820px;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 80px 24px 60px;
  }
}

.hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero-label {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 24px;
  }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 38px;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 52px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 64px;
  }
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 32px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 auto 40px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero-actions .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    gap: 16px;
  }
  .hero-actions .btn {
    width: auto;
  }
}

/* ===== Stats ===== */
.stats {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}

@media (min-width: 768px) {
  .stats {
    padding: 56px 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
}

@media (min-width: 768px) {
  .stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (min-width: 768px) {
  .stat-item {
    flex: 1;
    min-width: 120px;
  }
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-divider {
  display: none;
}

@media (min-width: 768px) {
  .stat-divider {
    display: block;
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
  }
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #fff;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 44px;
    margin-bottom: 4px;
  }
}

.stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 12px;
  }
}

/* ===== Section Common ===== */
.section {
  padding: 56px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .section-label {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }
}

.section-label.center {
  text-align: center;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 38px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }
}

.section-title.center {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #888;
  font-size: 14px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 auto 56px;
  }
}

/* ===== About ===== */
.about {
  background: #000;
}

.about-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 55% 1fr;
    gap: 56px;
    align-items: center;
  }
}

.about-description {
  color: #969696;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .about-description {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 18px;
  }
}

.about-description:last-of-type {
  margin-bottom: 0;
}

.about-highlights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .about-highlights {
    margin-top: 32px;
    gap: 14px;
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
  font-size: 13px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .highlight-item {
    gap: 12px;
    font-size: 14px;
  }
}

.highlight-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #5a9;
}

@media (min-width: 768px) {
  .highlight-item svg {
    width: 20px;
    height: 20px;
  }
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

@media (min-width: 768px) {
  .about-image img {
    border-radius: 8px;
    aspect-ratio: 4/3;
  }
}

/* ===== Expertise ===== */
.expertise {
  background: #060606;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 400px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.expertise-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

@media (min-width: 768px) {
  .expertise-card {
    padding: 32px 24px;
  }
}

.expertise-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .expertise-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
}

.expertise-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: #777;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .expertise-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
  }
}

.expertise-card:hover .expertise-icon {
  color: #ccc;
}

.expertise-icon svg {
  width: 100%;
  height: 100%;
}

.expertise-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

@media (min-width: 768px) {
  .expertise-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.expertise-card p {
  font-size: 12px;
  color: #888;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .expertise-card p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* ===== Approach ===== */
.approach {
  background: #000;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.approach-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 28px 22px;
  transition: border-color 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

@media (min-width: 768px) {
  .approach-card {
    padding: 36px 28px;
  }
}

.approach-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .approach-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
  }
}

.approach-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: rgba(255,255,255,0.08);
  margin-bottom: 12px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .approach-number {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

.approach-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

@media (min-width: 768px) {
  .approach-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.approach-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .approach-card p {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* ===== Geography ===== */
.geography {
  background: #060606;
}

.geo-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .geo-grid {
    grid-template-columns: 55% 1fr;
    gap: 56px;
  }
}

.geo-regions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .geo-regions {
    margin-top: 32px;
    gap: 24px;
  }
}

.geo-region {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.geo-region.visible {
  opacity: 1;
  transform: translateY(0);
}

.geo-region h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: 0.2px;
}

@media (min-width: 768px) {
  .geo-region h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }
}

.geo-region p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .geo-region p {
    font-size: 13px;
    line-height: 1.6;
  }
}

.geo-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

@media (min-width: 768px) {
  .geo-image img {
    border-radius: 8px;
    aspect-ratio: 4/3;
  }
}

/* ===== Contact ===== */
.contact {
  background: #000;
}

.contact-grid {
  display: grid;
  gap: 32px;
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* On mobile: form first, info below */
.contact-form-wrap {
  order: 1;
}

.contact-info {
  order: 2;
}

@media (min-width: 768px) {
  .contact-info {
    order: 1;
  }
  .contact-form-wrap {
    order: 2;
  }
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .contact-info h3 {
    font-size: 26px;
    margin-bottom: 28px;
  }
}

/* Mobile: compact 2-column grid for contact items */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .contact-info-grid {
    display: block;
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #969696;
  font-size: 12px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .contact-item {
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
  }
}

.contact-item strong {
  color: #bbb;
  font-weight: 500;
  display: block;
  margin-bottom: 1px;
  font-size: 11px;
}

@media (min-width: 768px) {
  .contact-item strong {
    font-size: inherit;
    margin-bottom: 2px;
  }
}

.contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #555;
}

@media (min-width: 768px) {
  .contact-item svg {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #666;
  }
}

.contact-item a {
  color: #969696;
  word-break: break-all;
}

.contact-item a:hover {
  color: #fff;
}

/* ===== Form ===== */
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-form-wrap {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    overflow: visible;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-form {
    gap: 18px;
  }
}

.form-row {
  display: grid;
  gap: 14px;
  min-width: 0;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.form-group label {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .form-group label {
    font-size: 13px;
  }
}

.required {
  color: #c0392b;
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 11px 14px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.3);
}

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

.form-actions {
  margin-top: 6px;
}

@media (min-width: 768px) {
  .form-actions {
    margin-top: 8px;
  }
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 40px 20px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}

@media (min-width: 768px) {
  .form-success {
    gap: 16px;
    padding: 56px 24px;
  }
}

.form-success svg {
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .form-success svg {
    width: 48px;
    height: 48px;
  }
}

.form-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}

@media (min-width: 768px) {
  .form-success h4 {
    font-size: 22px;
  }
}

.form-success p {
  color: #888;
  font-size: 14px;
  max-width: 360px;
}

@media (min-width: 768px) {
  .form-success p {
    font-size: 15px;
  }
}

/* ===== Footer ===== */
.footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0 0;
}

@media (min-width: 768px) {
  .footer {
    padding: 56px 0 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
  }
}

/* On mobile: brand spans full width */
.footer-brand {
  grid-column: 1 / -1;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: auto;
    padding-bottom: 0;
    border-bottom: none;
  }
}

.footer-brand h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .footer-brand h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.footer-brand p {
  font-size: 11px;
  color: #666;
}

@media (min-width: 768px) {
  .footer-brand p {
    font-size: 13px;
  }
}

.footer-links h5,
.footer-legal h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .footer-links h5,
  .footer-legal h5 {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

.footer-links a {
  display: block;
  font-size: 12px;
  color: #666;
  padding: 4px 0;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .footer-links a {
    font-size: 14px;
    padding: 0;
    margin-bottom: 10px;
  }
}

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

.footer-legal p {
  font-size: 11px;
  color: #555;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .footer-legal p {
    font-size: 13px;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    padding: 24px 0;
  }
}

.footer-bottom p {
  font-size: 10px;
  color: #555;
}

@media (min-width: 768px) {
  .footer-bottom p {
    font-size: 12px;
  }
}

/* ===== Animations ===== */
@media (prefers-reduced-motion: no-preference) {
  .expertise-card:nth-child(1).visible { transition-delay: 0.05s; }
  .expertise-card:nth-child(2).visible { transition-delay: 0.1s; }
  .expertise-card:nth-child(3).visible { transition-delay: 0.15s; }
  .expertise-card:nth-child(4).visible { transition-delay: 0.2s; }
  .expertise-card:nth-child(5).visible { transition-delay: 0.25s; }
  .expertise-card:nth-child(6).visible { transition-delay: 0.3s; }
  .expertise-card:nth-child(7).visible { transition-delay: 0.35s; }
  .expertise-card:nth-child(8).visible { transition-delay: 0.4s; }

  .approach-card:nth-child(1).visible { transition-delay: 0.05s; }
  .approach-card:nth-child(2).visible { transition-delay: 0.1s; }
  .approach-card:nth-child(3).visible { transition-delay: 0.15s; }
  .approach-card:nth-child(4).visible { transition-delay: 0.2s; }
  .approach-card:nth-child(5).visible { transition-delay: 0.25s; }
  .approach-card:nth-child(6).visible { transition-delay: 0.3s; }

  .geo-region:nth-child(1).visible { transition-delay: 0.05s; }
  .geo-region:nth-child(2).visible { transition-delay: 0.1s; }
  .geo-region:nth-child(3).visible { transition-delay: 0.15s; }
  .geo-region:nth-child(4).visible { transition-delay: 0.2s; }
}

/* ===== Safe area (iPhone notch) ===== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer-bottom {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}
