:root {
    --htech-slate-950: #101c29;
    --htech-slate-900: #172536;
    --htech-slate-800: #23364a;
    --htech-slate-700: #344b62;
    --htech-slate-500: #66798b;
    --htech-slate-200: #d8e0e7;
    --htech-slate-100: #edf2f5;
    --htech-teal-700: #08776f;
    --htech-teal-600: #0a9187;
    --htech-teal-500: #0dab9f;
    --htech-teal-100: #d9f5f1;
    --htech-gold-600: #b98725;
    --htech-gold-500: #d2a547;
    --htech-gold-100: #fbf2dc;
    --htech-white: #ffffff;
    --htech-danger: #a43b42;
    --htech-danger-bg: #fff1f2;
    --htech-shadow: 0 18px 45px rgba(16, 28, 41, 0.10);
}

.htech-order,
.htech-order * {
    box-sizing: border-box;
}

.htech-order {
    color: var(--htech-slate-900);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0 auto;
    max-width: 1240px;
    padding: 0 0 44px;
}

.htech-order__hero {
    align-items: flex-end;
    background:
        radial-gradient(circle at 85% 15%, rgba(13, 171, 159, 0.23), transparent 31%),
        linear-gradient(135deg, var(--htech-slate-950), var(--htech-slate-800));
    border-bottom: 4px solid var(--htech-gold-500);
    border-radius: 18px;
    color: var(--htech-white);
    display: flex;
    gap: 34px;
    justify-content: space-between;
    overflow: hidden;
    padding: 46px 48px 42px;
    position: relative;
}

.htech-order__hero--compact {
    padding-bottom: 34px;
    padding-top: 34px;
}

.htech-order__hero-copy {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.htech-order__eyebrow,
.htech-order__group-kicker,
.htech-order__plan-type {
    color: var(--htech-gold-500);
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.htech-order__hero h1 {
    color: var(--htech-white);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 10px 0 14px;
}

.htech-order__hero p {
    color: #d7e3ed;
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0;
}

.htech-order__trust {
    display: grid;
    flex: 0 0 180px;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.htech-order__trust span {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--htech-white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 9px 14px;
    text-align: center;
}

.htech-order__steps {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
    margin: 22px 0 28px;
    padding: 0;
}

.htech-order__steps li {
    align-items: center;
    background: var(--htech-slate-100);
    border-radius: 9px;
    color: var(--htech-slate-500);
    display: flex;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    padding: 9px 8px;
    text-transform: uppercase;
}

.htech-order__steps li span {
    align-items: center;
    background: var(--htech-white);
    border-radius: 50%;
    display: inline-flex;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.htech-order__steps li.is-current {
    background: var(--htech-teal-600);
    color: var(--htech-white);
}

.htech-order__steps li.is-current span {
    color: var(--htech-teal-700);
}

.htech-order__steps li.is-complete {
    background: var(--htech-teal-100);
    color: var(--htech-teal-700);
}

.htech-order__customer-note,
.htech-order__notice,
.htech-order__safety {
    border-radius: 12px;
    line-height: 1.55;
    margin: 0 0 20px;
    padding: 14px 18px;
}

.htech-order__customer-note {
    background: var(--htech-teal-100);
    border-left: 4px solid var(--htech-teal-600);
    color: var(--htech-teal-700);
}

.htech-order__notice ul {
    margin: 7px 0 0;
    padding-left: 20px;
}

.htech-order__notice p {
    margin: 6px 0 0;
}

.htech-order__notice--error {
    background: var(--htech-danger-bg);
    border-left: 4px solid var(--htech-danger);
    color: #7e2930;
}

.htech-order__notice--warning {
    background: var(--htech-gold-100);
    border-left: 4px solid var(--htech-gold-500);
    color: #725315;
}

.htech-order__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
    margin: 0 0 34px;
}

.htech-order__filters button {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 999px;
    color: var(--htech-slate-700);
    cursor: pointer;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    padding: 10px 17px;
    transition: 160ms ease;
}

.htech-order__filters button:hover,
.htech-order__filters button:focus-visible,
.htech-order__filters button.is-active {
    background: var(--htech-slate-900);
    border-color: var(--htech-slate-900);
    color: var(--htech-white);
    outline: none;
}

.htech-order__group {
    margin: 0 0 54px;
}

.htech-order__group[hidden] {
    display: none;
}

.htech-order__group-header {
    align-items: end;
    border-bottom: 1px solid var(--htech-slate-200);
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin: 0 0 26px;
    padding: 0 2px 15px;
}

.htech-order__group-header .htech-order__group-kicker,
.htech-order__selection .htech-order__group-kicker,
.htech-order__domain-preview .htech-order__group-kicker {
    color: var(--htech-teal-700);
}

.htech-order__group-header h2,
.htech-order__selection h2,
.htech-order__domain-preview h2 {
    color: var(--htech-slate-900);
    font-size: 1.8rem;
    letter-spacing: -0.025em;
    margin: 4px 0 0;
}

.htech-order__group-header p {
    color: var(--htech-slate-500);
    line-height: 1.5;
    margin: 0;
    max-width: 520px;
    text-align: right;
}

.htech-order__grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.htech-order__card {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 16px;
    box-shadow: 0 9px 28px rgba(16, 28, 41, 0.06);
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 26px;
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.htech-order__card:hover {
    border-color: #9bcfc9;
    box-shadow: var(--htech-shadow);
    transform: translateY(-3px);
}

.htech-order__card--featured {
    border-color: var(--htech-gold-500);
}

.htech-order__popular {
    background: var(--htech-gold-500);
    border-radius: 999px;
    color: var(--htech-slate-950);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    position: absolute;
    right: 18px;
    text-transform: uppercase;
    top: -12px;
}

.htech-order__plan-type {
    color: var(--htech-teal-700);
}

.htech-order__card h3 {
    color: var(--htech-slate-900);
    font-size: 1.45rem;
    margin: 5px 0 0;
}

.htech-order__price {
    border-bottom: 1px solid var(--htech-slate-200);
    border-top: 1px solid var(--htech-slate-200);
    display: grid;
    margin: 20px 0;
    padding: 16px 0;
}

.htech-order__price > span {
    color: var(--htech-slate-500);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.htech-order__price strong {
    color: var(--htech-slate-900);
    font-size: 2rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.htech-order__price small {
    color: var(--htech-teal-700);
    font-weight: 700;
}

.htech-order__features {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.htech-order__features li {
    color: var(--htech-slate-700);
    font-size: 0.91rem;
    line-height: 1.38;
}

.htech-order__features li span {
    color: var(--htech-teal-600);
    font-weight: 900;
    margin-right: 5px;
}

.htech-order__plan-form {
    margin-top: auto;
}

.htech-order__plan-form label {
    color: var(--htech-slate-700);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.htech-order__plan-form select {
    appearance: auto;
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 8px;
    color: var(--htech-slate-900);
    font: inherit;
    min-height: 44px;
    padding: 8px 10px;
    width: 100%;
}

.htech-order__plan-form button,
.htech-order__button-primary,
.htech-order__button-secondary,
.htech-order__domain-form button,
.htech-order__domain-confirm button {
    border-radius: 9px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    min-height: 46px;
    padding: 10px 16px;
    transition: 160ms ease;
}

.htech-order__button-primary {
    align-items: center;
    background: var(--htech-teal-600);
    border: 1px solid var(--htech-teal-600);
    color: var(--htech-white);
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
}

.htech-order__button-primary:hover,
.htech-order__button-primary:focus-visible {
    background: var(--htech-teal-700);
    border-color: var(--htech-teal-700);
    color: var(--htech-white);
    outline: 3px solid rgba(13, 171, 159, 0.22);
}

.htech-order__button-primary:disabled,
.htech-order__button-primary[aria-disabled="true"] {
    background: var(--htech-slate-200);
    border-color: var(--htech-slate-200);
    color: var(--htech-slate-500);
    cursor: not-allowed;
    outline: none;
}

.htech-order__plan-form button {
    background: var(--htech-teal-600);
    border: 1px solid var(--htech-teal-600);
    color: var(--htech-white);
    margin-top: 11px;
    width: 100%;
}

.htech-order__domain-form button,
.htech-order__domain-confirm button {
    background: var(--htech-teal-600);
    border: 1px solid var(--htech-teal-600);
    color: var(--htech-white);
}

.htech-order__plan-form button:hover,
.htech-order__plan-form button:focus-visible,
.htech-order__domain-form button:hover,
.htech-order__domain-form button:focus-visible,
.htech-order__domain-confirm button:hover,
.htech-order__domain-confirm button:focus-visible {
    background: var(--htech-teal-700);
    border-color: var(--htech-teal-700);
    outline: 3px solid rgba(13, 171, 159, 0.22);
}

.htech-order__single-plan {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 18px;
    box-shadow: var(--htech-shadow);
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    overflow: hidden;
    padding: 36px;
}

.htech-order__single-plan-copy {
    border-right: 1px solid var(--htech-slate-200);
    padding-right: 34px;
}

.htech-order__single-plan h2,
.htech-order__review-card h2 {
    color: var(--htech-slate-900);
    font-size: 2rem;
    letter-spacing: -0.03em;
    margin: 5px 0 24px;
}

.htech-order__features--large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.htech-order__single-plan-form {
    align-self: center;
}

.htech-order__price--direct {
    margin-top: 8px;
}

.htech-order__form-help {
    color: var(--htech-slate-500);
    font-size: 0.82rem;
    line-height: 1.45;
    margin: 9px 0 0;
}

.htech-order__safety {
    align-items: flex-start;
    background: var(--htech-slate-100);
    border: 1px solid var(--htech-slate-200);
    color: var(--htech-slate-700);
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.htech-order__safety strong {
    color: var(--htech-teal-700);
    flex: 0 0 auto;
}

.htech-order__empty {
    background: var(--htech-slate-100);
    border: 1px solid var(--htech-slate-200);
    border-radius: 16px;
    padding: 44px;
    text-align: center;
}

.htech-order__empty h2 {
    margin-top: 0;
}

.htech-order__configure-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.5fr);
}

.htech-order__selection,
.htech-order__domain-preview {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 16px;
    box-shadow: 0 9px 28px rgba(16, 28, 41, 0.06);
    padding: 28px;
}

.htech-order__selection {
    border-top: 4px solid var(--htech-gold-500);
}

.htech-order__domain-preview {
    border-top: 4px solid var(--htech-teal-600);
}

.htech-order__selection-price {
    display: grid;
    margin: 22px 0;
}

.htech-order__selection-price strong {
    color: var(--htech-slate-900);
    font-size: 2.15rem;
}

.htech-order__selection-price span {
    color: var(--htech-teal-700);
    font-weight: 800;
}

.htech-order__text-link {
    color: var(--htech-teal-700);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.htech-order__text-link--stacked {
    display: block;
    margin-top: 9px;
}

.htech-order__domain-tabs {
    background: var(--htech-slate-100);
    border-radius: 11px;
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 20px 0;
    padding: 6px;
}

.htech-order__domain-tabs button {
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: var(--htech-slate-700);
    cursor: pointer;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    min-height: 42px;
    padding: 8px 10px;
}

.htech-order__domain-tabs button.is-active,
.htech-order__domain-tabs button:focus-visible {
    background: var(--htech-slate-900);
    color: var(--htech-white);
    outline: none;
}

.htech-order__domain-panel[hidden] {
    display: none;
}

.htech-order__domain-panel > p {
    color: var(--htech-slate-500);
    line-height: 1.55;
    margin: 0 0 18px;
}

.htech-order__domain-form label,
.htech-order__domain-confirm label {
    color: var(--htech-slate-700);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.htech-order__domain-search {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(140px, 1fr) minmax(150px, auto) auto;
}

.htech-order__domain-search--wide {
    grid-template-columns: minmax(180px, 1fr) auto;
}

.htech-order__domain-search input,
.htech-order__domain-search select,
.htech-order__domain-confirm select {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 9px;
    color: var(--htech-slate-900);
    font: inherit;
    min-height: 46px;
    padding: 9px 11px;
    width: 100%;
}

.htech-order__domain-search input:focus,
.htech-order__domain-search select:focus,
.htech-order__domain-confirm select:focus {
    border-color: var(--htech-teal-600);
    box-shadow: 0 0 0 3px rgba(13, 171, 159, 0.16);
    outline: none;
}

.htech-order__domain-result {
    border-radius: 11px;
    display: grid;
    gap: 5px;
    margin-top: 20px;
    padding: 16px;
}

.htech-order__domain-result--success {
    background: var(--htech-teal-100);
    border: 1px solid #9bd8d2;
    color: var(--htech-teal-700);
}

.htech-order__domain-result--unavailable {
    background: var(--htech-gold-100);
    border: 1px solid #e6ca8e;
    color: #725315;
}

.htech-order__domain-confirm {
    align-items: end;
    display: grid;
    gap: 9px;
    grid-template-columns: minmax(150px, 1fr) auto;
    margin-top: 12px;
}

.htech-order__domain-confirm button:only-child {
    grid-column: 1 / -1;
    justify-self: start;
}

.htech-order__review-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 22px;
}

.htech-order__review-grid--compact {
    margin-bottom: 28px;
}

.htech-order__review-grid--compact .htech-order__review-card {
    padding: 22px 24px;
}

.htech-order__review-grid--compact .htech-order__review-card h2 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.htech-order__review-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.htech-order__review-grid--three .htech-order__review-card:nth-child(3) {
    border-top-color: var(--htech-slate-700);
}

.htech-order__review-card p {
    color: var(--htech-slate-500);
    line-height: 1.5;
    margin: 10px 0 0;
}

.htech-order__account-grid {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.45fr);
}

.htech-order__identity-card,
.htech-order__new-account {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 16px;
    box-shadow: 0 9px 28px rgba(16, 28, 41, 0.06);
    padding: 30px;
}

.htech-order__identity-card {
    border-top: 4px solid var(--htech-gold-500);
}

.htech-order__new-account,
.htech-order__identity-card--signed-in {
    border-top: 4px solid var(--htech-teal-600);
}

.htech-order__identity-card--signed-in {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

.htech-order__identity-card h2,
.htech-order__new-account h2 {
    color: var(--htech-slate-900);
    font-size: 1.65rem;
    letter-spacing: -0.025em;
    margin: 5px 0 12px;
}

.htech-order__identity-card p,
.htech-order__new-account > p {
    color: var(--htech-slate-500);
    line-height: 1.6;
    margin: 0 0 20px;
}

.htech-order__identity-card small {
    color: var(--htech-slate-500);
    display: block;
    line-height: 1.5;
    margin-top: 14px;
}

.htech-order__identity-action {
    display: grid;
    flex: 0 0 250px;
    gap: 8px;
}

.htech-order__identity-action span {
    color: var(--htech-slate-500);
    font-size: 0.78rem;
    text-align: center;
}

.htech-order__account-form {
    margin-top: 22px;
}

.htech-order__form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.htech-order__field {
    display: grid;
    gap: 6px;
}

.htech-order__field--wide {
    grid-column: 1 / -1;
}

.htech-order__field label {
    color: var(--htech-slate-700);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.htech-order__field label span {
    color: var(--htech-slate-500);
    font-size: 0.68rem;
    font-weight: 600;
}

.htech-order__field input,
.htech-order__field select {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 9px;
    color: var(--htech-slate-900);
    font: inherit;
    min-height: 46px;
    padding: 9px 11px;
    width: 100%;
}

.htech-order__field input:focus,
.htech-order__field select:focus {
    border-color: var(--htech-teal-600);
    box-shadow: 0 0 0 3px rgba(13, 171, 159, 0.16);
    outline: none;
}

.htech-order__check {
    align-items: flex-start;
    color: var(--htech-slate-700);
    display: flex;
    gap: 10px;
    line-height: 1.45;
    margin-top: 16px;
}

.htech-order__check input {
    flex: 0 0 auto;
    margin-top: 4px;
}

.htech-order__check a {
    color: var(--htech-teal-700);
    font-weight: 800;
}

.htech-order__account-form > .htech-order__button-primary {
    margin-top: 22px;
    width: 100%;
}

.htech-order__honeypot {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.htech-order__review-card {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 16px;
    border-top: 4px solid var(--htech-teal-600);
    box-shadow: 0 9px 28px rgba(16, 28, 41, 0.06);
    padding: 28px;
}

.htech-order__review-card:first-child {
    border-top-color: var(--htech-gold-500);
}

.htech-order__review-card strong {
    color: var(--htech-teal-700);
}

.htech-order__account-actions {
    align-items: center;
    display: flex;
    gap: 18px;
    margin: 20px 0;
}

.htech-order__button-link {
    align-items: center;
    display: inline-flex;
    text-decoration: none;
}

.htech-order__reset-form {
    margin: 22px 0;
}

.htech-order__button-secondary {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-700);
    color: var(--htech-slate-700);
}

.htech-order__button-secondary:hover,
.htech-order__button-secondary:focus-visible {
    background: var(--htech-slate-900);
    color: var(--htech-white);
    outline: none;
}

.htech-order__payment-panel,
.htech-order__completion-card {
    background: var(--htech-white);
    border: 1px solid var(--htech-slate-200);
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(16, 28, 41, 0.08);
    margin: 28px 0;
    padding: 30px;
}

.htech-order__payment-heading {
    align-items: flex-start;
    border-bottom: 1px solid var(--htech-slate-200);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 22px;
}

.htech-order__payment-heading h2,
.htech-order__completion-card h2 {
    color: var(--htech-slate-900);
    margin: 5px 0 0;
}

.htech-order__total {
    display: grid;
    justify-items: end;
    min-width: 170px;
}

.htech-order__total span,
.htech-order__total small,
.htech-order__gateway small,
.htech-order__epp-field small {
    color: var(--htech-slate-500);
}

.htech-order__total strong {
    color: var(--htech-teal-700);
    font-size: 1.65rem;
    line-height: 1.2;
}

.htech-order__gateway-list {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
}

.htech-order__gateway {
    align-items: flex-start;
    background: var(--htech-slate-50);
    border: 1px solid var(--htech-slate-200);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    gap: 13px;
    padding: 16px 18px;
}

.htech-order__gateway:has(input:checked) {
    background: rgba(11, 132, 122, 0.07);
    border-color: var(--htech-teal-600);
    box-shadow: 0 0 0 2px rgba(11, 132, 122, 0.1);
}

.htech-order__gateway input {
    accent-color: var(--htech-teal-600);
    margin-top: 3px;
}

.htech-order__gateway span {
    display: grid;
    gap: 3px;
}

.htech-order__gateway strong {
    color: var(--htech-slate-900);
}

.htech-order__epp-field {
    margin: 0 0 22px;
}

.htech-order__epp-field small {
    display: block;
    margin-top: 6px;
}

.htech-order__final-consents {
    background: var(--htech-slate-100);
    border: 1px solid var(--htech-slate-200);
    border-radius: 12px;
    display: grid;
    gap: 12px;
    margin: 22px 0;
    padding: 16px 18px;
}

.htech-order__final-consents .htech-order__check {
    margin-top: 0;
}

.htech-order__place-order {
    font-size: 1rem;
    min-width: 285px;
}

.htech-order__completion-card {
    border-top: 5px solid var(--htech-teal-600);
    margin-left: auto;
    margin-right: auto;
    max-width: 660px;
    text-align: center;
}

.htech-order__completion-card form {
    margin: 24px 0 16px;
}

.htech-order__completion-check {
    align-items: center;
    background: var(--htech-teal-600);
    border-radius: 50%;
    color: var(--htech-white);
    display: inline-flex;
    font-size: 1.4rem;
    height: 48px;
    justify-content: center;
    margin-bottom: 16px;
    width: 48px;
}

@media (max-width: 980px) {
    .htech-order__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .htech-order__hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .htech-order__trust {
        display: flex;
        flex: auto;
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .htech-order__hero {
        border-radius: 13px;
        padding: 34px 24px 30px;
    }

    .htech-order__steps {
        grid-template-columns: repeat(5, minmax(48px, 1fr));
        overflow-x: auto;
    }

    .htech-order__steps li {
        display: grid;
        justify-items: center;
        min-width: 62px;
    }

    .htech-order__group-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .htech-order__group-header p {
        text-align: left;
    }

    .htech-order__grid,
    .htech-order__configure-grid,
    .htech-order__single-plan,
    .htech-order__review-grid,
    .htech-order__review-grid--three,
    .htech-order__account-grid {
        grid-template-columns: 1fr;
    }

    .htech-order__identity-card--signed-in {
        align-items: stretch;
        display: grid;
    }

    .htech-order__identity-action {
        flex: auto;
    }

    .htech-order__single-plan-copy {
        border-bottom: 1px solid var(--htech-slate-200);
        border-right: 0;
        padding-bottom: 28px;
        padding-right: 0;
    }

    .htech-order__domain-search,
    .htech-order__domain-search--wide {
        grid-template-columns: 1fr;
    }

    .htech-order__safety {
        display: grid;
    }

    .htech-order__payment-heading {
        display: grid;
    }

    .htech-order__total {
        justify-items: start;
    }
}

@media (max-width: 480px) {
    .htech-order__grid {
        gap: 18px;
    }

    .htech-order__card,
    .htech-order__selection,
    .htech-order__domain-preview,
    .htech-order__single-plan,
    .htech-order__review-card {
        padding: 22px;
    }

    .htech-order__features--large,
    .htech-order__domain-tabs,
    .htech-order__form-grid {
        grid-template-columns: 1fr;
    }

    .htech-order__field--wide {
        grid-column: auto;
    }

    .htech-order__domain-confirm {
        grid-template-columns: 1fr;
    }

    .htech-order__filters {
        justify-content: flex-start;
    }

    .htech-order__payment-panel,
    .htech-order__completion-card {
        padding: 22px;
    }

    .htech-order__place-order {
        min-width: 0;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .htech-order__card,
    .htech-order__filters button,
    .htech-order__plan-form button,
    .htech-order__domain-form button,
    .htech-order__domain-confirm button {
        transition: none;
    }
}
