.venture-page {
  --venture-navy: #111a2e;
  --venture-blue: #153b79;
  --venture-bright: #2765db;
  --venture-purple: #7652e8;
  --venture-warm: #f7f5f0;
  color: var(--venture-navy);
}

.venture-page .site-header {
  border-bottom: 1px solid #e7ebf2;
  box-shadow: none;
}

.venture-page .brand {
  flex: 0 0 auto;
}

.venture-page .main-nav {
  gap: 36px;
}

.venture-page .business-mega {
  background: linear-gradient(90deg, rgba(3, 39, 91, 0.9), rgba(5, 48, 105, 0.86)), url("assets/hero.jpg") center 43% / cover;
}

.venture-page .business-mega.is-open {
  height: 436px;
}

.venture-page main {
  overflow: hidden;
}

.venture-shell {
  width: min(1184px, calc(100% - 48px));
  margin-inline: auto;
}

.venture-hero {
  position: relative;
  min-height: 720px;
  padding: 132px 0 54px;
  background:
    radial-gradient(circle at 78% 42%, rgba(118, 82, 232, 0.1), transparent 31%),
    radial-gradient(circle at 30% 72%, rgba(38, 100, 219, 0.08), transparent 32%),
    #fff;
}

.venture-hero-copy {
  max-width: 1000px;
}

.venture-hero h1 {
  max-width: 1020px;
  margin: 0;
  color: #10192c;
  font-size: clamp(54px, 5.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.venture-hero h1 span {
  color: var(--venture-bright);
}

.venture-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #5c6674;
  font-size: 19px;
  line-height: 1.55;
}

.venture-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.venture-button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid #dfe3eb;
  border-radius: 12px;
  background: #fff;
  color: #111a2e;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(16, 35, 80, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.venture-button:hover,
.venture-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 35, 80, 0.12);
}

.venture-button.primary {
  border-color: #ef7d00;
  background: #ef7d00;
  color: #fff;
  box-shadow: 0 10px 22px rgba(239, 125, 0, 0.24);
}

.venture-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  background: #173d7d;
  color: #fff;
}

.venture-stats div {
  min-height: 116px;
  padding: 30px 24px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.venture-stats div:last-child {
  border-right: 0;
}

.venture-stats strong {
  display: block;
  margin-bottom: 5px;
  color: #ef8a16;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1;
}

.venture-stats span {
  color: #f8fbff;
  font-size: 14px;
}

.venture-section {
  padding: 88px 0;
  background: #fff;
}

.venture-section.warm {
  background: var(--venture-warm);
}

.venture-section-head {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.venture-section-head h2 {
  margin: 0;
  color: #10192c;
  font-size: clamp(34px, 3.2vw, 43px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.venture-section-head p {
  margin: 14px 0 0;
  color: #798291;
  font-size: 16px;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 282px;
  padding: 28px;
  border: 1px solid #dfe3e9;
  border-radius: 14px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(24, 48, 86, 0.1);
}

.service-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 12px;
  background: #f0ecff;
  color: #7652e8;
  font-size: 20px;
  font-weight: 700;
}

.service-icon::before {
  position: absolute;
  z-index: 0;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  background: currentColor;
  content: "";
}

.service-icon img {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.service-card:nth-child(1) .service-icon {
  background: #efecff;
  color: #7d4dff;
}

.service-card:nth-child(2) .service-icon {
  background: #f1edff;
  color: #8946ef;
}

.service-card:nth-child(3) .service-icon {
  background: #edf3ff;
  color: #3c70ee;
}

.service-card:nth-child(4) .service-icon {
  background: #e9faff;
  color: #04a8df;
}

.service-card:nth-child(5) .service-icon {
  background: #fff0fc;
  color: #dc35c3;
}

.service-card:nth-child(6) .service-icon {
  background: #e7fbf4;
  color: #06b995;
}

.service-card:nth-child(7) .service-icon {
  background: #fff6df;
  color: #ff8a00;
}

.service-card:nth-child(8) .service-icon {
  background: #fff0f2;
  color: #ff3155;
}

.venture-page[data-business-page="marketing"] .service-card:nth-child(2) .service-icon {
  background: #fff0fc;
  color: #dc35c3;
}

.venture-page[data-business-page="marketing"] .service-card:nth-child(3) .service-icon {
  background: #e7fbf4;
  color: #06b995;
}

.venture-page[data-business-page="marketing"] .service-card:nth-child(4) .service-icon {
  background: #e9faff;
  color: #04a8df;
}

.venture-page[data-business-page="marketing"] .service-card:nth-child(5) .service-icon {
  background: #fff6df;
  color: #ff8a00;
}

.venture-page[data-business-page="marketing"] .service-card:nth-child(6) .service-icon,
.venture-page[data-business-page="marketing"] .service-card:nth-child(7) .service-icon {
  background: #f1edff;
  color: #8946ef;
}

.venture-page[data-business-page="marketing"] .service-card:nth-child(8) .service-icon {
  background: #fff0f2;
  color: #ff3155;
}

.venture-page[data-business-page="360"] .service-card:nth-child(2) .service-icon,
.venture-page[data-business-page="360"] .service-card:nth-child(8) .service-icon {
  background: #e7fbf4;
  color: #06b995;
}

.venture-page[data-business-page="360"] .service-card:nth-child(3) .service-icon {
  background: #edf3ff;
  color: #3c70ee;
}

.venture-page[data-business-page="360"] .service-card:nth-child(4) .service-icon {
  background: #fff6df;
  color: #ff8a00;
}

.venture-page[data-business-page="360"] .service-card:nth-child(5) .service-icon {
  background: #f1edff;
  color: #8946ef;
}

.venture-page[data-business-page="360"] .service-card:nth-child(6) .service-icon {
  background: #fff0fc;
  color: #dc35c3;
}

.venture-page[data-business-page="360"] .service-card:nth-child(7) .service-icon {
  background: #f0f2f6;
  color: #64748b;
}

.service-card h3 {
  margin: 0 0 11px;
  color: #111a2e;
  font-size: 17px;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: #6f7989;
  font-size: 14.5px;
  line-height: 1.58;
}

.billing-toggle {
  display: flex;
  width: max-content;
  margin: 0 auto 44px;
  padding: 5px;
  border-radius: 11px;
  background: #f0f2f6;
}

.billing-toggle button {
  min-width: 94px;
  padding: 9px 17px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #7d8796;
  cursor: pointer;
  font-weight: 700;
}

.billing-toggle button.active {
  background: #fff;
  color: #111a2e;
  box-shadow: 0 2px 8px rgba(22, 42, 72, 0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 16px;
  max-width: 1040px;
  margin-inline: auto;
}

.pricing-card {
  position: relative;
  min-height: 500px;
  padding: 34px 32px;
  border: 1px solid #e1e4e9;
  border-radius: 15px;
  background: #fff;
}

.pricing-card.featured {
  min-height: 550px;
  padding-top: 38px;
  border-color: #173d7d;
  background: linear-gradient(150deg, #173d7d, #1253df);
  color: #fff;
  box-shadow: 0 22px 45px rgba(25, 76, 181, 0.22);
}

.popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 6px 20px;
  border-radius: 99px;
  background: #ff9700;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transform: translateX(-50%);
}

.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.pricing-card > p {
  min-height: 50px;
  margin: 0;
  color: #7b8492;
  line-height: 1.45;
}

.pricing-card.featured > p,
.pricing-card.featured li {
  color: rgba(255, 255, 255, 0.8);
}

.price {
  display: block;
  margin: 24px 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price small {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-card ul {
  display: grid;
  gap: 14px;
  min-height: 192px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.pricing-card li {
  color: #5e6878;
  font-size: 14px;
  line-height: 1.4;
}

.pricing-card li::before {
  margin-right: 10px;
  color: #6d6af5;
  content: "✓";
}

.pricing-card .venture-button {
  width: 100%;
}

.venture-page[data-business-page="tech"] .pricing-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
}

.venture-page[data-business-page="tech"] .pricing-card.featured {
  min-height: 520px;
}

.venture-page[data-business-page="tech"] .pricing-card ul {
  min-height: 0;
  flex: 1;
}

.venture-page[data-business-page="marketing"] .pricing-section {
  padding: 36px 0 20px;
}

.venture-page[data-business-page="marketing"] .pricing-grid {
  max-width: 1024px;
}

.venture-page[data-business-page="marketing"] .pricing-card {
  display: flex;
  min-height: 524px;
  flex-direction: column;
}

.venture-page[data-business-page="marketing"] .pricing-card.featured {
  min-height: 586px;
}

.venture-page[data-business-page="marketing"] .pricing-card ul {
  min-height: 0;
  flex: 1;
}

.venture-page[data-business-page="marketing"] .pricing-card li {
  display: flex;
  align-items: flex-start;
}

.venture-page[data-business-page="marketing"] .pricing-card li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  margin-right: 12px;
  background: #f0f3ff;
  color: #6d6af5;
  content: "✓";
  font-size: 11px;
  line-height: 1;
}

.venture-page[data-business-page="marketing"] .pricing-card.featured li::before {
  background: #7065f4;
  color: #fff;
}

.venture-page[data-business-page="marketing"] .pricing-note {
  margin-top: 20px;
}

.venture-page[data-business-page="360"] .pricing-section {
  padding: 58px 0 22px;
}

.venture-page[data-business-page="360"] .pricing-grid {
  max-width: 1024px;
}

.venture-page[data-business-page="360"] .pricing-card {
  display: flex;
  min-height: 544px;
  flex-direction: column;
}

.venture-page[data-business-page="360"] .pricing-card:nth-child(3) {
  min-height: 576px;
}

.venture-page[data-business-page="360"] .pricing-card.featured {
  min-height: 666px;
}

.venture-page[data-business-page="360"] .pricing-card ul {
  min-height: 0;
  flex: 1;
}

.venture-page[data-business-page="360"] .pricing-card li {
  display: flex;
  align-items: flex-start;
}

.venture-page[data-business-page="360"] .pricing-card li::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  margin-right: 12px;
  background: #f0f3ff;
  color: #6d6af5;
  content: "✓";
  font-size: 11px;
  line-height: 1;
}

.venture-page[data-business-page="360"] .pricing-card.featured li::before {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.venture-page[data-business-page="360"] .pricing-note {
  margin-top: 76px;
}

.pricing-note {
  margin: 40px 0 0;
  color: #9aa2ae;
  text-align: center;
  font-size: 13px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.process-section {
  padding: 52px 0 66px;
}

.process-section .venture-section-head {
  margin-bottom: 62px;
}

.process-grid::before {
  position: absolute;
  top: 44px;
  right: 6%;
  left: 6%;
  height: 2px;
  background: #d7d8ef;
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: linear-gradient(145deg, #173d7d, #1051d7);
  color: #fff;
  font-size: 25px;
  box-shadow: 0 12px 24px rgba(28, 79, 175, 0.2);
}

.process-number img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.process-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #0c1731;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.process-step p {
  margin: 0;
  color: #737d8d;
  font-size: 12.5px;
  line-height: 1.45;
}

.venture-page[data-business-page="360"] .process-section {
  padding: 44px 0 64px;
}

.venture-page[data-business-page="360"] .process-section .venture-section-head {
  max-width: 700px;
  margin-bottom: 64px;
}

.venture-page[data-business-page="360"] .process-grid {
  display: flex;
  max-width: 896px;
  flex-direction: column;
  gap: 64px;
  margin-inline: auto;
}

.venture-page[data-business-page="360"] .process-grid::before {
  display: none;
}

.venture-page[data-business-page="360"] .process-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  text-align: left;
}

.venture-page[data-business-page="360"] .process-step:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 64px;
}

.venture-page[data-business-page="360"] .process-step:nth-child(even) .process-number {
  grid-column: 2;
  grid-row: 1;
}

.venture-page[data-business-page="360"] .process-step:nth-child(even) .process-copy {
  grid-column: 1;
  grid-row: 1;
}

.venture-page[data-business-page="360"] .process-number {
  width: 64px;
  height: 64px;
  margin: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #6648ef, #8b2dff);
}

.venture-page[data-business-page="360"] .process-step:nth-child(2) .process-number {
  background: linear-gradient(145deg, #2769e7, #3c59ea);
}

.venture-page[data-business-page="360"] .process-step:nth-child(4) .process-number {
  background: linear-gradient(145deg, #05a98e, #00b39b);
}

.venture-page[data-business-page="360"] .process-step:nth-child(5) .process-number {
  background: linear-gradient(145deg, #ff9700, #ff7b00);
}

.venture-page[data-business-page="360"] .process-number::after {
  position: absolute;
  top: 76px;
  left: 50%;
  width: 1px;
  height: 45px;
  background: #bfc4cc;
  content: "";
}

.venture-page[data-business-page="360"] .process-step:last-child .process-number::after {
  display: none;
}

.process-copy {
  min-height: 160px;
  padding: 27px 24px;
  border: 1px solid #dde1e7;
  border-radius: 14px;
  background: #fff;
}

.process-copy small {
  display: block;
  margin-bottom: 14px;
  color: #9aa3b1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.venture-page[data-business-page="360"] .process-copy h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.venture-page[data-business-page="360"] .process-copy p {
  color: #737d8d;
  font-size: 14px;
  line-height: 1.5;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.capability-section {
  padding: 36px 0 40px;
}

.capability-section .venture-section-head {
  margin-bottom: 51px;
}

.venture-page[data-business-page="marketing"] .capability-section .venture-shell,
.venture-page[data-business-page="marketing"] .testimonial-section .venture-shell {
  width: min(1232px, calc(100% - 48px));
}

.venture-page[data-business-page="360"] .capability-section .venture-shell,
.venture-page[data-business-page="360"] .testimonial-section .venture-shell {
  width: min(1232px, calc(100% - 48px));
}

.capability-card {
  min-height: 214px;
  padding: 26px;
  border: 1px solid #dfe3ea;
  border-radius: 14px;
  background: #f8f9fb;
}

.capability-card h3 {
  margin: 0 0 18px;
  color: #633bd8;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-card li {
  color: #4e5968;
  font-size: 14px;
}

.capability-card li::before {
  margin-right: 9px;
  color: #6b6df5;
  content: "✓";
}

.venture-page[data-business-page="marketing"] .capability-card {
  min-height: 222px;
}

.venture-page[data-business-page="marketing"] .capability-card li::before {
  display: inline-grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1.5px solid #8a70ff;
  border-radius: 50%;
  margin-right: 10px;
  content: "✓";
  font-size: 9px;
  line-height: 1;
}

.venture-page[data-business-page="marketing"] .testimonial-section .venture-section-head {
  margin-bottom: 30px;
}

.venture-page[data-business-page="360"] .capability-section {
  padding: 50px 0 44px;
}

.venture-page[data-business-page="360"] .capability-section .venture-section-head {
  max-width: 700px;
  margin-bottom: 58px;
}

.trust-card {
  min-height: 228px;
  padding: 28px;
  background: #fff;
}

.trust-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #f1f0ff;
}

.trust-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(91%) saturate(2421%) hue-rotate(239deg) brightness(96%) contrast(92%);
}

.trust-card h3 {
  margin: 0 0 13px;
  color: #111a2e;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.trust-card p {
  margin: 0;
  color: #737d8d;
  font-size: 14px;
  line-height: 1.55;
}

.venture-page[data-business-page="360"] .testimonial-section .venture-section-head {
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-section {
  padding: 14px 0 46px;
}

.testimonial-section .venture-section-head {
  margin-bottom: 35px;
}

.testimonial-card {
  min-height: 265px;
  padding: 30px;
  border-radius: 14px;
  background: #123876;
  color: #fff;
}

.testimonial-stars {
  margin-bottom: 18px;
  color: #ffbd23;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  min-height: 116px;
  margin: 0;
  color: #e9f0ff;
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-card strong {
  display: block;
}

.testimonial-card small {
  display: block;
  color: #aebfdf;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: #9990ff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1240px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid #dfe3e8;
  border-radius: 14px;
  background: #fff;
}

.faq-list summary {
  position: relative;
  padding: 22px 54px 22px 24px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 24px;
  color: #7652e8;
  content: "+";
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 860px;
  padding: 0 24px 23px;
  margin: 0;
  color: #747f8e;
  line-height: 1.55;
}

.venture-cta-wrap {
  padding: 18px 0 5px;
  background: var(--venture-warm);
}

.venture-cta-wrap .venture-shell {
  width: min(1232px, calc(100% - 48px));
}

.venture-cta {
  display: flex;
  min-height: 425px;
  padding: 62px 40px 30px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 112%, rgba(135, 172, 247, 0.55) 0, rgba(135, 172, 247, 0) 38%),
    linear-gradient(134deg, #05265b 0%, #173f83 50%, #043eff 100%);
  color: #fff;
  text-align: center;
}

.venture-cta h2 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.75vw, 62px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.venture-cta p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(226, 234, 250, 0.86);
  font-size: 19px;
  line-height: 1.52;
}

.venture-cta .venture-actions {
  justify-content: center;
  margin-top: 40px;
}

.venture-cta .venture-button {
  min-height: 55px;
  border-radius: 12px;
  box-shadow: none;
}

.venture-cta .cta-primary {
  min-width: 298px;
  border-color: #fff;
  background: #fff;
  color: #111a2e;
}

.venture-cta .cta-primary span {
  color: #7138ff;
  font-size: 21px;
  line-height: 1;
}

.venture-cta .cta-secondary {
  min-width: 237px;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.venture-cta .cta-secondary:hover,
.venture-cta .cta-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.17);
}

.venture-cta-note {
  margin-top: 19px;
  color: rgba(221, 229, 247, 0.69);
  font-size: 12px;
  line-height: 1.4;
}

.venture-page .newsletter {
  border-top: 0;
}

.venture-page .footer {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .venture-page .main-nav {
    gap: 18px;
  }

  .venture-hero {
    min-height: 650px;
    padding-top: 100px;
  }

  .service-grid,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .venture-page .site-header {
    position: sticky;
  }

  .venture-page .business-mega.is-open {
    height: min(470px, calc(100vh - 82px));
  }

  .venture-hero {
    min-height: 0;
    padding: 76px 0 36px;
  }

  .venture-hero h1 {
    font-size: clamp(44px, 11vw, 65px);
  }

  .venture-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .venture-stats div:nth-child(2) {
    border-right: 0;
  }

  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .pricing-card,
  .pricing-card.featured {
    min-height: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .venture-shell {
    width: min(100% - 32px, 520px);
  }

  .venture-hero {
    padding-top: 58px;
  }

  .venture-hero h1 {
    font-size: 43px;
  }

  .venture-hero p {
    font-size: 17px;
  }

  .venture-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .venture-stats {
    margin-top: 40px;
  }

  .venture-stats div {
    min-height: 100px;
    padding: 23px 18px;
  }

  .venture-section {
    padding: 64px 0;
  }

  .process-section .venture-section-head {
    margin-bottom: 42px;
  }

  .testimonial-section .venture-section-head {
    margin-bottom: 32px;
  }

  .service-grid,
  .capability-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 16px;
    text-align: left;
  }

  .process-number {
    width: 70px;
    height: 70px;
    grid-row: 1 / 3;
    margin: 0;
  }

  .venture-page[data-business-page="360"] .process-grid {
    gap: 32px;
  }

  .venture-page[data-business-page="360"] .process-step,
  .venture-page[data-business-page="360"] .process-step:nth-child(even) {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .venture-page[data-business-page="360"] .process-step:nth-child(even) .process-number {
    grid-column: 1;
  }

  .venture-page[data-business-page="360"] .process-step:nth-child(even) .process-copy {
    grid-column: 2;
  }

  .venture-page[data-business-page="360"] .process-number {
    width: 56px;
    height: 56px;
  }

  .venture-page[data-business-page="360"] .process-number::after {
    display: none;
  }

  .venture-cta {
    min-height: 0;
    padding: 48px 22px 36px;
  }

  .venture-cta-wrap .venture-shell {
    width: min(100% - 28px, 1232px);
  }

  .venture-cta h2 {
    font-size: 39px;
  }

  .venture-cta p {
    font-size: 16px;
  }

  .venture-cta .venture-actions {
    width: 100%;
    margin-top: 30px;
  }

  .venture-cta .venture-button {
    width: 100%;
    min-width: 0;
  }
}
