@font-face {
  font-family: "IRANSansX";
  src: url("assets/fonts/IRANSansX-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansX";
  src: url("assets/fonts/IRANSansX-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansX";
  src: url("assets/fonts/IRANSansX-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --blue: #3498db;
  --blue-dark: #1879bb;
  --blue-soft: #edf7fd;
  --ink: #20262d;
  --muted: #6d7680;
  --line: #e9edf0;
  --surface: #f7f9fa;
  --white: #fff;
  --green: #28a66a;
  --red: #df4b4b;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 16px 45px rgba(31, 55, 72, .09);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "IRANSansX", Tahoma, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 82px;
}
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: -60px; right: 16px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 10px; }
.skip-link:focus { top: 0; }

.site-header { height: 72px; background: rgba(255,255,255,.94); border-bottom: 1px solid transparent; position: sticky; top: 0; z-index: 50; transition: .25s ease; backdrop-filter: blur(14px); }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 25px rgba(35,54,69,.06); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--blue); color: white; }
.brand-mark svg { width: 29px; stroke-width: 2; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy b { font-size: 25px; }
.brand-copy small { font-family: Arial, sans-serif; font-size: 10px; letter-spacing: 1.6px; color: var(--muted); margin-top: 4px; }
.desktop-nav { display: none; align-items: center; gap: 30px; font-size: 18px; color: #4e5862; }
.desktop-nav a { position: relative; padding: 24px 0; }
.desktop-nav a::after { content: ""; position: absolute; right: 50%; bottom: 17px; width: 0; height: 2px; background: var(--blue); border-radius: 4px; transition: .2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--blue-dark); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 18px; right: calc(50% - 9px); }
.account-button { border: 0; background: var(--surface); width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #46515b; }
.account-button svg { width: 21px; }
.account-button span { display: none; }

.hero { padding-top: 8px; }
.hero-media { min-height: 610px; overflow: hidden; border-radius: 0 0 var(--radius-lg) var(--radius-lg); position: relative; background: #d5cec5; }
.hero-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,24,28,.08), rgba(19,28,34,.7)); }
.hero-content { position: absolute; inset: auto 20px 42px 20px; color: white; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 5px 11px; backdrop-filter: blur(8px); }
.eyebrow i { width: 6px; height: 6px; background: #7fcaff; border-radius: 50%; box-shadow: 0 0 0 4px rgba(127,202,255,.15); }
.hero h1 { font-size: clamp(36px, 10vw, 66px); letter-spacing: -.04em; line-height: 1.35; margin: 14px 0 6px; }
.hero-content > p { color: rgba(255,255,255,.84); margin: 0 0 22px; font-size: 18px; }
.hero-actions { display: grid; gap: 10px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 13px; padding: 0 20px; border: 1px solid transparent; transition: transform .2s, background .2s, box-shadow .2s; font-weight: 700; }
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg { width: 18px; }
.button-primary { color: white; background: var(--blue); box-shadow: 0 10px 25px rgba(52,152,219,.28); }
.button-primary:hover { background: var(--blue-dark); }
.button-glass { color: white; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.button-large { min-height: 54px; }
.hero-note { display: none; position: absolute; left: 22px; bottom: 20px; color: white; font-size: 14px; align-items: center; gap: 7px; opacity: .8; }
.hero-note i { width: 6px; height: 6px; border-radius: 50%; background: #65dc9d; }

.mobile-priority-actions { display: none; }

.trust-strip { background: white; border-bottom: 1px solid var(--line); }
.trust-list { padding: 17px 0; display: flex; overflow-x: auto; gap: 24px; scrollbar-width: none; }
.trust-list::-webkit-scrollbar { display: none; }
.trust-list > div { display: flex; align-items: center; flex: 0 0 auto; min-width: 180px; gap: 10px; }
.trust-list svg { width: 26px; color: var(--blue); }
.trust-list span { display: grid; line-height: 1.5; }
.trust-list b { font-size: 15px; }
.trust-list small { font-size: 13px; color: var(--muted); }

.section { padding: 70px 0; }
.section-heading { margin-bottom: 30px; }
.section-heading.centered { text-align: center; }
.section-heading > span, .section-heading > div > span { color: var(--blue-dark); font-size: 15px; font-weight: 800; letter-spacing: .03em; }
.section-heading h2 { font-size: clamp(25px, 5vw, 37px); line-height: 1.45; letter-spacing: -.035em; margin: 5px 0 7px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; }
.heading-row { display: flex; align-items: end; justify-content: space-between; }
.text-link { border: 0; background: transparent; color: var(--blue-dark); font-size: 16px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; padding: 8px 0; }
.desktop-only { display: none; }

.steps-section { background: var(--surface); }
.steps { list-style: none; margin: 35px 0 0; padding: 0; display: grid; gap: 15px; }
.steps li { display: flex; align-items: center; gap: 16px; background: white; border: 1px solid var(--line); padding: 18px; border-radius: var(--radius); }
.step-icon { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 17px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-dark); position: relative; }
.step-icon svg { width: 27px; }
.step-icon b { position: absolute; top: -7px; right: -7px; width: 23px; height: 23px; background: var(--blue); color: white; border: 3px solid white; border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
.steps h3 { margin: 0 0 3px; font-size: 19px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.service-grid { display: grid; grid-auto-flow: column; grid-auto-columns: 80%; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 2px 15px; margin-inline: -2px; scrollbar-width: none; }
.service-grid::-webkit-scrollbar { display: none; }
.service-card { scroll-snap-align: start; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; transition: .25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card > img { width: 100%; height: 260px; object-fit: cover; }
.service-card-body { padding: 17px; }
.service-card-body h3 { margin: 0 0 3px; font-size: 21px; }
.service-card-body p { margin: 0; color: var(--muted); font-size: 14px; min-height: 38px; }
.service-card-body button { width: 100%; height: 43px; margin-top: 13px; background: var(--blue-soft); color: var(--blue-dark); font-weight: 800; border: 0; border-radius: 11px; font-size: 15px; transition: .2s; }
.service-card-body button:hover { background: var(--blue); color: white; }

.portfolio-section { background: #f8fafb; }
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; gap: 10px; }
.portfolio-grid figure { position: relative; overflow: hidden; border-radius: 15px; margin: 0; background: #ddd; }
.portfolio-grid figure.wide { grid-column: span 2; }
.portfolio-grid figure.portrait { grid-row: span 2; }
.portfolio-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.portfolio-grid figure:hover img { transform: scale(1.035); }
.portfolio-grid figcaption { position: absolute; inset: auto 10px 10px; padding: 9px 12px; border-radius: 10px; color: white; background: rgba(23,30,35,.55); backdrop-filter: blur(8px); display: grid; line-height: 1.45; }
.portfolio-grid figcaption b { font-size: 14px; }
.portfolio-grid figcaption span { font-size: 11px; opacity: .78; }
.mobile-only { display: flex; }
.button-outline { background: white; color: var(--blue-dark); border-color: #cfe5f3; }
.portfolio-more { margin-top: 22px; }

.booking-banner { background: var(--blue); color: white; }
.booking-banner-inner { padding: 48px 0; text-align: center; }
.booking-banner span { font-size: 15px; opacity: .8; }
.booking-banner h2 { font-size: 32px; margin: 3px 0; }
.booking-banner p { font-size: 15px; opacity: .82; margin: 0 0 22px; }
.button-white { background: white; color: var(--blue-dark); box-shadow: 0 12px 25px rgba(20,84,126,.2); }

.site-footer { background: #1c252d; color: #d8e0e6; }
.footer-grid { padding: 55px 0 35px; display: grid; gap: 35px; }
.brand-light .brand-copy small { color: #98a5ae; }
.footer-brand > p { color: #9facb5; font-size: 15px; max-width: 330px; margin: 18px 0; }
.socials { display: flex; gap: 9px; }
.socials a { width: 37px; height: 37px; display: grid; place-items: center; background: #27333c; border-radius: 10px; color: white; }
.socials svg { width: 18px; }
.footer-column { display: grid; align-content: start; gap: 8px; }
.footer-column h3 { color: white; font-size: 18px; margin: 0 0 9px; }
.footer-column a, .footer-column button { color: #9facb5; font-size: 15px; text-align: right; border: 0; background: none; padding: 0; width: fit-content; }
.footer-column a:hover, .footer-column button:hover { color: white; }
.contact-list p { margin: 0; display: flex; align-items: flex-start; gap: 9px; color: #9facb5; font-size: 15px; }
.contact-list svg { width: 16px; flex: 0 0 16px; color: #68baf0; margin-top: 3px; }
.footer-bottom { padding: 19px 0 105px; border-top: 1px solid #303b44; display: flex; justify-content: space-between; gap: 15px; font-size: 13px; color: #778690; }
.footer-bottom p { margin: 0; }
.footer-bottom a span { color: #68baf0; font-size: 18px; }

.mobile-nav { position: fixed; z-index: 60; bottom: 0; right: 0; left: 0; height: calc(72px + env(safe-area-inset-bottom)); padding: 7px 7px env(safe-area-inset-bottom); display: grid; grid-template-columns: repeat(5, 1fr); align-items: end; background: rgba(255,255,255,.97); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(30,47,61,.08); backdrop-filter: blur(14px); }
.mobile-nav > a, .mobile-nav > button { height: 58px; border: 0; background: none; color: #8a949c; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 0; font-size: 11px; }
.mobile-nav svg { width: 21px; height: 21px; }
.mobile-nav .active { color: var(--blue-dark); }
.mobile-nav .mobile-booking { color: var(--blue-dark); overflow: visible; }
.mobile-booking i { width: 55px; height: 55px; margin-top: -28px; border: 5px solid white; border-radius: 18px; display: grid; place-items: center; background: var(--blue); color: white; box-shadow: 0 8px 20px rgba(52,152,219,.35); font-style: normal; }
.mobile-booking i svg { width: 25px; }
.mobile-booking span { margin-top: 3px; font-weight: 800; }

.modal { position: fixed; inset: 0; z-index: 100; visibility: hidden; opacity: 0; transition: .25s; }
.modal.open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(19,27,33,.58); backdrop-filter: blur(4px); }
.booking-sheet { position: absolute; right: 0; bottom: 0; left: 0; background: white; border-radius: 26px 26px 0 0; padding: 27px 20px calc(24px + env(safe-area-inset-bottom)); transform: translateY(105%); transition: transform .3s ease; max-height: 90vh; overflow-y: auto; }
.modal.open .booking-sheet { transform: translateY(0); }
.modal-close { position: absolute; top: 18px; left: 18px; width: 36px; height: 36px; display: grid; place-items: center; border: 0; background: var(--surface); border-radius: 10px; color: #6f7981; }
.modal-close svg { width: 19px; }
.modal-kicker { color: var(--blue-dark); font-size: 14px; font-weight: 800; }
.booking-sheet h2 { margin: 5px 0 3px; font-size: 25px; }
.booking-sheet > p { color: var(--muted); font-size: 14px; margin: 0 0 20px; max-width: 460px; }
.quick-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.quick-services button { height: 76px; border: 1px solid var(--line); border-radius: 14px; background: white; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: #4a545c; font-size: 14px; }
.quick-services button span { font-size: 25px; line-height: 1.3; filter: grayscale(.4); }
.quick-services button.selected { border-color: var(--blue); color: var(--blue-dark); background: var(--blue-soft); box-shadow: inset 0 0 0 1px var(--blue); font-weight: 800; }
.modal-continue { width: 100%; margin-top: 18px; }
.modal-continue:disabled { background: #cfd6db; box-shadow: none; cursor: not-allowed; }
.booking-hint { color: #7b858d; display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 11px; margin-top: 11px; }
.booking-hint svg { width: 13px; color: var(--green); }
.toast { position: fixed; z-index: 150; bottom: 92px; left: 50%; transform: translate(-50%, 20px); background: #26323a; color: white; font-size: 14px; border-radius: 11px; padding: 11px 16px; opacity: 0; visibility: hidden; transition: .25s; white-space: nowrap; box-shadow: var(--shadow); }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

@media (min-width: 600px) {
  .container { width: min(calc(100% - 52px), var(--container)); }
  .hero-media { min-height: 650px; }
  .hero-content { right: 50px; left: auto; width: 480px; text-align: right; }
  .hero-actions { grid-template-columns: 1.15fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps li { display: grid; text-align: center; justify-items: center; padding: 25px 15px; }
  .service-grid { grid-auto-columns: 43%; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .contact-list { grid-column: 1 / -1; }
  .booking-sheet { width: min(560px, calc(100% - 36px)); right: 50%; bottom: 20px; left: auto; border-radius: 26px; padding: 30px; transform: translate(50%, calc(105% + 20px)); }
  .modal.open .booking-sheet { transform: translate(50%, 0); }
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .site-header { height: 82px; }
  .desktop-nav { display: flex; }
  .account-button { width: auto; padding: 0 15px; display: flex; gap: 8px; }
  .account-button span { display: inline; font-size: 15px; font-weight: 700; }
  .hero { padding-top: 18px; }
  .hero-media { min-height: 650px; border-radius: var(--radius-lg); }
  .hero-media > img { object-position: center; }
  .hero-scrim { background: linear-gradient(270deg, rgba(15,24,30,.7) 2%, rgba(16,24,30,.32) 48%, rgba(19,27,33,.05) 75%); }
  .hero-content { right: 7.5%; bottom: 50%; transform: translateY(50%); width: 510px; }
  .hero h1 { margin-top: 18px; }
  .hero-content > p { font-size: 19px; }
  .hero-actions { width: 405px; }
  .hero-note { display: inline-flex; }
  .trust-list { justify-content: center; gap: clamp(70px, 10vw, 150px); }
  .section { padding: 100px 0; }
  .desktop-only { display: inline-flex; }
  .mobile-only { display: none; }
  .steps { gap: 0; position: relative; }
  .steps::before { content: ""; position: absolute; top: 39px; right: 16.5%; left: 16.5%; height: 1px; border-top: 1px dashed #cbdde8; }
  .steps li { border: 0; background: transparent; position: relative; padding: 0 35px; }
  .step-icon { width: 78px; height: 78px; border: 8px solid var(--surface); box-shadow: 0 0 0 1px #daeaf4; }
  .step-icon svg { width: 28px; }
  .steps h3 { margin-top: 12px; font-size: 20px; }
  .service-grid { grid-auto-flow: initial; grid-template-columns: repeat(4, 1fr); overflow: visible; gap: 18px; }
  .service-card > img { height: 245px; }
  .service-card.featured { grid-column: span 2; }
  .service-card.featured > img { height: 245px; }
  .service-card.featured .service-card-body { display: flex; justify-content: space-between; align-items: center; }
  .service-card.featured .service-card-body button { width: auto; min-width: 120px; margin: 0; }
  .portfolio-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 260px; gap: 15px; }
  .portfolio-grid figure.wide { grid-column: span 2; }
  .portfolio-grid figure.portrait { grid-row: span 2; }
  .portfolio-grid figcaption { opacity: 0; transform: translateY(7px); transition: .25s; }
  .portfolio-grid figure:hover figcaption { opacity: 1; transform: none; }
  .booking-banner-inner { display: flex; justify-content: space-between; align-items: center; text-align: right; padding: 58px 0; }
  .booking-banner p { margin-bottom: 0; }
  .button-white { min-width: 210px; }
  .footer-grid { grid-template-columns: 1.6fr .8fr .8fr 1.2fr; }
  .contact-list { grid-column: auto; }
  .footer-bottom { padding-bottom: 19px; }
  .mobile-nav { display: none; }
  .toast { bottom: 28px; }
}

@media (max-width: 599px) {
  body { padding-bottom: 94px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { height: 64px; }
  .brand { gap: 8px; }
  .brand-mark { width: 36px; height: 36px; border-radius: 10px; }
  .brand-mark svg { width: 27px; }
  .brand-copy b { font-size: 22px; }
  .brand-copy small { font-size: 9px; }

  .hero { width: 100%; padding-top: 0; }
  .hero-media { min-height: 550px; border-radius: 0 0 26px 26px; }
  .hero-media > img { object-position: 58% center; }
  .hero-scrim { background: linear-gradient(180deg, rgba(15,22,28,.06) 18%, rgba(14,22,28,.82) 100%); }
  .hero-content { inset: auto 18px 26px; }
  .hero h1 { margin: 11px 0 5px; font-size: clamp(38px, 11vw, 48px); line-height: 1.3; }
  .hero-content > p { margin-bottom: 17px; font-size: 16px; }
  .hero-actions { gap: 8px; }
  .hero-actions .button { min-height: 52px; }

  .mobile-priority-actions { display: grid; gap: 9px; margin-top: 14px; }
  .priority-action { width: 100%; min-height: 76px; padding: 10px 12px; display: grid; grid-template-columns: 46px minmax(0,1fr) 20px; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 17px; background: #fff; color: var(--ink); text-align: right; box-shadow: 0 8px 24px rgba(31,55,72,.06); }
  .priority-action-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--blue-soft); color: var(--blue-dark); }
  .priority-action-icon svg { width: 23px; }
  .priority-action > span:nth-child(2) { display: grid; line-height: 1.5; }
  .priority-action b { font-size: 16px; }
  .priority-action small { color: var(--muted); font-size: 11px; }
  .priority-arrow { width: 18px; color: #9aa7ae; }
  .priority-booking { border-color: #bfe1f5; background: linear-gradient(135deg,#f7fcff,#edf8fe); }
  .priority-booking .priority-action-icon { background: var(--blue); color: #fff; }

  .trust-list { gap: 12px; padding-block: 14px; scroll-snap-type: x mandatory; }
  .trust-list > div { min-width: 165px; scroll-snap-align: start; }
  .section { padding: 52px 0; }
  .section-heading { margin-bottom: 22px; }
  .section-heading h2 { font-size: 28px; }
  .section-heading p { font-size: 14px; }
  .steps { margin-top: 24px; gap: 10px; }
  .steps li { padding: 15px; gap: 13px; border-radius: 16px; }
  .step-icon { width: 52px; height: 52px; flex-basis: 52px; border-radius: 15px; }
  .steps h3 { font-size: 17px; }
  .steps p { font-size: 13px; }

  .service-grid { grid-auto-columns: 88%; gap: 11px; padding-bottom: 12px; scroll-padding-inline: 2px; }
  .service-card > img { height: 290px; }
  .service-card-body { padding: 16px; }
  .service-card-body button { height: 48px; }

  .portfolio-grid { display: grid; grid-template-columns: none; grid-template-rows: none; grid-auto-flow: column; grid-auto-columns: 84%; grid-auto-rows: 390px; gap: 11px; overflow-x: auto; padding: 2px 2px 13px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .portfolio-grid::-webkit-scrollbar { display: none; }
  .portfolio-grid figure, .portfolio-grid figure.wide, .portfolio-grid figure.portrait { grid-column: auto; grid-row: auto; scroll-snap-align: center; border-radius: 18px; }
  .portfolio-grid figcaption { right: 12px; bottom: 12px; left: 12px; padding: 11px 13px; }
  .portfolio-grid figcaption b { font-size: 16px; }
  .portfolio-grid figcaption span { font-size: 12px; }
  .portfolio-more { width: 100%; min-height: 52px; margin-top: 15px; }

  .booking-banner-inner { padding: 42px 0; }
  .booking-banner h2 { font-size: 28px; }
  .booking-banner .button { width: 100%; }
  .footer-grid { padding-top: 42px; }
  .mobile-nav { height: calc(82px + env(safe-area-inset-bottom)); padding: 8px 5px env(safe-area-inset-bottom); }
  .mobile-nav > a, .mobile-nav > button { height: 66px; font-size: 11px; }
  .mobile-nav svg { width: 23px; height: 23px; }
  .mobile-booking i { width: 60px; height: 60px; margin-top: -32px; border-radius: 19px; }

  .booking-sheet { padding: 25px 16px calc(18px + env(safe-area-inset-bottom)); max-height: 94vh; }
  .booking-sheet h2 { padding-left: 40px; font-size: 24px; }
  .quick-services { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .quick-services button { height: 70px; flex-direction: row; gap: 8px; font-size: 15px; }
  .quick-services button span { font-size: 23px; }
  .modal-continue { min-height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
