/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #0A0A0A;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── TYPOGRAPHY ───────────────────────────────── */
.display {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 7.5vw, 90px);
  color: #fff;
  line-height: 1.0;
}
.display-dark {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(32px, 5vw, 64px);
  color: #0A0A0A;
  line-height: 1;
}
.display-white {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(32px, 5vw, 60px);
  color: #fff;
  line-height: 1;
}
.label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}
.label-dim {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}
.body-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  color: #333;
}
.link-cta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A0A0A;
  border-bottom: 2px solid #0A0A0A;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.link-cta:hover { opacity: 0.6; }
.link-cta-white {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #444;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.link-cta-white:hover { opacity: 0.6; }

/* ── BUTTONS ──────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: #fff;
  color: #0A0A0A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #e0e0e0; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #0A0A0A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); }
.btn-submit {
  background: #0A0A0A;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: #222; }
.btn-dark {
  display: inline-block;
  background: #0A0A0A;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: background 0.2s;
}
.btn-dark:hover { background: #222; }
.btn-white {
  display: inline-block;
  background: #fff;
  color: #0A0A0A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: background 0.2s;
}
.btn-white:hover { background: #e0e0e0; }

/* ── NAV ──────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(242,242,242,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(242,242,242,0.88);
  border-color: rgba(10,10,10,0.08);
  box-shadow: 0 12px 36px rgba(10,10,10,0.08);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  color: #0A0A0A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.btn-nav {
  background: transparent !important;
  color: #0A0A0A !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  padding: 0 !important;
  opacity: 0.85 !important;
  border: none !important;
  transition: opacity 0.2s !important;
}
.btn-nav:hover { opacity: 1 !important; background: transparent !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #0A0A0A;
}
.nav-mobile {
  display: none;
  background: rgba(242,242,242,0.96);
  border-top: 1px solid rgba(10,10,10,0.08);
  padding: 24px 32px 36px;
}
.nav-mobile a {
  display: block;
  color: #0A0A0A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10,10,10,0.1);
}
.btn-mobile-cta {
  display: block;
  margin-top: 24px;
  background: #0A0A0A;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 22px;
  text-align: center;
  border: none !important;
}

/* Hero headline — wider and slightly smaller than default display */
.hero-headline {
  font-size: clamp(32px, 5.5vw, 72px);
  line-height: 1.05;
  max-width: 820px;
  margin: 0 auto 28px;
}
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 680px; margin: 0 auto; }
.section-white { background: #fff; padding: 100px 24px; }
.section-grey { background: #F2F2F2; padding: 100px 24px; }
.section-black { background: #0A0A0A; padding: 100px 24px; }

.section-header { margin-bottom: 60px; }
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #0A0A0A 50%, #1a1a1a 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-line {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
}

/* ── VALUE GRID ───────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

/* ── STATS BAR ────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1a1a1a;
  margin-top: 80px;
}
.stat {
  background: #0A0A0A;
  padding: 44px 28px;
  text-align: center;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(14px, 1.4vw, 18px);
  color: #fff;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.2;
}
.stat-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #777;
  line-height: 1.65;
  font-style: italic;
  max-width: 200px;
  margin: 0 auto;
}

/* ── WORK GRID ────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.work-card { background: #fff; overflow: hidden; }
.work-media {
  position: relative;
  background: #0A0A0A;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.work-media-short {
  aspect-ratio: 9/16;
  max-height: 620px;
}
.work-media iframe {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: none;
}
.media-link {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  transition: background 0.2s;
}
.media-link:hover { background: rgba(255,255,255,0.05); }

.media-link.has-thumbnail {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
}
.media-link.has-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eef1f5;
  transition: transform 0.35s ease;
}
.media-link.has-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.12) 46%, rgba(0,0,0,0.34));
}
.media-link.has-thumbnail:hover { background: transparent; }
.media-link.has-thumbnail:hover img { transform: scale(1.035); }
.media-link.has-thumbnail .play-icon,
.media-link.has-thumbnail span {
  position: relative;
  z-index: 1;
}
.media-link.has-thumbnail .play-icon {
  width: 48px;
  height: 48px;
  background: rgba(10,10,10,0.72);
  border-color: rgba(255,255,255,0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.media-link.has-thumbnail span {
  background: rgba(10,10,10,0.72);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 10px 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.media-link span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-info { padding: 24px 28px; }
.work-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.work-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* ── REVIEWS ──────────────────────────────────── */
/* ── REVIEWS CAROUSEL ─────────────────────────── */
.google-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.google-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.google-rating-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.google-score {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.google-stars-row {
  color: #fbbc04;
  font-size: 20px;
  letter-spacing: 2px;
}
.google-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}
.reviews-carousel-wrap {
  overflow: hidden;
  margin: 0 -8px;
}
.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 8px 8px;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.review-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 28px 28px 32px;
  min-width: 340px;
  max-width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 2px;
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ea4335;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.google-card-stars {
  color: #fbbc04;
  font-size: 13px;
  letter-spacing: 1px;
}
.google-g { flex-shrink: 0; opacity: 0.9; }
.review-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #aaa;
  line-height: 1.75;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.carousel-btn {
  background: none;
  border: 1px solid #333;
  color: #888;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.carousel-btn:hover { border-color: #fff; color: #fff; }
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.carousel-dot.active { background: #fff; }

/* ── FORMS ────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 13px 16px;
  border: 1px solid #e0e0e0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #0A0A0A;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: #0A0A0A; }
.form-field textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-success {
  background: #0A0A0A;
  padding: 48px 40px;
  text-align: center;
}
.form-success p:last-child {
  font-family: 'Montserrat', sans-serif;
  color: #888;
  font-size: 15px;
  margin-top: 12px;
}
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  cursor: pointer;
  flex-shrink: 0;
}
.form-check label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-check a { color: #0A0A0A; font-weight: 600; }


/* ── PROCESS VIDEO ────────────────────────────── */
.process-video-panel {
  width: 100%;
  margin: 0 0 40px;
  background: #0A0A0A;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.process-video-panel iframe {
  display: block;
}
.process-video-modal[hidden] {
  display: none;
}
.process-video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.process-video-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,0.78);
  cursor: pointer;
}
.process-video-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  background: #0A0A0A;
  box-shadow: 0 28px 90px rgba(0,0,0,0.45);
}
.process-video-dialog iframe {
  display: block;
}
.process-video-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
}
body.video-modal-open {
  overflow: hidden;
}

/* ── PAGE HEADER ──────────────────────────────── */
.page-header {
  background: #0A0A0A;
  padding: 160px 24px 80px;
  text-align: center;
}
.page-header .eyebrow { color: #555; }
.page-header p.sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #888;
  max-width: 460px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* ── PACKAGES ─────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 24px;
}
.pkg-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.pkg-card.featured {
  background: #0A0A0A;
  border: none;
}
.pkg-badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.pkg-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.2;
}
.pkg-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pkg-feature { position: relative; }
.pkg-feature-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: help;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  text-align: left;
  font: inherit;
}
.pkg-info-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.7;
  flex: 0 0 auto;
}
.pkg-feature-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}
.pkg-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.pkg-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pkg-features li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pkg-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
}
.pkg-card:not(.featured) .pkg-name,
.pkg-card:not(.featured) .pkg-price { color: #0A0A0A; }
.pkg-card:not(.featured) .pkg-desc { color: #666; }
.pkg-card:not(.featured) .pkg-features li { color: #444; }
.pkg-card:not(.featured) .pkg-features li::before { color: #0A0A0A; }
.pkg-card.featured .pkg-name,
.pkg-card.featured .pkg-price { color: #fff; }
.pkg-card.featured .pkg-desc { color: #aaa; }
.pkg-card.featured .pkg-features li { color: #ccc; }
.pkg-card.featured .pkg-features li::before { color: #fff; }
.pkg-btn {
  width: 100%;
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.pkg-card:not(.featured) .pkg-btn { background: #0A0A0A; color: #fff; }
.pkg-card:not(.featured) .pkg-btn:hover { background: #222; }
.pkg-card.featured .pkg-btn { background: #fff; color: #0A0A0A; }
.pkg-card.featured .pkg-btn:hover { background: #e0e0e0; }

/* ── WHO CARDS ────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.who-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 28px 24px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.who-card:hover { border-color: #0A0A0A; background: #F2F2F2; }
.who-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #0A0A0A;
  margin-bottom: 6px;
}
.who-card-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #888;
}

/* ── VALUES GRID ──────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.value-block { padding: 48px 40px; }
.value-block:nth-child(odd) { background: #0A0A0A; }
.value-block:nth-child(even) { background: #F2F2F2; }
.value-block:nth-child(odd) .vb-title { color: #fff; }
.value-block:nth-child(even) .vb-title { color: #0A0A0A; }
.value-block:nth-child(odd) .vb-body { color: #aaa; }
.value-block:nth-child(even) .vb-body { color: #555; }
.vb-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.vb-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
}

/* ── JOB BLOCK ────────────────────────────────── */
.job-block { margin-bottom: 48px; }
.job-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin-bottom: 20px;
}
.job-list { list-style: none; }
.job-list li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}
.job-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #0A0A0A;
  font-weight: 600;
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
  background: #0A0A0A;
  border-top: 1px solid #2a2a2a;
  padding: 60px 24px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 44px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  max-width: 260px;
}
.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  color: #888;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.footer-social-link {
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.footer-social-link:hover { color: #fff; }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #444;
}

/* ── PILLARS ──────────────────────────────────── */
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8e8e8;
}
.pillar:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pillar-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: #e0e0e0;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  padding-top: 3px;
}
.pillar-body { flex: 1; }
.pillar-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0A0A0A;
  margin-bottom: 8px;
}
.pillar-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #444;
  line-height: 1.75;
}
.membership-block {
  margin-top: 32px;
  background: #0A0A0A;
  padding: 48px 44px;
}
.membership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.membership-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 26px);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.membership-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.membership-price span {
  font-size: 20px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0;
}
.membership-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
  line-height: 1.5;
}
.membership-features {
  list-style: none;
}
.membership-features li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ccc;
  padding: 10px 0;
  border-bottom: 1px solid #1f1f1f;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.membership-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 768px) {
  .membership-inner { grid-template-columns: 1fr; gap: 32px; }
  .membership-block { padding: 36px 28px; }
}
.back-btn {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #888;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  display: inline-block;
}
.back-btn:hover { color: #0A0A0A; }

/* ── UTILITY ──────────────────────────────────── */
.hidden { display: none !important; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: block; }

  .value-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .review-card { min-width: 280px; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .review-card { min-width: calc(100vw - 80px); }
}


@media (min-width: 769px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-grid .social-short-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px, 340px) 1fr;
    align-items: stretch;
  }

  .work-grid .social-short-card .work-media-short {
    width: min(340px, 100%);
    justify-self: center;
  }

  .social-short-showcase {
    width: min(360px, 100%);
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .pkg-feature-desc {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    z-index: 30;
    width: min(280px, 72vw);
    padding: 14px 16px;
    border-radius: 8px;
    background: #fff;
    color: #222;
    border: 1px solid rgba(10,10,10,0.12);
    box-shadow: 0 18px 45px rgba(10,10,10,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
  }

  .pkg-feature:hover .pkg-feature-desc,
  .pkg-feature.open .pkg-feature-desc {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .pkg-feature-toggle { cursor: pointer; }
  .pkg-feature-desc {
    display: none;
    margin-top: 8px;
    padding: 12px 14px;
    border-left: 2px solid currentColor;
    background: rgba(0,0,0,0.04);
  }
  .pkg-card.featured .pkg-feature-desc { background: rgba(255,255,255,0.08); }
  .pkg-feature.open .pkg-feature-desc { display: block; }
}
