:root {
  --white: #f5f5f5;
  --muted: #cccccc;
  --line: rgba(255, 255, 255, 0.35);
  --dark: #111111;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--white);
  background: #ffffff;
}

.top-banner {
  background: #f1f1f1;
  color: #222;
  text-align: center;
  font-size: 11px;
  line-height: 1.2;
  padding: 8px 14px;
  position: relative;
}

.banner-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #777;
  font-size: 14px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 76vh;
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 28px 46px;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 18px;
}

.nav-links,
.social-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.nav-links a,
.social-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.social-links {
  justify-self: end;
  justify-content: flex-end;
}

.social-links a {
  font-size: 13px;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.logo img {
  display: block;
  width: min(330px, 30vw);
  max-width: 100%;
  height: auto;
}

.hero-center {
  margin: 100px auto 0;
  text-align: center;
  max-width: 850px;
}

.hero-center h1 {
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-center > p {
  font-size: 30px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
  max-width: 900px;
  margin: 0 auto 28px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 350px;
  min-height: 52px;
  padding: 14px 26px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.proof-points p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.problem {
  color: #333;
  text-align: center;
  padding: 58px 20px 66px;
  background: #ffffff;
}

.problem h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 3vw, 52px);
  font-weight: 600;
  margin-bottom: 10px;
}

.problem p {
  color: #777;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }

  .nav-links-left,
  .social-links {
    justify-content: center;
    justify-self: center;
  }

  .hero-center {
    margin-top: 56px;
  }
}

@media (max-width: 700px) {
  .hero-content {
    padding: 16px 16px 34px;
  }

  .logo {
    margin-top: 0;
  }

  .logo img {
    width: min(240px, 62vw);
  }

  .hero-center h1 {
    font-size: 34px;
  }

  .hero-center > p {
    font-size: 17px;
  }

  .btn {
    min-width: 100%;
  }
}

.about-page {
  background: linear-gradient(180deg, #f5f6f8 0%, #efefef 36%, #f7f7f7 100%);
}

.about-banner {
  background: #2c3242;
  color: #f4f6fb;
}

.about-banner .banner-close {
  color: #aeb6c5;
}

.about-hero {
  background: radial-gradient(circle at 30% 0%, #242e44 0%, #070a10 58%, #040507 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 22px 28px 0;
}

.about-nav {
  align-items: center;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(360px, 0.95fr);
  margin-top: 18px;
  min-height: 500px;
  gap: 26px;
  align-items: center;
}

.about-copy {
  padding: 34px 14px 40px;
  max-width: 640px;
}

.about-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(50px, 4.3vw, 76px);
  line-height: 0.96;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #f8fafc;
}

.about-copy p {
  color: rgba(240, 247, 255, 0.88);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 12px;
  max-width: 580px;
}

.about-copy .about-lead {
  color: #ffffff;
  font-weight: 600;
  max-width: 540px;
}

.about-hero-image {
  min-height: 435px;
  border-radius: 16px;
  background-image: linear-gradient(105deg, rgba(7, 10, 15, 0.56), rgba(6, 8, 12, 0.14)),
    url("images/about-success-key.png");
  background-size: cover;
  background-position: center top;
  box-shadow: 0 26px 48px rgba(5, 8, 12, 0.4);
  border: 1px solid rgba(184, 201, 224, 0.3);
}

.about-section-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

.about-media-row {
  padding: 68px 0 30px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #5b6a86;
  font-weight: 600;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 3vw, 56px);
  line-height: 1;
  color: #111827;
}

.about-carousel-wrap {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 12px;
  align-items: center;
}

.about-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 10px;
  scrollbar-width: none;
}

.about-carousel-track::-webkit-scrollbar {
  display: none;
}

.about-carousel-card {
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #dbe0e8;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(19, 25, 34, 0.08);
}

.about-carousel-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-carousel-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
  color: #1f2e48;
  padding: 10px 12px 4px;
}

.about-carousel-card p {
  padding: 0 12px 14px;
  color: #45516a;
  font-size: 12px;
  line-height: 1.55;
}

.about-carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  color: #ffffff;
  background: #6b7382;
  cursor: pointer;
}

.about-carousel-progress {
  height: 8px;
  width: min(96%, 980px);
  margin: 8px auto 0;
  background: #d3d9e4;
  border-radius: 999px;
  overflow: hidden;
}

.about-carousel-progress span {
  display: block;
  height: 100%;
  width: 15%;
  background: #5d739d;
  border-radius: 999px;
  transition: width 0.2s ease;
}

.about-success {
  padding: 34px 0 26px;
}

.success-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.08fr) minmax(290px, 0.86fr);
  gap: 34px;
  align-items: stretch;
}

.success-copy {
  color: #1f1f1f;
  background: #ffffff;
  border: 1px solid #d8dde5;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(15, 21, 30, 0.08);
  padding: 32px 30px;
}

.success-copy h2,
.about-example h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 3.2vw, 58px);
  line-height: 1;
  margin-bottom: 10px;
  color: #111827;
}

.success-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #26324a;
}

.success-copy ul {
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 14px;
  line-height: 1.56;
  color: #344153;
}

.success-copy li::before {
  content: "\2022";
  color: #6f86b4;
  margin-right: 8px;
}

.success-buttons {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  min-height: 46px;
  border: 1px solid #9aa8bf;
  border-radius: 999px;
  text-decoration: none;
  color: #2b3a56;
  background: #f4f7fb;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.outline-btn:hover {
  background: #e9eff8;
  border-color: #7c8faa;
}

.success-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.success-metrics div {
  background: #f6f8fc;
  border: 1px solid #d9dfeb;
  border-radius: 12px;
  padding: 10px 12px;
}

.success-metrics strong {
  display: block;
  color: #1f2f4b;
  font-size: 19px;
}

.success-metrics span {
  font-size: 11px;
  color: #5f6f8a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.success-image {
  min-height: 520px;
  border-radius: 16px;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 32px rgba(15, 21, 30, 0.16);
}

.about-example {
  padding: 28px 0 66px;
}

.about-example .about-section-inner {
  background: #ffffff;
  border: 1px solid #d8dde5;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 21, 30, 0.08);
  padding-top: 34px;
  padding-bottom: 30px;
}

.about-example h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 2.8vw, 46px);
  margin-bottom: 28px;
  font-weight: 600;
  color: #1f2b3f;
}

.example-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.15fr);
  gap: 32px;
  align-items: start;
}

.example-image {
  min-height: 354px;
  border-radius: 14px;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
}

.example-copy {
  color: #202020;
}

.example-copy p {
  font-size: 14px;
  line-height: 1.62;
  margin-bottom: 9px;
  color: #344153;
}

.script-btn {
  margin: 14px 0 10px;
}

.example-copy h4 {
  font-size: 25px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 4px;
  color: #1e2c44;
}

.example-calls {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  margin: 24px 0 16px;
}

.example-calls .outline-btn {
  min-width: 0;
}

.example-notes p {
  font-size: 13px;
  line-height: 1.65;
  color: #3f4b5d;
  margin-bottom: 8px;
}

.power-team {
  min-height: 404px;
  background-image: linear-gradient(rgba(7, 14, 26, 0.35), rgba(7, 14, 26, 0.35)),
    url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
}

.power-team-overlay {
  width: min(100%, 820px);
  background: rgba(22, 35, 59, 0.86);
  border: 1px solid rgba(172, 193, 230, 0.45);
  border-radius: 16px;
  color: #f3f6ff;
  padding: 26px 30px 28px;
  box-shadow: 0 20px 36px rgba(6, 10, 16, 0.26);
}

.power-team-overlay h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 3vw, 54px);
  margin-bottom: 12px;
  font-weight: 600;
}

.power-team-overlay ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.power-team-overlay li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(236, 242, 255, 0.92);
}

.power-team-overlay li::before {
  content: "\2022";
  color: #9eb7e3;
  margin-right: 8px;
}

.about-page .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 1100px) {
  .about-split,
  .success-grid,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 100%;
    padding: 20px 0 16px;
  }

  .about-copy h1 {
    max-width: 620px;
  }

  .about-hero-image {
    min-height: 300px;
  }

  .about-carousel-wrap {
    grid-template-columns: 40px 1fr 40px;
  }

  .success-buttons {
    flex-wrap: wrap;
  }

  .success-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .success-image,
  .example-image {
    min-height: 320px;
  }

  .example-calls {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .about-hero-inner,
  .about-section-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .about-copy h1 {
    font-size: 46px;
  }

  .about-copy p {
    font-size: 15px;
  }

  .about-media-row {
    padding-top: 34px;
  }

  .success-metrics,
  .example-calls {
    grid-template-columns: 1fr;
  }

  .about-carousel-wrap {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-carousel-btn {
    display: none;
  }

  .success-copy {
    padding: 22px 16px;
  }

  .about-example .about-section-inner {
    border-radius: 14px;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .outline-btn {
    width: 100%;
    min-width: 0;
  }

  .power-team {
    padding: 28px 14px;
  }

  .power-team-overlay {
    padding: 18px 14px 20px;
  }

  .power-team-overlay li {
    font-size: 13px;
  }
}

.freesources-page {
  background: #efefef;
  color: #222;
}

.freesources-form-section {
  padding: 0 20px 96px;
}

.freesources-form-wrap {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 46px;
  align-items: start;
}

.freesources-image {
  min-height: 356px;
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1000&q=80");
  background-position: center;
  background-size: cover;
}

.lead-form {
  padding-top: 20px;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.lead-form label {
  display: grid;
  gap: 5px;
  font-size: 12px;
  color: #2b2b2b;
}

.lead-form label span {
  font-size: 12px;
}

.lead-form label small {
  color: #777;
}

.lead-form input {
  width: 100%;
  height: 38px;
  border: 1px solid #ececec;
  background: #f2f2f2;
  color: #222;
  padding: 0 11px;
}

.lead-form .full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  margin-top: 18px;
  margin-left: 122px;
  min-width: 88px;
  min-height: 48px;
  border: 1px solid #888;
  background: #efefef;
  color: #333;
  cursor: pointer;
}

.site-footer {
  background: #030303;
  color: #ececec;
}

.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px 30px;
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.9fr 1fr;
  gap: 28px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 13px;
}

.footer-col h3 {
  font-weight: 500;
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
  color: #f4f4f4;
  margin-bottom: 6px;
}

.footer-col p,
.footer-col a {
  color: #f0f0f0;
  text-decoration: underline;
  line-height: 1.5;
}

.footer-brand p {
  text-decoration: none;
  color: #d8d8d8;
  font-size: 12px;
}

.footer-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
}

.footer-logo img {
  display: block;
  width: min(290px, 100%);
  height: auto;
}

.trustpilot-strip {
  background: #efefef;
  color: #1f1f1f;
  text-align: center;
  padding: 26px 12px 30px;
  font-size: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.trustpilot-link {
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.trustpilot-link:hover {
  background: #e6e8eb;
}

.trustpilot-link:focus-visible {
  outline: 2px solid #00b67a;
  outline-offset: 2px;
}

.trustpilot-star {
  color: #00b67a;
  font-size: 48px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .freesources-form-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .freesources-form-section {
    padding: 0 14px 54px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .lead-form .full-width {
    grid-column: auto;
  }

  .submit-btn {
    margin-left: 0;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    padding: 24px 14px 22px;
  }

  .footer-logo {
    margin-bottom: 6px;
  }

  .footer-logo img {
    width: min(230px, 100%);
  }

  .trustpilot-strip {
    font-size: 33px;
  }

  .trustpilot-star {
    font-size: 40px;
  }
}

.live-page {
  background: radial-gradient(circle at 20% 0%, #ffffff 0%, #f1f1f1 45%, #ebebeb 100%);
  color: #1e1e1e;
}

.live-header {
  background: linear-gradient(180deg, #070707 0%, #141414 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.live-main {
  padding: 34px 20px 96px;
}

.live-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.workshop-copy {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(22, 22, 22, 0.08);
  padding: 34px;
  color: #2b2b2b;
}

.live-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d8d8d8;
  background: #f6f6f6;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #404040;
  margin-bottom: 14px;
}

.workshop-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 3.6vw, 58px);
  margin-bottom: 16px;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: #1d1d1d;
}

.workshop-copy p {
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 12px;
  color: #3f3f3f;
}

.workshop-video-thumb {
  width: 100%;
  height: 390px;
  margin: 28px auto 0;
  position: relative;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.1)),
    url("https://images.unsplash.com/photo-1573164713988-8665fc963095?auto=format&fit=crop&w=1100&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #cfcfcf;
}

.play-icon {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 52px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.workshop-form {
  color: #222;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(22, 22, 22, 0.08);
  padding: 30px 28px;
}

.workshop-form h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  color: #171717;
}

.form-intro {
  font-size: 13px;
  color: #5b5b5b;
  margin-bottom: 16px;
  line-height: 1.5;
}

.workshop-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  color: #262626;
  margin-bottom: 11px;
  font-weight: 500;
}

.workshop-form small {
  color: #6d6d6d;
  font-weight: 400;
}

.workshop-form input,
.workshop-form select {
  width: 100%;
  height: 42px;
  border: 1px solid #d7d7d7;
  background: #f8f8f8;
  color: #333;
  padding: 0 12px;
  font-size: 14px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.workshop-form input:focus,
.workshop-form select:focus {
  border-color: #6f7b9a;
  box-shadow: 0 0 0 3px rgba(89, 111, 164, 0.18);
}

.workshop-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #777 50%),
    linear-gradient(135deg, #777 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 12px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.workshop-divider {
  height: 1px;
  width: 100%;
  background: #d6d6d6;
  opacity: 1;
  margin: 14px 0;
}

.radio-fieldset {
  border: 0;
  margin: 12px 0 0;
  padding: 0;
}

.radio-fieldset legend {
  font-size: 12px;
  margin-bottom: 10px;
  color: #2b2b2b;
}

.inline-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 7px;
  color: #393939;
  font-weight: 400;
}

.inline-radio input {
  width: 15px;
  height: 15px;
}

.what-next,
.disclaimer {
  margin-top: 12px;
}

.what-next h3,
.disclaimer h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 7px;
  line-height: 1;
  color: #161616;
}

.what-next p,
.disclaimer p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 9px;
}

.submit-btn-centered {
  display: block;
  margin: 12px auto 0;
}

.workshop-form .submit-btn {
  min-width: 132px;
  min-height: 46px;
  border: 1px solid #141414;
  border-radius: 999px;
  background: #121212;
  color: #f7f7f7;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.2s ease;
}

.workshop-form .submit-btn:hover {
  background: #272727;
  transform: translateY(-1px);
}

.site-footer-angled {
  position: relative;
  overflow: hidden;
}

.site-footer-angled::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -82px;
  height: 110px;
  background: #030303;
  transform: skewY(-3.5deg);
  transform-origin: 100% 0;
}

.site-footer-angled .site-footer-inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .live-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workshop-copy,
  .workshop-form {
    padding: 24px 20px;
  }

  .workshop-video-thumb {
    margin-top: 22px;
    height: 320px;
  }
}

@media (max-width: 700px) {
  .live-main {
    padding: 14px 12px 52px;
  }

  .workshop-copy,
  .workshop-form {
    border-radius: 12px;
    padding: 20px 14px;
  }

  .live-kicker {
    font-size: 11px;
  }

  .workshop-copy h1 {
    font-size: 36px;
  }

  .workshop-video-thumb {
    height: 250px;
  }

  .workshop-form h2 {
    font-size: 34px;
  }

  .site-footer-angled::before {
    top: -44px;
    height: 62px;
  }
}

.index-page {
  background: linear-gradient(180deg, #f4f5f7 0%, #ececec 38%, #f6f6f6 100%);
  color: #1f1f1f;
}

.index-page .hero {
  min-height: 74vh;
  position: relative;
  background: #05070a;
  overflow: hidden;
}

.index-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(6, 10, 18, 0.2) 0%, rgba(6, 10, 18, 0.74) 72%);
  z-index: 1;
}

.index-page .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.index-page .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.15s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.index-page .hero-slide.active {
  opacity: 1;
}

.index-page .hero-slide:nth-child(1) {
  background-image: url("https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=2200");
}

.index-page .hero-slide:nth-child(2) {
  background-image: url("https://images.pexels.com/photos/6585761/pexels-photo-6585761.jpeg?auto=compress&cs=tinysrgb&w=2200");
}

.index-page .hero-slide:nth-child(3) {
  background-image: url("https://images.pexels.com/photos/8134848/pexels-photo-8134848.jpeg?auto=compress&cs=tinysrgb&w=2200");
}

.index-page .hero-center {
  margin-top: 43px;
  max-width: 900px;
  background: rgba(8, 13, 22, 0.56);
  border: 1px solid rgba(190, 208, 238, 0.28);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 18px 44px rgba(7, 11, 18, 0.42);
  backdrop-filter: blur(2px);
}

.index-page .hero-center h1 {
  font-size: clamp(48px, 4.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.62);
}

.index-page .hero-center > p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(247, 250, 255, 0.96);
  max-width: 760px;
}

.index-section {
  padding: 58px 0;
}

.index-section-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}

.index-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 3.3vw, 60px);
  line-height: 1;
  color: #182232;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 14px;
  color: #556074;
  line-height: 1.6;
}

.real-problem {
  background: #ececec;
}

.problem-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: center;
}

.problem-card {
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(18, 24, 34, 0.08);
  padding: 24px 24px 22px;
}

.problem-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: #1f2d45;
  margin-bottom: 10px;
}

.problem-card ul {
  list-style: none;
  margin: 0 0 10px;
}

.problem-card li {
  font-size: 14px;
  color: #3d4b61;
  margin-bottom: 8px;
}

.problem-card li::before {
  content: "\2022";
  color: #6f86b4;
  margin-right: 8px;
}

.problem-card p {
  font-size: 13px;
  color: #5a677d;
  margin-bottom: 7px;
}

.problem-math {
  text-align: center;
  font-size: clamp(80px, 10vw, 166px);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #2b2e35;
  line-height: 0.9;
}

.problem-math span {
  color: #111827;
  margin: 0 5px;
}

.built-business {
  background: #f8f8f8;
}

.built-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.listing-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 6px;
}

.listing-collage img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  border-radius: 6px;
}

.listing-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 8px;
  gap: 8px;
}

.listing-stats div {
  text-align: center;
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 10px;
  padding: 8px 6px;
}

.listing-stats strong {
  display: block;
  font-size: 22px;
  color: #1e293b;
}

.listing-stats span {
  font-size: 11px;
  color: #66758f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.built-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: #4e5a6f;
  margin-bottom: 16px;
  max-width: 470px;
}

.run-box {
  background: #f0f3f8;
  border: 1px solid #d5dce8;
  border-radius: 14px;
  padding: 18px 20px;
  max-width: 300px;
}

.run-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: #1f2d45;
  margin-bottom: 8px;
}

.run-box ul {
  list-style: none;
}

.run-box li {
  color: #42516a;
  font-size: 14px;
  margin-bottom: 7px;
}

.run-box li::before {
  content: "\2022";
  color: #6f86b4;
  margin-right: 8px;
}

.authority-section {
  background: #ececec;
}

.authority-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
}

.authority-card {
  min-height: 250px;
  border-radius: 12px;
  overflow: hidden;
  padding: 22px 20px;
  color: #eef3ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(174, 191, 220, 0.4);
  box-shadow: 0 16px 30px rgba(13, 19, 27, 0.2);
  background-size: cover;
  background-position: center;
}

.authority-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.authority-card p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(237, 243, 255, 0.95);
}

.authority-card-leads {
  background-image: linear-gradient(rgba(14, 25, 44, 0.55), rgba(14, 25, 44, 0.82)),
    url("https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1000&q=80");
}

.authority-card-va {
  background-image: linear-gradient(rgba(9, 20, 38, 0.52), rgba(9, 20, 38, 0.8)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1000&q=80");
}

.authority-card-crm {
  background-image: linear-gradient(rgba(9, 20, 38, 0.55), rgba(9, 20, 38, 0.82)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1000&q=80");
}

.authority-cta-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.coach-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
  background: #040507;
}

.coach-image {
  background-image: url("https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop&w=1300&q=80");
  background-size: cover;
  background-position: center;
}

.coach-copy {
  color: #f5f7fb;
  padding: 60px 54px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.coach-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 3.3vw, 60px);
  line-height: 0.98;
}

.coach-copy p {
  color: rgba(234, 240, 255, 0.84);
  font-size: 14px;
  line-height: 1.7;
  max-width: 500px;
}

.coach-copy .outline-btn {
  width: fit-content;
  color: #dde8ff;
  border-color: rgba(175, 194, 228, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.coach-copy .outline-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .index-page .hero-center {
    margin-top: 58px;
    max-width: 760px;
  }

  .problem-grid,
  .built-grid,
  .coach-strip {
    grid-template-columns: 1fr;
  }

  .problem-math {
    font-size: clamp(70px, 16vw, 120px);
  }

  .authority-grid {
    grid-template-columns: 1fr;
  }

  .coach-image {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .index-page .hero-center h1 {
    font-size: 42px;
  }

  .index-page .hero-center > p {
    font-size: 15px;
  }

  .index-page .hero-center {
    padding: 20px 14px 18px;
    border-radius: 12px;
  }

  .index-section {
    padding: 36px 0;
  }

  .index-section-inner {
    padding: 0 14px;
  }

  .listing-collage {
    grid-template-columns: 1fr 1fr;
  }

  .listing-collage img {
    height: 120px;
  }

  .listing-stats {
    grid-template-columns: 1fr 1fr;
  }

  .coach-copy {
    padding: 30px 14px 36px;
  }

  .coach-copy h2 {
    font-size: 40px;
  }

  .coach-copy .outline-btn {
    width: 100%;
  }
}

.hero-kicker {
  display: inline-flex;
  border: 1px solid rgba(225, 233, 249, 0.45);
  background: rgba(14, 21, 34, 0.35);
  border-radius: 999px;
  padding: 7px 14px;
  color: rgba(236, 244, 255, 0.95);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
}

.hero-stats div {
  background: rgba(10, 17, 30, 0.5);
  border: 1px solid rgba(173, 191, 220, 0.34);
  border-radius: 12px;
  padding: 10px 8px;
}

.hero-stats strong {
  display: block;
  color: #f7fbff;
  font-size: 21px;
}

.hero-stats span {
  color: rgba(220, 229, 246, 0.84);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.real-problem .index-section-inner > h2,
.real-problem .section-sub,
.authority-section .index-section-inner > h2,
.authority-section .section-sub {
  text-align: center;
}

.process-strip {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid #d7dde8;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(20, 30, 43, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.process-strip div {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #2a3851;
  font-weight: 600;
  font-size: 14px;
  border-right: 1px solid #e2e7ef;
}

.process-strip div:last-child {
  border-right: none;
}

.process-strip span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ecf2fb;
  border: 1px solid #ccd8ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #4a5f86;
}

.built-copy {
  background: #ffffff;
  border: 1px solid #d7dde8;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(20, 30, 43, 0.08);
  padding: 30px 28px;
}

.index-page .run-box {
  max-width: none;
}

.authority-section {
  padding-top: 66px;
  padding-bottom: 66px;
}

.coach-copy h2 {
  color: #f8fbff;
}

.coach-copy p {
  margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .process-strip {
    grid-template-columns: 1fr 1fr;
  }

  .process-strip div:nth-child(2) {
    border-right: none;
  }

  .process-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid #e2e7ef;
  }

  .hero-stats {
    margin: 16px auto 0;
    max-width: 520px;
  }
}

@media (max-width: 700px) {
  .hero-kicker {
    font-size: 10px;
    padding: 6px 10px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-strip div {
    border-right: none;
    border-bottom: 1px solid #e2e7ef;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .process-strip div:last-child {
    border-bottom: none;
  }

  .built-copy {
    padding: 22px 16px;
  }
}

.services-page {
  background: #ececec;
  color: #222;
}

.services-header {
  background: #050608;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.services-intro {
  padding: 42px 0 34px;
}

.intro-copy {
  max-width: 860px;
}

.intro-copy h1 {
  font-family: "Cormorant Garamond", serif;
  color: #2b3647;
  font-size: clamp(54px, 4.2vw, 76px);
  line-height: 0.98;
  margin-bottom: 16px;
}

.intro-copy p {
  color: #414d62;
  font-size: 14px;
  line-height: 1.72;
  margin-bottom: 10px;
}

.services-quote {
  padding: 8px 0 30px;
}

.services-quote .services-inner {
  background: #e6e6e6;
  border: 1px solid #d2d7e0;
  border-radius: 14px;
  padding-top: 40px;
  padding-bottom: 34px;
  display: grid;
  justify-items: center;
}

.services-quote blockquote {
  max-width: 760px;
  color: #2b3342;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 3.1vw, 52px);
  line-height: 1.02;
  margin-bottom: 26px;
}

.services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 50px;
  border: 1px solid #9ca7b7;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #35455d;
  font-size: 12px;
  font-weight: 600;
  background: #f4f6f8;
  transition: all 0.2s ease;
}

.services-btn:hover {
  background: #e9eef4;
}

.services-feature {
  padding: 14px 0 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(280px, 0.86fr);
  gap: 34px;
  align-items: center;
}

.feature-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 3.1vw, 54px);
  line-height: 1;
  color: #2a3446;
  margin-bottom: 14px;
}

.feature-copy p {
  color: #434f64;
  font-size: 14px;
  line-height: 1.72;
  max-width: 600px;
}

.feature-image {
  min-height: 520px;
  border-radius: 14px;
  background-image: linear-gradient(rgba(8, 13, 20, 0.15), rgba(8, 13, 20, 0.15)),
    url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
  border: 1px solid #d8dce5;
  box-shadow: 0 16px 34px rgba(14, 20, 29, 0.12);
}

.services-testimonials {
  padding: 18px 0 42px;
}

.services-testimonials h2 {
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  color: #2b3647;
  font-size: clamp(40px, 2.8vw, 52px);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 12px;
}

.services-video-card {
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid #c8d1df;
  box-shadow: 0 10px 24px rgba(13, 19, 29, 0.15);
  background: #0d0d0d;
}

.services-video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.services-btn-wide {
  margin: 24px auto 0;
  min-width: 320px;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 360px;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media (max-width: 700px) {
  .services-inner {
    padding: 0 14px;
  }

  .intro-copy h1 {
    font-size: 44px;
  }

  .services-quote blockquote {
    font-size: 34px;
  }

  .feature-copy h2 {
    font-size: 38px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-btn-wide {
    min-width: 100%;
  }
}

.resources-hero {
  background: #6a6a6a;
}

.resources-hero .about-hero-inner {
  padding-bottom: 34px;
}

.resources-hero-copy {
  text-align: center;
  padding: 56px 0 24px;
}

.resources-hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 3.9vw, 68px);
  line-height: 0.98;
  color: #f4f4f4;
  max-width: 820px;
  margin: 0 auto;
}

.resources-main {
  padding: 0 0 66px;
}

.resources-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.resource-block {
  padding: 56px 0 44px;
}

.resource-block-divider {
  border-top: 1px solid #a8a8a8;
}

.resource-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: center;
}

.resource-grid.reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 1fr);
}

.resource-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 3vw, 56px);
  line-height: 1;
  color: #303c50;
  margin-bottom: 14px;
}

.resource-content p {
  font-size: 14px;
  line-height: 1.68;
  color: #3f4c61;
  margin-bottom: 8px;
}

.resource-media {
  min-height: 340px;
  border-radius: 12px;
  border: 1px solid #d4dae5;
  box-shadow: 0 14px 30px rgba(11, 16, 25, 0.09);
  background-size: cover;
  background-position: center;
}

.resource-media-novation {
  background-image: url("https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?auto=format&fit=crop&w=1200&q=80");
}

.resource-media-foreclosure {
  background-image: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=80");
}

.resource-media-contract {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80");
}

.resource-form {
  margin-top: 16px;
}

.resource-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 10px;
}

.resource-form label {
  display: grid;
  gap: 5px;
  color: #3a465b;
  font-size: 12px;
}

.resource-form small {
  color: #6e7787;
}

.resource-form input {
  width: 100%;
  height: 38px;
  border: 1px solid #d9dfe9;
  background: #f0f2f5;
  padding: 0 10px;
  color: #2b3240;
}

.resource-form .full-width {
  grid-column: 1 / -1;
}

.resource-submit {
  margin-top: 14px;
  min-width: 86px;
  min-height: 46px;
  border: 1px solid #8b96aa;
  background: #eceff4;
  color: #35445d;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .resource-grid,
  .resource-grid.reverse {
    grid-template-columns: 1fr;
  }

  .resource-media {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .resources-inner {
    padding: 0 14px;
  }

  .resources-hero-copy {
    padding-top: 40px;
  }

  .resources-hero-copy h1 {
    font-size: 40px;
  }

  .resource-content h2 {
    font-size: 38px;
  }

  .resource-form-grid {
    grid-template-columns: 1fr;
  }

  .resource-form .full-width {
    grid-column: auto;
  }
}

.services-proof {
  padding: 24px 0 48px;
}

.proof-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 20px;
}

.proof-head h2 {
  font-family: "Cormorant Garamond", serif;
  color: #2b3647;
  font-size: clamp(42px, 2.9vw, 56px);
  line-height: 1;
  margin: 8px 0 10px;
}

.proof-head p {
  color: #4b586e;
  font-size: 14px;
  line-height: 1.7;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.15fr);
  gap: 18px;
}

.featured-testimonial {
  background: #ffffff;
  border: 1px solid #cfd7e5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(12, 20, 30, 0.1);
}

.featured-testimonial iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  display: block;
}

.featured-meta {
  padding: 12px 12px 14px;
}

.featured-meta h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: #273347;
  line-height: 1;
  margin-bottom: 6px;
}

.featured-meta p {
  color: #4d5a70;
  font-size: 13px;
  line-height: 1.55;
}

.testimonial-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  align-content: start;
}

.testimonial-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #c8d1df;
  box-shadow: 0 10px 24px rgba(13, 19, 29, 0.15);
  text-decoration: none;
}

.testimonial-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.tile-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tile-title {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: rgba(10, 16, 26, 0.78);
  color: #f5f9ff;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 6px;
}

.proof-cta-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-cta-row .outline-btn {
  min-height: 50px;
}

@media (max-width: 1100px) {
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .featured-testimonial iframe {
    max-height: 520px;
  }
}

@media (max-width: 700px) {
  .testimonial-tile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-cta-row .services-btn,
  .proof-cta-row .outline-btn {
    width: 100%;
  }
}

.bs-page {
  background: #707070;
  color: #ededed;
}

.bs-header {
  background: #6d6d6d;
}

.bs-main {
  padding: 46px 0 64px;
}

.bs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 22px;
}

.bs-sidebar {
  padding-top: 114px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.bs-cat-btn {
  text-align: left;
  border: none;
  background: transparent;
  color: #f2f2f2;
  font-size: 18px;
  cursor: pointer;
  line-height: 1.2;
  padding: 0;
  font-family: "Cormorant Garamond", serif;
}

.bs-cat-btn.active {
  color: #ffffff;
  font-weight: 600;
}

.bs-subcat {
  font-size: 16px;
  opacity: 0.9;
  padding-left: 10px;
}

.bs-content h1 {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 4.5vw, 88px);
  line-height: 0.95;
  margin: 10px 0 12px;
  color: #f3f3f3;
}

.bs-active-label {
  text-align: center;
  color: #ededed;
  font-size: 15px;
  margin-bottom: 20px;
}

.bs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 22px 18px;
  align-items: start;
}

.bs-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #efefef;
}

.bs-card h3 {
  margin-top: 11px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.bs-card p {
  margin-top: 5px;
  color: #ededed;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .bs-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}

@media (max-width: 900px) {
  .bs-inner {
    grid-template-columns: 1fr;
  }

  .bs-sidebar {
    padding-top: 0;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 10px;
  }

  .bs-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 700px) {
  .bs-main {
    padding: 28px 0 42px;
  }

  .bs-inner {
    padding: 0 14px;
  }

  .bs-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .bs-content h1 {
    font-size: 46px;
  }

  .bs-grid {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}

.contact-page {
  background: radial-gradient(circle at 10% 0%, #fafbff 0%, #eff2f8 45%, #ececec 100%);
  color: #2b2b2b;
}

.contact-header {
  background: linear-gradient(180deg, #07080b 0%, #10131a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-main {
  padding: 58px 0 66px;
}

.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(260px, 0.72fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}

.contact-kicker {
  display: inline-flex;
  border: 1px solid #cdd5e4;
  border-radius: 999px;
  background: #f7f9fc;
  color: #4f607d;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 11px;
  margin-bottom: 12px;
}

.contact-intro h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 4.2vw, 74px);
  line-height: 0.96;
  color: #1f2b40;
  margin-bottom: 12px;
}

.contact-intro > div > p {
  font-size: 14px;
  line-height: 1.75;
  color: #445067;
  max-width: 760px;
}

.contact-quick-card {
  background: linear-gradient(180deg, #23324f 0%, #162237 100%);
  border-radius: 14px;
  border: 1px solid rgba(173, 191, 226, 0.35);
  box-shadow: 0 16px 34px rgba(12, 18, 31, 0.24);
  padding: 20px 18px;
  color: #eaf0fd;
}

.contact-quick-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}

.contact-quick-card a {
  display: block;
  color: #f3f7ff;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 7px;
}

.contact-quick-card p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(225, 233, 248, 0.9);
  margin-top: 3px;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #d7dce7;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(17, 23, 36, 0.12);
  padding: 24px 22px 24px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 12px;
  font-weight: 500;
}

.contact-form small {
  color: #6b7280;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d4dae5;
  background: #f8fafc;
  color: #1f2937;
  padding: 10px 12px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6f80a3;
  box-shadow: 0 0 0 3px rgba(100, 123, 173, 0.18);
}

.contact-form input {
  height: 42px;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-consents {
  margin-top: 18px;
  border-top: 1px solid #d4dae5;
  border-bottom: 1px solid #d4dae5;
  padding: 12px 0;
  display: grid;
  gap: 10px;
}

.consent-row {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 12px;
  color: #3f4654;
  line-height: 1.5;
}

.consent-row input {
  width: 14px;
  height: 14px;
  margin-top: 1px;
}

.contact-submit {
  display: block;
  margin: 16px auto 0;
  min-width: 132px;
  min-height: 46px;
  border: 1px solid #21324e;
  border-radius: 999px;
  background: #21324e;
  color: #f5f8ff;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}

.contact-submit:hover {
  background: #33486d;
  transform: translateY(-1px);
}

.contact-legal-links {
  text-align: center;
  margin-top: 14px;
  font-size: 11px;
}

.contact-legal-links a {
  color: #596274;
}

@media (max-width: 700px) {
  .contact-main {
    padding: 34px 0 44px;
  }

  .contact-inner {
    padding: 0 14px;
  }

  .contact-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-intro h1 {
    font-size: 42px;
  }

  .contact-form {
    border-radius: 12px;
    padding: 16px 12px 16px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .full-width {
    grid-column: auto;
  }

  .contact-quick-card {
    padding: 16px 12px;
  }

  .contact-submit {
    width: 100%;
  }
}
