/* Meetavit - Static replica (from Base44 React pages) */
:root {
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1f2937;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --emerald-100: #d1fae5;
  --emerald-600: #059669;
  --violet-600: #7c3aed;

  --container: 1152px; /* close to max-w-6xl */
  --container-sm: 896px; /* max-w-4xl */
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 24px;

  --shadow-lg: 0 12px 30px rgba(2, 6, 23, 0.18);
  --shadow-2xl: 0 25px 50px rgba(2, 6, 23, 0.25);

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.55;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
p {
  margin: 0 0 14px;
}
h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.1;
}
small {
  color: var(--slate-500);
}

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

/* Header (mirrors Layout.js behavior) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--slate-200);
  box-shadow: 0 2px 12px rgba(2, 6, 23, 0.06);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 1),
    rgba(217, 119, 6, 1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.25);
}
.brand-mark span {
  font-weight: 900;
  color: var(--slate-950);
  font-size: 18px;
  line-height: 1;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav a {
  padding: 6px 0;
  font-size: 14px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}
.nav a:hover {
  color: rgba(245, 158, 11, 1);
  text-decoration: none;
}
.nav a.active {
  color: rgba(245, 158, 11, 1);
}

.site-header.scrolled .nav a {
  color: var(--slate-900);
}
.site-header.scrolled .nav a:hover {
  color: rgba(245, 158, 11, 1);
}
.site-header.scrolled .nav a.active {
  color: rgba(245, 158, 11, 1);
}

.brand .brand-name {
  font-size: 20px;
}
.brand .brand-name {
  color: rgba(255, 255, 255, 0.98);
  transition: color 0.2s ease;
}
.site-header.scrolled .brand .brand-name {
  color: var(--slate-900);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-cta {
  display: none;
  background: linear-gradient(90deg, var(--amber-500), var(--amber-600));
  color: var(--slate-950);
  font-weight: 650;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
}
.btn-cta:hover {
  text-decoration: none;
  filter: brightness(1.02);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
}
.site-header.scrolled .menu-btn {
  border-color: var(--slate-200);
  background: var(--white);
  color: var(--slate-900);
}
.menu-btn i {
  width: 22px;
  height: 22px;
}

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--slate-200);
  background: var(--white);
}
.mobile-drawer.open {
  display: block;
}
.mobile-nav {
  display: grid;
  gap: 14px;
  padding: 18px 0 22px;
}
.mobile-nav a {
  font-weight: 650;
  color: var(--slate-900);
  text-decoration: none;
}
.mobile-nav a.active {
  color: rgba(245, 158, 11, 1);
}
.mobile-cta {
  padding-top: 6px;
}
.mobile-cta .btn-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

/* Ensure content isn't hidden under fixed header */
main {
  padding-top: 0;
}

/* Sections */
.section {
  padding: 96px 0;
}
.section-tight {
  padding: 72px 0;
}

/* Dark gradient hero (used on About/Services/Contact) */
.hero-dark {
  padding: 128px 0 80px;
  background: linear-gradient(
    135deg,
    var(--slate-950),
    var(--slate-900),
    var(--slate-950)
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-dark .blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}
.hero-dark .blob.amber {
  background: rgba(245, 158, 11, 0.3);
  width: 384px;
  height: 384px;
  left: 15%;
  top: 20%;
}
.hero-dark .blob.blue {
  background: rgba(59, 130, 246, 0.28);
  width: 320px;
  height: 320px;
  right: 15%;
  bottom: 20%;
}

.kicker {
  display: inline-block;
  color: rgba(251, 191, 36, 0.95);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-sub {
  color: rgba(148, 163, 184, 0.95);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
}

/* Home hero (min-h-screen with grid overlay + blobs) */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--slate-950),
    var(--slate-900),
    var(--slate-950)
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.home-hero .grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.home-hero .blob.amber {
  background: rgba(245, 158, 11, 0.3);
  width: 384px;
  height: 384px;
  left: 15%;
  top: 20%;
}
.home-hero .blob.blue {
  background: rgba(59, 130, 246, 0.28);
  width: 320px;
  height: 320px;
  right: 15%;
  bottom: 20%;
}
.home-hero .blob.ring {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(245, 158, 11, 0.14),
      transparent 55%
    ),
    radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.1), transparent 58%);
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: rgba(251, 191, 36, 0.95);
  font-weight: 650;
  font-size: 14px;
}
.h1-big {
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
}
.h1-big .grad {
  display: block;
  margin-top: 8px;
  background: linear-gradient(
    90deg,
    rgba(251, 191, 36, 1),
    rgba(253, 230, 138, 1),
    rgba(245, 158, 11, 1)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  color: rgba(148, 163, 184, 0.95);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 720px;
  margin: 0 auto 26px;
}
.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 750;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(90deg, var(--amber-500), var(--amber-600));
  color: var(--slate-950);
  box-shadow: 0 14px 26px rgba(245, 158, 11, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.3);
  filter: brightness(1.02);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border-color: rgba(51, 65, 85, 1);
  color: rgba(203, 213, 225, 1);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover {
  background: rgba(30, 41, 59, 0.65);
  color: var(--white);
  text-decoration: none;
}

/* Stats */
.stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.stat {
  text-align: center;
}
.stat .value {
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.stat .label {
  font-size: 12px;
  color: rgba(100, 116, 139, 1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(51, 65, 85, 1);
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.scroll-indicator .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 1);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Services preview cards */
.section-title {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  margin: 14px 0 18px;
}
.section-sub {
  color: var(--slate-600);
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.preview-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--slate-200);
  padding: 32px;
  background: var(--white);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.preview-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-lg);
  background: rgba(248, 250, 252, 0.5);
}
.preview-card .bgwash {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.preview-card:hover .bgwash {
  opacity: 1;
}
.preview-card .iconbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  margin-bottom: 18px;
}
.preview-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.preview-card p {
  color: var(--slate-600);
  margin: 0;
}
.preview-card .arrow {
  position: absolute;
  top: 30px;
  right: 28px;
  color: var(--slate-400);
  transition: transform 0.3s ease, color 0.3s ease;
}
.preview-card:hover .arrow {
  transform: translate(4px, -4px);
  color: var(--slate-600);
}
/* Color variants (approx to Tailwind ones used) */
.bg-amber10 {
  background: rgba(245, 158, 11, 0.1);
}
.bg-blue10 {
  background: rgba(59, 130, 246, 0.1);
}
.bg-emerald10 {
  background: rgba(16, 185, 129, 0.1);
}
.bg-violet10 {
  background: rgba(139, 92, 246, 0.1);
}
.bd-amber20 {
  border-color: rgba(245, 158, 11, 0.2);
}
.bd-blue20 {
  border-color: rgba(59, 130, 246, 0.2);
}
.bd-emerald20 {
  border-color: rgba(16, 185, 129, 0.2);
}
.bd-violet20 {
  border-color: rgba(139, 92, 246, 0.2);
}
.tx-amber {
  color: rgba(251, 191, 36, 0.95);
}
.tx-blue {
  color: rgba(147, 197, 253, 0.95);
}
.tx-emerald {
  color: rgba(110, 231, 183, 0.95);
}
.tx-violet {
  color: rgba(196, 181, 253, 0.95);
}

/* About preview */
.about-preview {
  background: var(--slate-50);
  padding: 128px 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}
.img-frame {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-frame .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
}
.floating {
  position: absolute;
  right: -8px;
  bottom: -32px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-2xl);
  padding: 24px;
  max-width: 320px;
}
.floating .badgeM {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--amber-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--amber-600);
}
.hl-list {
  display: grid;
  gap: 14px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate-700);
}
.check {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-500);
  margin-top: 2px;
}
.btn-dark {
  background: var(--slate-900);
  color: var(--white);
  padding: 16px 26px;
}
.btn-dark:hover {
  background: #0b1224;
  text-decoration: none;
}

/* CTA section */
.cta-dark {
  padding: 128px 0;
  background: linear-gradient(
    135deg,
    var(--slate-950),
    var(--slate-900),
    var(--slate-950)
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: rgba(251, 191, 36, 0.95);
  font-weight: 650;
  font-size: 14px;
  margin-bottom: 28px;
}
.cta-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  margin-bottom: 18px;
}
.cta-title .grad {
  display: block;
  margin-top: 8px;
  background: linear-gradient(
    90deg,
    rgba(251, 191, 36, 1),
    rgba(245, 158, 11, 1)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-sub {
  color: rgba(148, 163, 184, 0.95);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* About page mission section */
.mission {
  padding: 96px 0;
}
.round-3xl {
  border-radius: var(--radius-3xl);
}
.img-tall {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.bg-slate-50 {
  background: var(--slate-50);
}
.mission .shadow-bg {
  position: absolute;
  width: 192px;
  height: 192px;
  right: -24px;
  bottom: -24px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-3xl);
  z-index: -1;
}
.kpi-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}
.kpi .num {
  font-size: 40px;
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1;
}
.kpi .lbl {
  font-size: 12px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}
.v-sep {
  width: 1px;
  height: 64px;
  background: var(--slate-200);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.value-card {
  text-align: center;
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--amber-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--amber-600);
}
.value-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--slate-900);
}
.value-card p {
  color: var(--slate-600);
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 44px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--slate-200);
  transform: translateX(-50%);
  display: none;
}
.milestone {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 38px 0;
}
.milestone .year {
  font-size: 30px;
  font-weight: 900;
  color: var(--amber-600);
  min-width: 120px;
  flex: 1 1 0%;
}
.milestone .dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--amber-500);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 1;
}
.milestone .event {
  font-size: 18px;
  color: var(--slate-700);
  flex: 1 1 0%;
}

/* Services page */
.service-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}
.service-icon {
  display: inline-flex;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 18px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-700);
  margin: 10px 0;
}
.feature i {
  color: var(--amber-600);
}
.service-visual {
  border-radius: var(--radius-3xl);
  padding: 48px;
}
.aspect-square {
  aspect-ratio: 1/1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.service-visual i {
  opacity: 0.18;
  width: 128px;
  height: 128px;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.more-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.more-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.more-card .mini {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--slate-700);
}
.more-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.more-card p {
  color: var(--slate-600);
  font-size: 14px;
  margin: 0;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: start;
  gap: 64px;
}
.info-block h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 26px;
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 28px 0;
}
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.office-hours {
  margin-top: 44px;
  background: var(--slate-50);
  border-radius: var(--radius-3xl);
  padding: 32px;
}
.office-hours h3 {
  margin-bottom: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  color: var(--slate-600);
  margin: 10px 0;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-3xl);
  padding: 32px;
}
.form-card h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
}
.field {
  display: grid;
  gap: 8px;
}
.label {
  font-weight: 700;
  color: var(--slate-700);
  font-size: 14px;
}
.input,
.select,
textarea {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  padding: 0 14px;
  font-size: 15px;
  outline: none;
}
textarea {
  height: auto;
  min-height: 150px;
  padding: 12px 14px;
  resize: none;
}
.input:focus,
.select:focus,
textarea:focus {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.btn-wide {
  width: 100%;
  height: 56px;
  border-radius: 14px;
}
.success {
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-3xl);
  padding: 48px;
  text-align: center;
}
.success .ok {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--emerald-600);
}

/* Footer */
.site-footer {
  background: var(--slate-950);
  color: #fff;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
}
.footer-brand p {
  color: rgba(148, 163, 184, 0.9);
  max-width: 520px;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 0.02em;
  margin: 6px 0 14px;
}
.footer-col a,
.footer-col span {
  display: block;
  color: rgba(148, 163, 184, 0.9);
  text-decoration: none;
  margin: 10px 0;
  font-size: 14px;
}
.footer-col a:hover {
  color: rgba(251, 191, 36, 0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(30, 41, 59, 0.7);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  color: rgba(100, 116, 139, 0.95);
  font-size: 13px;
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a {
  color: rgba(100, 116, 139, 0.95);
  font-size: 13px;
  text-decoration: none;
}
.footer-legal a:hover {
  color: rgba(148, 163, 184, 0.95);
}

/* Simple reveal animation (optional) */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-indicator .dot {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards-2 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-block {
    grid-template-columns: 1fr;
  }
  .more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-legal {
    gap: 14px;
  }
}
@media (min-width: 981px) {
  .nav {
    display: flex;
  }
  .btn-cta {
    display: inline-flex;
  }
  .menu-btn {
    display: none;
  }
  .mobile-drawer {
    display: none !important;
  }
  .timeline::before {
    display: block;
  }
  .milestone .dot {
    display: block;
  }
}
@media (max-width: 520px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .more-grid {
    grid-template-columns: 1fr;
  }
}
