/* ════════════════════════════════════════════════════════════
   GLOBAL
════════════════════════════════════════════════════════════ */

:root {
  --dark: #0F0F0F;
  --dark-2: #1a1a1a;
  --dark-border: rgba(255, 255, 255, 0.08);
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.4);
  --black: #000000;
  --gray-900: #111111;
  --gray-700: #333333;
  --gray-500: #555555;
  --gray-300: #cccccc;
  --bg-white: #ffffff;
  --bg-soft: #f7f7f7;
  --bg-light: #f8f8f8;
  --bg-lighter: #f2f2f2;
  --border-soft: #ececec;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.14);
  --text-secondary: #777;
  --accent-gold: #f59e0b;
  --navbar-height: 64px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  color: var(--gray-900);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

main {
  width: 100%;
  display: block;
  padding-top: var(--navbar-height);
}

a { text-decoration: none; }


/* ════════════════════════════════════════════════════════════
   SHARED BUTTON
════════════════════════════════════════════════════════════ */

.btn-inner {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(290deg, #444 0%, #111 30%, #222 67%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.btn-top-border {
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 45%;
  border-top: 2px solid rgba(255, 255, 255, 0.22);
  border-right: 2px solid rgba(255, 255, 255, 0.22);
  border-top-right-radius: 12px;
  z-index: 5;
  pointer-events: none;
  filter: blur(1.5px);
  -webkit-mask-image: radial-gradient(ellipse 130% 130% at 100% 0%, black 35%, transparent 70%);
  mask-image: radial-gradient(ellipse 130% 130% at 100% 0%, black 35%, transparent 70%);
  transition: width 0.45s ease, height 0.45s ease;
}

.btn-bottom-border {
  position: absolute;
  bottom: 0; left: 0;
  width: 40%; height: 45%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  border-left: 2px solid rgba(255, 255, 255, 0.22);
  border-bottom-left-radius: 12px;
  z-index: 5;
  pointer-events: none;
  filter: blur(1.5px);
  -webkit-mask-image: radial-gradient(ellipse 130% 130% at 0% 100%, black 35%, transparent 70%);
  mask-image: radial-gradient(ellipse 130% 130% at 0% 100%, black 35%, transparent 70%);
  transition: width 0.45s ease, height 0.45s ease;
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
  opacity: 0.6;
  z-index: 2;
  border-radius: 999px;
}

.btn-text {
  position: relative;
  color: #fff;
  font-family: "Inter", -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}


/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */

.navbar {
  background-color: #0F0F0F;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: var(--navbar-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.nav-logo:hover .nav-logo-img { opacity: 0.75; }

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

.nav-link {
  --font-pp-editorial-new-italic: "PP Editorial New Italic", "Playfair Display", Georgia, serif;
  display: inline-grid;
  place-items: center start;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link > span {
  grid-area: 1 / 1;
  line-height: 1.38rem;
}

.nav-link::before,
.nav-link::after {
  content: attr(data-text);
  grid-area: 1 / 1;
  visibility: hidden;
  pointer-events: none;
  line-height: 1.38rem;
}

.nav-link::before {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link::after {
  font-family: var(--font-pp-editorial-new-italic);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.15rem;
}

.nav-link:hover { color: #fff; }

.nav-link:hover > span {
  font-family: var(--font-pp-editorial-new-italic);
  font-weight: normal;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.15rem;
  line-height: 1.38rem;
}

.nav-active { color: #fff; font-weight: 600; }

.nav-cta { display: flex; align-items: center; }

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 38px;
  background-color: #fff;
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.nav-btn:hover { transform: scale(1.05); }
.nav-btn:active { transform: scale(0.97); }

.nav-chevron {
  width: 10px;
  height: 6px;
  margin-left: 5px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hamburger:hover { background: rgba(255, 255, 255, 0.08); }

.bar {
  display: block;
  width: 22px; height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  background-color: #0F0F0F;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-open { max-height: 400px; opacity: 1; }

.mobile-links {
  list-style: none;
  padding: 12px 1.5rem 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  --font-pp-editorial-new-italic: "PP Editorial New Italic", "Playfair Display", Georgia, serif;
  display: grid;
  place-items: center start;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
}

.mobile-link > span {
  grid-area: 1 / 1;
  transition: font-family 0.2s ease, font-style 0.2s ease, text-transform 0.2s ease, letter-spacing 0.2s ease;
}

.mobile-link::before,
.mobile-link::after {
  content: attr(data-text);
  grid-area: 1 / 1;
  visibility: hidden;
  pointer-events: none;
}

.mobile-link::before {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-link::after {
  font-family: var(--font-pp-editorial-new-italic);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.3rem;
}

.mobile-link:hover { color: #fff; }

.mobile-link:hover > span {
  font-family: var(--font-pp-editorial-new-italic);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.3rem;
}
.mobile-link.nav-active { color: #fff; font-weight: 600; }

.mobile-cta { padding-top: 12px; }
.mobile-nav-btn { width: 100%; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}


/* ════════════════════════════════════════════════════════════
   SHARED — eyebrow + pill button
════════════════════════════════════════════════════════════ */

.eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0;
  margin-bottom: 16px;
  display: block;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.pill-btn:hover { background: #333; transform: translateY(-1px); }


/* ════════════════════════════════════════════════════════════
   SECTION TITLES (shared)
════════════════════════════════════════════════════════════ */

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1a1a1a;
}

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

.section-subtitle {
  color: #777;
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 0.75rem;
}


/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */

.hero-wrapper {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  background: #f7f7f7;
  overflow: hidden;
}

.hero-globe__canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(80px, 12vh, 130px) 2rem 80px;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.hero-description {
  color: #666;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta-btn:hover { background: #333; transform: translateY(-1px); }

@media (max-width: 860px) {
  .hero-description { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-container { padding-top: 72px; }
}


/* ════════════════════════════════════════════════════════════
   TRUST / LOGOS
════════════════════════════════════════════════════════════ */

.trust-section {
  background: #f7f7f7;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 64px 2rem;
}

.trust-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.trust-heading {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: #3a3a3a;
  letter-spacing: 0;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.trust-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.trust-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 700px) {
  .trust-section { padding: 24px 1.5rem; }
  .trust-container { flex-direction: column; gap: 20px; }
  .trust-logos { gap: 28px; }
  .trust-logo { height: 36px; }
}


/* ════════════════════════════════════════════════════════════
   COURSES CAROUSEL
════════════════════════════════════════════════════════════ */

.courses-section {
  background: #f7f7f7;
  padding: 100px 0 110px;
  overflow: hidden;
}

.courses-header {
  text-align: center;
  margin: 0 auto 56px;
  padding: 0 2rem;
  max-width: 880px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.courses-heading {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.courses-subheading {
  font-size: 0.875rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 14px;
}

.courses-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 56px;
}

.carousel-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.carousel-btn:hover { background: #1a1a1a; color: #fff; }
.carousel-btn:active { opacity: 0.7; }

.carousel-btn-prev { left: 4px; }
.carousel-btn-next { right: 4px; }

.courses-track-outer {
  flex: 1;
  overflow: hidden;
}

.courses-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.course-card {
  flex-shrink: 0;
  height: 380px;
  background: #1a1a1a center/cover no-repeat;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  position: relative;
}

.course-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 55%, transparent 100%);
  border-radius: 24px;
  pointer-events: none;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.course-card-body {
  width: 100%;
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}

.course-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.25;
}

.course-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .courses-section { padding: 80px 0 90px; }
  .courses-carousel-wrap { padding: 0 48px; }
}

@media (max-width: 540px) {
  .courses-section { padding: 64px 0 72px; }
  .courses-carousel-wrap { padding: 0 44px; }
  .courses-heading { font-size: 1.85rem; }
}


/* ════════════════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════════════ */

.features-section {
  background: #fff;
  padding: 110px 2rem;
  overflow: hidden;
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}

.features-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.features-col-left { align-items: flex-start; }
.features-col-right { align-items: flex-end; }

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f7f7f7;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 14px 28px;
  width: fit-content;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
}

.features-col-left .feature-item { animation-name: fadeInLeft; }
.features-col-right .feature-item { animation-name: fadeInRight; }

.features-col-left .feature-item:nth-child(1) { animation-delay: 0.1s; }
.features-col-left .feature-item:nth-child(2) { animation-delay: 0.2s; }
.features-col-left .feature-item:nth-child(3) { animation-delay: 0.3s; }
.features-col-right .feature-item:nth-child(1) { animation-delay: 0.1s; }
.features-col-right .feature-item:nth-child(2) { animation-delay: 0.2s; }
.features-col-right .feature-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.feature-icon-svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #1a1a1a;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.features-center {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

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

@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
  }
  .features-center {
    grid-column: 1 / -1;
    width: 320px;
    margin: 0 auto;
    order: -1;
  }
}

@media (max-width: 640px) {
  .features-section { padding: 72px 1.25rem; }
  .features-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .features-center {
    grid-column: unset;
    width: 260px;
  }
  .features-col-left,
  .features-col-right { align-items: center; }
  .feature-title { white-space: normal; }
}


/* ════════════════════════════════════════════════════════════
   INSTRUCTORS
════════════════════════════════════════════════════════════ */

.instructors-section {
  background: #f7f7f7;
  padding: 110px 2rem;
}

.instructors-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

.instructors-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.instructors-title {
  font-size: clamp(1.85rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.instructors-subtitle {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.55;
}

.instructors-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}

.instructors-btn:hover { background: #333; transform: translateY(-1px); }

.instructors-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 48px 32px;
}

.inst-track-outer {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.inst-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.inst-card {
  flex-shrink: 0;
  height: 420px;
  border-radius: 24px;
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
}

.inst-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.inst-card-body {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  position: relative;
  z-index: 1;
}

.inst-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.inst-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.5;
}

.inst-btn {
  position: absolute;
  top: calc(50% - 16px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, color 0.2s;
}

.inst-btn:hover { background: #1a1a1a; color: #fff; }

.inst-btn-prev { left: 4px; }
.inst-btn-next { right: 4px; }

.inst-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.inst-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.inst-dot.inst-dot-active {
  background: #1a1a1a;
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .instructors-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .instructors-info { align-items: center; text-align: center; }
  .instructors-btn { align-self: center; }
}

@media (max-width: 540px) {
  .instructors-section { padding: 72px 1.25rem; }
}


/* ════════════════════════════════════════════════════════════
   STATEMENT
════════════════════════════════════════════════════════════ */

.statement-section {
  background: #fff;
  padding: 110px 2rem 60px;
}

.statement-container {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.statement-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.statement-accent { color: #1a1a1a; font-weight: 700; }


/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */

.services-section {
  background: #fff;
  padding: 32px 2rem 110px;
}

.services-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.service-card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  background: #f0f0f0;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img { transform: scale(1.04); }

.service-card-body {
  padding: 28px 26px;
  flex: 1;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .services-container { grid-template-columns: 1fr; max-width: 480px; }
}


/* ════════════════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════════════════ */

.stats-section {
  background: #f7f7f7;
  padding: 110px 2rem;
}

.stats-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
}

.stats-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.stats-subtitle {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 44px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  margin-bottom: 36px;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number-lg { font-size: 3.2rem; }

.stat-label {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.5;
}

.stat-item-wide {
  padding-top: 28px;
  border-top: 1px solid #e2e2e2;
}

.stats-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

@media (max-width: 960px) {
  .stats-container { grid-template-columns: 1fr; }
  .stats-image { max-width: 380px; margin: 0 auto; }
}


/* ════════════════════════════════════════════════════════════
   WORLD CTA
════════════════════════════════════════════════════════════ */

.world-section {
  background: #fff;
  padding: 110px 2rem;
}

.world-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.world-title {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.world-subtitle {
  font-size: 1rem;
  color: #777;
  line-height: 1.65;
}


/* ════════════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════════ */

.contact-section {
  background: #1a1a1a;
  padding: 100px 2.5rem 0;
  overflow: hidden;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}

.contact-left { max-width: 640px; }

.contact-title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 28px;
}

.contact-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

.contact-questions {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-questions li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #1a1a1a;
  padding: 8px 28px 8px 8px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-cta:hover {
  transform: translateY(-1px);
  background: #f0f0f0;
}

.contact-cta-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-right {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 26px;
  row-gap: 28px;
  align-items: start;
}

.contact-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 4px;
}

.contact-nav-link {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.contact-nav-link:hover { opacity: 0.7; }

.contact-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  grid-row: span 2;
  grid-column: 2;
}

.contact-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-social svg {
  width: 18px;
  height: 18px;
}

.contact-social:hover { transform: scale(1.08); background: #fff; color: #1a1a1a; }

.contact-copy {
  grid-column: 1;
  align-self: end;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  white-space: nowrap;
}

.contact-brand {
  width: 100%;
  padding: 12px 0 0;
  line-height: 0;
  user-select: none;
  background: #1a1a1a;
}

.contact-brand-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 960px) {
  .contact-section { padding: 72px 1.5rem 0; }
  .contact-top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 56px;
  }
  .contact-right {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .contact-socials {
    flex-direction: row;
    grid-row: auto;
    grid-column: 2;
  }
  .contact-copy { grid-column: 1 / -1; white-space: normal; }
}

@media (max-width: 520px) {
  .contact-title { font-size: 2rem; }
  .contact-cta { font-size: 0.95rem; padding-right: 22px; }
  .contact-brand { margin: 16px -10vw 0; }
}
