/* ============================================
   THE MOVEMENT DOCS — Brand Stylesheet
   Palette: Emerald Green + Cream
   ============================================ */

:root {
  --emerald-900: #064e2b;
  --emerald-800: #0d6e3f;
  --emerald-700: #118a4f;
  --emerald-600: #15a85e;
  --emerald-500: #1ec96e;
  --cream-50: #faf8f4;
  --cream-100: #f5f0e8;
  --cream-200: #ebe4d6;
  --cream-300: #ddd3c0;
  --dark: #0f1a14;
  --dark-soft: #1a2e22;
  --text-primary: #0f1a14;
  --text-secondary: #3d5a48;
  --text-muted: #6b8f78;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(15,26,20,0.08);
  --shadow-md: 0 4px 20px rgba(15,26,20,0.10);
  --shadow-lg: 0 8px 40px rgba(15,26,20,0.14);
  --shadow-xl: 0 16px 60px rgba(15,26,20,0.18);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream-50);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--emerald-800); }
.nav-logo-icon { color: var(--white); transition: color var(--transition); }
.navbar.scrolled .nav-logo-icon { color: var(--emerald-800); }
.nav-logo-text { font-size: 1.05rem; letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-500);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--text-secondary); }
.navbar.scrolled .nav-links a:hover { color: var(--emerald-800); }

.btn-nav {
  background: var(--emerald-600);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--emerald-700); transform: translateY(-1px); }
.navbar.scrolled .btn-nav { background: var(--emerald-700); }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text-primary); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--emerald-700);
  color: var(--white);
  border-color: var(--emerald-700);
}
.btn-primary:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--emerald-800);
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--emerald-800);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald-700);
  margin-bottom: 16px;
}
.section-label-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-600);
  border-radius: 50%;
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,78,43,0.92) 0%,
    rgba(13,110,63,0.85) 40%,
    rgba(30,201,110,0.6) 100%
  );
}
.hero-shape {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-shape--tl {
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  top: -60px;
  left: -80px;
  transform: rotate(12deg);
}
.hero-shape--br {
  width: 300px;
  height: 300px;
  background: rgba(30,201,110,0.15);
  border-radius: 50%;
  bottom: -40px;
  right: 10%;
}
.hero-shape--circle {
  width: 160px;
  height: 160px;
  border: 3px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  top: 20%;
  right: 5%;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 800px;
}
.text-accent {
  color: var(--emerald-500);
  position: relative;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--cream-50);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,110,63,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.services .container { position: relative; }
.services .section-label,
.services .section-title,
.services .section-sub { margin-bottom: 56px; }
.services .section-title { max-width: 500px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--cream-200);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card--cream {
  background: var(--cream-100);
  border-color: var(--cream-200);
}
.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-600), var(--emerald-400));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card--cream .service-card-accent {
  background: linear-gradient(90deg, var(--emerald-700), var(--emerald-500));
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(13,110,63,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon {
  background: var(--emerald-700);
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.about-shape {
  position: absolute;
  pointer-events: none;
}
.about-shape--bl {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,110,63,0.08) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
}
.about-shape--tr {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30,201,110,0.1) 0%, transparent 70%);
  top: -100px;
  right: -50px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/18;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--emerald-700);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.15;
}
.about-floating-card {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-floating-card svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}
.about-floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.about-floating-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.about-content .section-title { margin-bottom: 20px; }
.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-value-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--emerald-600);
  opacity: 0.5;
  line-height: 1;
  min-width: 32px;
}
.about-value strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.about-value span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   APPROACH
   ============================================ */
.approach {
  padding: 120px 0;
  background: var(--emerald-800);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.approach::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,201,110,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.approach .container { position: relative; z-index: 1; }
.approach .section-label { color: var(--emerald-400); }
.approach .section-label-dot { background: var(--emerald-400); }
.approach .section-title { color: var(--white); margin-bottom: 12px; }
.approach .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 64px; }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.approach-step {
  position: relative;
  padding: 32px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: background var(--transition), transform var(--transition);
}
.approach-step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.approach-step-number {
  width: 48px;
  height: 48px;
  background: var(--emerald-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}
.approach-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.approach-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.approach-step-connector {
  display: none;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 0;
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.cta-banner-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
}
.cta-shape--1 {
  width: 300px;
  height: 300px;
  background: rgba(13,110,63,0.08);
  top: -80px;
  left: -80px;
}
.cta-shape--2 {
  width: 200px;
  height: 200px;
  background: rgba(30,201,110,0.1);
  bottom: -60px;
  right: 15%;
}
.cta-shape--3 {
  width: 120px;
  height: 120px;
  background: rgba(13,110,63,0.06);
  top: 30%;
  right: 5%;
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-banner-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 120px 0;
  background: var(--cream-50);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-info .section-title { margin-bottom: 16px; }
.location-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.location-detail svg {
  color: var(--emerald-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.location-detail strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.location-detail span,
.location-detail a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.location-detail a:hover { color: var(--emerald-700); }
.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}
.location-map iframe {
  border-radius: var(--radius-xl);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.contact-shape {
  position: absolute;
  pointer-events: none;
}
.contact-shape--tr {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,110,63,0.07) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.contact-shape--bl {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30,201,110,0.08) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-method:hover {
  border-color: var(--emerald-300);
  box-shadow: var(--shadow-sm);
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  background: rgba(13,110,63,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
  flex-shrink: 0;
}
.contact-method strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.contact-method span,
.contact-method a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.contact-method a:hover { color: var(--emerald-700); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-200);
}
.contact-form { display: block; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--cream-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 3px rgba(13,110,63,0.1);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(13,110,63,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--emerald-600);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,110,63,0.15) 0%, transparent 60%);
  top: -250px;
  right: -100px;
  border-radius: 50%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-logo svg { color: var(--emerald-500); }
.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a,
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--emerald-400); }
.footer-contact li:last-child {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--emerald-400); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream-50);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text-primary) !important; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span { background: var(--text-primary) !important; }

  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .hero-shape--tl { width: 200px; height: 200px; }
  .hero-shape--br { width: 150px; height: 150px; }
  .hero-shape--circle { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { height: 28px; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services .section-label,
  .services .section-title,
  .services .section-sub { margin-bottom: 40px; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-floating-card { left: 16px; bottom: 16px; }

  .approach { padding: 80px 0; }
  .approach-steps { grid-template-columns: 1fr; }
  .approach .section-label,
  .approach .section-title,
  .approach .section-sub { margin-bottom: 40px; }

  .cta-banner { padding: 80px 0; }

  .location { padding: 80px 0; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }

  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { display: none; }
}
