* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #05070d;
  color: #111111;
}

.hero {
  width: 100%;
  min-height: 460px;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.18) 18%,
      rgba(0, 0, 0, 0) 40%
    ),
    url("./hero.jpg");
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-nav {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 37px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #f6f8ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  opacity: 0.98;
}

/* ── Services dropdown ───────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #f6f8ff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  opacity: 0.98;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-family: inherit;
}

/* Larger, clearer Services trigger */
.nav-dropdown-btn:not(.nav-lang-btn) {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-dropdown-btn:not(.nav-lang-btn):hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
}

.nav-dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  padding: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #111111 !important;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.12s ease;
  line-height: 1.4;
  opacity: 1 !important;
}

.nav-dropdown-menu a:hover {
  background: #f5f5f5;
  color: #f26531 !important;
}

/* Bigger Services menu panel/items */
.nav-dropdown-menu:not(.nav-lang-menu) {
  min-width: 300px;
  border-radius: 14px;
  padding: 10px 0;
}

.nav-dropdown-menu:not(.nav-lang-menu) a {
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Mobile menu group label */
.mobile-nav-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 16px 0 4px;
}

.mobile-nav-sub a {
  font-size: 16px !important;
  padding: 8px 0 8px 12px !important;
  color: rgba(255,255,255,0.75) !important;
}
/* ─────────────────────────────────────────────────────── */

.cta-button {
  text-decoration: none;
  color: #111111;
  background: #ffffff;
  border-radius: 999px;
  padding: 11px 23px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.content {
  background: #ffffff;
}

.founder-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 52px 26px 72px;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(300px, 1fr);
  align-items: start;
  gap: 62px;
  margin-bottom: 86px;
}

.founder-title {
  margin: 0;
  color: #111111;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(26px);
  animation: introUp 0.9s ease-out 0.2s forwards;
}

.founder-side {
  opacity: 0;
  transform: translateY(26px);
  animation: introUp 0.9s ease-out 0.55s forwards;
}

.founder-copy {
  margin: 0 0 20px;
  max-width: 430px;
  color: #1f1f1f;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.founder-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-invite {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: #777777;
  font-style: italic;
  max-width: 340px;
}

.button-dark,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  padding: 9px 14px;
}

.button-dark {
  color: #ffffff;
  background: #111111;
}

.button-light {
  color: #111111;
  background: rgba(17, 17, 17, 0.08);
}

/* ── Build section ─────────────────────────────── */
.build-section {
  background: #ffffff;
  padding: 80px 26px 100px;
}

.build-header {
  text-align: center;
  margin-bottom: 52px;
}

.build-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.1;
}

.build-sub {
  margin: 0 auto;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.55;
  color: #555555;
  font-weight: 400;
}

.build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.build-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.build-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.28) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
  border-radius: inherit;
}

.build-card-body {
  position: relative;
  z-index: 1;
  padding: 24px 26px 28px;
}

.build-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.build-card-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.2;
}

.build-card-copy {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.build-card-copy:last-child {
  margin-bottom: 0;
}

.build-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
  line-height: 1;
}

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

  .build-card--wide {
    grid-column: 1 / -1;
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .build-grid {
    grid-template-columns: 1fr;
  }

  .build-card--wide {
    grid-column: auto;
  }
}

/* ── Scroll reveal ─────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Edges section ─────────────────────────────── */
.edges-section {
  background: #ffffff;
  padding: 0 26px 100px;
}

.edges-header {
  text-align: center;
  padding-bottom: 52px;
}

.edges-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.1;
}

.edges-sub {
  margin: 0 auto;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.55;
  color: #555555;
  font-weight: 400;
}

.edges-card {
  display: grid;
  grid-template-columns: 38% 1fr;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.edges-image {
  background-size: cover;
  background-position: center 20%;
}

.edges-snake {
  background: #181818;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
}

.edges-snake-title {
  margin: 0 0 28px;
  font-size: 26px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.18;
  max-width: 420px;
}

.snake-list {
  display: flex;
  flex-direction: column;
}

.snake-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 74%;
}

.snake-item--right {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.snake-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
}

.snake-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.snake-connector {
  height: 28px;
  position: relative;
  width: 100%;
  margin: 2px 0;
}

/* left step → goes right along top, then turns down on the right edge */
.snake-connector::before {
  content: "";
  position: absolute;
  top: 0;
  left: 44px;
  right: 0;
  height: 100%;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  border-right: 1px dashed rgba(255, 255, 255, 0.2);
  border-top-right-radius: 10px;
}

/* right step → goes left along top, then turns down on the left edge */
.snake-connector--reverse::before {
  left: 0;
  right: 44px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  border-right: none;
  border-left: 1px dashed rgba(255, 255, 255, 0.2);
  border-top-right-radius: 0;
  border-top-left-radius: 10px;
}

.edges-snake-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
}

.edges-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f26531;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  padding: 12px 18px 12px 14px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.edges-download-btn:hover {
  background: #e05522;
}

.edges-download-btn__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.edges-download-btn__icon svg {
  width: 16px;
  height: 16px;
}

.edges-download-sub {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  max-width: 340px;
}

@media (max-width: 860px) {
  .edges-card {
    grid-template-columns: 1fr;
  }

  .edges-image {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .edges-features {
    grid-template-columns: 1fr;
  }

  .edges-feature {
    border-right: none;
  }

  .edges-feature:nth-child(n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .edges-feature:last-child {
    border-bottom: none;
  }
}

/* ── Power section ─────────────────────────────── */
.power-section {
  background: #ffffff;
  padding: 0 26px 100px;
}

.power-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto 52px;
  padding-top: 80px;
}

.power-title {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #111111;
  line-height: 1.08;
}

.power-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.power-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #444444;
  max-width: 380px;
}

.power-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.power-image-wrap {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
}

.power-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 40%;
}

@media (max-width: 760px) {
  .power-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .power-image-wrap {
    height: 220px;
  }
}

/* ── Process section ───────────────────────────── */
.process-section {
  background: #ffffff;
  padding: 0 26px 100px;
}

.process-header {
  text-align: center;
  padding-bottom: 52px;
}

.process-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.1;
}

.process-sub {
  margin: 0 auto;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.55;
  color: #555555;
}

.process-card {
  display: grid;
  grid-template-columns: 1fr 38%;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #181818;
  min-height: 420px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  padding: 0 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 200px 1fr;
  align-items: center;
  gap: 0 24px;
  padding: 32px 40px;
}

.process-num {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.process-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.process-step-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.process-image {
  background-size: cover;
  background-position: center 20%;
}

@media (max-width: 860px) {
  .process-card {
    grid-template-columns: 1fr;
  }

  .process-image {
    min-height: 260px;
    order: -1;
    border-radius: 0;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    padding: 24px 26px;
  }

  .process-num {
    grid-row: 1 / 3;
  }

  .process-step-copy {
    grid-column: 2;
    margin-top: 4px;
  }
}

/* ── Stats section ─────────────────────────────── */
.stats-section {
  background: #ffffff;
  padding: 60px 26px 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 32px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.stat-item {
  padding-top: 0;
}

.stat-item--offset1 { padding-top: 40px; }
.stat-item--offset2 { padding-top: 80px; }
.stat-item--offset3 { padding-top: 120px; }

.stat-number {
  display: block;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #111111;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 8px;
}

.stat-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #666666;
  max-width: 200px;
}

@media (max-width: 860px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }

  .stat-item--offset1,
  .stat-item--offset2,
  .stat-item--offset3 {
    padding-top: 0;
  }
}

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

/* ── Pricing section ───────────────────────────── */
.pricing-section {
  background: #ffffff;
  padding: 80px 26px 100px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.1;
}

.pricing-sub {
  margin: 0 auto;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

/* ── Pricing cards ───────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: #e8e8e8;
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
}

/* Diagonal "POPULAR" ribbon */
.pricing-card--featured::before {
  content: "POPULAR";
  position: absolute;
  top: 22px;
  right: -30px;
  background: #f26531;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 42px;
  transform: rotate(45deg);
  z-index: 1;
}

.pricing-badge,
.pricing-badge--sale {
  display: none;
}

/* ── Top: plan name + description ── */
.pricing-card-top {
  padding: 28px 24px 22px;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}

.pricing-plan {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111111;
  font-style: normal;
}

.pricing-sessions {
  margin: 0;
  font-size: 13px;
  color: #888888;
  line-height: 1.5;
  font-style: normal;
}

/* ── Price zone (light grey background) ── */
.pricing-footer-card {
  background: #f8f8f8;
  padding: 24px 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-bottom: 1px solid #eeeeee;
}

.pricing-price {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111111;
  line-height: 1;
  word-spacing: -0.15em;
}

.pricing-price-suffix {
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  margin-top: 4px;
}

.pricing-original {
  font-size: 14px;
  font-weight: 600;
  color: #e05522;
  text-decoration: none;
  margin-top: 2px;
  word-spacing: -0.15em;
}

.pricing-alt {
  font-size: 11px;
  color: #aaaaaa;
  margin-top: 4px;
}

/* ── CTA button ── */
.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f26531;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 6px;
  padding: 15px 20px;
  margin: 20px 24px;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
  text-align: center;
}

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

/* ── Feature list ── */
.pricing-features {
  list-style: none;
  padding: 20px 24px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features-title {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-align: center;
}

.pricing-features li {
  font-size: 13px;
  line-height: 1.5;
  color: #555555;
  text-align: center;
  padding: 0;
}

@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ── Executive Communication Program ────────────── */
.exec-section {
  background: #f8f8f8;
  padding: 80px 26px 100px;
}

.exec-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto 72px;
  align-items: start;
}

.exec-title {
  margin: 0 0 4px;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #111111;
  line-height: 1.08;
}

.exec-with {
  margin: 0 0 24px;
  font-family: "Dancing Script", cursive;
  font-size: 26px;
  color: #f26531;
  font-weight: 600;
}

.exec-copy {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #444444;
  max-width: 480px;
}

.exec-modules-title {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f26531;
}

.exec-module-list {
  margin: 0;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exec-module-list li {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  line-height: 1.4;
}

.exec-offer {
  display: grid;
  grid-template-columns: 1fr 42%;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #111111;
  min-height: 380px;
}

.exec-offer-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exec-offer-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f26531;
}

.exec-offer-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.exec-offer-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exec-offer-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.exec-offer-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f26531;
  font-size: 11px;
  top: 2px;
}

.exec-offer-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.exec-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.exec-tier:last-child {
  border-bottom: none;
}

.exec-tier-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.exec-tier-price {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.exec-offer-cta {
  align-self: flex-start;
}

.exec-offer-image {
  background-size: cover;
  background-position: center 25%;
}

@media (max-width: 860px) {
  .exec-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .exec-offer {
    grid-template-columns: 1fr;
  }

  .exec-offer-image {
    min-height: 240px;
    order: -1;
  }

  .exec-offer-left {
    padding: 32px 26px;
  }
}

/* ── Testimonials section ──────────────────────── */
.testimonials-section {
  background: #ffffff;
  padding: 0 0 100px;
}

.testimonials-header {
  text-align: center;
  padding: 0 26px 52px;
}

.testimonials-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.1;
}

.testimonials-sub {
  margin: 0 auto;
  max-width: 340px;
  font-size: 14px;
  line-height: 1.55;
  color: #555555;
}

.testimonials-track-wrap {
  position: relative;
  padding: 0 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.t-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .t-card {
    flex: 0 0 calc(100vw - 68px);
  }

  .testimonials-track-wrap {
    padding: 0 16px;
  }
}

.t-card--dark {
  background-size: cover;
  background-position: center 25%;
  color: #ffffff;
}

.t-card--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.1) 100%);
  border-radius: inherit;
}

.t-card--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 42%);
  border-radius: inherit;
  z-index: 1;
}

.t-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.t-card--light {
  background: #f4f4f4;
  color: #111111;
  justify-content: space-between;
}

/* opening quote mark */
.t-card--light::before {
  content: "\201C";
  font-size: 72px;
  line-height: 0.8;
  font-family: Georgia, serif;
  color: rgba(0,0,0,0.08);
  position: absolute;
  top: 20px;
  left: 22px;
  pointer-events: none;
}

.t-quote {
  margin: 0 0 auto;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 400;
  padding-bottom: 24px;
}

.t-card--dark .t-quote {
  color: rgba(255,255,255,0.9);
}

.t-card--light .t-quote {
  color: #1a1a1a;
}

.t-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding-top: 16px;
}

.t-card--dark .t-author {
  border-color: rgba(255,255,255,0.12);
}

.t-name {
  font-family: "Dancing Script", cursive;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.t-card--dark .t-name { color: #ffffff; }
.t-card--light .t-name { color: #111111; }

.t-role {
  font-size: 12px;
  font-weight: 500;
  color: #888888;
}

.t-card--dark .t-role { color: rgba(255,255,255,0.55); }

.t-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.t-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111111;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.2s;
  flex-shrink: 0;
}

.t-arrow:hover {
  background: #333333;
}

.t-arrow svg {
  width: 18px;
  height: 18px;
}

/* ── FAQ section ───────────────────────────────── */
.faq-section {
  background: #ffffff;
  padding: 80px 26px 120px;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.faq-title {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #111111;
  line-height: 1.08;
}

.faq-sub {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  max-width: 280px;
}

.faq-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #f4f4f4;
  border-radius: 14px;
  overflow: hidden;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: #111111;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-answer {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 13px;
  line-height: 1.65;
  color: #555555;
}

@media (max-width: 760px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-section {
    padding: 60px 26px 80px;
  }

  .faq-sub {
    max-width: 100%;
  }
}

/* ── Footer ────────────────────────────────────── */
.site-footer {
  background: #111111;
  padding: 80px 26px 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-title {
  margin: 0 0 20px;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1.1;
}

.footer-sub {
  margin: 0 0 auto;
  padding-bottom: 52px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.footer-contact-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.footer-contact-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.footer-input {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: #ffffff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

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

.footer-textarea {
  resize: vertical;
  min-height: 110px;
}

.footer-submit {
  background: #2a2a2a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.footer-submit:hover {
  background: #333333;
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-sub {
    padding-bottom: 36px;
  }
}

/* ── Logo marquee ──────────────────────────────── */
.hero-statement {
  text-align: center;
  padding: 36px 26px 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  max-width: 1180px;
  margin: 0 auto;
}

.hero-statement-main {
  margin: 0 0 10px;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f26531;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-statement-sub {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 500;
  color: #111111;
  letter-spacing: 0.02em;
}

.logo-marquee {
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  color: #1b1b1b;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  animation: slideRight 36s linear infinite;
}

.logo-track span {
  opacity: 0.45;
  white-space: nowrap;
}

@keyframes introUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ── Language toggle ────────────────────────────── */
.lang-toggle {
  font-size: 12px !important;
  font-weight: 700 !important;
  opacity: 0.75 !important;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 4px 10px !important;
  line-height: 1 !important;
}
.lang-toggle:hover { opacity: 1 !important; border-color: rgba(255,255,255,0.7); }

.nav-lang-btn {
  background: #ffffff;
  color: #111111 !important;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.nav-lang-btn .nav-dropdown-arrow {
  font-size: 10px;
}

.nav-lang-menu {
  left: auto;
  right: 0;
  transform: translateY(8px);
  min-width: 150px;
}

.nav-dropdown.is-open .nav-lang-menu {
  transform: translateY(0);
}

/* ── Mobile menu button (hidden on desktop) ────── */
.nav-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
}

.nav-home-btn {
  display: none;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

/* ── Mobile overlay menu ───────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  background: rgba(30, 30, 30, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px 24px 32px;
  transform: translateY(-12px);
  transition: transform 0.3s ease;
}

.mobile-menu.is-open .mobile-menu-inner {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-menu-logo {
  font-size: 20px;
  color: #ffffff;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.mobile-nav-links {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-links li a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mobile-nav-links li:last-child a {
  border-bottom: none;
}

.mobile-menu-cta {
  display: block;
  text-align: center;
  background: #ffffff;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero-nav .logo {
    font-size: 26px;
    line-height: 0.95;
    max-width: 190px;
  }

  .nav-menu-btn {
    display: block;
    padding: 8px 12px;
    font-size: 12px;
  }

  .nav-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-nav .nav-links,
  .hero-nav .cta-button {
    display: none;
  }

  .hero-nav {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 12px 14px;
  }

  .founder-section {
    padding: 42px 16px 64px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 64px;
  }

  .founder-copy {
    max-width: 100%;
  }

  .logo-track {
    gap: 48px;
    font-size: 16px;
  }
}

/* ── Large monitor text scaling ─────────────────────── */
@media (min-width: 1600px) {
  .logo { font-size: 46px; }
  .nav-links a,
  .nav-dropdown-btn { font-size: 17px; }
  .cta-button { font-size: 15px; padding: 14px 26px; }

  .founder-title { font-size: clamp(44px, 5.8vw, 76px); }
  .founder-copy { font-size: 18px; line-height: 1.6; max-width: 560px; }
  .founder-invite { font-size: 15px; max-width: 520px; }
  .button-dark,
  .button-light { font-size: 15px; padding: 12px 20px; }

  .build-title,
  .edges-title,
  .power-title,
  .process-title,
  .testimonials-title,
  .faq-title,
  .footer-title { font-size: clamp(40px, 4.2vw, 68px); }

  .build-sub,
  .edges-sub,
  .power-copy,
  .process-sub,
  .testimonials-sub,
  .faq-sub,
  .footer-sub { font-size: 18px; line-height: 1.75; max-width: 760px; }

  .build-tag { font-size: 13px; }
  .build-card-title { font-size: 33px; }
  .build-card-copy { font-size: 17px; line-height: 1.7; }
  .build-cta { font-size: 16px; }

  .snake-num { font-size: 15px; }
  .snake-text { font-size: 17px; line-height: 1.7; }
  .edges-download-btn { font-size: 16px; }
  .edges-download-sub { font-size: 15px; }

  .stat-number { font-size: 72px; }
  .stat-label { font-size: 21px; }
  .stat-copy { font-size: 16px; line-height: 1.7; max-width: 320px; }

  .process-num { font-size: 20px; }
  .process-step-title { font-size: 24px; }
  .process-step-copy { font-size: 16px; line-height: 1.7; }

  .t-quote { font-size: 17px; line-height: 1.8; }
  .t-name { font-size: 19px; }
  .t-role { font-size: 14px; }

  .faq-question { font-size: 22px; }
  .faq-answer { font-size: 16px; line-height: 1.75; }

  .footer-contact-label { font-size: 14px; }
  .footer-contact-value { font-size: 17px; }
  .footer-label { font-size: 15px; }
  .footer-input,
  .footer-textarea { font-size: 16px; }
  .footer-submit { font-size: 16px; }
}

@media (min-width: 2200px) {
  .logo { font-size: 52px; }
  .nav-links a,
  .nav-dropdown-btn { font-size: 19px; }
  .cta-button { font-size: 16px; padding: 15px 30px; }

  .founder-title { font-size: clamp(52px, 6.2vw, 90px); }
  .founder-copy { font-size: 20px; }
  .founder-invite { font-size: 16px; }

  .build-title,
  .edges-title,
  .power-title,
  .process-title,
  .testimonials-title,
  .faq-title,
  .footer-title { font-size: clamp(46px, 4.6vw, 78px); }

  .build-sub,
  .edges-sub,
  .power-copy,
  .process-sub,
  .testimonials-sub,
  .faq-sub,
  .footer-sub { font-size: 20px; }

  .build-card-title { font-size: 38px; }
  .build-card-copy { font-size: 18px; }
  .snake-text { font-size: 19px; }
  .stat-number { font-size: 84px; }
  .stat-label { font-size: 24px; }
  .process-step-title { font-size: 28px; }
  .process-step-copy { font-size: 18px; }
  .t-quote { font-size: 18px; }
  .faq-question { font-size: 24px; }
  .faq-answer { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .founder-title,
  .founder-side {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .logo-track {
    animation: none;
  }
}
