.custom-html-page {
  --color-navy: #0f172a;
  --color-slate: #334155;
  --color-muted: #475569;
  --color-line: #dbe4ee;
  --color-card-line: #e2e8f0;
  --color-sky: #2563eb;
  --color-teal: #2563eb;
  --color-teal-bright: #3b82f6;
  --color-green: #16a34a;
  --color-purple: #6d4ce8;
  --shadow-card: 0 14px 34px rgba(15, 23, 42, 0.06);
  --shadow-panel: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius-card: 18px;
}

.custom-html-page {
  background: #ffffff;
}

/* Full-width hero breakout from Astra container */
.custom-html-page .hero-section {
  width: 100vw;
  max-width: 100vw;

  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  min-height: 90vh;
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 50px 20px 90px;

  background:
      radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.35), transparent 30%),
      radial-gradient(circle at 85% 25%, rgba(14, 165, 233, 0.22), transparent 28%),
      radial-gradient(circle at 50% 100%, rgba(79, 70, 229, 0.25), transparent 34%),
      linear-gradient(135deg, #020617 0%, #0f172a 48%, #111827 100%);
}

/* Grid overlay */
.custom-html-page .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
      linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 85%);
  pointer-events: none;
}

/* Glow */
.custom-html-page .hero-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -160px;
  background: rgba(37, 99, 235, 0.28);
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}

/* Inner hero content still aligned nicely */
.custom-html-page .hero-section .custom-container {
  max-width: 1600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  color: #93c5fd;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(12px);
}

.hero-content h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(42px, 5.6vw, 60px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.hero-content p {
  margin: 0 0 36px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
  max-width: 620px;
}

.hero-btn,
.hero-btn-transparent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-btn {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.28);
}

.hero-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(37, 99, 235, 0.42);
}

.hero-btn-transparent {
  margin-left: 14px;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.hero-btn-transparent:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.24);
}

.hero-image-wrap {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow:
      0 30px 90px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  background: linear-gradient(135deg,
          rgba(96, 165, 250, 0.55),
          rgba(14, 165, 233, 0),
          rgba(99, 102, 241, 0.55));
  z-index: -1;
  opacity: 0.65;
}

.hero-image {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.hero-image-wrap::after {
  content: "Secure tools • Automated workflows • Real-time visibility";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.78);
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(12px);
}

.feature-strip-section {
  position: relative;
  z-index: 3;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -42px;
}

.feature-strip-section .custom-container {
  max-width: 1600px !important;
  padding-top: 0 !important;
  padding-bottom: 40px !important;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 18px;
  min-width: 0;
}

.feature-card + .feature-card {
  border-left: 1px solid #e5e7eb;
}

.feature-icon {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon-svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon-image {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.feature-icon-green {
  color: var(--color-green);
}

.feature-icon-teal {
  color: var(--color-teal);
}

.feature-icon-blue {
  color: var(--color-sky);
}

.feature-icon-purple {
  color: #4f46e5;
}

.feature-copy {
  min-width: 0;
}

.feature-copy h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.feature-copy p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.services-section .custom-container {
  padding-top: 6px;
  padding-bottom: 78px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-teal);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(34px, 4.2vw, 42px);
  line-height: 1.06;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.pricing-card {
  border: 1px solid var(--color-card-line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.service-card {
  min-height: 260px;
  padding: 36px 26px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow:
      var(--shadow-card),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  text-align: center;
}

.service-icon,
.pricing-icon {
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
}

.service-icon-svg,
.pricing-icon-svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-icon-image {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}


.service-icon-image {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}



.service-icon-teal {
  color: #2563eb;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(219, 234, 254, 0.95));
}

.service-icon-blue {
  color: var(--color-sky);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(219, 234, 254, 0.95));
}

.service-icon-purple {
  color: var(--color-purple);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(237, 233, 254, 0.95));
}

.service-icon-mint {
  color: var(--color-teal);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(219, 234, 254, 0.95));
}

.service-card h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
}

.case-study-section .custom-container {
  padding-top: 0;
  padding-bottom: 82px;
}

.case-study-heading {
  margin-bottom: 30px;
}

.case-study-heading h2 {
  max-width: 880px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.05fr 72px 1.05fr;
  gap: 16px;
  align-items: stretch;
}

/* Optional: make 4th and 5th blocks span nicely */
.case-study-grid > :nth-child(4) {
  grid-column: 1 / 3;
}

.case-study-grid > :nth-child(5) {
  grid-column: 3;
}

.case-card,
.case-results-card,
.case-quote-card {
  border: 1px solid var(--color-card-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.case-card {
  padding: 0 0 22px;
  overflow: hidden;
}

.case-card h3,
.case-results-card h3 {
  display: block;
  padding: 16px 18px;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card .case-list {
  padding: 0 18px;
}

.case-card-before h3 {
  color: #dc2626;
  background: linear-gradient(180deg, #fff7f7 0%, #feeceb 100%);
}

.case-card-after h3 {
  color: #2563eb;
  background: linear-gradient(180deg, #f5f9ff 0%, #e0edff 100%);
}

.case-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.45;
}

.case-list li:last-child {
  margin-bottom: 0;
}

.case-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
}

.case-list-negative li::before {
  background:#ef4444;
}

.case-list-positive li::before {
  background:#2563eb;
}

.case-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-arrow span {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.26);
}

.case-results-card {
  padding: 22px 18px 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.case-results-card h3 {
  color: var(--color-sky);
  text-align: center;
}

.case-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-item {
  padding: 8px 14px 4px;
  text-align: center;
}

.result-item + .result-item {
  border-left: 1px solid rgba(148, 163, 184, 0.28);
}

.result-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  color: #0f5fa8;
}

.result-icon-svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-item strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  font-weight: 850;
}

.result-item span {
  display: block;
  color: #334155;
  font-size: 15px;
  line-height: 1.45;
}

.case-quote-card {
  padding: 24px 24px 22px;
}

.case-quote-mark {
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 44px;
  line-height: 1;
}

.case-quote-card p {
  margin: 0 0 22px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.75;
  font-style: italic;
}

.case-quote-meta {
  padding-top: 16px;
  border-top: 1px solid #dbe4ee;
}

.case-quote-meta strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
}

.case-quote-meta span {
  display: block;
  color: #64748b;
  font-size: 15px;
}

.action-section .custom-container {
  padding-top: 0;
  padding-bottom: 84px;
}

.action-heading {
  margin-bottom: 28px;
}

.action-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.action-preview {
  min-width: 0;
}

.action-preview-image {
  width: 100%;
  display: block;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-panel);
}

.action-features {
  display: grid;
  gap: 20px;
  padding-top: 8px;
}

.action-feature-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.action-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-feature-svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-feature-teal {
  color: #2563eb;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.action-feature-blue {
  color: var(--color-sky);
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.action-feature-green {
  color: var(--color-teal);
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.action-feature-navy {
  color: #1d4ed8;
  background: linear-gradient(180deg, #eef2ff 0%, #dbeafe 100%);
}

.action-feature-item h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.action-feature-item p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.pricing-section .custom-container {
  padding-top: 0;
  padding-bottom: 82px;
}

.pricing-heading {
  margin-bottom: 22px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  padding: 28px 26px 24px;
  text-align: center;
}

.pricing-card-teal {
  background: linear-gradient(135deg, #f4fffd 0%, #ecfdf8 50%, #f8fffd 100%);
}

.pricing-card-blue {
  background: linear-gradient(135deg, #f5f9ff 0%, #eff6ff 50%, #fafcff 100%);
}

.pricing-card-purple {
  background: linear-gradient(135deg, #fbf8ff 0%, #f5f3ff 50%, #fdfcff 100%);
}

.pricing-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
}

.pricing-icon-svg {
  width: 40px;
  height: 40px;
}

.pricing-icon-teal {
  color: #2563eb;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98), rgba(219, 234, 254, 0.98));
}

.pricing-icon-blue {
  color: var(--color-sky);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98), rgba(219, 234, 254, 0.98));
}

.pricing-icon-purple {
  color: #7c3aed;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98), rgba(233, 213, 255, 0.98));
}

.pricing-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.pricing-card-teal h3 {
  color: #2563eb;
}

.pricing-card-blue h3 {
  color: var(--color-sky);
}

.pricing-card-purple h3 {
  color: #7c3aed;
}

.pricing-amount {
  color: #0f172a;
  font-size: clamp(36px, 4vw, 40px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.pricing-amount span {
  font-size: 0.48em;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 16px;
  background: rgba(148, 163, 184, 0.35);
}

.pricing-card p {
  margin: 0 0 12px;
  color: #334155;
  font-size: 16px;
  line-height: 1.55;
}

.pricing-term {
  display: inline-block;
  color: var(--color-sky);
  font-size: 16px;
  font-weight: 700;
}

.about-section .custom-container {
  padding-top: 0;
  padding-bottom: 74px;
}

.about-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1.45fr) minmax(260px, 1fr);
  gap: 26px;
  align-items: center;
}

.about-profile {
  display: flex;
  justify-content: center;
}

.about-profile-image {
  width: 126px;
  height: 126px;
  display: block;
  object-fit: cover;
  border-radius: 999px;
  border: 6px solid #f8fafc;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.about-content h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: clamp(24px, 3.6vw, 24px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.about-content p {
  margin: 0 0 14px;
  color: #334155;
  font-size: 18px;
  line-height: 1.7;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  padding-left: 26px;
  border-left: 1px solid var(--color-line);
}

.about-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-checklist li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 34px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.5;
}

.about-checklist li:last-child {
  margin-bottom: 0;
}

.about-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--color-teal);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.18);
}

.final-cta-section .custom-container {
  padding-top: 0;
  padding-bottom: 40px;
}

.final-cta-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #08152f 0%, #0b1f47 55%, #0c1d3e 100%);
  box-shadow: 0 24px 55px rgba(8, 21, 47, 0.18);
}

.final-cta-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.28), rgba(37, 99, 235, 0.12) 70%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 18px 40px rgba(14, 165, 233, 0.16);
}

.final-cta-icon-svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #60a5fa;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta-copy h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.final-cta-copy p {
  margin: 0;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.55;
}

.final-cta-action {
  display: flex;
  justify-content: flex-end;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-teal-bright) 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  color: #ffffff;
  box-shadow: 0 22px 38px rgba(37, 99, 235, 0.28);
}

/* Rest of page can use normal constrained containers */
.custom-html-page .content-section .custom-container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
}

/* Tablet */
@media (max-width: 921px) {
  .custom-html-page .hero-section {
      min-height: auto;
      padding: 90px 20px 70px;
  }

  .hero-container {
      grid-template-columns: 1fr;
      gap: 50px;
      text-align: center;
  }

  .hero-content {
      max-width: 100%;
      margin: 0 auto;
  }

  .hero-content p {
      margin-left: auto;
      margin-right: auto;
  }

  .hero-image-wrap {
      max-width: 640px;
      margin: 0 auto;
  }

  .feature-strip-section {
      margin-top: -20px;
  }

  .feature-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card:nth-child(3) {
      border-left: none;
  }

  .feature-card:nth-child(n + 3) {
      border-top: 1px solid #e5e7eb;
  }

  .services-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-grid {
      grid-template-columns: 1fr 64px 1fr;
  }

  .case-results-card,
  .case-quote-card {
      grid-column: 1 / -1;
  }

  .action-layout {
      grid-template-columns: 1fr;
  }

  .action-features {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 22px;
      padding-top: 0;
  }

  .pricing-grid {
      grid-template-columns: 1fr;
      gap: 18px;
  }

  .about-card {
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 24px;
  }

  .about-highlights {
      grid-column: 1 / -1;
      padding-left: 0;
      padding-top: 6px;
      border-left: none;
  }

  .final-cta-card {
      grid-template-columns: 72px minmax(0, 1fr);
  }

  .final-cta-action {
      grid-column: 1 / -1;
      justify-content: flex-start;
  }

  .final-cta-icon {
      width: 72px;
      height: 72px;
      border-radius: 18px;
  }
}

/* Desktop Responsive */
@media (min-width: 1200px) {
  .ast-plain-container.ast-no-sidebar #primary {
      margin-top: 0px;
  }
}

/* Mobile */
@media (max-width: 544px) {
  .custom-html-page .hero-section {
      padding: 70px 16px 55px;
  }

  .hero-content h1 {
      font-size: 40px;
  }

  .hero-content p {
      font-size: 16px;
      line-height: 1.65;
  }

  .hero-btn {
      width: 100%;
      max-width: 330px;
  }

  .hero-btn-transparent {
      width: 100%;
      max-width: 330px;
      margin-top: 12px;
      margin-left: 0;
  }

  .hero-image-wrap {
      padding: 10px;
      border-radius: 24px;
  }

  .hero-image {
      border-radius: 18px;
  }

  .hero-image-wrap::after {
      position: static;
      display: block;
      margin-top: 10px;
      font-size: 12px;
  }

  .feature-strip-section {
      margin-top: 0;
  }

  .feature-strip-section .custom-container {
      padding-top: 22px;
      padding-bottom: 28px;
  }

  .feature-strip {
      grid-template-columns: 1fr;
      padding: 8px 0;
  }

  .feature-card {
      padding: 16px 18px;
  }

  .feature-card + .feature-card {
      border-left: none;
      border-top: 1px solid #e5e7eb;
  }

  .feature-card:nth-child(n + 3) {
      border-top: 1px solid #e5e7eb;
  }

  .feature-copy h3 {
      font-size: 17px;
  }

  .feature-copy p {
      font-size: 13px;
  }

  .services-section .custom-container {
      padding-top: 8px;
      padding-bottom: 50px;
  }

  .section-heading {
      margin-bottom: 24px;
  }

  .section-heading h2 {
      font-size: 34px;
  }

  .services-grid {
      grid-template-columns: 1fr;
      gap: 16px;
  }

  .service-card {
      min-height: auto;
      padding: 28px 22px 24px;
  }

  .service-icon {
      width: 74px;
      height: 74px;
      margin-bottom: 20px;
  }

  .service-icon-svg {
      width: 40px;
      height: 40px;
  }

  .service-card p {
      font-size: 15px;
  }

  .case-study-section .custom-container {
      padding-bottom: 56px;
  }

  .case-study-heading {
      margin-bottom: 24px;
  }

  .case-study-grid {
      grid-template-columns: 1fr;
      gap: 16px;
  }

  .case-arrow {
      order: 3;
  }

  .case-arrow span {
      width: 50px;
      height: 50px;
      font-size: 26px;
      transform: rotate(90deg);
  }

  .case-results-grid {
      grid-template-columns: 1fr;
      gap: 14px;
  }

  .result-item {
      padding: 4px 8px;
  }

  .result-item + .result-item {
      border-left: none;
      border-top: 1px solid rgba(148, 163, 184, 0.28);
      padding-top: 18px;
  }

  .case-quote-card p {
      font-size: 17px;
      line-height: 1.65;
  }

  .action-section .custom-container {
      padding-bottom: 58px;
  }

  .action-heading {
      margin-bottom: 22px;
  }

  .action-features {
      grid-template-columns: 1fr;
      gap: 18px;
  }

  .action-feature-item h3 {
      font-size: 18px;
  }

  .action-feature-item p {
      font-size: 15px;
  }

  .pricing-section .custom-container {
      padding-bottom: 56px;
  }

  .pricing-card {
      padding: 24px 20px 22px;
  }

  .pricing-icon {
      width: 72px;
      height: 72px;
      margin-bottom: 16px;
  }

  .pricing-icon-svg {
      width: 36px;
      height: 36px;
  }

  .pricing-card p,
  .pricing-term {
      font-size: 15px;
  }

  .about-section .custom-container {
      padding-bottom: 52px;
  }

  .about-card {
      grid-template-columns: 1fr;
      gap: 20px;
      text-align: center;
  }

  .about-profile-image {
      width: 110px;
      height: 110px;
  }

  .about-content h2 {
      font-size: 30px;
  }

  .about-content p,
  .about-checklist li {
      font-size: 16px;
  }

  .about-highlights {
      padding-top: 0;
  }

  .about-checklist li {
      padding-left: 30px;
      text-align: left;
  }

  .final-cta-section .custom-container {
      padding-bottom: 28px;
  }

  .final-cta-card {
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 22px 20px;
      text-align: center;
  }

  .final-cta-icon {
      margin: 0 auto;
  }

  .final-cta-copy h2 {
      font-size: 30px;
  }

  .final-cta-copy p {
      font-size: 17px;
  }

  .final-cta-action {
      justify-content: center;
  }

  .final-cta-btn {
      width: 100%;
      max-width: 320px;
      font-size: 17px;
  }
}
