:root {
  --lp-bg: #f5f9ff;
  --lp-surface: rgba(255, 255, 255, 0.94);
  --lp-surface-strong: #ffffff;
  --lp-surface-soft: #eef5ff;
  --lp-text: #081a4d;
  --lp-text-soft: #5d6c94;
  --lp-border: rgba(15, 61, 166, 0.12);
  --lp-blue: #1769ff;
  --lp-blue-strong: #0a56e8;
  --lp-blue-dark: #061844;
  --lp-cyan: #43c5ff;
  --lp-shadow: 0 38px 90px -58px rgba(7, 23, 68, 0.34);
  --lp-radius-xl: 34px;
  --lp-radius-lg: 26px;
  --lp-radius-md: 20px;
}

.lp-body {
  background:
    radial-gradient(circle at top left, rgba(23, 105, 255, 0.12), transparent 28%),
    radial-gradient(circle at 92% 5%, rgba(67, 197, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #f9fbff 0%, #eef5ff 100%);
  color: var(--lp-text);
}

.lp-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.lp-brand img {
  height: 52px;
  width: auto;
}

.lp-nav {
  gap: 40px;
  color: var(--lp-text);
  font-weight: 600;
}

.lp-nav a {
  position: relative;
}

.lp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--lp-blue);
  transition: transform 0.2s ease;
}

.lp-nav a:hover::after,
.lp-nav a:focus-visible::after {
  transform: scaleX(1);
}

.lp-header-actions {
  gap: 18px;
}

.lp-link {
  color: var(--lp-text);
  font-weight: 700;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.lp-btn:hover,
.lp-btn:focus-visible {
  transform: translateY(-1px);
}

.lp-btn-primary {
  background: linear-gradient(180deg, #2573ff 0%, #105dee 100%);
  color: #fff;
  box-shadow: 0 20px 36px -24px rgba(23, 105, 255, 0.68);
}

.lp-btn-primary:hover,
.lp-btn-primary:focus-visible {
  background: linear-gradient(180deg, #1566fb 0%, #0b52da 100%);
}

.lp-btn-secondary,
.lp-btn-outline {
  border-color: rgba(23, 105, 255, 0.24);
  background: rgba(255, 255, 255, 0.76);
  color: var(--lp-text);
}

.lp-btn-secondary:hover,
.lp-btn-secondary:focus-visible,
.lp-btn-outline:hover,
.lp-btn-outline:focus-visible {
  border-color: rgba(23, 105, 255, 0.42);
  background: #fff;
}

.lp-btn-light {
  background: #fff;
  color: var(--lp-blue);
}

.lp-btn-dark-outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.lp-btn-dark-outline:hover,
.lp-btn-dark-outline:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.lp-main {
  overflow: hidden;
}

.lp-section {
  padding: 52px 0;
}

.lp-soft-section {
  background: linear-gradient(180deg, rgba(236, 244, 255, 0.78), rgba(247, 250, 255, 0.95));
}

.lp-hero {
  padding-top: 26px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 38px;
}

.lp-pill,
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-blue);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-pill {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(23, 105, 255, 0.25);
  background: rgba(255, 255, 255, 0.72);
}

.lp-pill-icon {
  display: inline-flex;
  color: var(--lp-blue);
  font-size: 0.9rem;
}

.lp-hero-copy h1,
.lp-section-head h2,
.lp-shot-header h3,
.lp-banner-quote h3,
.lp-experience-copy h2,
.lp-final-copy h2 {
  margin: 18px 0 0;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--lp-text);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.lp-hero-copy h1 {
  font-size: clamp(2.75rem, 5.9vw, 4.45rem);
  max-width: 10.6ch;
}

.lp-lead,
.lp-section-head p,
.lp-shot-header p,
.lp-feature-copy p,
.lp-banner-quote p,
.lp-step-card p,
.lp-audience-card p,
.lp-pricing-cta p,
.lp-final-copy p {
  color: var(--lp-text-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.lp-lead {
  max-width: 34rem;
  margin-top: 24px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.lp-subnote {
  margin-top: 20px;
  color: var(--lp-text-soft);
  font-size: 1rem;
}

.lp-hero-visual {
  position: relative;
  min-height: 760px;
}

.lp-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.lp-orb-one {
  inset: 20px 0 auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(23, 105, 255, 0.18) 0%, rgba(23, 105, 255, 0) 70%);
}

.lp-orb-two {
  inset: auto auto 30px 40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(67, 197, 255, 0.22) 0%, rgba(67, 197, 255, 0) 72%);
}

.lp-browser-frame,
.lp-window-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(10, 53, 154, 0.14);
  background: var(--lp-surface-strong);
  box-shadow: var(--lp-shadow);
}

.lp-browser-frame {
  position: absolute;
  inset: 48px 34px 94px 0;
}

.lp-browser-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(10, 53, 154, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.lp-browser-dots {
  display: flex;
  gap: 7px;
}

.lp-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5f57;
}

.lp-browser-dots span:nth-child(2) {
  background: #febc2e;
}

.lp-browser-dots span:nth-child(3) {
  background: #28c840;
}

.lp-browser-address {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3f6fb;
  color: #7a86a5;
  font-size: 0.88rem;
  text-align: center;
}

.lp-browser-body img,
.lp-window-card img,
.lp-phone-frame img,
.lp-device-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-browser-frame {
  display: flex;
  flex-direction: column;
}

.lp-browser-body {
  flex: 1;
  overflow: hidden;
}

.lp-browser-body img {
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.lp-phone-frame {
  position: absolute;
  right: -8px;
  bottom: 58px;
  width: min(31vw, 250px);
  border-radius: 44px;
  border: 4px solid #0c1020;
  background: #0c1020;
  box-shadow: 0 36px 90px -48px rgba(8, 22, 45, 0.56);
}

.lp-phone-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 38%;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0b0f1c;
  z-index: 2;
}

.lp-phone-frame img {
  border-radius: 38px;
}

.lp-device-shot {
  position: absolute;
  right: -8px;
  bottom: 58px;
  width: min(31vw, 250px);
  filter: drop-shadow(0 26px 50px rgba(8, 22, 45, 0.18));
}

.lp-device-shot img {
  border-radius: 0;
}

.lp-floating-card {
  position: absolute;
  max-width: 250px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(10, 53, 154, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 60px -42px rgba(8, 22, 45, 0.28);
}

.lp-floating-card strong,
.lp-highlight-item strong,
.lp-before-card h3,
.lp-after-card h3,
.lp-feature-copy h3,
.lp-step-card h3,
.lp-audience-card h3,
.lp-pricing-card h3,
.lp-pricing-cta strong,
.lp-footer-col strong {
  display: block;
  font-family: "Sora", system-ui, sans-serif;
}

.lp-floating-card span,
.lp-highlight-item p,
.lp-before-card p,
.lp-after-list p,
.lp-footer-brand p,
.lp-footer-col a {
  color: var(--lp-text-soft);
}

.lp-floating-left {
  left: 210px;
  bottom: 12px;
}

.lp-floating-right {
  right: 132px;
  bottom: 32px;
}

.lp-highlight-band {
  margin-top: 34px;
  padding: 38px 48px;
  border-radius: var(--lp-radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(10, 53, 154, 0.08);
  box-shadow: var(--lp-shadow);
}

.lp-highlight-band h2 {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-align: center;
}

.lp-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.lp-highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lp-highlight-icon {
  position: relative;
  width: 64px;
  height: 64px;
  flex: none;
  border-radius: 20px;
  background: linear-gradient(180deg, #1f73ff 0%, #0f59eb 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.lp-highlight-icon-cyan {
  background: linear-gradient(180deg, #66d6ff 0%, #2ab8ff 100%);
}

.lp-highlight-icon::before,
.lp-highlight-icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
}

.lp-highlight-icon-students::before {
  left: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 14px 0 0 rgba(255, 255, 255, 0.96);
}

.lp-highlight-icon-students::after {
  left: 15px;
  top: 33px;
  width: 34px;
  height: 12px;
  border-radius: 999px 999px 8px 8px;
}

.lp-highlight-icon-portal::before {
  left: 17px;
  top: 16px;
  width: 30px;
  height: 22px;
  border-radius: 8px;
}

.lp-highlight-icon-portal::after {
  left: 25px;
  top: 43px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
}

.lp-highlight-icon-billing::before {
  left: 14px;
  top: 18px;
  width: 36px;
  height: 26px;
  border-radius: 8px;
}

.lp-highlight-icon-billing::after {
  left: 18px;
  top: 28px;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  box-shadow:
    0 -8px 0 rgba(255, 255, 255, 0.96),
    0 8px 0 rgba(255, 255, 255, 0.96);
}

.lp-section-head {
  max-width: 860px;
  margin-bottom: 38px;
}

.lp-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp-section-head h2 {
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
}

.lp-section-head p {
  margin-top: 18px;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.lp-compare-panel {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) auto minmax(0, 1.18fr);
  gap: 18px;
  align-items: center;
}

.lp-before-card,
.lp-after-card {
  padding: 34px;
  border-radius: 30px;
  box-shadow: var(--lp-shadow);
}

.lp-before-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 255, 0.96));
  border: 1px solid rgba(10, 53, 154, 0.08);
}

.lp-before-card article,
.lp-after-list article {
  padding: 18px 18px 18px 78px;
  border-radius: 20px;
}

.lp-before-card article {
  position: relative;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 53, 154, 0.07);
  min-height: 114px;
}

.lp-before-card article::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #eef2f8 0%, #e2e8f3 100%);
  box-shadow: inset 0 0 0 1px rgba(10, 53, 154, 0.06);
}

.lp-before-card article::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.lp-before-card article:nth-of-type(1)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='3.5' width='17' height='17' rx='3.5' stroke='%238d97ad' stroke-width='1.8'/%3E%3Cpath d='M9 3.5V20.5M15 3.5V20.5M3.5 9H20.5M3.5 15H20.5' stroke='%238d97ad' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-before-card article:nth-of-type(2)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 6.5C5 5.12 6.12 4 7.5 4h9C17.88 4 19 5.12 19 6.5v6C19 13.88 17.88 15 16.5 15H11l-3.75 3.2c-.65.56-1.6.09-1.6-.77V15.8A2.5 2.5 0 0 1 5 13.5v-7Z' stroke='%238d97ad' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M8 8.8h8M8 11.8h5.5' stroke='%238d97ad' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-before-card article:nth-of-type(3)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.2a3.8 3.8 0 0 0-3.8 3.8v1.1c0 .84-.25 1.65-.72 2.35l-1.1 1.64A1.6 1.6 0 0 0 7.72 15.5h8.56a1.6 1.6 0 0 0 1.34-2.42l-1.1-1.64a4.2 4.2 0 0 1-.72-2.35V8a3.8 3.8 0 0 0-3.8-3.8Z' stroke='%238d97ad' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M10 18a2.3 2.3 0 0 0 4 0' stroke='%238d97ad' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-before-card h3,
.lp-after-card h3 {
  font-size: 1.72rem;
  margin: 0 0 8px;
}

.lp-before-card strong,
.lp-after-list strong {
  font-size: 1rem;
}

.lp-before-card p,
.lp-after-list p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.lp-compare-arrow {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2675ff 0%, #0f5cef 100%);
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 20px 38px -24px rgba(23, 105, 255, 0.64);
}

.lp-after-card {
  background: linear-gradient(145deg, #1669ff 0%, #0c4ae7 100%);
  color: #fff;
}

.lp-after-core {
  position: relative;
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 24px;
}

.lp-after-connector {
  position: absolute;
  left: 88px;
  top: 32px;
  bottom: 26px;
  width: 300px;
  pointer-events: none;
  z-index: 1;
}

.lp-after-connector svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lp-after-connector path {
  fill: none;
  stroke: url(#lpAfterLine);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-after-connector circle {
  fill: #9ef4ff;
  filter: url(#lpAfterGlow);
}

.lp-after-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  justify-self: center;
  box-shadow: 0 18px 34px -24px rgba(8, 22, 45, 0.25);
  z-index: 2;
}

.lp-after-logo img {
  width: 74px;
  height: 74px;
}

.lp-after-list {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 92px;
}

.lp-after-list article {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--lp-text);
  min-height: 94px;
  padding: 18px 22px 18px 26px;
  border-radius: 18px;
  box-shadow: 0 18px 34px -28px rgba(3, 31, 94, 0.34);
}

.lp-after-list article::before {
  display: none;
}

.lp-after-list article::after {
  display: none;
}

.lp-after-item-copy {
  display: grid;
  gap: 6px;
}

.lp-after-item-copy strong {
  margin: 0;
}

.lp-after-item-copy p {
  margin: 0;
  max-width: 26ch;
}

.lp-after-item-icon {
  position: relative;
  width: 36px;
  height: 36px;
  color: #1769ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
}

.lp-after-item-icon::before,
.lp-after-item-icon::after {
  display: none;
}

.lp-after-item-icon-users {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='12.5' cy='11' r='4.5' stroke='%231769ff' stroke-width='2.3'/%3E%3Cpath d='M5.5 23.2c0-3.5 3.13-6.2 7-6.2s7 2.7 7 6.2' stroke='%231769ff' stroke-width='2.3' stroke-linecap='round'/%3E%3Ccircle cx='23.4' cy='12.5' r='3.2' stroke='%231769ff' stroke-width='2.1'/%3E%3Cpath d='M20 22.1c.7-2.14 2.57-3.7 5.05-3.7 1 0 1.9.26 2.7.72' stroke='%231769ff' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-after-item-icon-check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='16' r='13' fill='%231769ff'/%3E%3Cpath d='M10.7 16.3l3.3 3.3 7.3-7.3' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lp-after-item-icon-dumbbell {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M11 14.6h10v2.8H11z' fill='%231769ff'/%3E%3Cpath d='M7 11v10M10 12.5v7M22 12.5v7M25 11v10' stroke='%231769ff' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M5.2 13v6M26.8 13v6' stroke='%231769ff' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-after-item-icon-file {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M10 5.5h8l4 4V25a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 8 25V8a2.5 2.5 0 0 1 2.5-2.5Z' stroke='%231769ff' stroke-width='2.2' stroke-linejoin='round'/%3E%3Cpath d='M18 5.8V10h4.2' stroke='%231769ff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.8 15h8.4M11.8 19h8.4M11.8 23h5.4' stroke='%231769ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-after-item-icon-calendar {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='6.5' y='8.5' width='19' height='17' rx='4' stroke='%231769ff' stroke-width='2.2'/%3E%3Cpath d='M11 5.8v5.1M21 5.8v5.1M6.8 13.5h18.4' stroke='%231769ff' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M11.2 18.2h4.1M11.2 21.5h7.3' stroke='%231769ff' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='21.7' cy='21.1' r='2.2' fill='%231769ff'/%3E%3C/svg%3E");
}

.lp-student-vision {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.55fr);
  gap: 22px;
  margin-top: 42px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(236, 244, 255, 0.92), rgba(244, 248, 255, 0.98));
  border: 1px solid rgba(10, 53, 154, 0.08);
}

.lp-shot-header h3 {
  font-size: clamp(1.95rem, 3.6vw, 3.05rem);
  max-width: 12ch;
}

.lp-window-card {
  margin-top: 24px;
}

.lp-side-benefits {
  display: grid;
  gap: 18px;
  align-content: center;
}

.lp-side-benefits article,
.lp-feature-card,
.lp-step-card,
.lp-audience-card,
.lp-pricing-card,
.lp-pricing-cta,
.lp-includes-bar {
  border-radius: 28px;
  border: 1px solid rgba(10, 53, 154, 0.09);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--lp-shadow);
}

.lp-side-benefits article {
  padding: 30px;
}

.lp-side-benefits strong {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.12rem;
}

.lp-side-benefits p {
  margin: 10px 0 0;
  color: var(--lp-text-soft);
}

.lp-banner-quote {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 38px 40px;
  border-radius: 34px;
  background: linear-gradient(90deg, #0b4ee5 0%, #1774ff 100%);
  color: #fff;
}

.lp-banner-quote img {
  width: 134px;
  justify-self: center;
}

.lp-banner-quote h3 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(1.95rem, 3.2vw, 2.7rem);
}

.lp-banner-quote p {
  color: rgba(255, 255, 255, 0.84);
}

.lp-feature-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.lp-feature-card {
  padding: 28px;
}

.lp-feature-card-large,
.lp-feature-card-wide {
  grid-column: span 2;
}

.lp-feature-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 105, 255, 0.08);
  color: var(--lp-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-feature-copy h3 {
  margin-top: 18px;
  font-size: 1.7rem;
}

.lp-feature-copy p {
  margin-top: 12px;
}

.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.lp-step-card {
  position: relative;
  padding: 34px 30px 30px;
}

.lp-step-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, #2675ff 0%, #0f5cef 100%);
  color: #fff;
  font-weight: 800;
}

.lp-step-card h3 {
  margin-top: 22px;
  font-size: 1.38rem;
}

.lp-step-card p {
  margin-top: 12px;
}

.lp-experience-showcase {
  margin-top: 36px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(241, 246, 255, 0.9), rgba(250, 252, 255, 0.98));
  border: 1px solid rgba(10, 53, 154, 0.08);
}

.lp-experience-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  text-align: center;
}

.lp-experience-copy h2 span {
  display: block;
}

.lp-experience-stage {
  position: relative;
  min-height: 560px;
  margin-top: 30px;
}

.lp-experience-desktop {
  width: calc(100% - 248px);
}

.lp-experience-phone {
  right: 10px;
  bottom: 52px;
  width: 248px;
}

.lp-experience-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.lp-experience-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 0 20px;
  border-radius: 24px;
  border: 1px solid rgba(10, 53, 154, 0.08);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

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

.lp-audience-card {
  padding: 34px 28px;
  text-align: center;
}

.lp-audience-card strong {
  margin-top: 12px;
  color: var(--lp-blue);
  font-size: 1.15rem;
}

.lp-audience-card p {
  margin-top: 16px;
}

.lp-center-cta {
  margin-top: 26px;
  padding: 28px 22px;
  border-radius: 30px;
  border: 1px solid rgba(10, 53, 154, 0.08);
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.lp-center-cta p {
  margin: 12px 0 0;
  color: var(--lp-text-soft);
}

.lp-pricing-grid {
  display: grid;
  gap: 24px;
}

.lp-pricing-grid-main {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-pricing-card {
  position: relative;
  padding: 34px 34px 30px;
  border-radius: 28px;
  min-height: 100%;
}

.lp-pricing-card-featured {
  background: linear-gradient(180deg, #1d71ff 0%, #0858ec 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.lp-pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3dd3ff 0%, #1fbaf4 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-pricing-card h3 {
  margin: 0;
  font-size: 1.72rem;
}

.lp-price-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 18px;
}

.lp-price-line span,
.lp-price-line small {
  font-size: 0.98rem;
  font-weight: 700;
}

.lp-price-line strong {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 3.35rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.lp-plan-limit {
  margin: 14px 0 0;
  color: var(--lp-blue);
  font-size: 0.98rem;
  font-weight: 700;
}

.lp-pricing-card-featured .lp-plan-limit,
.lp-pricing-card-featured .lp-price-line span,
.lp-pricing-card-featured .lp-price-line small {
  color: rgba(255, 255, 255, 0.9);
}

.lp-pricing-card ul {
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(10, 53, 154, 0.12);
  list-style: none;
}

.lp-pricing-card-featured ul {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.lp-pricing-card li {
  position: relative;
  padding-left: 34px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.lp-pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid rgba(23, 105, 255, 0.9);
}

.lp-pricing-card li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--lp-blue);
  border-bottom: 2px solid var(--lp-blue);
  transform: rotate(-45deg);
}

.lp-pricing-card-featured li::before {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
}

.lp-pricing-card-featured li::after {
  border-left-color: #fff;
  border-bottom-color: #fff;
}

.lp-pricing-card .lp-btn {
  width: 100%;
  margin-top: 30px;
}

.lp-pricing-scale-band {
  margin-top: 26px;
  padding: 18px 18px 20px;
  border-radius: 28px;
  border: 1px solid rgba(10, 53, 154, 0.08);
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.94), rgba(252, 253, 255, 0.98));
  box-shadow: var(--lp-shadow);
}

.lp-pricing-scale-title {
  padding: 0 14px 14px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.lp-pricing-scale-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr;
}

.lp-pricing-scale-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
}

.lp-pricing-scale-card + .lp-pricing-scale-card {
  border-left: 1px solid rgba(10, 53, 154, 0.12);
}

.lp-pricing-scale-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.lp-pricing-scale-card strong {
  display: block;
  margin-top: 6px;
  color: var(--lp-blue);
  font-size: 0.98rem;
}

.lp-pricing-scale-card p {
  margin: 10px 0 0;
  color: var(--lp-text-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.lp-pricing-scale-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--lp-blue);
  font-weight: 700;
  text-decoration: none;
}

.lp-pricing-scale-card a::after {
  content: "→";
  margin-left: 8px;
}

.lp-pricing-scale-contact {
  grid-template-columns: 72px 1fr;
}

.lp-pricing-scale-contact p {
  margin-top: 0;
}

.lp-pricing-scale-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid rgba(23, 105, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 36px 36px;
}

.lp-pricing-scale-icon::before,
.lp-pricing-scale-icon::after {
  display: none;
}

.lp-pricing-scale-icon-scale {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M7 28.5h22' stroke='%231769ff' stroke-width='2.4' stroke-linecap='round'/%3E%3Crect x='9' y='17' width='4.8' height='9.5' rx='1.4' stroke='%231769ff' stroke-width='2.2'/%3E%3Crect x='16' y='12' width='4.8' height='14.5' rx='1.4' stroke='%231769ff' stroke-width='2.2'/%3E%3Crect x='23' y='8' width='4.8' height='18.5' rx='1.4' stroke='%231769ff' stroke-width='2.2'/%3E%3Cpath d='M10.8 13.4 17.3 8.7 22.2 11l5.2-5.6' stroke='%231769ff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24.8 5.5h4.5V10' stroke='%231769ff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lp-pricing-scale-icon-studio {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none'%3E%3Ccircle cx='18' cy='12.2' r='4.8' stroke='%231769ff' stroke-width='2.2'/%3E%3Cpath d='M10 27c0-4.1 3.58-7.2 8-7.2s8 3.1 8 7.2' stroke='%231769ff' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='9.3' cy='14.8' r='3.2' stroke='%231769ff' stroke-width='2'/%3E%3Ccircle cx='26.7' cy='14.8' r='3.2' stroke='%231769ff' stroke-width='2'/%3E%3Cpath d='M4.8 26.2c.38-2.4 2.2-4.2 4.8-4.6M31.2 26.2c-.38-2.4-2.2-4.2-4.8-4.6' stroke='%231769ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-pricing-scale-icon-support {
  border-radius: 999px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none'%3E%3Cpath d='M10 17.2c0-4.65 3.52-8.7 8-8.7s8 4.05 8 8.7' stroke='%231769ff' stroke-width='2.2' stroke-linecap='round'/%3E%3Crect x='8.1' y='17' width='4.6' height='8.8' rx='2.3' stroke='%231769ff' stroke-width='2.2'/%3E%3Crect x='23.3' y='17' width='4.6' height='8.8' rx='2.3' stroke='%231769ff' stroke-width='2.2'/%3E%3Cpath d='M26 25.6v1.2c0 1.88-1.52 3.4-3.4 3.4H18.4' stroke='%231769ff' stroke-width='2.2' stroke-linecap='round'/%3E%3Crect x='15.5' y='28.1' width='5.8' height='2.8' rx='1.4' fill='%231769ff'/%3E%3C/svg%3E");
}

.lp-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
}

.lp-pricing-cta-inline {
  padding: 14px 18px 14px 20px;
  border-radius: 26px;
  border: 1px solid rgba(10, 53, 154, 0.08);
  background: linear-gradient(180deg, rgba(245, 249, 255, 0.94), rgba(252, 253, 255, 0.98));
  box-shadow: var(--lp-shadow);
}

.lp-pricing-cta-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1;
}

.lp-pricing-cta-points span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 18px 0 62px;
  font-weight: 700;
}

.lp-pricing-cta-points span + span {
  border-left: 1px solid rgba(10, 53, 154, 0.1);
}

.lp-pricing-cta-points span::before,
.lp-pricing-cta-points span::after {
  content: "";
  position: absolute;
}

.lp-pricing-cta-points span::before {
  left: 18px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #edf5ff 0%, #dcecff 100%);
}

.lp-pricing-cta-points span:nth-child(1)::after {
  left: 26px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='3' stroke='%231769ff' stroke-width='2'/%3E%3Cpath d='M3.8 9.5h16.4' stroke='%231769ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-pricing-cta-points span:nth-child(2)::after {
  left: 26px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 10V7.8A4.5 4.5 0 0 1 12 3.3a4.5 4.5 0 0 1 4.5 4.5V10' stroke='%231769ff' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='5' y='10' width='14' height='10.5' rx='2.5' stroke='%231769ff' stroke-width='2'/%3E%3C/svg%3E");
}

.lp-pricing-cta-points span:nth-child(3)::after {
  left: 26px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 4.2a7.8 7.8 0 1 0 5.52 2.28' stroke='%231769ff' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M12 7.3v5l3.2 1.9' stroke='%231769ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.8 4.2h4.1v4.1' stroke='%231769ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
}

.lp-faq-column {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(23, 105, 255, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.faq-top {
  align-items: center;
}

.faq-question {
  font-size: 1rem;
}

.faq-toggle {
  min-width: 32px;
  min-height: 32px;
  padding: 0;
  background: transparent;
  color: var(--lp-blue);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.faq-item summary,
.faq-item .faq-answer {
  padding: 24px 28px;
}

.faq-answer {
  margin-top: 0;
  border-top: 1px solid rgba(23, 105, 255, 0.1);
  color: var(--lp-text-soft);
}

.lp-final-cta {
  margin-top: 34px;
  padding: 0 0 22px;
}

.lp-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 54px 46px;
  border-radius: 0 0 0 0;
  background:
    radial-gradient(circle at left, rgba(57, 132, 255, 0.35), transparent 24%),
    radial-gradient(circle at right, rgba(57, 132, 255, 0.22), transparent 22%),
    linear-gradient(90deg, #091a4c 0%, #0e2f86 100%);
  color: #fff;
}

.lp-final-copy h2 {
  margin-top: 0;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.lp-final-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 48rem;
}

.lp-final-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.lp-final-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-footer {
  padding-top: 0;
}

.lp-footer-card {
  padding: 38px 0 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.62fr 0.62fr 0.8fr;
  gap: 24px;
  padding: 0 0 26px;
}

.lp-footer-brand img {
  height: 52px;
  width: auto;
}

.lp-footer-brand p {
  max-width: 280px;
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.lp-footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.lp-footer-col strong {
  font-size: 1.1rem;
}

.lp-footer-contact {
  display: flex;
  align-items: start;
  justify-content: flex-end;
}

.lp-contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(10, 53, 154, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 44px -36px rgba(8, 22, 45, 0.28);
  font-weight: 800;
}

.lp-footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(10, 53, 154, 0.08);
  color: var(--lp-text-soft);
}

.lp-mobile-panel {
  display: none;
}

.lp-mobile-nav {
  gap: 10px;
  padding: 0 0 18px;
}

.lp-mobile-nav a {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 53, 154, 0.08);
  font-weight: 700;
}

.lp-mobile-nav .lp-btn {
  min-height: 54px;
}

.lp-menu-toggle {
  display: none;
}

.lp-mobile-cta {
  display: none;
}

@media (max-width: 1260px) {
  .lp-pricing-grid-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-pricing-scale-grid {
    grid-template-columns: 1fr;
  }

  .lp-pricing-scale-card + .lp-pricing-scale-card {
    border-left: 0;
    border-top: 1px solid rgba(10, 53, 154, 0.12);
  }

  .lp-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 1120px) {
  .lp-hero-grid,
  .lp-student-vision,
  .lp-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .lp-compare-panel {
    grid-template-columns: 1fr;
  }

  .lp-compare-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .lp-feature-layout,
  .lp-steps-grid,
  .lp-audience-grid,
  .lp-faq-grid,
  .lp-highlight-grid,
  .lp-pricing-grid-main,
  .lp-pricing-cta-points,
  .lp-includes-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-after-core {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lp-after-list::before,
  .lp-after-connector,
  .lp-after-list article::before,
  .lp-after-list article::after {
    display: none;
  }

  .lp-pricing-card-featured,
  .lp-feature-card-large,
  .lp-feature-card-wide {
    grid-column: auto;
  }

  .lp-experience-desktop {
    width: calc(100% - 270px);
  }

  .lp-pricing-scale-card {
    grid-template-columns: 72px 1fr;
  }
}

@media (max-width: 860px) {
  .lp-nav,
  .lp-header-actions .lp-link {
    display: none;
  }

  .lp-menu-toggle {
    display: inline-flex;
  }

  .lp-mobile-panel.open {
    display: block;
  }

  .lp-header-inner {
    min-height: 82px;
  }

  .lp-hero {
    padding-top: 12px;
  }

  .lp-hero-copy h1,
  .lp-section-head h2,
  .lp-shot-header h3,
  .lp-banner-quote h3,
  .lp-final-copy h2,
  .lp-experience-copy h2 {
    max-width: none;
  }

  .lp-hero-visual {
    min-height: 560px;
  }

  .lp-browser-frame {
    position: relative;
    inset: auto;
  }

  .lp-device-shot,
  .lp-floating-card {
    transform: scale(0.92);
    transform-origin: bottom right;
  }

  .lp-device-shot {
    right: -14px;
    bottom: -26px;
  }

  .lp-floating-left {
    left: 34px;
    bottom: -18px;
    transform-origin: bottom left;
  }

  .lp-floating-right {
    right: 82px;
    bottom: 16px;
  }

  .lp-after-core,
  .lp-banner-quote {
    grid-template-columns: 1fr;
  }

  .lp-after-logo {
    justify-self: center;
  }

  .lp-before-card article,
  .lp-after-list article {
    padding-left: 22px;
  }

  .lp-experience-stage {
    min-height: auto;
  }

  .lp-experience-desktop,
  .lp-experience-phone {
    width: 100%;
  }

  .lp-experience-phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 20px;
    justify-self: center;
    max-width: 300px;
  }

  .lp-pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-pricing-cta-inline .lp-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .lp-section {
    padding: 38px 0;
  }

  .lp-header-inner {
    gap: 14px;
  }

  .lp-brand img {
    height: 44px;
  }

  .lp-btn {
    min-height: 54px;
    padding: 0 22px;
  }

  .lp-header-actions .lp-btn-primary {
    display: none;
  }

  .lp-highlight-band,
  .lp-before-card,
  .lp-after-card,
  .lp-student-vision,
  .lp-banner-quote,
  .lp-feature-card,
  .lp-experience-showcase,
  .lp-pricing-card,
  .lp-pricing-cta {
    padding: 24px;
  }

  .lp-highlight-grid,
  .lp-feature-layout,
  .lp-steps-grid,
  .lp-audience-grid,
  .lp-pricing-grid-main,
  .lp-pricing-cta-points,
  .lp-includes-list,
  .lp-experience-tags,
  .lp-faq-grid,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.6rem);
  }

  .lp-lead,
  .lp-section-head p,
  .lp-shot-header p,
  .lp-feature-copy p,
  .lp-step-card p,
  .lp-audience-card p,
  .lp-pricing-cta p,
  .lp-final-copy p {
    font-size: 0.98rem;
  }

  .lp-hero-visual {
    min-height: 470px;
  }

  .lp-browser-top {
    gap: 10px;
    padding: 12px 14px;
  }

  .lp-browser-address {
    padding: 9px 10px;
    font-size: 0.75rem;
  }

  .lp-device-shot {
    width: 185px;
    bottom: -20px;
    right: -20px;
  }

  .lp-before-card h3,
  .lp-after-card h3,
  .lp-feature-copy h3,
  .lp-pricing-card h3 {
    font-size: 1.45rem;
  }

  .lp-pricing-card {
    padding: 26px 24px;
  }

  .lp-pricing-scale-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lp-pricing-scale-contact {
    grid-template-columns: 1fr;
  }

  .lp-pricing-scale-icon {
    width: 64px;
    height: 64px;
  }

  .lp-pricing-scale-title {
    padding: 0 8px 12px;
  }

  .lp-pricing-cta-points span {
    justify-content: flex-start;
    min-height: 58px;
    padding-left: 56px;
  }

  .lp-pricing-cta-points span + span {
    border-left: 0;
    border-top: 1px solid rgba(10, 53, 154, 0.1);
  }

  .lp-price-line strong {
    font-size: 3rem;
  }

  .lp-floating-card {
    max-width: 190px;
    padding: 16px 18px;
  }

  .lp-floating-left {
    left: -10px;
    bottom: -12px;
  }

  .lp-floating-right {
    right: 30px;
    bottom: 10px;
  }

  .lp-includes-list span {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 53, 154, 0.08);
    min-height: 58px;
  }

  .lp-includes-list span:last-child {
    border-bottom: 0;
  }

  .lp-final-cta-inner {
    padding: 34px 24px;
    border-radius: 0;
  }

  .lp-final-actions {
    width: 100%;
  }

  .lp-final-actions .lp-btn {
    width: 100%;
  }

  .lp-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 72;
    display: block;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(10, 53, 154, 0.08);
  }

  .lp-mobile-cta .lp-btn {
    width: 100%;
  }

  .lp-footer {
    padding-bottom: 92px;
  }
}
