:root {
    --pronto-primary: #0067b3;
    --pronto-accent: #0091fc;
    --pronto-accent-soft: #33a7fd;
    --pronto-sky: #e6f4ff;
    --pronto-background: #f5f6f7;
    --pronto-surface: #ffffff;
    --pronto-title: #333333;
    --pronto-text: #5c5c5c;
    --pronto-muted: #767676;
    --pronto-border: #ebebeb;
    --pronto-shadow: 0 20px 50px rgba(0, 103, 179, 0.11);
    --pronto-container: 1280px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.pronto-landing {
    margin: 0;
    min-width: 320px;
    background: var(--pronto-background);
    color: var(--pronto-text);
    font-family: "Tajawal", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.pronto-landing button,
.pronto-landing input,
.pronto-landing textarea {
    font: inherit;
    letter-spacing: 0;
}

.pronto-landing img {
    display: block;
    max-width: 100%;
}

.pronto-landing a {
    color: inherit;
    text-decoration: none;
}

.pronto-landing button,
.pronto-landing summary,
.pronto-landing a {
    -webkit-tap-highlight-color: transparent;
}

.pronto-page {
    min-height: 100vh;
    overflow: hidden;
    background: var(--pronto-background);
}

.pronto-container {
    width: min(calc(100% - 64px), var(--pronto-container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.pronto-skip-link {
    position: fixed;
    z-index: 1000;
    inset-block-start: 16px;
    inset-inline-start: 16px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--pronto-surface);
    color: var(--pronto-primary);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.pronto-skip-link:focus {
    transform: translateY(0);
}

.pronto-section {
    position: relative;
    padding-block: 96px;
}

.pronto-section-heading {
    position: relative;
    z-index: 1;
}

.pronto-section-heading--center {
    max-width: 954px;
    margin-inline: auto;
    text-align: center;
}

.pronto-section-heading--start {
    max-width: 650px;
    text-align: start;
}

.pronto-section-heading h2,
.pronto-about h2,
.pronto-offer h2 {
    margin: 14px 0 0;
    color: var(--pronto-title);
    font-size: 45px;
    font-weight: 400;
    line-height: 1.34;
}

.pronto-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--pronto-accent);
    font-size: 24px;
    line-height: 1.4;
}

.pronto-eyebrow::before,
.pronto-eyebrow::after {
    width: 38px;
    height: 3px;
    border-radius: 2px;
    background: var(--pronto-accent);
    content: "";
}

.pronto-eyebrow--start {
    justify-content: flex-start;
}

.pronto-eyebrow--start::before {
    display: none;
}

.pronto-section-intro {
    margin: 24px 0 0;
    color: var(--pronto-muted);
    font-size: 24px;
}

/* Hero */
.pronto-hero {
    position: relative;
    z-index: 100;
    height: 915px;
    min-height: 915px;
    overflow: visible;
    border-radius: 0 0 37px 37px;
    background: var(--pronto-primary);
    color: var(--pronto-surface);
}

.pronto-hero__pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    inset-block-start: 0;
    inset-inline-start: 0;
    overflow: hidden;
    border-radius: 0 0 37px 37px;
    pointer-events: none;
}

.pronto-hero__pattern::before {
    position: absolute;
    /*
     * The Figma artwork is 1442 × 951 px. On screens wider than
     * the Figma frame, enlarge it to the viewport width instead of
     * leaving it at a fixed 1442 px size.
     */
    width: max(1442px, 100vw);
    height: auto;
    aspect-ratio: 1442 / 951;
    inset-block-start: 0;
    left: 50%;
    content: "";
    background-image: var(--pronto-hero-pattern);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    opacity: 0.1;
    pointer-events: none;
    transform: translateX(-50%);
    transform-origin: top center;
}

[dir="rtl"] .pronto-hero__pattern::before {
    transform: translateX(-50%) scaleX(-1);
}

.pronto-header {
    position: absolute;
    z-index: 1000;
    inset-block-start: 0;
    inset-inline: 0;
    padding-block: 60px 0;
    transition: background-color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.pronto-header.is-scrolled {
    position: fixed;
    padding-block: 12px;
    background: rgba(0, 103, 179, 0.96);
    box-shadow: 0 8px 30px rgba(0, 43, 77, 0.16);
    backdrop-filter: blur(12px);
}

.pronto-header__inner {
    display: flex;
    height: 97.17px;
    min-height: 97.17px;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
}

.pronto-header.is-scrolled .pronto-header__inner {
    height: 60px;
    min-height: 60px;
}

.pronto-header.is-scrolled .pronto-navigation,
.pronto-header.is-scrolled .pronto-navigation > ul {
    height: 60px;
}

.pronto-brand {
    display: inline-flex;
    width: 74px;
    min-width: 74px;
    height: 84px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.pronto-header.is-scrolled .pronto-brand {
    height: 54px;
}

.pronto-brand img {
    width: 68px;
    height: 60px;
    flex: 0 0 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.pronto-brand__name {
    display: block;
    width: auto;
    height: 18px;
    color: #e6f4ff;
    font-family: "Tajawal", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    white-space: nowrap;
}

.pronto-header.is-scrolled .pronto-brand img {
    width: 48px;
    height: 38px;
    flex-basis: 38px;
}

.pronto-header.is-scrolled .pronto-brand__name {
    height: 14px;
    font-size: 15px;
    line-height: 14px;
}

.pronto-navigation {
    display: flex;
    width: 966px;
    height: 97.17px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.pronto-navigation > ul {
    display: flex;
    width: 848px;
    height: 97.17px;
    flex: 0 0 848px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pronto-navigation > ul a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #f2eef6;
    font-family: "Tajawal", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

.pronto-navigation > ul a::after {
    position: absolute;
    inset-inline: 0;
    inset-block-end: 5px;
    height: 2px;
    border-radius: 2px;
    background: var(--pronto-surface);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 180ms ease, transform 180ms ease;
}

.pronto-navigation > ul a:hover::after,
.pronto-navigation > ul a:focus-visible::after,
.pronto-navigation > ul a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.pronto-language {
    position: relative;
    width: 82.45px;
    min-width: 82.45px;
    height: 40px;
    flex: 0 0 82.45px;
    color: var(--pronto-surface);
}

.pronto-language summary {
    display: flex;
    width: 82.45px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    list-style: none;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.pronto-language__label {
    display: inline-flex;
    width: 59.45px;
    align-items: center;
    gap: 4px;
}

.pronto-language__globe {
    width: 29.45px;
    height: 29.46px;
    flex: 0 0 29.45px;
    object-fit: contain;
}

.pronto-language__label > span {
    width: 26px;
    flex: 0 0 26px;
}

.pronto-language summary::-webkit-details-marker {
    display: none;
}

.pronto-language__arrow {
    width: 16px;
    font-size: 10px;
    text-align: center;
    transition: transform 180ms ease;
}

.pronto-language[open] .pronto-language__arrow {
    transform: rotate(180deg);
}

.pronto-language__menu {
    position: absolute;
    min-width: 90px;
    inset-block-start: calc(100% + 8px);
    inset-inline-end: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: var(--pronto-surface);
    box-shadow: var(--pronto-shadow);
    color: var(--pronto-title);
}

.pronto-language__menu a {
    display: block;
    padding: 10px 16px;
    text-align: center;
}

.pronto-language__menu a:hover,
.pronto-language__menu a.is-active {
    background: var(--pronto-sky);
    color: var(--pronto-primary);
}

.pronto-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.pronto-menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin-block: 5px;
    border-radius: 2px;
    background: var(--pronto-surface);
    transition: transform 180ms ease, opacity 180ms ease;
}

.pronto-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.pronto-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
}

.pronto-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.pronto-hero__content {
    position: relative;
    z-index: 2;
    display: block;
    width: min(calc(100% - 150px), 1290px);
    max-width: none;
    min-height: 915px;
    padding: 0;
}

.pronto-hero__copy {
    position: absolute;
    width: 615px;
    max-width: 615px;
    inset-block-start: 265px;
    inset-inline-start: 0;
}

.pronto-hero h1 {
    margin: 0;
    color: var(--pronto-surface);
    font-size: 57px;
    font-weight: 400;
    line-height: 1.4;
}

.pronto-hero__copy > p {
    max-width: 615px;
    margin: 9px 0 0;
    color: var(--pronto-surface);
    font-size: 24px;
    line-height: 1.42;
}

.pronto-store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 31px;
    margin-block-start: 34px;
}

.pronto-store-link {
    display: inline-flex;
    width: 216px;
    min-height: 75px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 26px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    background: var(--pronto-surface);
    color: #1c1c1c;
    box-shadow: 0 12px 30px rgba(0, 39, 68, 0.13);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.pronto-store-link:nth-child(2) {
    width: 222px;
}

.pronto-store-link:hover,
.pronto-store-link:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 39, 68, 0.2);
}

.pronto-store-link > i,
.pronto-store-link__icon {
    width: 34px;
    height: 42px;
    flex: 0 0 34px;
    object-fit: contain;
    font-size: 34px;
    text-align: center;
}

.pronto-store-link:first-child > i {
    color: #00b56a;
}

.pronto-store-link span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.12;
}

.pronto-store-link small {
    color: #a1a1a1;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.pronto-store-link strong {
    display: block;
    margin-block-start: 4px;
    color: #1c1c1c;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.pronto-hero__visual {
    position: absolute;
    width: 564px;
    height: 844px;
    min-height: 844px;
    inset-block-start: 183px;
    inset-inline-start: 694px;
}

.pronto-hero__media {
    position: relative;
    width: 564px;
    height: 844px;
    max-width: none;
    inset: auto;
    transform: scale(0.8);
}

.pronto-hero__artwork {
    display: block;
    width: 100%;
    height: 844px;
    object-fit: contain;
    filter: drop-shadow(12px 16px 26px rgba(0, 0, 0, 0.2));
    transform: scale(2.24);
    transform-origin: center;
}

.pronto-hero__service-card {
    position: absolute;
    z-index: 2;
    display: block;
    width: 157px;
    height: 154px;
    padding: 9px;
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4.3px);
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(0, 39, 68, 0.22));
}

.pronto-hero__service-card--laundry {
    inset-inline-start: -78px;
    inset-block-start: 370px;
}

.pronto-hero__service-card--cleaning {
    width: 160px;
    height: 157px;
    inset-inline-start: 194px;
    inset-block-start: 218px;
}

.pronto-device-art {
    position: absolute;
    width: 570px;
    height: 710px;
    max-width: 100%;
    inset-inline-end: 0;
    inset-block-end: -118px;
}

.pronto-phone {
    position: absolute;
    overflow: hidden;
    border: 9px solid #15191e;
    border-radius: 44px;
    background: var(--pronto-surface);
    box-shadow: 14px 18px 34px rgba(0, 34, 60, 0.26);
}

.pronto-phone--primary {
    width: 280px;
    height: 600px;
    inset-block-start: 10px;
    inset-inline-start: 45px;
    transform: rotate(-2deg);
}

.pronto-phone--secondary {
    z-index: 2;
    width: 305px;
    height: 620px;
    inset-inline-end: 0;
    inset-block-end: 0;
    transform: rotate(2deg);
}

.pronto-phone__speaker {
    position: absolute;
    z-index: 2;
    width: 82px;
    height: 20px;
    inset-block-start: 0;
    inset-inline-start: 50%;
    border-radius: 0 0 13px 13px;
    background: #15191e;
    transform: translateX(-50%);
}

[dir="rtl"] .pronto-phone__speaker {
    transform: translateX(50%);
}

.pronto-phone__screen {
    min-height: 100%;
    padding: 42px 16px 20px;
    background: #f8f9f9;
}

.pronto-phone__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--pronto-primary);
    font-size: 13px;
}

.pronto-phone__search {
    display: flex;
    height: 38px;
    align-items: center;
    justify-content: flex-end;
    padding-inline: 12px;
    margin-block-start: 16px;
    border: 1px solid var(--pronto-border);
    border-radius: 7px;
    background: var(--pronto-surface);
    color: var(--pronto-accent);
}

.pronto-phone__banner {
    height: 100px;
    margin-block-start: 14px;
    border-radius: 7px;
    background: var(--pronto-primary);
}

.pronto-phone__tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-block-start: 15px;
}

.pronto-phone__tiles span {
    aspect-ratio: 1;
    border-radius: 7px;
    background: var(--pronto-sky);
}

.pronto-phone__service {
    display: grid;
    height: 130px;
    place-items: center;
    margin-block-start: 16px;
    border-radius: 7px;
    background: var(--pronto-sky);
    color: var(--pronto-accent);
    font-size: 52px;
}

.pronto-phone__list {
    display: grid;
    gap: 10px;
    margin-block-start: 16px;
}

.pronto-phone__list span {
    display: block;
    height: 52px;
    border: 1px solid var(--pronto-border);
    border-radius: 7px;
    background: var(--pronto-surface);
    box-shadow: 0 5px 14px rgba(0, 103, 179, 0.07);
}

.pronto-floating-service {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 112px;
    aspect-ratio: 1;
    place-items: center;
    border: 9px solid rgba(255, 255, 255, 0.58);
    border-radius: 22px;
    background: var(--pronto-surface);
    box-shadow: 4px 10px 24px rgba(0, 39, 68, 0.18);
    color: var(--pronto-accent);
    font-size: 38px;
}

.pronto-floating-service--laundry {
    inset-inline-start: 4px;
    inset-block-start: 355px;
}

.pronto-floating-service--home {
    inset-inline-start: 275px;
    inset-block-start: 210px;
}

.pronto-floating-service--delivery {
    inset-inline-end: 20px;
    inset-block-start: 385px;
}

.pronto-scroll-cue {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    inset-inline-start: max(32px, calc((100% - var(--pronto-container)) / 2));
    inset-block-end: 50px;
    color: var(--pronto-surface);
    font-size: 14px;
}

.pronto-scroll-cue i {
    font-size: 20px;
}

.pronto-scroll-cue span {
    max-width: 60px;
}

/* Why Pronto */
.pronto-why {
    height: 640px;
    min-height: 640px;
    padding-block: 52px 0;
}

.pronto-why .pronto-container {
    width: min(calc(100% - 114px), 1326px);
}

.pronto-why .pronto-section-heading {
    width: 954px;
    max-width: 100%;
    min-height: 120px;
}

.pronto-why__layout {
    display: grid;
    grid-template-columns: 408px 839px;
    align-items: start;
    gap: 41px;
    margin-block-start: 11px;
}

.pronto-why__media {
    position: relative;
    width: 408px;
    aspect-ratio: 1;
}

.pronto-why__media::after {
    position: absolute;
    z-index: -1;
    width: 95%;
    aspect-ratio: 1;
    inset-inline-start: 6%;
    inset-block-start: 8%;
    border-radius: 50%;
    background: var(--pronto-sky);
    content: "";
}

.pronto-why__media-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 8px solid var(--pronto-surface);
    border-radius: 50%;
    box-shadow: var(--pronto-shadow);
}

.pronto-why__media-frame > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 67% center;
    transform: scale(1.1);
}

[dir="rtl"] .pronto-why__media-frame > img {
    object-position: 33% center;
}

.pronto-media-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    overflow: hidden;
    background: var(--pronto-sky);
    color: var(--pronto-primary);
}

.pronto-media-placeholder--round {
    position: relative;
    border-radius: 50%;
}

.pronto-media-placeholder--round > img {
    width: 150px;
    max-height: 120px;
    object-fit: contain;
}

.pronto-media-placeholder--round > i {
    position: absolute;
    inset-inline-end: 55px;
    inset-block-end: 62px;
    font-size: 74px;
    opacity: 0.28;
}

.pronto-why__cards {
    display: grid;
    height: 312px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 36px;
    margin-block-start: 74px;
}

.pronto-benefit {
    position: relative;
    height: 287px;
    min-height: 287px;
    padding: 82px 24px 32px;
    border: 1px solid #ececec;
    border-radius: 28px;
    background: var(--pronto-surface);
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 103, 179, 0.05);
}

.pronto-benefit__icon {
    position: absolute;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    inset-block-start: -26px;
    inset-inline-start: 50%;
    border-radius: 50%;
    background: var(--pronto-sky);
    color: var(--pronto-accent);
    font-size: 40px;
    transform: translateX(-50%);
}

[dir="rtl"] .pronto-benefit__icon {
    transform: translateX(50%);
}

.pronto-benefit__icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.pronto-benefit h3 {
    margin: 0 0 16px;
    color: var(--pronto-title);
    font-size: 22px;
    font-weight: 500;
}

.pronto-benefit p {
    margin: 0;
    color: var(--pronto-muted);
    font-size: 16px;
    line-height: 1.55;
}

/* About */
.pronto-about {
    height: 730px;
    min-height: 730px;
    padding-block: 88px 0;
}

.pronto-about .pronto-container {
    width: min(calc(100% - 204px), 1236px);
}

.pronto-about__layout {
    display: grid;
    grid-template-columns: 550px 627px;
    align-items: start;
    gap: 66px;
}

.pronto-about__content {
    width: 550px;
    max-width: 550px;
}

.pronto-about .pronto-eyebrow {
    font-size: 32px;
}

.pronto-about h2 {
    max-width: 550px;
    margin-block-start: 20px;
    font-size: 55px;
    line-height: 1.1;
}

.pronto-story-block {
    min-height: 174px;
    margin-block-start: 32px;
    padding: 21px 25px 21px 1px;
    border: 1px solid var(--pronto-border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.28);
}

.pronto-story-block h3 {
    position: relative;
    margin: 0 0 12px;
    padding-inline-start: 24px;
    color: var(--pronto-accent);
    font-size: 24px;
    font-weight: 400;
}

.pronto-story-block h3::before {
    position: absolute;
    width: 14px;
    height: 3px;
    inset-inline-start: 0;
    inset-block-start: 13px;
    border-radius: 2px;
    background: var(--pronto-accent);
    content: "";
}

.pronto-story-block p {
    margin: 0;
    color: var(--pronto-muted);
    font-size: 22px;
    line-height: 1.4;
}

.pronto-about__media {
    position: relative;
    box-sizing: border-box;
    width: 627px;
    max-width: 100%;
    height: 533px;
    margin-block-start: 51px;
    overflow: hidden;
    border: 4px solid var(--pronto-surface);
    border-radius: 41px;
    background: #f4f2ef;
    box-shadow: var(--pronto-shadow);
}

.pronto-about__media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pronto-media-placeholder--provider {
    position: relative;
    min-height: 100%;
}

.pronto-media-placeholder--provider > i {
    font-size: 150px;
    opacity: 0.2;
}

.pronto-media-placeholder--provider > img {
    position: absolute;
    width: 150px;
    max-height: 110px;
    inset-block-end: 55px;
    object-fit: contain;
}

/* Features */
.pronto-features {
    height: 865px;
    min-height: 865px;
    padding-block: 81px 0;
}

.pronto-features .pronto-section-heading {
    width: 734px;
    max-width: 734px;
    min-height: 100px;
}

.pronto-features .pronto-eyebrow,
.pronto-features .pronto-section-intro {
    font-size: 32px;
}

.pronto-features .pronto-eyebrow {
    gap: 20px;
}

.pronto-features .pronto-eyebrow::before,
.pronto-features .pronto-eyebrow::after {
    width: 40px;
    height: 4px;
    border-radius: 27px;
}

.pronto-features .pronto-section-intro {
    margin-block-start: 10px;
}

.pronto-feature-stage {
    position: relative;
    width: 1225px;
    min-height: 572px;
    margin: 13px auto 0;
}

.pronto-feature-stage__media {
    position: absolute;
    z-index: 4;
    width: 616px;
    height: 465px;
    left: -50px;
    right: 50px;
    inset-block-end: 16px;
    margin-inline: auto;
}

.pronto-feature-stage__media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translateX(40px) scale(1.3);
    transform-origin: center;
}

.pronto-feature-device-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.pronto-feature-device-placeholder i {
    position: absolute;
    color: var(--pronto-primary);
    filter: drop-shadow(12px 18px 22px rgba(0, 47, 82, 0.18));
}

.pronto-feature-device-placeholder i:first-child {
    inset-inline-start: 90px;
    inset-block-start: 80px;
    font-size: 340px;
    transform: rotate(-34deg);
}

.pronto-feature-device-placeholder i:last-child {
    inset-inline-end: 80px;
    inset-block-start: 30px;
    color: var(--pronto-accent);
    font-size: 320px;
}

.pronto-feature-card {
    position: absolute;
    z-index: 2;
    isolation: isolate;
    width: 362px;
    height: 194px;
    min-height: 194px;
    padding: 60px 24px 20px;
    border: 0;
    border-radius: 27px;
    background: transparent;
    text-align: center;
}

.pronto-feature-card::before,
.pronto-feature-card::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.pronto-feature-card::before {
    z-index: 0;
    width: 358.94px;
    height: 153.71px;
    inset-block-start: 45px;
    inset-inline-start: 15px;
    border-radius: 34px 20px 32px 32px;
    background: #b0ddfe;
    transform: rotate(-7.07deg);
    transform-origin: center;
}

[dir="rtl"] .pronto-feature-card::before {
    transform: rotate(7.07deg);
}

.pronto-feature-card::after {
    z-index: 1;
    inset: 0;
    border-radius: inherit;
    background: #ffffff;
}

.pronto-feature-card--1 {
    inset-inline-start: 0;
    inset-block-start: 71.29px;
    padding-block-start: 68px;
}

.pronto-feature-card--2 {
    height: 198px;
    min-height: 198px;
    inset-inline-end: 19px;
    inset-block-start: 70px;
    padding-block-start: 68px;
    border-radius: 36px;
}

.pronto-feature-card--3 {
    height: 193px;
    min-height: 193px;
    inset-inline-start: 0;
    inset-block-end: 0;
    padding-block-start: 60px;
    border-radius: 35px;
}

.pronto-feature-card--4 {
    height: 193px;
    min-height: 193px;
    inset-inline-end: 19px;
    inset-block-end: 0;
    padding-block-start: 53px;
}

.pronto-feature-card__icon {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 108px;
    height: 108px;
    place-items: center;
    inset-inline-start: 50%;
    inset-block-start: -71px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    color: var(--pronto-accent);
    font-size: 38px;
    transform: translateX(-50%);
}

[dir="rtl"] .pronto-feature-card__icon {
    transform: translateX(50%);
}

.pronto-feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pronto-feature-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #333333;
    font-family: "Tajawal", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
}

.pronto-feature-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #a1a1a1;
    font-family: "Tajawal", Arial, sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.4;
    overflow-wrap: normal;
    word-break: normal;
}

/* What we offer */
.pronto-offer {
    height: 668px;
    min-height: 668px;
    padding-block: 80px 0;
}

.pronto-offer .pronto-container {
    width: min(calc(100% - 160px), 1280px);
}

.pronto-offer .pronto-section-heading--start {
    width: 1277px;
    max-width: 1277px;
}

.pronto-offer .pronto-eyebrow {
    font-size: 32px;
}

.pronto-offer .pronto-eyebrow::after {
    display: none;
}

.pronto-offer h2 {
    width: 624px;
    margin-block-start: 24px;
    font-size: 55px;
    line-height: 1.1;
}

.pronto-offer h2 strong {
    color: var(--pronto-accent);
    font-weight: 500;
}

.pronto-steps {
    display: grid;
    grid-template-columns: repeat(3, 382px);
    gap: 64px;
    margin-block-start: 43px;
}

.pronto-step {
    position: relative;
    width: 382px;
    height: 357px;
    min-height: 357px;
    overflow: hidden;
    border-radius: 41px 41px 27px 27px;
    background: linear-gradient(180deg, #014bd2 0%, #5ba0d2 100%);
    color: var(--pronto-surface);
    filter: drop-shadow(-14px 12px 4px rgba(0, 0, 0, 0.25));
}

.pronto-step__copy {
    position: absolute;
    z-index: 3;
    inset: 0;
    padding: 31px 16px 0 36px;
}

[dir="rtl"] .pronto-step__copy {
    padding: 31px 36px 0 16px;
}

.pronto-step__number {
    --pronto-step-number-edge: 16px;
    position: absolute;
    inset-block-start: 22px;
    inset-inline-end: var(--pronto-step-number-edge);
    font-size: 45px;
    font-weight: 400;
    line-height: 1.4;
    direction: ltr;
    unicode-bidi: isolate;
}

[dir="rtl"] .pronto-step__number {
    inset-inline-end: auto;
    left: var(--pronto-step-number-edge);
    right: auto;
}

.pronto-step h3 {
    width: calc(100% - 52px);
    margin: 0 0 11px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.pronto-step p {
    position: absolute;
    width: 256px;
    max-width: calc(100% - 54px);
    margin: 0;
    inset-block-start: 82px;
    inset-inline-start: 36px;
    color: #ebebeb;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

[dir="rtl"] .pronto-step p {
    inset-inline-start: auto;
    inset-inline-end: 36px;
}

.pronto-step__visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    direction: ltr;
    pointer-events: none;
}

.pronto-step:nth-child(2) .pronto-step__visual::before {
    position: absolute;
    z-index: 0;
    width: 51.64%;
    height: 23.77%;
    inset-inline-start: -11.71%;
    inset-block-start: 72.94%;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: -7px 4px 4px rgba(0, 0, 0, 0.25);
    content: "";
    transform: rotate(18.67deg);
}

.pronto-step__asset {
    position: absolute;
    display: block;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(-7px 4px 4px rgba(0, 0, 0, 0.25));
}

.pronto-step__asset--store-list {
    width: 27.23%;
    height: 63.59%;
    inset-inline-start: 8.9%;
    inset-block-start: 43.42%;
    border-radius: 6px;
    object-fit: cover;
    object-position: top center;
    opacity: 0.83;
}

.pronto-step__asset--store-preview {
    width: 38.22%;
    height: 43.14%;
    inset-inline-start: 49.21%;
    inset-block-start: 40.34%;
    border-radius: 9px;
    opacity: 1;
}

.pronto-step__asset--store-summary {
    width: 38.74%;
    height: 28.57%;
    inset-inline-start: 52.36%;
    inset-block-start: 64.71%;
    border-radius: 9px;
}

.pronto-step__asset--arrow-stores {
    width: 28.53%;
    height: 57.7%;
    inset-inline-start: 28.8%;
    inset-block-start: 31.09%;
    filter: none;
}

.pronto-step__asset--uniform-card {
    width: 55.76%;
    height: 64.43%;
    inset-inline-start: -3.5%;
    inset-block-start: 35.01%;
    border-radius: 9px;
}

.pronto-step__asset--service-detail {
    width: 45.03%;
    height: 90.64%;
    inset-inline-start: 49.21%;
    inset-block-start: 31.37%;
    overflow: hidden;
    border-radius: 20px;
    filter: none;
    transform: rotate(-0.45deg);
}

.pronto-step__asset--service-detail > img {
    position: absolute;
    width: 100%;
    max-width: none;
    height: auto;
    inset-inline-start: 0;
    inset-block-start: -35.3%;
}

.pronto-step__asset--arrow-service {
    width: 23.3%;
    height: 41.74%;
    inset-inline-start: 8.38%;
    inset-block-start: 18.21%;
    filter: none;
}

.pronto-step__asset--order-composition,
.pronto-step__asset--order-visual {
    width: 104.71%;
    height: 104.48%;
    inset-inline-start: -4.71%;
    inset-block-start: 0;
    object-fit: fill;
    filter: none;
}

.pronto-step__asset--order-visual {
    display: none;
}

.pronto-step:nth-child(3) {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    filter: none;
}

.pronto-step:nth-child(3) .pronto-step__copy {
    opacity: 0;
}

html:not([lang^="en"]) .pronto-step:nth-child(3) {
    overflow: hidden;
    border-radius: 41px 41px 27px 27px;
    background: linear-gradient(180deg, #014bd2 0%, #5ba0d2 100%);
    filter: drop-shadow(-14px 12px 4px rgba(0, 0, 0, 0.25));
}

html:not([lang^="en"]) .pronto-step:nth-child(3) .pronto-step__copy {
    opacity: 1;
}

html:not([lang^="en"]) .pronto-step__asset--order-composition {
    display: none;
}

html:not([lang^="en"]) .pronto-step__asset--order-visual {
    display: block;
}

html:not([lang^="en"]) .pronto-step:nth-child(3)::after {
    position: absolute;
    z-index: 4;
    width: 104.71%;
    height: 104.48%;
    left: -4.71%;
    top: 0;
    background: url("../img/offer-arrow-order.svg") center / 100% 100% no-repeat;
    content: "";
    pointer-events: none;
}

[dir="rtl"] .pronto-step__asset--arrow-service {
    inset-block-start: 34%;
}

.pronto-step-placeholder {
    position: relative;
    display: grid;
    width: calc(100% - 44px);
    height: 100%;
    grid-template-columns: 0.75fr 1fr;
    align-items: center;
    gap: 18px;
    padding: 22px;
    margin-inline: auto;
    border-radius: 16px 16px 0 0;
    background: #e6f4ff;
    color: var(--pronto-accent);
}

.pronto-step-placeholder > i {
    font-size: 80px;
    text-align: center;
}

.pronto-step-placeholder > div {
    display: grid;
    gap: 12px;
}

.pronto-step-placeholder span {
    display: block;
    height: 42px;
    border-radius: 7px;
    background: var(--pronto-surface);
    box-shadow: 0 5px 16px rgba(0, 103, 179, 0.12);
}

/* Contact */
.pronto-contact {
    height: 941px;
    min-height: 941px;
    padding-block: 153px 0;
}

.pronto-contact .pronto-container {
    width: min(calc(100% - 82px), 1358px);
}

.pronto-contact__layout {
    display: grid;
    grid-template-columns: 584px 720px;
    gap: 48px;
}

.pronto-contact__content {
    width: 720px;
    max-width: 100%;
}

.pronto-contact__media {
    position: relative;
    width: 584px;
    max-width: 100%;
    height: 707px;
    min-height: 707px;
    overflow: hidden;
    border-radius: 43px;
    background: var(--pronto-primary);
}

.pronto-contact__media::after {
    position: absolute;
    inset: 0;
    border-radius: 43px;
    background: linear-gradient(180deg, rgba(255, 153, 0, 0.32) 0%, rgba(0, 157, 253, 0.32) 100%);
    content: "";
    opacity: 0.7;
}

.pronto-contact__media > img,
.pronto-contact__media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 707px;
    object-fit: cover;
}

.pronto-contact__media > img {
    display: block;
    object-position: 25% center;
}

[dir="rtl"] .pronto-contact__media > img {
    object-position: 75% center;
}

.pronto-contact__media-placeholder {
    display: grid;
    place-items: center;
    background: var(--pronto-primary);
    color: rgba(255, 255, 255, 0.25);
    font-size: 180px;
}

.pronto-contact__media > span {
    position: absolute;
    z-index: 2;
    display: grid;
    width: min(511px, calc(100% - 72px));
    height: 125px;
    place-items: center;
    inset-inline-start: 36px;
    inset-block-start: 285px;
    border: 0;
    background: url("../img/contact-subtract.svg") center / 100% 100% no-repeat;
    color: var(--pronto-surface);
    font-family: "Cormorant SC", serif;
    font-size: 66px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

.pronto-contact__media > span::before,
.pronto-contact__media > span::after {
    content: none;
}

.pronto-contact__content > h2,
.pronto-contact-form-wrap > h2 {
    width: 344px;
    max-width: 100%;
    margin: 0;
    color: #333333;
    font-family: "Cairo", "Tajawal", Arial, sans-serif;
    font-size: 33px;
    font-weight: 500;
    line-height: 1.4;
}

.pronto-contact__content > h2 {
    margin-block-end: 31px;
}

.pronto-contact-form-wrap > h2 {
    margin-block-end: 15px;
}

.pronto-contact-info {
    display: grid;
    grid-template-columns: repeat(2, 349px);
    gap: 22px;
}

.pronto-contact-info__item {
    display: flex;
    width: 349px;
    max-width: 100%;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 42px;
    border: 1px solid #ebebeb;
    border-radius: 20px;
    backdrop-filter: blur(3px);
}

.pronto-contact-info__item--primary {
    padding-inline: 31px;
    border-color: #0084e5;
    background: #0084e5;
    color: #fff3ec;
}

.pronto-contact-info__item span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 10px;
}

.pronto-contact-info__item small {
    color: #2e2e2e;
    font-family: "Cairo", "Tajawal", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.pronto-contact-info__item--primary small {
    color: #fff3ec;
}

.pronto-contact-info__item strong {
    overflow: hidden;
    color: #5c5c5c;
    font-family: "Cairo", "Tajawal", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[dir="rtl"] .pronto-contact-info__item strong,
[dir="rtl"] .pronto-input-wrap input[type="tel"],
[dir="rtl"] .pronto-input-wrap input[type="email"] {
    direction: ltr;
    unicode-bidi: plaintext;
}

.pronto-contact-info__item--primary strong {
    color: #fff3ec;
}

.pronto-contact-info__item i {
    color: var(--pronto-accent);
    font-size: 32px;
}

.pronto-contact-info__icon {
    display: block;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    object-fit: contain;
}

.pronto-contact-info__item--primary i {
    color: #fff3ec;
    font-size: 39px;
}

.pronto-contact-info__item--primary .pronto-contact-info__icon {
    width: 39px;
    height: 39px;
}

.pronto-socials {
    display: grid;
    width: 768px;
    max-width: none;
    height: 132px;
    grid-template-columns: repeat(4, 1fr);
    margin-block: 55px 33px;
    margin-inline-start: -48px;
    border-block: 1px solid rgba(208, 202, 202, 0.38);
}

.pronto-socials a {
    display: grid;
    height: 132px;
    place-items: center;
    border-inline-end: 1px solid rgba(208, 202, 202, 0.38);
    color: rgba(161, 161, 161, 0.57);
    font-size: 54px;
    transition: color 180ms ease, background-color 180ms ease;
}

.pronto-socials a:first-child {
    color: #0091fc;
}

.pronto-socials a:last-child {
    border-inline-end: 0;
}

.pronto-socials a:hover,
.pronto-socials a:focus-visible {
    background: var(--pronto-sky);
    color: var(--pronto-accent);
}

.pronto-contact-form {
    position: relative;
    display: grid;
    min-height: 269px;
    grid-template-columns: 347px 355px;
    gap: 24px 20px;
}

.pronto-contact-form label {
    display: grid;
    align-content: start;
    gap: 0;
    color: var(--pronto-title);
    font-family: "Cairo", "Tajawal", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.pronto-contact-form label > span:first-child {
    position: relative;
    z-index: 2;
    width: max-content;
    margin-block-end: -12px;
    margin-inline-start: 7px;
    padding: 3px 10px;
    background: #f8f9f9;
}

.pronto-contact-form > label:not(.pronto-contact-form__message) {
    transform: translateY(9px);
}

.pronto-contact-form__message > span:first-child {
    margin-block-end: -8px;
}

.pronto-contact-form__message {
    grid-column: 2;
    grid-row: 1 / span 3;
}

.pronto-input-wrap {
    position: relative;
    display: block;
}

.pronto-input-wrap input,
.pronto-input-wrap textarea {
    width: 100%;
    border: 1px solid var(--pronto-border);
    border-radius: 15px;
    outline: 0;
    background: transparent;
    color: var(--pronto-title);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.pronto-input-wrap input {
    height: 55px;
    padding: 8px 42px 8px 27px;
}

[dir="rtl"] .pronto-input-wrap input {
    padding: 8px 27px 8px 42px;
}

.pronto-input-wrap textarea {
    height: 254px;
    resize: vertical;
    padding: 28px 42px 28px 27px;
}

[dir="rtl"] .pronto-input-wrap textarea {
    padding: 28px 27px 28px 42px;
}

.pronto-input-wrap input:focus,
.pronto-input-wrap textarea:focus {
    border-color: var(--pronto-accent);
    box-shadow: 0 0 0 3px rgba(0, 145, 252, 0.1);
}

.pronto-input-wrap input::placeholder,
.pronto-input-wrap textarea::placeholder {
    color: #5c5c5c;
    font-family: "Cairo", "Tajawal", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.pronto-input-wrap i {
    position: absolute;
    inset-inline-end: 14px;
    inset-block-start: 16px;
    color: var(--pronto-accent-soft);
    pointer-events: none;
}

.pronto-submit {
    display: inline-flex;
    min-width: 150px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    justify-self: end;
    padding: 10px 22px;
    border: 0;
    border-radius: 7px;
    background: var(--pronto-accent);
    color: var(--pronto-surface);
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

.pronto-contact-form .pronto-submit {
    position: absolute;
    width: 153px;
    min-width: 153px;
    height: 35px;
    min-height: 35px;
    inset-inline-end: 31px;
    inset-block-end: 18px;
    padding: 6px 37px;
    border: 0.5px solid #ffffff;
    border-radius: 11px;
    background: #0091fc;
    color: #e6f0f7;
    font-family: "Cairo", "Tajawal", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pronto-submit:hover,
.pronto-submit:focus-visible {
    background: var(--pronto-primary);
    transform: translateY(-2px);
}

.pronto-contact-form .pronto-submit i {
    display: none;
}

/* Footer */
.pronto-footer {
    height: 144px;
    min-height: 144px;
    padding-block: 30px;
    border-block-start: 1px solid var(--pronto-border);
    background: var(--pronto-background);
}

.pronto-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.pronto-footer .pronto-container {
    width: min(calc(100% - 68px), 1372px);
}

.pronto-footer p {
    margin: 0;
    color: var(--pronto-title);
    font-size: 15px;
}

.pronto-footer__stores {
    display: flex;
    gap: 31px;
}

.pronto-footer__stores a {
    display: inline-flex;
    width: 216px;
    min-width: 216px;
    min-height: 75px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--pronto-border);
    border-radius: 19px;
    background: var(--pronto-surface);
    color: #1c1c1c;
}

.pronto-footer__stores a:nth-child(2) {
    width: 222px;
    min-width: 222px;
}

.pronto-footer__stores .pronto-store-link__icon {
    width: 34px;
    height: 42px;
}

.pronto-footer__stores i {
    font-size: 25px;
}

.pronto-footer__socials {
    display: flex;
    justify-content: flex-end;
    gap: 21px;
    color: var(--pronto-accent);
}

.pronto-footer__socials a {
    display: grid;
    width: 30px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    font-size: 19px;
}

.pronto-footer__socials a:hover,
.pronto-footer__socials a:focus-visible {
    background: var(--pronto-sky);
}

/* Modal and motion */
.pronto-modal {
    position: fixed;
    z-index: 1000;
    display: none;
    place-items: center;
    inset: 0;
    padding: 24px;
    background: rgba(20, 29, 35, 0.62);
}

.pronto-modal.is-open {
    display: grid;
}

.pronto-modal__dialog {
    position: relative;
    width: min(100%, 500px);
    padding: 42px;
    border-radius: 12px;
    background: var(--pronto-surface);
    text-align: center;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.pronto-modal__dialog > img {
    width: 220px;
    margin-inline: auto;
}

.pronto-modal__dialog h2 {
    color: var(--pronto-title);
}

.pronto-modal__dialog .pronto-submit {
    justify-self: center;
}

.pronto-modal__close {
    position: absolute;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    inset-block-start: 12px;
    inset-inline-end: 12px;
    border: 0;
    border-radius: 50%;
    background: var(--pronto-sky);
    color: var(--pronto-primary);
    cursor: pointer;
}

.pronto-landing.has-reveal [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.pronto-landing.has-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .pronto-container {
        width: min(calc(100% - 48px), 1080px);
    }

    .pronto-navigation > ul {
        width: auto;
        flex: 1 1 auto;
        gap: 18px;
    }

    .pronto-navigation {
        width: auto;
    }

    .pronto-navigation > ul a {
        font-size: 15px;
    }

    .pronto-hero__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 450px;
        padding-block: 205px 120px;
    }

    .pronto-hero__copy {
        position: relative;
        width: auto;
        max-width: 650px;
        inset: auto;
        inset-block-start: -75px;
    }

    .pronto-hero__visual {
        position: relative;
        width: auto;
        height: auto;
        min-height: 670px;
        inset: auto;
    }

    .pronto-hero h1 {
        font-size: 48px;
    }

    .pronto-hero__copy > p {
        font-size: 21px;
    }

    .pronto-hero__media {
        position: absolute;
        height: auto;
        width: 540px;
        inset-inline-end: -55px;
        inset-block-end: -95px;
    }

    .pronto-hero__artwork {
        height: auto;
        object-fit: contain;
    }

    .pronto-hero__service-card {
        height: auto;
        width: 118px;
    }

    .pronto-hero__service-card--cleaning {
        height: auto;
        width: 112px;
    }

    .pronto-hero__service-card--laundry {
        inset-inline-start: -60px;
        inset-block-start: 45%;
    }

    .pronto-hero__service-card--cleaning {
        inset-inline-start: 33.5%;
        inset-block-start: 24%;
    }

    .pronto-device-art {
        transform: scale(0.82);
        transform-origin: bottom right;
    }

    [dir="rtl"] .pronto-device-art {
        transform-origin: bottom left;
    }

    .pronto-why__layout {
        grid-template-columns: 330px minmax(0, 1fr);
    }

    .pronto-why__media {
        width: 330px;
    }

    .pronto-why__cards {
        gap: 18px;
    }

    .pronto-benefit {
        padding-inline: 16px;
    }

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

    .pronto-step {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 382 / 357;
    }

    .pronto-step__copy {
        padding: 24px 14px 0 24px;
    }

    [dir="rtl"] .pronto-step__copy {
        padding: 24px 24px 0 14px;
    }

    .pronto-step__number {
        --pronto-step-number-edge: 12px;
        inset-block-start: 17px;
        font-size: 38px;
    }

    .pronto-step h3 {
        font-size: 20px;
    }

    .pronto-step p {
        font-size: 12px;
        inset-block-start: 64px;
        inset-inline-start: 24px;
    }

    [dir="rtl"] .pronto-step p {
        inset-inline-start: auto;
        inset-inline-end: 24px;
    }

    .pronto-feature-stage {
        width: 100%;
    }

    .pronto-feature-card {
        width: 285px;
        padding-inline: 18px;
    }

    .pronto-feature-card::before {
        width: calc(100% - 3px);
    }

    .pronto-feature-card h3 {
        font-size: 20px;
    }

    .pronto-feature-card p {
        font-size: 16px;
    }

    .pronto-feature-card--1,
    .pronto-feature-card--3 {
        inset-inline-start: 0;
    }

    .pronto-feature-card--2,
    .pronto-feature-card--4 {
        inset-inline-end: 0;
    }

}

@media (max-width: 991px) {
    .pronto-section {
        height: auto;
        padding-block: 76px;
    }

    .pronto-why .pronto-container,
    .pronto-about .pronto-container,
    .pronto-offer .pronto-container,
    .pronto-contact .pronto-container {
        width: min(calc(100% - 48px), 1080px);
    }

    .pronto-section-heading h2,
    .pronto-about h2,
    .pronto-offer h2 {
        font-size: 38px;
    }

    .pronto-menu-toggle {
        display: block;
        margin-inline-start: auto;
    }

    .pronto-header {
        padding-block: 20px;
    }

    .pronto-header__inner,
    .pronto-header.is-scrolled .pronto-header__inner {
        height: 64px;
        min-height: 64px;
    }

    .pronto-brand,
    .pronto-header.is-scrolled .pronto-brand {
        width: 74px;
        min-width: 74px;
        height: 64px;
    }

    .pronto-brand img,
    .pronto-header.is-scrolled .pronto-brand img {
        height: 46px;
        flex-basis: 46px;
    }

    .pronto-brand__name,
    .pronto-header.is-scrolled .pronto-brand__name {
        height: 18px;
        font-size: 17px;
    }

    .pronto-navigation {
        position: absolute;
        display: none;
        width: min(calc(100% - 48px), 500px);
        height: auto;
        max-height: calc(100vh - 120px);
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        inset-block-start: 94px;
        inset-inline-end: 24px;
        overflow-y: auto;
        padding: 22px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 10px;
        background: var(--pronto-primary);
        box-shadow: 0 20px 45px rgba(0, 35, 63, 0.22);
    }

    .pronto-navigation.is-open {
        display: flex;
    }

    .pronto-navigation > ul {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .pronto-header.is-scrolled .pronto-navigation,
    .pronto-header.is-scrolled .pronto-navigation > ul {
        height: auto;
    }

    .pronto-navigation > ul a {
        width: 100%;
        padding-inline: 8px;
        font-size: 17px;
    }

    .pronto-language {
        width: 100%;
        flex: 0 0 auto;
    }

    .pronto-language summary {
        justify-content: flex-start;
        padding-inline: 8px;
    }

    .pronto-language__menu {
        position: static;
        margin-block-start: 5px;
    }

    .pronto-hero {
        height: auto;
        min-height: 1120px;
        overflow: hidden;
    }

    .pronto-hero__content {
        min-height: 1120px;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 35px;
        padding-block: 170px 50px;
    }

    .pronto-hero__copy {
        position: relative;
        width: auto;
        max-width: 720px;
        inset-block-start: 0;
        margin-inline: auto;
        text-align: center;
    }

    .pronto-hero__copy > p {
        margin-inline: auto;
    }

    .pronto-store-links {
        justify-content: center;
    }

    .pronto-hero__visual {
        position: relative;
        width: auto;
        height: auto;
        min-height: 580px;
    }

    .pronto-hero__media {
        height: auto;
        width: 520px;
        max-width: none;
        inset-inline-start: 50%;
        inset-inline-end: auto;
        inset-block-end: -105px;
        transform: translateX(-50%) scale(0.8);
    }

    [dir="rtl"] .pronto-hero__media {
        transform: translateX(50%) scale(0.8);
    }

    .pronto-device-art {
        inset-inline-start: 50%;
        inset-inline-end: auto;
        inset-block-end: -100px;
        transform: translateX(-50%) scale(0.78);
        transform-origin: bottom center;
    }

    [dir="rtl"] .pronto-device-art {
        transform: translateX(50%) scale(0.78);
        transform-origin: bottom center;
    }

    .pronto-scroll-cue {
        display: none;
    }

    .pronto-why__layout,
    .pronto-about__layout,
    .pronto-contact__layout {
        grid-template-columns: 1fr;
    }

    .pronto-why__media {
        width: min(390px, 100%);
        margin-inline: auto;
    }

    .pronto-why__cards {
        margin-block-start: 30px;
    }

    .pronto-about__content {
        max-width: none;
    }

    .pronto-about__media {
        height: 480px;
    }

    .pronto-feature-stage {
        width: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 64px 24px;
        min-height: auto;
        padding-block-start: 520px;
        margin-block-start: 40px;
    }

    .pronto-feature-stage__media {
        z-index: 1;
        height: 500px;
        left: 0;
        right: 0;
        inset-block-start: 0;
        inset-block-end: auto;
    }

    .pronto-feature-card {
        position: relative;
        width: 100%;
        inset: auto;
    }

    .pronto-steps {
        grid-template-columns: repeat(2, minmax(0, 382px));
        justify-content: center;
        gap: 22px;
    }

    .pronto-step {
        width: 100%;
        max-width: 382px;
        height: auto;
        min-height: 0;
        aspect-ratio: 382 / 357;
    }

    .pronto-step__copy {
        padding: 31px 16px 0 36px;
    }

    [dir="rtl"] .pronto-step__copy {
        padding: 31px 36px 0 16px;
    }

    .pronto-step__number {
        --pronto-step-number-edge: 16px;
        inset-block-start: 22px;
        font-size: 45px;
    }

    .pronto-step h3 {
        font-size: 24px;
    }

    .pronto-step p {
        font-size: 14px;
        inset-block-start: 82px;
        inset-inline-start: 36px;
    }

    [dir="rtl"] .pronto-step p {
        inset-inline-start: auto;
        inset-inline-end: 36px;
    }

    .pronto-contact__media,
    .pronto-contact__media > img,
    .pronto-contact__media-placeholder {
        min-height: 520px;
    }

    .pronto-socials {
        width: 100%;
        max-width: 100%;
        margin-inline-start: 0;
    }

    .pronto-footer__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .pronto-footer__socials {
        justify-content: center;
    }
}

@media (max-width: 850px) {
    .pronto-steps {
        grid-template-columns: minmax(0, 382px);
    }
}

@media (max-width: 767px) {
    .pronto-container {
        width: min(calc(100% - 32px), 620px);
    }

    .pronto-section {
        padding-block: 64px;
    }

    .pronto-section-heading h2,
    .pronto-about h2,
    .pronto-offer h2 {
        font-size: 33px;
        line-height: 1.35;
    }

    .pronto-eyebrow {
        gap: 12px;
        font-size: 19px;
    }

    .pronto-eyebrow::before,
    .pronto-eyebrow::after {
        width: 26px;
    }

    .pronto-section-intro {
        font-size: 18px;
    }

    .pronto-hero {
        min-height: 1000px;
        border-radius: 0 0 24px 24px;
    }

    .pronto-hero__content {
        min-height: 1000px;
        padding-block-start: 150px;
    }

    .pronto-hero h1 {
        font-size: 42px;
        line-height: 1.28;
    }

    .pronto-hero__copy > p {
        font-size: 18px;
    }

    .pronto-store-links {
        gap: 12px;
    }

    .pronto-store-link,
    .pronto-store-link:nth-child(2) {
        width: calc(50% - 6px);
        min-height: 64px;
        padding-inline: 14px;
        border-radius: 12px;
    }

    .pronto-store-link > i,
    .pronto-store-link__icon {
        width: 26px;
        height: 32px;
        flex-basis: 26px;
        font-size: 27px;
    }

    .pronto-store-link small {
        font-size: 10px;
    }

    .pronto-store-link strong {
        font-size: 14px;
    }

    .pronto-hero__visual {
        min-height: 510px;
    }

    .pronto-hero__media {
        width: 450px;
        inset-block-end: -105px;
    }

    .pronto-hero__service-card {
        width: 105px;
    }

    .pronto-hero__service-card--cleaning {
        width: 100px;
    }

    .pronto-hero__service-card--laundry {
        inset-inline-start: -5px;
        inset-block-start: 47%;
    }

    .pronto-hero__service-card--cleaning {
        inset-inline-start: 34%;
        inset-block-start: 24%;
    }

    .pronto-hero__pattern::before {
        width: 760px;
        height: 501px;
        inset-block-start: 0;
        left: 50%;
        right: auto;
        background-position: center top;
        background-size: 760px 501px;
        transform: translateX(-50%);
    }

    .pronto-hero__pattern::after {
        content: none;
    }

    .pronto-device-art {
        transform: translateX(-50%) scale(0.64);
    }

    [dir="rtl"] .pronto-device-art {
        transform: translateX(50%) scale(0.64);
    }

    .pronto-why__cards,
    .pronto-steps {
        grid-template-columns: 1fr;
    }

    .pronto-benefit {
        width: min(100%, 390px);
        margin: 32px auto 0;
    }

    .pronto-about__layout {
        gap: 45px;
    }

    .pronto-about__media {
        height: 390px;
        border-radius: 18px;
    }

    .pronto-story-block p {
        font-size: 16px;
    }

    .pronto-feature-stage {
        grid-template-columns: 1fr;
        gap: 64px;
        padding-block-start: 430px;
    }

    .pronto-feature-stage__media {
        width: 390px;
        max-width: 100%;
        height: 410px;
    }

    .pronto-feature-card {
        width: min(100%, 390px);
        margin-inline: auto;
    }

    .pronto-feature-device-placeholder i:first-child {
        inset-inline-start: 65px;
        font-size: 250px;
    }

    .pronto-feature-device-placeholder i:last-child {
        inset-inline-end: 55px;
        font-size: 240px;
    }

    .pronto-offer .pronto-section-heading--start {
        text-align: center;
    }

    .pronto-offer .pronto-eyebrow--start {
        justify-content: center;
    }

    .pronto-offer .pronto-eyebrow--start::before {
        display: block;
    }

    .pronto-step {
        width: min(100%, 382px);
        min-height: 0;
        margin-inline: auto;
    }

    .pronto-contact__layout {
        gap: 38px;
    }

    .pronto-contact__media,
    .pronto-contact__media > img,
    .pronto-contact__media-placeholder {
        min-height: 440px;
    }

    .pronto-contact__media > span {
        font-size: 50px;
    }

    .pronto-contact-info {
        grid-template-columns: 1fr;
    }

    .pronto-contact-form {
        grid-template-columns: 1fr;
    }

    .pronto-contact-form__message {
        grid-column: auto;
        grid-row: auto;
    }

    .pronto-contact-form .pronto-submit {
        position: static;
        width: 100%;
        height: 44px;
        min-height: 44px;
        inset: auto;
        justify-self: stretch;
    }

    .pronto-footer__stores {
        width: 100%;
        justify-content: center;
    }

    .pronto-footer__stores a {
        min-width: 0;
        flex: 1;
    }
}

@media (max-width: 479px) {
    .pronto-navigation {
        width: calc(100% - 32px);
        inset-inline-end: 16px;
    }

    .pronto-hero {
        min-height: 940px;
    }

    .pronto-hero__content {
        min-height: 940px;
    }

    .pronto-hero h1 {
        font-size: 36px;
    }

    .pronto-store-link,
    .pronto-store-link:nth-child(2) {
        width: 100%;
    }

    .pronto-hero__visual {
        min-height: 420px;
    }

    .pronto-hero__media {
        width: 380px;
        inset-block-end: -75px;
    }

    .pronto-hero__service-card {
        width: 90px;
    }

    .pronto-hero__service-card--cleaning {
        width: 86px;
    }

    .pronto-hero__service-card--laundry {
        inset-inline-start: 0;
    }

    .pronto-device-art {
        transform: translateX(-50%) scale(0.52);
    }

    [dir="rtl"] .pronto-device-art {
        transform: translateX(50%) scale(0.52);
    }

    .pronto-section-heading h2,
    .pronto-about h2,
    .pronto-offer h2 {
        font-size: 30px;
    }

    .pronto-story-block {
        padding-inline: 20px;
    }

    .pronto-step__copy {
        padding: 25px 14px 0 24px;
    }

    [dir="rtl"] .pronto-step__copy {
        padding: 25px 24px 0 14px;
    }

    .pronto-step__number {
        --pronto-step-number-edge: 12px;
        inset-block-start: 18px;
        font-size: 38px;
    }

    .pronto-step h3 {
        font-size: 20px;
    }

    .pronto-step p {
        font-size: 12px;
        inset-block-start: 70px;
        inset-inline-start: 24px;
    }

    [dir="rtl"] .pronto-step p {
        inset-inline-start: auto;
        inset-inline-end: 24px;
    }

    .pronto-contact__media > span {
        font-size: 42px;
    }

    .pronto-footer__stores {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .pronto-landing *,
    .pronto-landing *::before,
    .pronto-landing *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .pronto-landing.has-reveal [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
