.web-hero {
  padding: calc(var(--header-height) + 75px) 0 65px;

  overflow: hidden;

  background:
    radial-gradient(
      650px 390px at 0% 5%,
      rgba(53, 208, 194, 0.11),
      transparent 62%
    ),
    radial-gradient(
      700px 450px at 100% 20%,
      rgba(34, 49, 84, 0.09),
      transparent 64%
    ),
    #fbfcfe;
}

.web-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  gap: 70px;
  align-items: center;

  min-height: 590px;
}

.web-hero-copy {
  display: grid;
  gap: 23px;
}

.back-link {
  display: inline-flex;

  width: fit-content;

  color: var(--muted);

  font-size: 0.8rem;
  font-weight: 700;

  transition: color var(--transition);
}

.back-link:hover {
  color: var(--primary);
}

.web-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.web-hero-copy .hero-text {
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.web-hero-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;

  margin-top: 5px;
}

.web-hero-note span,
.web-hero-note small {
  color: var(--muted);
  font-size: 0.79rem;
}

.web-hero-note strong {
  color: var(--primary);
  font-size: 1.3rem;
}

.browser-showcase {
  position: relative;

  min-height: 470px;
}

.browser-window {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(100%, 590px);

  overflow: hidden;

  border: 1px solid rgba(23, 33, 58, 0.1);
  border-radius: 25px;

  background: white;
  box-shadow: var(--shadow-lg);

  transform:
    translate(-50%, -50%)
    rotateY(-3deg)
    rotateX(1deg);
}

.browser-topbar {
  display: flex;
  align-items: center;
  gap: 22px;

  height: 49px;
  padding: 0 16px;

  border-bottom: 1px solid var(--border);
  background: #f8fafc;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: rgba(23, 33, 58, 0.16);
}

.browser-url {
  display: grid;
  place-items: center;

  width: 190px;
  height: 25px;

  border-radius: 8px;

  color: var(--muted-light);
  background: #e9edf4;

  font-size: 0.62rem;
  font-weight: 700;
}

.browser-content {
  min-height: 370px;
  padding: 19px;

  background:
    radial-gradient(
      300px 150px at 0% 0%,
      rgba(53, 208, 194, 0.11),
      transparent 70%
    ),
    white;
}

.showcase-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 18px;
}

.showcase-nav strong {
  font-size: 0.77rem;
}

.showcase-nav > div {
  display: flex;
  gap: 10px;
}

.showcase-nav > div span {
  width: 35px;
  height: 6px;

  border-radius: 999px;
  background: #e3e7ee;
}

.showcase-hero {
  display: grid;
  gap: 9px;

  padding: 38px 27px;

  border-radius: 17px;

  background:
    linear-gradient(
      130deg,
      rgba(23, 33, 58, 0.98),
      rgba(34, 49, 84, 0.92)
    );
}

.showcase-kicker {
  width: 65px;
  height: 6px;

  border-radius: 999px;
  background: var(--accent);
}

.showcase-title {
  width: 75%;
  height: 15px;
  margin-top: 5px;

  border-radius: 999px;
  background: white;
}

.showcase-title.short {
  width: 54%;
}

.showcase-text {
  width: 84%;
  height: 7px;
  margin-top: 7px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.showcase-text.small {
  width: 65%;
  margin-top: 0;
}

.showcase-buttons {
  display: flex;
  gap: 8px;

  margin-top: 9px;
}

.showcase-buttons span {
  width: 72px;
  height: 24px;

  border-radius: 7px;
  background: var(--accent);
}

.showcase-buttons span:last-child {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.showcase-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;

  margin-top: 14px;
}

.showcase-cards span {
  height: 80px;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: #f7f9fc;
}

.showcase-mobile {
  position: absolute;
  z-index: 3;
  right: -4px;
  bottom: 6px;

  width: 135px;
  height: 270px;
  padding: 8px;

  border: 3px solid var(--primary);
  border-radius: 28px;

  background: white;
  box-shadow: var(--shadow-md);

  transform: rotate(4deg);
}

.mobile-speaker {
  width: 37px;
  height: 4px;
  margin: 1px auto 8px;

  border-radius: 999px;
  background: #d8dde6;
}

.mobile-screen {
  display: grid;
  gap: 7px;

  height: 238px;
  padding: 12px 9px;

  overflow: hidden;

  border-radius: 18px;
  background: #f7f9fc;
}

.mobile-nav {
  width: 45px;
  height: 7px;
  margin-bottom: 15px;

  border-radius: 999px;
  background: var(--primary);
}

.mobile-title {
  width: 90%;
  height: 10px;

  border-radius: 999px;
  background: var(--primary);
}

.mobile-title.short {
  width: 64%;
}

.mobile-text {
  width: 100%;
  height: 22px;

  border-radius: 6px;
  background: #dfe4ec;
}

.mobile-button {
  width: 65%;
  height: 20px;

  border-radius: 7px;
  background: var(--accent);
}

.mobile-card {
  height: 44px;

  border-radius: 9px;
  background: white;
  border: 1px solid var(--border);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));

  margin-top: 42px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip span {
  padding: 18px 12px;

  color: var(--muted);

  font-size: 0.73rem;
  font-weight: 700;
  text-align: center;
}

.trust-strip span:not(:last-child) {
  border-right: 1px solid var(--border);
}

.web-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.web-problem-grid article {
  padding: 28px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: white;
  box-shadow: var(--shadow-xs);
}

.web-problem-grid article > span,
.managed-grid article > span,
.included-grid article > span,
.web-process-grid article > span {
  display: block;

  margin-bottom: 32px;

  color: var(--accent-dark);

  font-size: 0.72rem;
  font-weight: 800;
}

.web-problem-grid h3,
.managed-grid h3,
.included-grid h3,
.web-process-grid h3 {
  margin-bottom: 10px;

  font-size: 1.02rem;
}

.web-problem-grid p,
.managed-grid p,
.included-grid p,
.web-process-grid p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.72;
}

.managed-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: center;
}

.managed-copy {
  display: grid;
  gap: 20px;
}

.managed-copy .text-link {
  margin-top: 3px;
}

.managed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.managed-grid article {
  padding: 27px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.82);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 23px;

  padding: 31px;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background: white;
  box-shadow: var(--shadow-sm);
}

.pricing-card-featured {
  border-color: rgba(53, 208, 194, 0.55);

  background:
    radial-gradient(
      320px 180px at 0% 0%,
      rgba(53, 208, 194, 0.13),
      transparent 68%
    ),
    white;

  box-shadow: var(--shadow-md);
}

.recommended-badge {
  position: absolute;
  top: -13px;
  left: 50%;

  padding: 7px 12px;

  border-radius: 999px;

  color: white;
  background: var(--accent-dark);

  font-size: 0.68rem;
  font-weight: 800;

  transform: translateX(-50%);
}

.pricing-header {
  display: grid;
  gap: 10px;
}

.pricing-label {
  color: var(--accent-dark);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.pricing-header p {
  min-height: 78px;

  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.68;
}

.price-block {
  display: grid;
  gap: 3px;

  padding-top: 21px;

  border-top: 1px solid var(--border);
}

.price-block span {
  color: var(--muted-light);
  font-size: 0.69rem;
  font-weight: 650;
}

.price-block strong {
  color: var(--primary);

  font-size: clamp(1.85rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.price-block small {
  color: var(--muted-light);
  font-size: 0.67rem;
}

.monthly-price {
  display: flex;
  align-items: baseline;
  gap: 5px;

  padding: 12px 14px;

  border-radius: 13px;

  background: var(--background-soft);
}

.monthly-price strong {
  color: var(--primary);
  font-size: 1rem;
}

.monthly-price span {
  color: var(--muted);
  font-size: 0.74rem;
}

.pricing-features {
  margin-bottom: 5px;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-disclaimer {
  max-width: 760px;
  margin: 27px auto 0;

  color: var(--muted-light);

  font-size: 0.78rem;
  line-height: 1.65;
  text-align: center;
}

.comparison-wrapper {
  overflow-x: auto;

  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);

  background: rgba(255, 255, 255, 0.05);
}

.comparison-table {
  width: 100%;
  min-width: 760px;

  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;

  border-bottom: 1px solid var(--border-light);

  text-align: left;
}

.comparison-table th {
  color: white;
  background: rgba(255, 255, 255, 0.05);

  font-size: 0.79rem;
}

.comparison-table td {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.comparison-table td:first-child {
  color: white;
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.included-grid article {
  padding: 26px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: white;
}

.monthly-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.monthly-copy {
  display: grid;
  gap: 20px;
}

.monthly-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.monthly-list article {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 14px;

  padding: 23px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: rgba(255, 255, 255, 0.82);
}

.monthly-list article > span {
  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;

  border-radius: 11px;

  color: var(--accent-dark);
  background: var(--accent-soft);

  font-size: 0.8rem;
  font-weight: 900;
}

.monthly-list h3 {
  margin-bottom: 7px;
  font-size: 0.96rem;
}

.monthly-list p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.67;
}

.monthly-note {
  display: flex;
  gap: 15px;

  margin-top: 28px;
  padding: 19px 22px;

  border: 1px solid rgba(53, 208, 194, 0.25);
  border-radius: 16px;

  background: rgba(53, 208, 194, 0.07);
}

.monthly-note strong {
  color: var(--accent-dark);
  font-size: 0.84rem;
}

.monthly-note p {
  color: var(--muted);
  font-size: 0.83rem;
}

.web-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.web-process-grid article {
  padding: 25px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: white;
}

.timeline-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 25px;

  border: 1px solid var(--border);
  border-radius: 17px;

  background: var(--background-soft);
}

.timeline-note > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 17px;
}

.timeline-note > div:not(:last-child) {
  border-right: 1px solid var(--border);
}

.timeline-note strong {
  font-size: 0.78rem;
}

.timeline-note span {
  color: var(--muted);
  font-size: 0.75rem;
}

.examples-section {
  background:
    radial-gradient(
      600px 300px at 100% 0%,
      rgba(53, 208, 194, 0.08),
      transparent 65%
    ),
    white;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.example-grid article {
  padding: 29px;

  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  background: white;
  box-shadow: var(--shadow-xs);
}

.example-type {
  display: inline-flex;

  margin-bottom: 18px;
  padding: 6px 9px;

  border-radius: 999px;

  color: var(--accent-dark);
  background: var(--accent-soft);

  font-size: 0.67rem;
  font-weight: 800;
}

.example-grid h3 {
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.example-grid ol {
  display: grid;
  gap: 10px;

  counter-reset: item;
}

.example-grid li {
  position: relative;

  padding-left: 27px;

  color: var(--muted);
  font-size: 0.87rem;

  counter-increment: item;
}

.example-grid li::before {
  content: counter(item);

  position: absolute;
  left: 0;

  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.extras-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: center;
}

.extras-layout > div:first-child {
  display: grid;
  gap: 18px;
}

.extras-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.extras-tags span {
  padding: 11px 14px;

  border: 1px solid var(--border);
  border-radius: 999px;

  color: var(--primary);
  background: white;

  font-size: 0.8rem;
  font-weight: 700;
}

.faq-section {
  background: white;
}

@media (max-width: 1100px) {
  .web-hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .web-hero-copy {
    max-width: 820px;
  }

  .browser-showcase {
    min-height: 480px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip span:nth-child(3) {
    border-right: none;
  }

  .trust-strip span:nth-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .web-problem-grid,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header p {
    min-height: auto;
  }

  .web-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .managed-layout,
  .monthly-layout,
  .extras-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .example-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .web-hero {
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 48px;
  }

  .web-hero-layout {
    min-height: auto;
  }

  .web-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .browser-showcase {
    min-height: 330px;
  }

  .browser-window {
    width: 100%;
  }

  .browser-content {
    min-height: 265px;
    padding: 12px;
  }

  .showcase-hero {
    padding: 26px 18px;
  }

  .showcase-mobile {
    display: none;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip span:last-child {
    border-bottom: none;
  }

  .web-problem-grid,
  .managed-grid,
  .included-grid,
  .monthly-list,
  .web-process-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 26px 23px;
  }

  .monthly-note {
    display: grid;
  }

  .timeline-note {
    grid-template-columns: 1fr;
  }

  .timeline-note > div:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}