.global-form-section {
  padding: var(--section-padding) 0;
  background-color: var(--color-tertiary);
  min-height: 800px;
}

.global-form-section .form-outer-header {
  text-align: center;
  margin: 0 auto var(--space-sm);
  max-width: 1000px;
  padding: 0 var(--container-padding);
}

.global-form-section .outer-tagline {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
  background: rgba(219, 74, 25, 0.15);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-lg);
}

.global-form-section .outer-title {
  margin-bottom: var(--space-xs);
}

.global-form-section .outer-desc {
  color: var(--color-text);
  font-size: var(--fs-m);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--lh-normal);
}

.global-form-section .form-container-outer {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  padding: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
  transition:
    max-width 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    padding 0.3s ease;
  overflow: hidden;
  position: relative;
}

.global-form-section .form-container-outer.is-expanded {
  max-width: 1200px;
  padding: 0;
}

.global-form-section .view-lead {
  padding: 0;
}

.global-form-section .view-config {
  min-height: 700px;
}

.global-form-section .lead-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.global-form-section .lead-col-left {
  display: flex;
  flex-direction: column;
}

.global-form-section .form-label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-heading);
}

.global-form-section .radio-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-bottom: var(--space-sm);
  transition: all 0.2s;
  background: var(--color-white);
  position: relative;
}

.global-form-section .radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
  width: 0;
  height: 0;
  appearance: none;
}

.global-form-section .radio-card:hover {
  border-color: var(--color-primary);
}

.global-form-section .radio-card:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-secondary-hover-bg);
}

.global-form-section .radio-title {
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-heading);
}

.global-form-section .radio-desc {
  font-size: var(--fs-sm);
  color: var(--color-text);
  display: block;
}

.global-form-section .radio-circle {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: var(--space-sm);
  position: relative;
  background: var(--color-white);
}

.global-form-section .radio-card input:checked ~ .radio-circle {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.global-form-section .radio-card input:checked ~ .radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--space-xs);
  height: var(--space-xs);
  background: var(--color-white);
  border-radius: 50%;
}

.global-form-section .input-wrap {
  margin-bottom: var(--space-sm);
  text-align: left;
  width: 100%;
}

.global-form-section .input-wrap label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-heading);
}

.global-form-section .input-icon-group {
  position: relative;
  width: 100%;
}

.global-form-section .input-icon {
  position: absolute;
  left: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  pointer-events: none;
  font-size: 20px;
}

.global-form-section .choice-custom-input-wrap {
  display: none;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-primary);
  border-top: none;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  background: #fff8f6;
}

.global-form-section .choice-custom-input-wrap.is-visible {
  display: block;
}

.global-form-section
  .choice-card.selected:has(+ .choice-custom-input-wrap.is-visible) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.global-form-section .choice-custom-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-m);
  color: var(--color-heading);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px var(--space-sm);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.global-form-section .choice-custom-input::placeholder {
  color: var(--color-text-light);
}

.global-form-section .choice-custom-input:focus {
  border-color: var(--color-primary);
}

.global-form-section .input-icon-group input {
  width: 100%;
  padding: 14px var(--space-sm) 14px 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-m);
  color: var(--color-heading);
  background: var(--color-white);
  height: 50px;
  box-sizing: border-box;
}

.global-form-section .input-icon-group input:focus {
  border-color: var(--color-heading);
  outline: none;
  box-shadow: 0 0 0 1px var(--color-heading);
}

.global-form-section .lead-guide-box {
  background: #eceff1;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.global-form-section .guide-section {
  margin-bottom: var(--space-lg);
}

.global-form-section .guide-section h4 {
  font-size: var(--fs-m);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-heading);
}

.global-form-section .guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-form-section .guide-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: 1.4;
}

.global-form-section .step-num {
  background: rgba(219, 74, 25, 0.15);
  color: var(--color-primary);
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  flex-shrink: 0;
  margin-top: -2px;
}

.global-form-section .check-icon {
  color: var(--color-primary);
  font-size: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  margin-right: 0;
}

.global-form-section .check-icon .dashicons {
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.global-form-section .btn-black {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--btn-radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  font-size: var(--fs-m);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.global-form-section .btn-black:hover {
  opacity: 0.8;
}

.global-form-section .btn-black:disabled {
  background: #e5e5e5;
  color: #999;
  cursor: not-allowed;
  opacity: 1;
}

.global-form-section .btn-block {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  margin-top: auto;
}

.global-form-section .disclaimer-text {
  font-size: 11px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: var(--space-sm);
  line-height: 1.4;
}

.global-form-section .disclaimer-text a {
  color: var(--color-primary);
}

.global-form-section .btn-text {
  background: none;
  border: none;
  color: var(--color-text);
  font-weight: 600;
  cursor: pointer;
}

.global-form-section .view-config {
  height: 700px;
}

.global-form-section .config-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  height: 100%;
  gap: 0;
  transition: grid-template-columns 0.3s ease;
}

.global-form-section .config-grid.layout-50-50 {
  grid-template-columns: 50% 50%;
}

.global-form-section .config-controls {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: hidden;
  border-right: 1px solid var(--color-border);
  position: relative;
}

.global-form-section .config-progress-wrap {
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
}

.global-form-section .progress-dashed {
  display: flex;
  gap: var(--space-xs);
  height: var(--space-xs);
  width: 100%;
}

.global-form-section .dash-segment {
  flex: 1;
  height: var(--space-xs);
  background: #eee;
  border-radius: 2px;
  transition: background 0.3s;
}

.global-form-section .dash-segment.filled {
  background: var(--color-primary);
}

.global-form-section .config-header {
  flex-shrink: 0;
}

.global-form-section .config-title {
  margin-bottom: var(--space-xs);
  color: var(--color-heading);
}

.global-form-section .config-desc {
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-size: 15px;
}

.global-form-section .config-choices {
  flex: 1;
  overflow-y: auto;
  padding-right: var(--space-xs);
  scrollbar-width: thin;
}

.global-form-section .config-choices::-webkit-scrollbar {
  width: var(--space-xs);
}

.global-form-section .config-choices::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: var(--radius-sm);
}

.global-form-section .config-choices::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: var(--radius-sm);
}

.global-form-section .config-choices::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.global-form-section .choice-card-wrapper {
  margin-bottom: var(--space-sm);
  width: 100%;
}

.global-form-section .choice-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--color-white);
  width: 100%;
  margin-bottom: 0;
}

.global-form-section .choice-card.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  background: #f9f9f9;
}

.global-form-section .choice-card:hover {
  border-color: var(--color-heading);
}

.global-form-section .choice-card.selected {
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 0 3px rgba(219, 74, 25, 0.1);
  background: var(--color-white);
}

.global-form-section .choice-card.has-mobile-view {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.global-form-section .choice-info h4 {
  font-size: var(--fs-m);
  font-weight: 700;
  text-transform: none !important;
  margin: 0 0 var(--space-xs) 0;
  color: var(--color-heading);
}

.global-form-section .choice-info p {
  font-size: 13px;
  color: var(--color-text);
  margin: 0;
}

.global-form-section .choice-msg {
  display: block;
  font-size: var(--fs-xs);
  margin-top: var(--space-xs);
  font-weight: 600;
  color: var(--color-primary);
}

.global-form-section .choice-price-tag {
  font-weight: 400;
  opacity: 0.8;
  margin-left: var(--space-xs);
}

.global-form-section .btn-play-preview {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f0f0f0;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: var(--space-sm);
  transition: all 0.2s;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.global-form-section .btn-play-preview .dashicons {
  font-size: 22px;
  width: 22px;
  height: 22px;
  color: var(--color-white);
}

.global-form-section .btn-play-preview.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.global-form-section .btn-play-preview.is-active .dashicons {
  color: var(--color-white);
}

.global-form-section .mobile-visual-wrapper {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  background: #000;
  display: none;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-heading);
  border-top: none;
  animation: fadeInMobile 0.3s ease forwards;
  position: relative;
}

.global-form-section .mobile-visual-wrapper .mob-edu-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-white);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.global-form-section .mobile-visual-wrapper .mob-edu-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
  background: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@keyframes fadeInMobile {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.global-form-section .mobile-visual-wrapper img,
.global-form-section .mobile-visual-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.global-form-section .config-footer-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.global-form-section .mobile-sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: var(--space-sm) var(--space-md);
}

.global-form-section .msf-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-heading);
  text-transform: uppercase;
}

.global-form-section .msf-btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-form-section .config-visualizer {
  padding: var(--space-md);
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--color-white);
  height: 100%;
}

.global-form-section .visual-box {
  width: 100%;
  flex: 1;
  background: #f8f8f8;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.global-form-section .visual-overlay-top {
  position: absolute;
  top: var(--space-lg);
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}

.global-form-section .visual-overlay-top.is-visible {
  max-height: 100px;
  opacity: 1;
  pointer-events: auto;
}

.global-form-section .visual-overlay-top > * {
  pointer-events: auto;
}

.global-form-section .edu-buttons {
  display: flex;
  gap: var(--space-xs);
  background: var(--color-white);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
}

.global-form-section .btn-edu {
  background: transparent;
  border: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-lg);
  font-size: var(--fs-h6);
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--color-heading);
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.global-form-section .btn-edu:hover,
.global-form-section .btn-edu.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.global-form-section .visual-eyebrow {
  position: absolute;
  top: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-lg);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 10;
  color: var(--color-heading);
  white-space: nowrap;
  transition: top 0.3s ease;
  height: fit-content;
}

.global-form-section .visual-eyebrow.has-pills {
  top: var(--space-3xl);
}

.global-form-section .visual-overlay-price {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-lg);
  background: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 10;
  text-align: right;
  transition: bottom 0.3s ease;
}

.global-form-section .visual-overlay-price.has-pills {
  bottom: var(--space-sm);
}

.global-form-section .visual-overlay-price .price-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text);
  display: block;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
}

.global-form-section .visual-overlay-price .price-value {
  font-size: var(--fs-m);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 2px;
}

.global-form-section .visual-overlay-price .price-sub {
  font-size: 9px;
  color: var(--color-text-light);
  display: block;
}

.global-form-section .visual-stage {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-xs) var(--space-md) var(--space-2xl);
  margin-top: var(--space-xl);
  transition:
    padding 0.3s ease,
    margin-top 0.3s ease;
}

.global-form-section .visual-stage.has-pills {
  padding: var(--space-xs) var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
}

.global-form-section .visual-img {
  max-width: 512px;
  max-height: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.global-form-section .visual-video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 512px;
  max-width: 95%;
  max-height: 90%;
  background: #000;
  z-index: 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-form-section .visual-video-wrap video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.global-form-section .view-summary {
  height: 100%;
}

.global-form-section .summary-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  height: 100%;
}

.global-form-section .summary-list {
  padding: var(--space-sm);
  border-right: 1px solid var(--color-border);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.global-form-section .summary-title {
  margin-bottom: var(--space-xs);
}

.global-form-section .summary-desc {
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-size: 15px;
}

.global-form-section .summary-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.global-form-section .summary-item-card {
  border: 1px solid #e5e5e5;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.global-form-section .sum-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.global-form-section .sum-text h5 {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 2px 0;
}

.global-form-section .sum-text p {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
}

.global-form-section .summary-footer {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-border);
}

.global-form-section .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.global-form-section .price-label {
  font-size: var(--fs-m);
  color: var(--color-text);
}

.global-form-section .price-val {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-heading);
}

.global-form-section .start-over-wrap {
  text-align: center;
  margin-top: var(--space-sm);
}

.global-form-section .btn-link {
  background: none;
  border: none;
  color: var(--color-text);
  text-decoration: underline;
  cursor: pointer;
}

.global-form-section .summary-complete {
  padding: var(--space-xs);
  height: 100%;
}

.global-form-section .complete-box {
  background: #f8f8f8;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.global-form-section .complete-content {
  max-width: 300px;
}

.global-form-section .check-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--color-heading);
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.global-form-section .check-icon-wrap .dashicons {
  font-size: 32px;
  width: 32px;
  height: 32px;
}

.global-form-section .disabled-msg {
  font-size: 11px;
  color: var(--color-error);
  margin-top: var(--space-xs);
  font-weight: 600;
  line-height: 1.3;
}

.geo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.geo-modal {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.geo-modal-msg {
  font-size: var(--fs-m);
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.geo-modal-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 899px) {
  .global-form-section {
    min-height: auto;
  }

  .global-form-section .form-outer-header {
    margin-bottom: var(--space-lg);
  }

  .global-form-section .config-desc {
    margin-bottom: 0;
  }

  .global-form-section .form-container-outer {
    padding: var(--space-md);
    max-width: 100%;
    margin: var(--space-xs);
    padding-bottom: var(--space-md);
    height: auto !important;
    max-height: none;
    min-height: auto;
  }

  .global-form-section .view-config {
    height: auto;
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .global-form-section .lead-form,
  .global-form-section .config-grid,
  .global-form-section .summary-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-sm);
  }

  .global-form-section .price-row {
    margin-bottom: 0;
  }

  .global-form-section .start-over-wrap {
    margin-top: 0;
  }

  .global-form-section .btn-block {
    margin: var(--space-sm) 0;
  }

  .global-form-section .config-visualizer {
    display: none !important;
  }

  .global-form-section .summary-complete {
    display: none;
  }

  .global-form-section .config-controls {
    padding: var(--space-md);
    border-right: none;
    padding-bottom: 0;
    height: auto;
    overflow: visible;
    flex: 1;
  }

  .global-form-section .config-footer-desktop {
    display: none;
  }

  .global-form-section .summary-list {
    padding: var(--space-md);
  }

  .global-form-section .summary-items {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .global-form-section .mobile-visual-wrapper.is-visible {
    display: block;
  }

  .global-form-section .choice-card.selected {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 2px solid var(--color-primary);
  }

  .global-form-section .mobile-visual-wrapper {
    height: auto;
    min-height: 0;
  }

  .global-form-section .mobile-visual-wrapper img {
    width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .global-form-section .mobile-visual-wrapper video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .global-form-section .mobile-visual-wrapper .mob-edu-overlay {
    padding: var(--space-sm);
  }

  .global-form-section .mobile-sticky-footer {
    display: block;
    position: static;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: var(--space-md);
    margin-top: auto;
    border-radius: var(--radius-md);
  }

  .global-form-section .msf-info-row {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-sm);
    align-items: center;
  }

  .global-form-section .msf-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-heading);
  }

  .global-form-section .msf-btn-row {
    gap: var(--space-xs);
  }

  .global-form-section .msf-btn-row .btn-text {
    width: 25%;
    border: 1px solid var(--color-border);
    border-radius: var(--btn-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) 0;
    font-size: 14px;
  }

  .global-form-section .msf-btn-row .btn-black {
    width: 75%;
    flex: unset;
  }
}

.global-form-section .guide-how-trigger {
  display: none;
}

.guide-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
}

.guide-modal-overlay.is-open {
  display: flex;
}

.guide-modal {
  background: var(--color-white);
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  padding: var(--space-lg);
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.guide-modal .guide-section {
  margin-bottom: var(--space-lg);
}

.guide-modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  font-size: 20px;
}

@media (max-width: 899px) {
  .global-form-section .guide-how-trigger {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: var(--fs-sm);
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-bottom: var(--space-sm);
  }

  .global-form-section .guide-sections-wrap {
    display: none;
  }
}

.global-form-section .gf-magnify-btn {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-lg);
  height: 36px;
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
  transition:
    transform 0.15s ease,
    background 0.15s;
  padding: 0 14px 0 10px;
}

.global-form-section .gf-magnify-btn:hover {
  background: var(--color-primary-hover);
  transform: scale(1.06);
}

.global-form-section .gf-magnify-btn .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  color: var(--color-white);
}

.global-form-section .gf-magnify-btn-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.global-form-section .choice-media-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.gf-img-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.gf-img-modal-overlay.is-open {
  display: flex;
}

.gf-img-modal-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}

.gf-img-modal-inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  transition: transform 0.2s ease;
  transform-origin: center center;
  user-select: none;
}

.gf-img-modal-inner img.is-zoomed {
  cursor: zoom-out;
  transform: scale(2);
}

.gf-img-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  background: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.gf-img-modal-close .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: var(--color-heading);
}

@media (max-width: 899px) {
  .global-form-section .gf-magnify-btn {
    display: none;
  }

  .global-form-section .gf-magnify-btn--mob {
    display: inline-flex;
    position: static;
    height: auto;
    border-radius: var(--radius-lg);
    padding: 4px 10px 4px 8px;
    margin: var(--space-xs) 0 0;
    transform: none;
  }

  .global-form-section .gf-magnify-btn--mob:hover {
    transform: none;
  }

  .global-form-section .gf-magnify-btn--mob .dashicons {
    font-size: 13px;
    width: 13px;
    height: 13px;
  }

  .global-form-section .gf-magnify-btn--mob .gf-magnify-btn-label {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
}

.global-form-section .complete-inquiry-link strong {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: var(--fs-s);
  text-decoration: underline !important;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
  color: var(--color-primary);
}
