:root {
  --color-navy-950: #06182f;
  --color-navy-900: #082441;
  --color-blue-700: #0758b6;
  --color-blue-600: #0f6dd8;
  --color-cyan-500: #13b8b0;
  --color-cyan-100: #dff8f6;
  --color-ink: #0d203a;
  --color-muted: #181a1f;
  --color-line: #d8e5f1;
  --color-soft: #f4f8fc;
  --color-white: #ffffff;
  --gradient-brand: linear-gradient(135deg, #0d4fa5 0%, #1484dc 55%, #18b9b1 100%);
  --shadow-soft: 0 18px 52px rgba(15, 58, 103, 0.1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: min(1240px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; font-family: Manrope, Arial, sans-serif; font-size: 1.0625rem; line-height: 1.65; color: var(--color-ink); background: var(--color-white); }
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.glass-panel { background: rgba(255, 255, 255, 0.82); border: 1px solid rgba(255, 255, 255, 0.9); backdrop-filter: blur(18px); box-shadow: var(--shadow-soft); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 1px solid transparent; border-radius: 13px; font-weight: 800; font-size: 0.9rem; cursor: pointer; transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--color-navy-900), var(--color-blue-700)); }
.button--light { color: var(--color-navy-950); background: #fff; }
.button--outline { color: var(--color-blue-700); background: transparent; border-color: #a9cae9; }
.button--full { width: 100%; }

.icon-button { width: 44px; height: 44px; display: inline-grid; place-items: center; border: 1px solid rgba(137, 222, 228, 0.26); border-radius: 12px; color: #b9f6f0; background: rgba(19, 145, 154, 0.19); font-size: 1.05rem; transition: background 0.2s ease, transform 0.2s ease; }
.icon-button:hover { background: rgba(19, 145, 154, 0.32); transform: translateY(-2px); }
.icon-button--whatsapp { color: #90f0c8; }
.icon-button--hero { width: 52px; height: 52px; color: var(--color-blue-700); background: #fff; border-color: #c8ddef; }
.icon-button--hero.icon-button--whatsapp { color: #08a967; }

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand__icon { width: 46px; height: 46px; object-fit: contain; }
.brand__copy { display: grid; line-height: 1.02; }
.brand__copy strong { font-size: 0.9rem; letter-spacing: 0.01em; }
.brand__copy small { color: #78dce5; font-size: 0.63rem; font-weight: 800; letter-spacing: 0.03em; }

.header { position: sticky; top: 0; z-index: 50; color: #fff; background: rgba(6, 30, 58, 0.97); box-shadow: 0 8px 24px rgba(2, 15, 31, 0.14); backdrop-filter: blur(16px); }
.header__container { height: 82px; display: flex; align-items: center; gap: 28px; }
.header__nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-left: auto; }
.header__nav a { color: #dce8f4; font-size: 0.86rem; font-weight: 700; white-space: nowrap; }
.header__nav a:hover { color: #fff; }
.header__actions { display: flex; align-items: center; gap: 9px; }
.header__cta { min-height: 44px; padding-inline: 18px; }
.header__menu-button { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; color: #fff; background: transparent; cursor: pointer; }
.mobile-nav { padding: 10px 20px 20px; background: var(--color-navy-950); }
.mobile-nav a { display: block; padding: 13px 8px; border-bottom: 1px solid rgba(255,255,255,0.1); font-weight: 700; }

.language { position: relative; }
.language__button { min-width: 58px; height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,0.16); border-radius: 12px; color: #fff; background: rgba(255,255,255,0.06); cursor: pointer; }
.language__button i { font-size: 0.68rem; }
.language__menu { position: absolute; top: calc(100% + 10px); right: 0; min-width: 72px; padding: 7px; border: 1px solid var(--color-line); border-radius: 12px; background: #fff; box-shadow: var(--shadow-soft); }
.language__menu button { width: 100%; padding: 8px; border: 0; border-radius: 8px; color: var(--color-ink); background: transparent; cursor: pointer; font-weight: 800; }
.language__menu button:hover { background: var(--color-soft); }

.hero { overflow: hidden; background: radial-gradient(circle at 12% 20%, #edf7ff 0, transparent 35%), #fff; }
.hero__container { min-height: 670px; display: grid; grid-template-columns: 48% 52%; align-items: stretch; }
.hero__content { align-self: center; padding: 78px 46px 78px 0; position: relative; z-index: 2; }
.hero__title { margin: 0 0 26px; font-size: clamp(3.25rem, 5.3vw, 5.35rem); line-height: 0.98; letter-spacing: -0.055em; }
.hero__title span, .hero__title strong { display: block; }
.hero__title strong { margin-top: 8px; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__description { max-width: 680px; margin: 0 0 30px; color: #4e627a; font-size: 1.12rem; line-height: 1.72; }
.hero__description b { color: var(--color-ink); }
.hero__benefits { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-benefit { min-width: 158px; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid #e2ebf4; border-radius: 15px; background: rgba(255,255,255,0.88); box-shadow: 0 12px 30px rgba(19, 62, 105, 0.07); }
.hero-benefit i { font-size: 1.55rem; color: var(--color-blue-700); }
.hero-benefit span { display: grid; line-height: 1.18; }
.hero-benefit b { font-size: 0.9rem; }
.hero-benefit small { color: var(--color-muted); font-size: 0.76rem; }
.hero__actions { display: flex; align-items: center; gap: 12px; }
.hero__actions .button { min-width: 220px; }
.hero__media { min-height: 670px; width: calc(100% + max(20px, (100vw - 1240px) / 2)); margin-right: calc(-1 * max(20px, (100vw - 1240px) / 2)); background: url('../images/hero.webp') center / cover no-repeat; border-radius: 18% 0 0 18% / 50% 0 0 50%; overflow: hidden; }

.section-heading { max-width: 800px; margin-bottom: 42px; }
.section-heading--left { text-align: left; }
.section-heading__eyebrow { display: block; margin-bottom: 11px; color: var(--color-blue-700); font-size: 0.9rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.section-heading__title { margin: 0; font-size: clamp(2.35rem, 4vw, 3.8rem); line-height: 1.06; letter-spacing: -0.04em; }
.section-heading__description { margin: 16px 0 0; color: var(--color-muted); font-size: 1.08rem; }

.about { background: linear-gradient(180deg, #f4f8fc 0%, #fff 100%); }
.about__container { display: grid; grid-template-columns: 54% 46%; align-items: stretch; }
.about__media { min-height: 590px; overflow: hidden; border-radius: var(--radius-lg) 0 0 var(--radius-lg); box-shadow: var(--shadow-soft); }
.about__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about__content { display: flex; flex-direction: column; justify-content: center; padding: 58px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.about__content .section-heading { margin-bottom: 20px; }
.about__description { margin: 0; color: var(--color-muted); font-size: 1.08rem; }
.about__description b { color: var(--color-ink); }
.check-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; }
.check-list__icon { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--gradient-brand); font-size: 0.72rem; }

.services { background: radial-gradient(circle at 50% 0, rgba(255,255,255,0.95), rgba(230,243,255,0.88) 60%, #edf6ff 100%); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 330px; display: flex; flex-direction: column; padding: 25px; border: 1px solid rgba(191, 214, 235, 0.88); border-radius: var(--radius-md); background: rgba(255,255,255,0.82); transition: transform 0.22s ease, border-color 0.22s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #8dbbe6; }
.service-card__header { display: flex; align-items: center; gap: 14px; }
.service-card__icon { width: 52px; height: 52px; flex: 0 0 52px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(135deg, #e7f2ff, #e4fbf8); font-size: 1.6rem; }
.service-card__icon i { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.service-card__title { margin: 0; font-size: 1.08rem; line-height: 1.28; }
.service-card__description { margin: 18px 0 22px; color: var(--color-muted); font-size: 0.94rem; line-height: 1.6; }
.service-card__meta { display: grid; gap: 5px; margin-top: auto; }
.service-card__meta span { display: flex; align-items: center; gap: 8px; color: #4f6982; font-size: 0.92rem; }
.service-card__meta span i { color: var(--color-blue-700); }
.service-card__meta strong { color: var(--color-blue-700); font-size: 1.25rem; }
.service-card__actions { display: grid; grid-template-columns: 1fr 1.12fr; gap: 9px; margin-top: 18px; }
.service-card__actions .button { min-height: 44px; padding-inline: 10px; font-size: 0.77rem; }

.process { background: #fff; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process__steps::before { content: ''; position: absolute; top: 27px; left: 8%; right: 8%; border-top: 2px dashed #a2c5e6; }
.process-step { position: relative; padding: 0 20px; text-align: center; }
.process-step__number { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; color: #fff; background: var(--gradient-brand); font-size: 1.15rem; font-weight: 800; position: relative; z-index: 1; }
.process-step__heading { display: flex; align-items: center; justify-content: center; gap: 9px; }
.process-step__heading i { color: var(--color-blue-700); font-size: 1.25rem; }
.process-step__heading h3 { margin: 0; font-size: 1.06rem; }
.process-step p { max-width: 230px; margin: 12px auto 0; color: var(--color-muted); font-size: 0.95rem; }

.advantages { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.96), rgba(228,243,255,0.86) 58%, #edf6ff 100%); }
.advantages::before, .advantages::after { content: ''; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(61, 135, 207, 0.15); border-radius: 48% 52% 42% 58%; }
.advantages::before { left: -300px; top: 10px; transform: rotate(16deg); }
.advantages::after { right: -300px; bottom: -110px; transform: rotate(-15deg); }
.advantages__layout { min-height: 480px; display: grid; grid-template-columns: 1fr 190px 1fr; grid-template-rows: 1fr 1fr; gap: 24px 52px; align-items: stretch; position: relative; }
.advantages__connectors { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.advantages__connectors path { fill: none; stroke: #6f9dcc; stroke-width: 2; vector-effect: non-scaling-stroke; }
.advantages__connectors circle { fill: #fff; stroke: var(--color-cyan-500); stroke-width: 3; vector-effect: non-scaling-stroke; }
.advantages__center { grid-column: 2; grid-row: 1 / 3; align-self: center; justify-self: center; width: 160px; height: 160px; display: grid; place-items: center; border: 1px solid #bbd6ed; border-radius: 50%; background: rgba(255,255,255,0.95); box-shadow: var(--shadow-soft); position: relative; z-index: 2; }
.advantages__center img { width: 104px; height: 104px; object-fit: contain; }
.advantage-card { display: grid; grid-template-columns: 160px 1fr; gap: 18px; align-items: center; padding: 16px; border-radius: 20px; position: relative; z-index: 1; }
.advantage-card img { width: 160px; height: 124px; object-fit: cover; border-radius: 15px; }
.advantage-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.advantage-card p { margin: 0; color: var(--color-muted); font-size: 0.93rem; }
.advantage-card--left-top { grid-column: 1; grid-row: 1; }
.advantage-card--right-top { grid-column: 3; grid-row: 1; }
.advantage-card--left-bottom { grid-column: 1; grid-row: 2; }
.advantage-card--right-bottom { grid-column: 3; grid-row: 2; }

.reviews { background: #fff; }
.reviews__heading { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.google-rating { min-width: 220px; display: grid; grid-template-columns: auto auto; align-items: center; gap: 2px 10px; padding: 14px 18px; border: 1px solid var(--color-line); border-radius: 16px; }
.google-rating__brand { font-size: 1.05rem; font-weight: 800; color: #4285f4; }
.google-rating strong { font-size: 1.35rem; }
.google-rating__stars { color: #f6ad00; letter-spacing: 1px; }
.google-rating small { color: var(--color-muted); }
.reviews__slider { position: relative; padding: 0 58px; }
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; gap: 20px; transition: transform 0.45s ease; }
.review-card { flex: 0 0 calc((100% - 40px) / 3); padding: 24px; border: 1px solid var(--color-line); border-radius: 18px; background: #fff; }
.review-card__top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.review-card__google { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #4285f4, #34a853); font-weight: 800; }
.review-card__top div { display: grid; }
.review-card__stars { color: #f6ad00; letter-spacing: 1px; font-size: 0.84rem; }
.review-card p { margin: 0 0 18px; color: var(--color-muted); font-size: 0.95rem; }
.review-card a { color: var(--color-blue-700); font-size: 0.82rem; font-weight: 800; }
.slider-button { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--color-line); border-radius: 50%; color: var(--color-blue-700); background: #fff; cursor: pointer; }
.slider-button--prev { left: 0; }
.slider-button--next { right: 0; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.slider-dots__item { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 99px; background: #c6d7e8; cursor: pointer; }
.slider-dots__item.is-active { width: 28px; background: var(--color-blue-700); }

.partners { padding: 0 0 86px; background: #fff; }
.partners__box { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 25px 28px; border-radius: 22px; background: linear-gradient(110deg, rgba(231,246,255,0.92), rgba(255,255,255,0.88)); }
.partners__icon { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 18px; color: var(--color-blue-700); background: #e6f3ff; font-size: 1.8rem; }
.partners h2 { margin: 0 0 4px; font-size: 1.45rem; }
.partners p { margin: 0; color: var(--color-muted); font-size: 0.94rem; }

.faq { background: radial-gradient(circle at 50% 0, rgba(255,255,255,0.95), rgba(230,243,255,0.88) 60%, #edf6ff 100%); }
.faq__list { max-width: 940px; display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid #cfe0ef; border-radius: 15px; background: rgba(255,255,255,0.86); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; border: 0; background: transparent; text-align: left; font-weight: 800; cursor: pointer; }
.faq-item__question i { color: var(--color-blue-700); transition: transform 0.25s ease; }
.faq-item.is-open .faq-item__question i { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item__answer p { margin: 0; padding: 0 22px 20px; color: var(--color-muted); }

.map { min-height: 560px; position: relative; overflow: hidden; background: #e6eff8; }
.map::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(229,242,253,0.18), rgba(229,242,253,0.08)); pointer-events: none; }
.map__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.82) sepia(0.12) hue-rotate(168deg) saturate(0.78) brightness(1.1) contrast(0.9); }
.map__container { min-height: 560px; display: flex; align-items: center; justify-content: flex-end; position: relative; z-index: 2; pointer-events: none; }
.map__pin { position: absolute; left: max(6vw, calc((100vw - 1240px) / 2 + 40px)); top: 47%; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 15px; border: 0; border-radius: 14px; color: #fff; background: rgba(6, 31, 61, 0.92); box-shadow: var(--shadow-soft); cursor: pointer; }
.map__pin i { color: #ff5a4f; font-size: 1.4rem; }
.map__pin span { font-size: 0.78rem; font-weight: 800; }
.map__popover { position: absolute; left: max(6vw, calc((100vw - 1240px) / 2 + 40px)); top: calc(47% + 58px); z-index: 4; width: 280px; display: grid; gap: 5px; padding: 17px; border: 1px solid #d2e2ef; border-radius: 15px; background: rgba(255,255,255,0.94); box-shadow: var(--shadow-soft); }
.map__popover span { color: var(--color-muted); font-size: 0.85rem; }
.map__popover a { margin-top: 7px; color: var(--color-blue-700); font-size: 0.8rem; font-weight: 800; }
.contact-form { width: min(470px, 100%); padding: 34px; border-radius: 26px; pointer-events: auto; }
.contact-form h2 { margin: 5px 0 24px; font-size: 2rem; line-height: 1.15; }
.form-field { display: block; position: relative; margin-bottom: 13px; }
.form-field i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #3f84c5; }
.form-field--textarea i { top: 18px; transform: none; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid #bcd4e9; border-radius: 12px; background: rgba(255,255,255,0.92); padding: 14px 15px 14px 46px; color: var(--color-ink); outline: none; }
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--color-blue-600); box-shadow: 0 0 0 4px rgba(15,109,216,0.11); }
.form-field.is-invalid input, .form-field.is-invalid textarea { border-color: #d74a58; }
.contact-form__status { min-height: 1.4em; margin: 10px 0 0; font-size: 0.82rem; }
.contact-form__status.is-error { color: #bd3141; }
.contact-form__status.is-success { color: #087d68; }

.footer { padding: 34px 0 18px; color: #fff; background: linear-gradient(135deg, #04172f, #082f58); }
.footer__container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 36px; }
.footer__legal { display: grid; justify-items: start; gap: 9px; }
.footer__legal a, .footer__contact > a { color: #d5e2ef; font-size: 0.84rem; }
.footer__brand { justify-self: center; }
.footer__contact { justify-self: end; display: grid; gap: 9px; }
.footer__contact > a { display: flex; align-items: center; gap: 9px; }
.footer__socials { display: flex; gap: 9px; margin-top: 4px; }
.footer__socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; color: #fff; }
.footer__bottom { margin-top: 26px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,0.12); color: #aebfd1; font-size: 0.74rem; text-align: center; }

.modal { width: min(650px, calc(100% - 28px)); padding: 36px; border: 0; border-radius: 26px; color: var(--color-ink); box-shadow: 0 32px 100px rgba(0,0,0,0.3); }
.modal::backdrop { background: rgba(2,14,28,0.7); backdrop-filter: blur(5px); }
.modal__close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--color-soft); cursor: pointer; }
.modal__icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 17px; background: linear-gradient(135deg, #e7f2ff, #e4fbf8); font-size: 1.75rem; }
.modal__icon i { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.modal__title { margin: 0 0 14px; font-size: 2rem; line-height: 1.12; }
.modal__description { color: var(--color-muted); }
.modal__meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 22px 0; padding: 16px; border-radius: 14px; background: var(--color-soft); }
.modal__meta span { display: flex; align-items: center; gap: 9px; }
.modal__meta > strong { color: var(--color-blue-700); font-size: 1.25rem; }
.modal__actions { display: flex; gap: 10px; margin-top: 26px; }
.modal__actions .button { flex: 1; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 100; max-width: min(520px, calc(100% - 30px)); padding: 13px 17px; border-radius: 12px; color: #fff; background: rgba(6,31,61,0.95); opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1120px) {
  :root { --container: min(100% - 32px, 980px); }
  .header__nav { display: none; }
  .header__menu-button { display: grid; place-items: center; }
  .hero__container { grid-template-columns: 1fr 1fr; }
  .hero__content { padding-right: 28px; }
  .hero__title { font-size: clamp(3rem, 6vw, 4.4rem); }
  .hero__media { width: calc(100% + 16px); margin-right: -16px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .advantages__layout { grid-template-columns: 1fr 150px 1fr; gap-inline: 28px; }
  .advantage-card { grid-template-columns: 120px 1fr; }
  .advantage-card img { width: 120px; height: 110px; }
  .review-card { flex-basis: calc((100% - 20px) / 2); }
}

@media (max-width: 820px) {
  body { font-size: 1rem; }
  .section { padding: 76px 0; }
  .header__container { height: 72px; }
  .header__cta, .language { display: none; }
  .hero__container { grid-template-columns: 1fr; }
  .hero__content { padding: 58px 0 42px; }
  .hero__title { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .hero__description { font-size: 1.02rem; }
  .hero__media { width: 100%; min-height: 430px; margin: 0; border-radius: 30px; }
  .about__container { grid-template-columns: 1fr; }
  .about__media { min-height: 420px; border-radius: 26px 26px 0 0; }
  .about__content { padding: 38px 28px; border-radius: 0 0 26px 26px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 36px 18px; }
  .process__steps::before { display: none; }
  .advantages__layout { min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 16px; }
  .advantages__connectors, .advantages__center { display: none; }
  .advantage-card--left-top, .advantage-card--right-top, .advantage-card--left-bottom, .advantage-card--right-bottom { grid-column: auto; grid-row: auto; }
  .advantage-card { grid-template-columns: 110px 1fr; }
  .advantage-card img { width: 110px; height: 105px; }
  .reviews__heading { align-items: flex-start; flex-direction: column; }
  .review-card { flex-basis: 100%; }
  .partners__box { grid-template-columns: auto 1fr; }
  .partners__box .button { grid-column: 1 / -1; }
  .map { min-height: 740px; }
  .map__container { min-height: 740px; align-items: flex-end; justify-content: center; padding-bottom: 26px; }
  .contact-form { width: min(560px, 100%); }
  .map__pin { top: 100px; left: 28px; }
  .map__popover { top: 156px; left: 28px; }
  .footer__container { grid-template-columns: 1fr; text-align: center; }
  .footer__legal, .footer__contact { justify-self: center; justify-items: center; }
  .footer__brand { grid-row: 1; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 22px); }
  .brand__icon { width: 38px; height: 38px; }
  .brand__copy strong { font-size: 0.76rem; }
  .brand__copy small { font-size: 0.54rem; }
  .header__actions { gap: 6px; }
  .header__actions > .icon-button { display: none; }
  .hero__title { font-size: 2.7rem; }
  .hero__benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .hero-benefit { min-width: 0; display: grid; justify-items: center; padding: 11px 7px; text-align: center; }
  .hero-benefit i { font-size: 1.28rem; }
  .hero-benefit b { font-size: 0.78rem; }
  .hero-benefit small { font-size: 0.65rem; }
  .hero__actions .button { flex: 1; min-width: 0; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .process__steps { grid-template-columns: 1fr; }
  .process-step { display: grid; grid-template-columns: 64px 1fr; text-align: left; }
  .process-step__number { grid-row: 1 / 3; margin: 0; }
  .process-step__heading { justify-content: flex-start; }
  .process-step p { max-width: none; margin: 9px 0 0; }
  .advantages__layout { grid-template-columns: 1fr; }
  .advantage-card { grid-template-columns: 100px 1fr; }
  .advantage-card img { width: 100px; height: 100px; }
  .reviews__slider { padding: 0 42px; }
  .partners__box { grid-template-columns: 1fr; text-align: center; }
  .partners__icon { justify-self: center; }
  .google-rating { min-width: 0; width: 100%; }
  .map__pin { left: 14px; }
  .map__popover { left: 14px; width: calc(100% - 28px); }
  .contact-form { padding: 26px 20px; }
  .modal { padding: 30px 22px; }
  .modal__actions { flex-direction: column; }
}

/* ===== Warm white and orange palette ===== */
:root {
  --color-navy-950: #17233a;
  --color-navy-900: #1d2c46;
  --color-blue-700: #ff6b00;
  --color-blue-600: #ff7a00;
  --color-cyan-500: #ff9a3c;
  --color-cyan-100: #fff0e4;
  --color-ink: #17233a;
  --color-muted: #657082;
  --color-line: #eedfd3;
  --color-soft: #fff8f2;
  --color-white: #ffffff;
  --gradient-brand: linear-gradient(135deg, #ff6100 0%, #ff7900 55%, #ff9d3f 100%);
  --shadow-soft: 0 18px 52px rgba(112, 66, 27, 0.09);
}

body { color: var(--color-ink); background: #fff; }
.glass-panel { background: rgba(255, 255, 255, 0.88); border-color: rgba(239, 222, 207, 0.92); box-shadow: var(--shadow-soft); }
.button--primary { background: var(--gradient-brand); }
.button--light { color: var(--color-ink); background: #fff; border-color: #f1d8c5; }
.button--outline { color: #f06400; border-color: #f2b886; }

.icon-button { color: #ff6b00; background: #fff8f2; border-color: #f3c49f; }
.icon-button:hover { background: #fff0e4; }
.icon-button--whatsapp { color: #ff6b00; }
.icon-button--hero { color: #ff6b00; background: #fff; border-color: #f2c5a2; }
.icon-button--hero.icon-button--whatsapp { color: #ff6b00; }

.brand__icon,
.advantages__center img { filter: brightness(0) saturate(100%) invert(48%) sepia(96%) saturate(3710%) hue-rotate(1deg) brightness(103%) contrast(104%); }
.brand__copy small { color: #ff6b00; }

.header { color: var(--color-ink); background: rgba(255, 255, 255, 0.97); box-shadow: 0 8px 24px rgba(94, 55, 25, 0.08); }
.header__nav a { color: #26344a; }
.header__nav a:hover { color: #ff6b00; }
.header .icon-button { color: #ff6b00; background: #fff8f2; border-color: #f2c5a2; }
.header .button--light { color: #fff; background: var(--gradient-brand); border-color: transparent; }
.header__menu-button { color: #ff6b00; background: #fff8f2; border-color: #f2c5a2; }
.mobile-nav { background: #fff; box-shadow: 0 12px 24px rgba(94, 55, 25, 0.08); }
.mobile-nav a { color: var(--color-ink); border-bottom-color: #f1e2d6; }
.language__button { color: var(--color-ink); background: #fff8f2; border-color: #f2c5a2; }
.language__menu { background: #fff; border-color: #edd9ca; }

.hero { background: radial-gradient(circle at 12% 20%, #fff4eb 0, transparent 35%), #fff; }
.hero__title strong { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__description { color: #5d6879; }
.hero-benefit { border-color: #f0e1d5; background: rgba(255, 255, 255, 0.92); box-shadow: 0 12px 30px rgba(105, 62, 27, 0.06); }
.hero-benefit i { color: #ff6b00; }

.section-heading__eyebrow { color: #ff6b00; }
.about { background: linear-gradient(180deg, #fff8f2 0%, #fff 100%); }
.check-list__icon { background: var(--gradient-brand); }

.services { background: radial-gradient(circle at 50% 0, rgba(255,255,255,0.97), rgba(255,247,240,0.94) 60%, #fff4ea 100%); }
.service-card { border-color: rgba(239, 219, 202, 0.92); background: rgba(255,255,255,0.9); }
.service-card:hover { border-color: #f5a566; }
.service-card__icon { background: linear-gradient(135deg, #fff0e4, #fff8f2); }
.service-card__meta span { color: #6d7280; }
.service-card__meta span i,
.service-card__meta strong { color: #ff6b00; }

.process { background: #fff; }
.process__steps::before { border-top-color: #f1bd91; }
.process-step__number { background: var(--gradient-brand); }
.process-step__heading i { color: #ff6b00; }

.advantages { background: linear-gradient(180deg, #fff8f2 0%, #fff 100%); }
.advantages::before,
.advantages::after { border-color: rgba(255, 122, 0, 0.14); }
.advantage-card { border-color: rgba(239, 219, 202, 0.92); background: rgba(255,255,255,0.9); }
.advantages__center { border-color: #f3c6a4; background: rgba(255,255,255,0.94); }
.advantages__connectors path { stroke: #f3a464; }
.advantages__connectors circle { fill: #ff6b00; stroke: #fff; }

.reviews { background: #fff; }
.google-rating { border-color: #f1dfd1; background: #fffaf6; }
.google-rating__value,
.review-card a { color: #ff6b00; }
.review-card { border-color: #efdfd2; background: #fff; }
.slider-button { color: #ff6b00; background: #fff; border-color: #efd9c7; }
.slider-dots__item { background: #ead8ca; }
.slider-dots__item.is-active { background: #ff6b00; }

.partners { background: #fff; }
.partners__box { background: linear-gradient(110deg, #fff7ef, #fff); border-color: #efdccc; }
.partners__icon { color: #ff6b00; background: #fff0e4; }

.faq { background: linear-gradient(180deg, #fff8f2 0%, #fff 100%); }
.faq-item { border-color: #eadbce; background: rgba(255,255,255,0.92); }
.faq-item__question i { color: #ff6b00; }

.map { background: #fff6ee; }
.map::after { background: linear-gradient(90deg, rgba(255,247,239,0.18), rgba(255,247,239,0.08)); }
.map__frame { filter: grayscale(0.72) sepia(0.18) hue-rotate(335deg) saturate(0.78) brightness(1.08) contrast(0.9); }
.map__pin { background: rgba(255, 107, 0, 0.94); }
.map__pin i { color: #fff; }
.map__popover { border-color: #ead8ca; background: rgba(255,255,255,0.96); }
.map__popover a { color: #ff6b00; }
.contact-form { background: rgba(255,255,255,0.9); border: 1px solid #eddccd; }
.form-field i { color: #ff6b00; }
.form-field input,
.form-field textarea { border-color: #e6d7ca; background: rgba(255,255,255,0.96); }
.form-field input:focus,
.form-field textarea:focus { border-color: #ff7a00; box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.11); }

.footer { color: var(--color-ink); background: #fff; border-top: 1px solid #efdfd2; }
.footer__legal a,
.footer__contact > a { color: #596578; }
.footer__socials a { color: #fff; background: #ff6b00; border-color: #ff6b00; }
.footer__bottom { color: #7a8492; border-top-color: #efdfd2; }

.modal { background: #fff; }
.modal::backdrop { background: rgba(31, 26, 21, 0.62); }
.modal__close { background: #fff4ea; }
.modal__icon { background: linear-gradient(135deg, #fff0e4, #fff8f2); }
.modal__meta { background: #fff8f2; }
.modal__meta > strong { color: #ff6b00; }
.toast { background: rgba(34, 40, 52, 0.96); }


/* ===== Requested UI refinements ===== */
.header__container { justify-content: space-between; gap: 28px; }
.header__nav { margin-left: 0; flex: 1; justify-content: center; gap: 42px; }
.header__nav a { font-size: 1.02rem; font-weight: 700; }
.header__actions { margin-left: 0; }

.hero-benefit, .service-card, .advantage-card, .review-card, .faq-item, .contact-form {
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 139, 28, 0.18);
  box-shadow: 0 14px 40px rgba(31, 41, 55, 0.08);
}

.service-card { min-height: 415px; }
.service-card__header { align-items: stretch; gap: 16px; }
.service-card__thumb { width: 96px; height: 96px; flex: 0 0 96px; object-fit: cover; border-radius: 18px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.service-card__title-wrap { display: flex; align-items: center; gap: 14px; flex: 1; }
.service-card__icon { width: 48px; height: 48px; flex: 0 0 48px; }
.service-card__title { font-size: 1.35rem; line-height: 1.24; }
.service-card__description { font-size: 1.25rem; line-height: 1.55; }
.service-card__meta span { font-size: 1rem; }
.service-card__meta strong { font-size: 1.6rem; }
.service-card__actions .button { min-height: 48px; font-size: 0.95rem; }

.advantage-card { align-items: stretch; min-height: 250px; }
.advantage-card img { width: 210px; height: 100%; min-height: 216px; object-fit: cover; object-position: center; border-radius: 18px; }
.advantage-card p, .about__description, .section-heading__description, .hero__description, .process-step p, .review-card p, .faq-item__answer p, .map__popover span, .footer__about p { font-size: 1.25rem; line-height: 1.58; }
.advantage-card h3 { font-size: 1.55rem; }

.hero__description b, .about__description b, .section-heading__description b, .service-card__description b, .process-step p b, .advantage-card p b, .review-card p b, .faq-item__answer p b, .map__popover span b, .footer__about p b { color: #ff6b00; font-weight: 800; }

.advantages__connectors circle { animation: pulseDot 1.9s ease-in-out infinite; transform-origin: center; }
@keyframes pulseDot {
  0%, 100% { opacity: .9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); filter: drop-shadow(0 0 9px rgba(255, 107, 0, 0.35)); }
}

@media (max-width: 1280px) {
  .header__nav { gap: 28px; }
  .header__nav a { font-size: 0.96rem; }
}
@media (max-width: 1050px) {
  .service-card__thumb { width: 84px; height: 84px; flex-basis: 84px; }
  .service-card__title { font-size: 1.22rem; }
  .service-card__description, .advantage-card p, .about__description, .section-heading__description, .process-step p, .review-card p, .faq-item__answer p { font-size: 1.125rem; }
  .advantage-card img { width: 170px; min-height: 180px; }
}
@media (max-width: 900px) {
  .header__nav { display: none; }
  .service-card { min-height: 370px; }
  .service-card__header { flex-direction: column; align-items: flex-start; }
  .service-card__thumb { width: 100%; height: 160px; flex-basis: auto; }
  .service-card__title-wrap { width: 100%; }
  .advantage-card { min-height: auto; }
  .advantage-card img { width: 140px; height: 140px; min-height: 140px; }
}
@media (max-width: 560px) {
  .service-card__description, .advantage-card p, .about__description, .section-heading__description, .process-step p, .review-card p, .faq-item__answer p { font-size: 1rem; }
}


/* ===== final requested tweaks ===== */
:root {
  --final-glass-bg: linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.18) 100%);
  --final-glass-border: rgba(255,255,255,0.55);
  --final-glass-shadow: 0 12px 34px rgba(31, 38, 52, 0.10), inset 0 1px 0 rgba(255,255,255,0.78), inset 0 -1px 0 rgba(255,255,255,0.16);
}

.hero-benefit,
.service-card,
.advantage-card,
.review-card,
.faq-item,
.partners__box,
.contact-form,
.modal,
.map__popover,
.about__media,
.about__content {
  background: var(--final-glass-bg);
  border: 1px solid var(--final-glass-border);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  box-shadow: var(--final-glass-shadow);
}

/* services: image first, title under image */
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.20) 100%);
  min-height: 440px;
}
.service-card__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.service-card__thumb {
  width: 100%;
  height: 170px;
  flex: 0 0 auto;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}
.service-card__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.service-card__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 18px;
  background: rgba(255, 118, 0, 0.10);
}
.service-card__title {
  font-size: 1.35rem;
  line-height: 1.18;
}
.service-card__description {
  margin-top: 10px;
}

/* advantages dots: static, only glow blinks */
.advantages__connectors circle {
  transform: none;
  animation: connectorGlowOnly 1.8s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes connectorGlowOnly {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 0 rgba(255, 122, 0, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 122, 0, 0.55)) drop-shadow(0 0 18px rgba(255, 122, 0, 0.26));
  }
}

/* keep cards crisp */
.advantage-card,
.review-card,
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0.16) 100%);
}

@media (max-width: 900px) {
  .service-card__thumb {
    height: 150px;
  }
}


/* ===== precise layout corrections ===== */
/* Process line starts at the first step centre and ends at the fourth step centre. */
.process__steps::before {
  left: 12.5%;
  right: 12.5%;
}

/* More room for advantage cards; smaller centre construction. */
.advantages__layout {
  grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
  column-gap: 24px;
  row-gap: 28px;
}
.advantages__center {
  width: 112px;
  height: 112px;
}
.advantages__center img {
  width: 68px;
  height: 68px;
}
.advantage-card {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  min-height: 270px;
  padding: 24px;
}
.advantage-card img {
  width: 180px;
  height: 100%;
  min-height: 220px;
}
.advantage-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.25;
}
.advantage-card p {
  line-height: 1.55;
}

/* Centre the FAQ heading and question panels. */
.faq .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.faq__list {
  width: min(980px, 100%);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1120px) {
  .advantages__layout {
    grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
    column-gap: 18px;
  }
  .advantages__center {
    width: 92px;
    height: 92px;
  }
  .advantages__center img {
    width: 56px;
    height: 56px;
  }
  .advantage-card {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
  }
  .advantage-card img {
    width: 150px;
  }
}

@media (max-width: 820px) {
  .advantages__layout {
    grid-template-columns: 1fr 1fr;
  }
  .advantage-card {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 0;
  }
  .advantage-card img {
    width: 120px;
    height: 140px;
    min-height: 140px;
  }
}

@media (max-width: 560px) {
  .advantages__layout {
    grid-template-columns: 1fr;
  }
}

/* ===== correction: compact advantages + visible static pulse + centered FAQ ===== */
.advantages__layout {
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(190px, auto));
  column-gap: 22px;
  row-gap: 22px;
  align-items: center;
}

.advantage-card {
  grid-template-columns: 138px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 196px;
  height: auto;
  padding: 18px 20px;
}

.advantage-card img {
  width: 138px;
  height: 146px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.advantage-card h3 {
  margin: 0 0 9px;
  font-size: 1.42rem;
  line-height: 1.16;
}

.advantage-card p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.42;
}

.advantages__center {
  width: 96px;
  height: 96px;
  animation: centerGlowOnly 1.8s ease-in-out infinite;
  transform: none;
}

.advantages__center img {
  width: 58px;
  height: 58px;
  transform: none;
}

.advantages__connectors circle {
  transform: none;
  animation: connectorGlowOnlyStrong 1.8s ease-in-out infinite;
}

@keyframes centerGlowOnly {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 107, 0, 0), 0 10px 28px rgba(34, 40, 52, 0.08);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 107, 0, 0.08), 0 0 26px rgba(255, 107, 0, 0.42), 0 10px 28px rgba(34, 40, 52, 0.08);
  }
}

@keyframes connectorGlowOnlyStrong {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 0 rgba(255, 107, 0, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.70)) drop-shadow(0 0 16px rgba(255, 107, 0, 0.34));
  }
}

.faq .section-heading {
  width: min(860px, 100%);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq__list {
  width: min(860px, 100%);
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.faq-item__question {
  position: relative;
  justify-content: center;
  text-align: center;
  padding-left: 54px;
  padding-right: 54px;
}

.faq-item__question i {
  position: absolute;
  right: 22px;
}

.faq-item__answer p {
  max-width: 740px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
  text-align: center;
}

@media (max-width: 1120px) {
  .advantages__layout {
    grid-template-columns: minmax(0, 1fr) 82px minmax(0, 1fr);
    column-gap: 16px;
  }
  .advantages__center {
    width: 82px;
    height: 82px;
  }
  .advantages__center img {
    width: 50px;
    height: 50px;
  }
  .advantage-card {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
    min-height: 184px;
    padding: 16px;
  }
  .advantage-card img {
    width: 116px;
    height: 136px;
  }
  .advantage-card h3 {
    font-size: 1.24rem;
  }
  .advantage-card p {
    font-size: 1rem;
  }
}

@media (max-width: 820px) {
  .advantages__layout {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .advantage-card {
    grid-template-columns: 110px minmax(0, 1fr);
    min-height: 0;
  }
  .advantage-card img {
    width: 110px;
    height: 124px;
  }
}

@media (max-width: 560px) {
  .advantages__layout {
    grid-template-columns: 1fr;
  }
  .advantage-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
  .advantage-card img {
    width: 96px;
    height: 112px;
  }
}


/* ===== decorative section backgrounds: about / advantages / FAQ ===== */
.about,
.advantages,
.faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about > .container,
.advantages > .container,
.faq > .container {
  position: relative;
  z-index: 2;
}

.about::before,
.about::after,
.advantages::before,
.advantages::after,
.faq::before,
.faq::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* About: tilted glass-like contours with a warmer, stronger glow. */
.about::before {
  width: 700px;
  height: 700px;
  left: -330px;
  top: -260px;
  border: 2px solid rgba(255, 112, 0, 0.28);
  border-radius: 44% 56% 60% 40% / 48% 42% 58% 52%;
  transform: rotate(18deg);
  box-shadow:
    0 0 0 46px rgba(255, 133, 31, 0.035),
    0 0 90px rgba(255, 118, 0, 0.10);
}

.about::after {
  width: 520px;
  height: 520px;
  right: -210px;
  bottom: -250px;
  border: 2px solid rgba(255, 151, 63, 0.24);
  border-radius: 58% 42% 46% 54% / 44% 55% 45% 56%;
  transform: rotate(-24deg);
  box-shadow:
    0 0 0 34px rgba(255, 177, 102, 0.04),
    0 0 80px rgba(255, 136, 39, 0.08);
}

/* Advantages: preserve the organic style, but make it more visible and distinct. */
.advantages::before {
  width: 640px;
  height: 640px;
  left: -350px;
  top: -70px;
  border: 2px solid rgba(255, 107, 0, 0.25);
  border-radius: 58% 42% 50% 50% / 44% 57% 43% 56%;
  transform: rotate(12deg);
  box-shadow:
    0 0 0 44px rgba(255, 122, 0, 0.035),
    0 0 100px rgba(255, 114, 0, 0.10);
}

.advantages::after {
  width: 610px;
  height: 610px;
  right: -330px;
  bottom: -170px;
  border: 2px dashed rgba(255, 151, 63, 0.28);
  border-radius: 45% 55% 61% 39% / 55% 45% 55% 45%;
  transform: rotate(-17deg);
  box-shadow:
    0 0 0 34px rgba(255, 165, 82, 0.03),
    0 0 92px rgba(255, 136, 39, 0.08);
}

/* FAQ: concentric arcs, clearly visible but still behind the content. */
.faq::before {
  width: 760px;
  height: 760px;
  left: -390px;
  top: -330px;
  border: 2px solid rgba(255, 107, 0, 0.30);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(255, 122, 0, 0.045),
    0 0 0 108px rgba(255, 122, 0, 0.022),
    0 0 110px rgba(255, 112, 0, 0.10);
}

.faq::after {
  width: 620px;
  height: 620px;
  right: -310px;
  bottom: -300px;
  border: 2px solid rgba(255, 156, 70, 0.27);
  border-radius: 42% 58% 50% 50% / 58% 44% 56% 42%;
  transform: rotate(25deg);
  box-shadow:
    0 0 0 42px rgba(255, 165, 82, 0.035),
    0 0 95px rgba(255, 136, 39, 0.08);
}

@media (max-width: 820px) {
  .about::before,
  .advantages::before,
  .faq::before {
    opacity: 0.72;
    transform: scale(0.78) rotate(14deg);
    transform-origin: top left;
  }

  .about::after,
  .advantages::after,
  .faq::after {
    opacity: 0.66;
    transform: scale(0.76) rotate(-18deg);
    transform-origin: bottom right;
  }
}


/* ===== modern 2025 decorative backgrounds — no shadows, no dashed circles ===== */
.about::before,
.about::after,
.advantages::before,
.advantages::after,
.faq::before,
.faq::after {
  border: 0;
  box-shadow: none;
  filter: none;
}

/* About: soft asymmetric aurora panels. */
.about::before {
  width: 560px;
  height: 300px;
  left: -170px;
  top: 90px;
  border-radius: 72px 170px 110px 54px;
  transform: rotate(-11deg);
  background:
    radial-gradient(circle at 26% 38%, rgba(255, 111, 0, 0.17), transparent 44%),
    linear-gradient(135deg, rgba(255, 180, 111, 0.18), rgba(255, 255, 255, 0.02) 72%);
  opacity: 0.88;
}

.about::after {
  width: 430px;
  height: 250px;
  right: -120px;
  bottom: 70px;
  border-radius: 150px 54px 86px 160px;
  transform: rotate(10deg);
  background:
    radial-gradient(circle at 70% 42%, rgba(255, 132, 31, 0.16), transparent 46%),
    linear-gradient(315deg, rgba(255, 220, 188, 0.24), rgba(255, 255, 255, 0.01) 68%);
  opacity: 0.9;
}

/* Advantages: cleaner, more visible ribbon-like shapes. */
.advantages::before {
  width: 660px;
  height: 280px;
  left: -220px;
  top: 110px;
  border-radius: 62px 190px 82px 150px;
  transform: rotate(7deg);
  background:
    linear-gradient(115deg, rgba(255, 107, 0, 0.16), rgba(255, 173, 92, 0.09) 46%, rgba(255,255,255,0) 78%);
  opacity: 1;
}

.advantages::after {
  width: 590px;
  height: 260px;
  right: -190px;
  bottom: 90px;
  border-radius: 180px 58px 150px 86px;
  transform: rotate(-8deg);
  background:
    linear-gradient(295deg, rgba(255, 117, 15, 0.15), rgba(255, 200, 151, 0.10) 48%, rgba(255,255,255,0) 78%);
  opacity: 1;
}

/* FAQ: subtle editorial blocks instead of circles. */
.faq::before {
  width: 480px;
  height: 220px;
  left: -140px;
  top: 72px;
  border-radius: 44px 148px 92px 128px;
  transform: rotate(-6deg);
  background:
    linear-gradient(125deg, rgba(255, 118, 15, 0.14), rgba(255, 205, 164, 0.08) 58%, rgba(255,255,255,0) 84%);
  opacity: 0.95;
}

.faq::after {
  width: 520px;
  height: 210px;
  right: -170px;
  bottom: 54px;
  border-radius: 150px 52px 112px 82px;
  transform: rotate(7deg);
  background:
    linear-gradient(305deg, rgba(255, 132, 31, 0.13), rgba(255, 219, 189, 0.08) 58%, rgba(255,255,255,0) 84%);
  opacity: 0.95;
}

@media (max-width: 820px) {
  .about::before,
  .advantages::before,
  .faq::before {
    opacity: 0.62;
    transform: scale(0.72) rotate(-7deg);
    transform-origin: top left;
  }

  .about::after,
  .advantages::after,
  .faq::after {
    opacity: 0.58;
    transform: scale(0.72) rotate(7deg);
    transform-origin: bottom right;
  }
}


/* ===== rounded balanced decorative backgrounds ===== */
.about::before,
.about::after,
.advantages::before,
.advantages::after,
.faq::before,
.faq::after {
  border: 0;
  box-shadow: none;
  filter: none;
  transform: none;
  border-radius: 999px;
}

/* About: two balanced rounded capsules */
.about::before {
  width: 560px;
  height: 250px;
  left: -210px;
  top: 90px;
  background:
    radial-gradient(circle at 58% 50%, rgba(255, 116, 18, 0.18) 0%, rgba(255, 151, 76, 0.10) 44%, rgba(255,255,255,0) 74%);
  opacity: 0.92;
}

.about::after {
  width: 500px;
  height: 230px;
  right: -185px;
  bottom: 78px;
  background:
    radial-gradient(circle at 42% 50%, rgba(255, 140, 45, 0.16) 0%, rgba(255, 197, 145, 0.10) 46%, rgba(255,255,255,0) 76%);
  opacity: 0.90;
}

/* Advantages: soft round ovals that frame, not compete with, the cards */
.advantages::before {
  width: 620px;
  height: 300px;
  left: -250px;
  top: 130px;
  background:
    radial-gradient(ellipse at 62% 50%, rgba(255, 104, 0, 0.17) 0%, rgba(255, 166, 93, 0.09) 48%, rgba(255,255,255,0) 76%);
  opacity: 0.95;
}

.advantages::after {
  width: 620px;
  height: 300px;
  right: -250px;
  bottom: 130px;
  background:
    radial-gradient(ellipse at 38% 50%, rgba(255, 122, 18, 0.16) 0%, rgba(255, 196, 140, 0.09) 48%, rgba(255,255,255,0) 76%);
  opacity: 0.95;
}

/* FAQ: matching rounded pills with cleaner symmetry */
.faq::before {
  width: 470px;
  height: 190px;
  left: -175px;
  top: 88px;
  background:
    radial-gradient(ellipse at 62% 50%, rgba(255, 118, 16, 0.15) 0%, rgba(255, 183, 122, 0.08) 52%, rgba(255,255,255,0) 78%);
  opacity: 0.88;
}

.faq::after {
  width: 470px;
  height: 190px;
  right: -175px;
  bottom: 70px;
  background:
    radial-gradient(ellipse at 38% 50%, rgba(255, 137, 41, 0.14) 0%, rgba(255, 206, 166, 0.08) 52%, rgba(255,255,255,0) 78%);
  opacity: 0.88;
}

@media (max-width: 820px) {
  .about::before,
  .advantages::before,
  .faq::before {
    transform: scale(0.72);
    transform-origin: top left;
    opacity: 0.58;
  }

  .about::after,
  .advantages::after,
  .faq::after {
    transform: scale(0.72);
    transform-origin: bottom right;
    opacity: 0.54;
  }
}


/* ===== final modern rounded section accents ===== */
.about::before,
.about::after,
.advantages::before,
.advantages::after,
.faq::before,
.faq::after {
  border: 1px solid rgba(255, 130, 36, 0.10);
  border-radius: 56px;
  box-shadow: none;
  filter: none;
  transform: none;
  opacity: 1;
  overflow: hidden;
}

/* Calm, aligned rounded glass bands — visually tied to the card system. */
.about::before {
  width: min(720px, 46vw);
  height: 220px;
  left: -150px;
  top: 70px;
  background:
    radial-gradient(circle at 24% 50%, rgba(255, 116, 18, 0.13), transparent 42%),
    linear-gradient(135deg, rgba(255, 244, 234, 0.88), rgba(255,255,255,0.34));
}

.about::after {
  width: min(620px, 40vw);
  height: 180px;
  right: -120px;
  bottom: 80px;
  background:
    radial-gradient(circle at 76% 50%, rgba(255, 155, 76, 0.11), transparent 44%),
    linear-gradient(315deg, rgba(255, 247, 240, 0.82), rgba(255,255,255,0.30));
}

.advantages::before {
  width: min(760px, 48vw);
  height: 210px;
  left: -170px;
  top: 110px;
  background:
    radial-gradient(circle at 28% 50%, rgba(255, 107, 0, 0.14), transparent 40%),
    linear-gradient(135deg, rgba(255, 240, 226, 0.86), rgba(255,255,255,0.28));
}

.advantages::after {
  width: min(700px, 44vw);
  height: 210px;
  right: -160px;
  bottom: 110px;
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 139, 43, 0.13), transparent 42%),
    linear-gradient(315deg, rgba(255, 244, 234, 0.84), rgba(255,255,255,0.28));
}

.faq::before {
  width: min(680px, 44vw);
  height: 190px;
  left: -145px;
  top: 70px;
  background:
    radial-gradient(circle at 26% 50%, rgba(255, 120, 22, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 243, 232, 0.84), rgba(255,255,255,0.26));
}

.faq::after {
  width: min(640px, 42vw);
  height: 170px;
  right: -135px;
  bottom: 60px;
  background:
    radial-gradient(circle at 74% 50%, rgba(255, 151, 65, 0.11), transparent 44%),
    linear-gradient(315deg, rgba(255, 247, 240, 0.80), rgba(255,255,255,0.25));
}

@media (max-width: 820px) {
  .about::before,
  .advantages::before,
  .faq::before {
    width: 78vw;
    height: 150px;
    left: -34vw;
    transform: none;
    opacity: 0.72;
  }

  .about::after,
  .advantages::after,
  .faq::after {
    width: 72vw;
    height: 140px;
    right: -32vw;
    transform: none;
    opacity: 0.68;
  }
}

/* ===== Organic corner contours matching the supplied shape reference ===== */
.about::before,
.about::after,
.advantages::before,
.advantages::after,
.faq::before,
.faq::after {
  box-shadow: none;
  filter: none;
  transform: none;
  opacity: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 118, 18, 0.17);
}

/* Upper-left: a smooth, cropped organic corner instead of a floating capsule. */
.about::before,
.advantages::before,
.faq::before {
  width: 560px;
  height: 330px;
  left: -145px;
  top: -48px;
  border-radius: 0 42px 86% 0 / 0 42px 100% 0;
  background:
    radial-gradient(ellipse at 28% 24%, rgba(255, 126, 36, 0.12) 0%, rgba(255, 176, 108, 0.055) 46%, rgba(255,255,255,0) 73%),
    linear-gradient(145deg, rgba(255, 246, 238, 0.76), rgba(255,255,255,0.08));
}

/* Lower-right: mirrored partner with the same visual language. */
.about::after,
.advantages::after,
.faq::after {
  width: 560px;
  height: 330px;
  right: -145px;
  bottom: -48px;
  border-radius: 86% 0 0 42px / 100% 0 0 42px;
  background:
    radial-gradient(ellipse at 72% 76%, rgba(255, 139, 51, 0.105) 0%, rgba(255, 195, 145, 0.05) 47%, rgba(255,255,255,0) 74%),
    linear-gradient(325deg, rgba(255, 247, 241, 0.72), rgba(255,255,255,0.06));
}

/* Small section-specific differences so the accents do not look copied. */
.advantages::before {
  width: 610px;
  height: 350px;
  left: -170px;
  top: -58px;
  border-radius: 0 48px 82% 0 / 0 48px 96% 0;
  background:
    radial-gradient(ellipse at 30% 22%, rgba(255, 108, 0, 0.14) 0%, rgba(255, 174, 100, 0.06) 47%, transparent 73%),
    linear-gradient(145deg, rgba(255, 243, 232, 0.80), rgba(255,255,255,0.07));
}

.advantages::after {
  width: 610px;
  height: 350px;
  right: -170px;
  bottom: -58px;
  border-radius: 82% 0 0 48px / 96% 0 0 48px;
  background:
    radial-gradient(ellipse at 70% 78%, rgba(255, 128, 28, 0.125) 0%, rgba(255, 192, 139, 0.055) 48%, transparent 74%),
    linear-gradient(325deg, rgba(255, 245, 236, 0.76), rgba(255,255,255,0.06));
}

.faq::before {
  width: 520px;
  height: 300px;
  left: -140px;
  top: -46px;
}

.faq::after {
  width: 520px;
  height: 300px;
  right: -140px;
  bottom: -46px;
}

@media (max-width: 820px) {
  .about::before,
  .advantages::before,
  .faq::before {
    width: 390px;
    height: 230px;
    left: -175px;
    top: -30px;
    border-radius: 0 30px 86% 0 / 0 30px 100% 0;
  }

  .about::after,
  .advantages::after,
  .faq::after {
    width: 390px;
    height: 230px;
    right: -175px;
    bottom: -30px;
    border-radius: 86% 0 0 30px / 100% 0 0 30px;
  }
}

/* ===== Requested corrections — layout-preserving patch ===== */
:root {
  --color-muted: #2b323d;
}

.hero__description,
.about__description,
.section-heading__description,
.service-card__description,
.process-step p,
.advantage-card p,
.review-card p,
.partners p,
.faq-item__answer p,
.map__popover span,
.modal__description {
  color: #2b323d;
}

.about__button {
  align-self: flex-start;
  margin-top: 1.75rem;
}

.service-card__meta {
  gap: 0.45rem;
}

.service-card__time {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #2b323d;
  font-size: 1.08rem;
}

.service-card__time i {
  color: #ff6b00;
  font-size: 1.4rem;
}

.service-card__prices {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.service-card__prices del {
  color: #2b323d;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  text-decoration-thickness: 0.12rem;
  opacity: 0.78;
}

.service-card__prices strong {
  color: #ff6b00;
}

.faq-item__question {
  color: #ff6b00;
  font-size: 1.15rem;
}

.faq-item__answer p {
  font-size: 1rem;
}

.map__frame {
  width: 108%;
  transform: translateX(-8%);
}

.map__container {
  box-sizing: border-box;
  padding-block: 2.5rem;
}

.map__location {
  position: absolute;
  left: 47%;
  top: 47%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transform: translate(-100%, -50%);
}

.map__pin {
  position: static;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.map__pin i {
  color: #ff6b00;
  font-size: 3rem;
  filter: drop-shadow(0 0.25rem 0.35rem rgba(43, 50, 61, 0.24));
}

.map__popover {
  position: static;
  width: min(17.5rem, 30vw);
}

.map__popover span {
  font-size: 1rem;
}

.modal__prices {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.modal__prices del {
  color: #2b323d;
  font-size: 1rem;
  font-weight: 700;
  text-decoration-thickness: 0.12rem;
  opacity: 0.78;
}

.modal__prices strong {
  color: #ff6b00;
  font-size: 1.25rem;
}

@media (max-width: 820px) {
  .header__cta {
    display: none;
  }

  .language {
    display: block;
  }

  .hero__media {
    background-position: 70% center;
  }

  .map__frame {
    width: 116%;
    transform: translateX(-16%);
  }

  .map__container {
    padding-top: 15rem;
    padding-bottom: 2rem;
  }

  .map__location {
    left: 1.75rem;
    right: 1.75rem;
    top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: none;
  }

  .map__popover {
    width: min(100%, 20rem);
  }
}

@media (max-width: 560px) {
  .language__button {
    min-width: 3.375rem;
  }

  .map__location {
    left: 0.875rem;
    right: 0.875rem;
    gap: 0.5rem;
  }

  .map__pin {
    padding: 0;
  }

  .map__popover {
    padding: 0.875rem;
  }
}

/* ===== Hero: benefit cards on image + purchase bonus ===== */
.hero__offer {
  max-width: 33rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1.5rem;
  padding: 0.95rem 1.15rem;
  border: 0.0625rem solid rgba(255, 107, 0, 0.28);
  border-radius: 0.9rem;
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.11), rgba(255, 255, 255, 0.95));
  box-shadow: 0 0.75rem 1.75rem rgba(105, 62, 27, 0.08);
}

.hero__offer > i {
  flex: 0 0 auto;
  color: #ff6b00;
  font-size: 1.55rem;
}

.hero__offer span {
  display: grid;
  gap: 0.15rem;
  line-height: 1.2;
}

.hero__offer b {
  color: #17233a;
  font-size: 1rem;
}

.hero__offer small {
  color: #2b323d;
  font-size: 0.82rem;
}

.hero__media {
  position: relative;
}

.hero__media .hero__benefits {
  position: absolute;
  right: 7%;
  bottom: 4.5rem;
  left: 11%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0;
}

.hero__media .hero-benefit {
  min-width: 0;
  min-height: 5.6rem;
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.9rem 2.2rem rgba(23, 35, 58, 0.2);
}

.hero__media .hero-benefit i {
  flex: 0 0 auto;
  font-size: 1.65rem;
}

.hero__media .hero-benefit b {
  font-size: 0.92rem;
}

.hero__media .hero-benefit small {
  font-size: 0.72rem;
}

@media (max-width: 1120px) {
  .hero__media .hero__benefits {
    right: 1.2rem;
    bottom: 2rem;
    left: 3.5rem;
    gap: 0.55rem;
  }

  .hero__media .hero-benefit {
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    padding: 0.8rem 0.55rem;
    text-align: center;
  }
}

@media (max-width: 820px) {
  .hero__offer {
    max-width: none;
  }

  .hero__media .hero__benefits {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}

@media (max-width: 560px) {
  .hero__offer {
    gap: 0.7rem;
    padding: 0.8rem 0.9rem;
  }

  .hero__offer > i {
    font-size: 1.3rem;
  }

  .hero__offer b {
    font-size: 0.9rem;
  }

  .hero__offer small {
    font-size: 0.72rem;
  }

  .hero__media .hero__benefits {
    gap: 0.4rem;
  }

  .hero__media .hero-benefit {
    min-height: 4.8rem;
    padding: 0.65rem 0.35rem;
  }

  .hero__media .hero-benefit i {
    font-size: 1.25rem;
  }

  .hero__media .hero-benefit b {
    font-size: 0.72rem;
  }

  .hero__media .hero-benefit small {
    font-size: 0.58rem;
  }
}

/* ===== About section — compact requested update ===== */
.about {
  padding-block: 4.5rem;
}

.about__container {
  grid-template-columns: 40% 60%;
  align-items: stretch;
}

.about__media {
  min-height: 27rem;
}

.about__media img {
  object-position: center;
}

.about__content {
  justify-content: center;
  padding: 2.35rem 2.65rem;
}

.about__content .section-heading {
  max-width: 42rem;
  margin-bottom: 1rem;
}

.about__title {
  max-width: 42rem;
  font-size: clamp(2.25rem, 3.25vw, 3.2rem);
  line-height: 1.05;
}

.about__description {
  max-width: 47rem;
  font-size: 1.08rem;
  line-height: 1.55;
}

.about__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.about__benefits li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 107, 0, 0.16);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.55);
}

.about__benefit-icon {
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  color: #fff;
  background: var(--gradient-brand);
  font-size: 1.05rem;
}

.about__benefits li > span:last-child {
  min-width: 0;
  display: grid;
  line-height: 1.25;
}

.about__benefits b {
  font-size: 0.92rem;
}

.about__benefits small {
  margin-top: 0.18rem;
  color: #2b323d;
  font-size: 0.76rem;
}

.about__button {
  margin-top: 1.35rem;
}

@media (max-width: 820px) {
  .about {
    padding-block: 3.75rem;
  }

  .about__container {
    grid-template-columns: 1fr;
  }

  .about__media {
    min-height: 18rem;
  }

  .about__content {
    padding: 2rem 1.75rem;
  }

  .about__title {
    font-size: clamp(2rem, 7.5vw, 2.8rem);
  }
}

@media (max-width: 560px) {
  .about {
    padding-block: 3rem;
  }

  .about__media {
    min-height: 15.5rem;
  }

  .about__content {
    padding: 1.65rem 1.25rem;
  }

  .about__title {
    font-size: 2rem;
  }

  .about__description {
    font-size: 1rem;
  }

  .about__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .about__benefits li {
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.7rem;
  }

  .about__benefit-icon {
    width: 2.2rem;
    height: 2.2rem;
    flex-basis: 2.2rem;
    font-size: 0.88rem;
  }

  .about__benefits b {
    font-size: 0.8rem;
  }

  .about__benefits small {
    font-size: 0.66rem;
  }
}


/* ===== Requested correction: animated process section only ===== */
.process__steps {
  position: relative;
  isolation: isolate;
}

.process__steps::before,
.process__steps::after {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: 12.5%;
  right: 12.5%;
  height: 0.18rem;
  border: 0;
  border-radius: 999px;
  pointer-events: none;
}

.process__steps::before {
  z-index: 0;
  background: #f4d4b8;
}

.process__steps::after {
  z-index: 0;
  background: var(--gradient-brand);
  transform-origin: left center;
}

.process-step {
  z-index: 1;
  padding-inline: 1rem;
}

.process-step__number {
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  box-shadow: 0 0.75rem 1.8rem rgba(255, 107, 0, 0.2);
}

.process-step__heading {
  gap: 0.7rem;
}

.process-step__heading i {
  font-size: 1.7rem;
}

.process-step__heading h3 {
  font-size: 1.38rem;
  line-height: 1.2;
}

.process-step p {
  max-width: 15.5rem;
  margin-top: 0.7rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

.process__action {
  display: flex;
  justify-content: center;
  margin-top: 2.6rem;
}

.process__action .button {
  min-width: 13rem;
}

.process.process--motion-ready .process__steps::after {
  transform: scaleX(0);
}

.process.process--motion-ready .process-step {
  opacity: 0;
  transform: translateY(1.25rem);
}

.process.process--motion-ready.is-animated .process__steps::after {
  animation: process-line-draw 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.process.process--motion-ready.is-animated .process-step {
  animation: process-step-reveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.process.process--motion-ready.is-animated .process-step:nth-child(1) { animation-delay: 0.12s; }
.process.process--motion-ready.is-animated .process-step:nth-child(2) { animation-delay: 0.52s; }
.process.process--motion-ready.is-animated .process-step:nth-child(3) { animation-delay: 0.92s; }
.process.process--motion-ready.is-animated .process-step:nth-child(4) { animation-delay: 1.32s; }

@keyframes process-line-draw {
  to { transform: scaleX(1); }
}

@keyframes process-step-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 821px) and (max-width: 1050px) {
  .process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .process-step {
    display: block;
    padding-inline: 0.35rem;
    text-align: center;
  }

  .process-step__number {
    margin-inline: auto;
  }

  .process-step__heading {
    justify-content: center;
  }

  .process-step p {
    margin-inline: auto;
    font-size: 0.92rem;
  }

  .process-step__heading h3 {
    font-size: 1.14rem;
  }
}

@media (max-width: 820px) {
  .process__steps {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .process__steps::before,
  .process__steps::after {
    top: 2.2rem;
    bottom: 2.2rem;
    left: 2.1rem;
    right: auto;
    width: 0.18rem;
    height: auto;
  }

  .process__steps::after {
    transform-origin: center top;
  }

  .process.process--motion-ready .process__steps::after {
    transform: scaleY(0);
  }

  .process.process--motion-ready.is-animated .process__steps::after {
    animation-name: process-line-draw-vertical;
  }

  .process-step {
    display: grid;
    grid-template-columns: 4.4rem minmax(0, 1fr);
    column-gap: 1rem;
    padding: 0;
    text-align: left;
  }

  .process-step__number {
    grid-row: 1 / 3;
    margin: 0;
  }

  .process-step__heading {
    justify-content: flex-start;
    padding-top: 0.25rem;
  }

  .process-step p {
    max-width: none;
    margin: 0.55rem 0 0;
  }

  .process__action {
    margin-top: 2.2rem;
  }
}

@keyframes process-line-draw-vertical {
  to { transform: scaleY(1); }
}

@media (max-width: 520px) {
  .process-step__heading h3 {
    font-size: 1.22rem;
  }

  .process-step__heading i {
    font-size: 1.45rem;
  }

  .process-step p {
    font-size: 0.96rem;
  }

  .process__action .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process.process--motion-ready .process__steps::after,
  .process.process--motion-ready .process-step,
  .process.process--motion-ready.is-animated .process__steps::after,
  .process.process--motion-ready.is-animated .process-step {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ===== Requested correction: reveal animations for the earlier sections only ===== */
.hero.motion-reveal-ready .hero__title,
.hero.motion-reveal-ready .hero__description,
.hero.motion-reveal-ready .hero__offer,
.hero.motion-reveal-ready .hero__actions,
.hero.motion-reveal-ready .hero__media,
.hero.motion-reveal-ready .hero-benefit,
.about.motion-reveal-ready .about__media,
.about.motion-reveal-ready .section-heading,
.about.motion-reveal-ready .about__description,
.about.motion-reveal-ready .about__benefits li,
.about.motion-reveal-ready .about__button {
  opacity: 0;
  will-change: opacity, transform;
}

.hero.motion-reveal-ready .hero__title,
.hero.motion-reveal-ready .hero__description,
.hero.motion-reveal-ready .hero__offer,
.hero.motion-reveal-ready .hero__actions,
.hero.motion-reveal-ready .hero-benefit,
.about.motion-reveal-ready .section-heading,
.about.motion-reveal-ready .about__description,
.about.motion-reveal-ready .about__benefits li,
.about.motion-reveal-ready .about__button {
  transform: translateY(1.15rem);
}

.hero.motion-reveal-ready .hero__media {
  transform: translateX(1.5rem);
}

.about.motion-reveal-ready .about__media {
  transform: translateX(-1.5rem);
}

.hero.motion-reveal-ready.is-visible .hero__title,
.hero.motion-reveal-ready.is-visible .hero__description,
.hero.motion-reveal-ready.is-visible .hero__offer,
.hero.motion-reveal-ready.is-visible .hero__actions,
.hero.motion-reveal-ready.is-visible .hero__media,
.hero.motion-reveal-ready.is-visible .hero-benefit,
.about.motion-reveal-ready.is-visible .about__media,
.about.motion-reveal-ready.is-visible .section-heading,
.about.motion-reveal-ready.is-visible .about__description,
.about.motion-reveal-ready.is-visible .about__benefits li,
.about.motion-reveal-ready.is-visible .about__button {
  opacity: 1;
  transform: translate(0, 0);
  transition-property: opacity, transform;
  transition-duration: 0.78s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.motion-reveal-ready.is-visible .hero__title { transition-delay: 0.05s; }
.hero.motion-reveal-ready.is-visible .hero__media { transition-delay: 0.12s; }
.hero.motion-reveal-ready.is-visible .hero__description { transition-delay: 0.17s; }
.hero.motion-reveal-ready.is-visible .hero__offer { transition-delay: 0.29s; }
.hero.motion-reveal-ready.is-visible .hero__actions { transition-delay: 0.41s; }
.hero.motion-reveal-ready.is-visible .hero-benefit:nth-child(1) { transition-delay: 0.48s; }
.hero.motion-reveal-ready.is-visible .hero-benefit:nth-child(2) { transition-delay: 0.60s; }
.hero.motion-reveal-ready.is-visible .hero-benefit:nth-child(3) { transition-delay: 0.72s; }

.about.motion-reveal-ready.is-visible .about__media { transition-delay: 0.04s; }
.about.motion-reveal-ready.is-visible .section-heading { transition-delay: 0.12s; }
.about.motion-reveal-ready.is-visible .about__description { transition-delay: 0.23s; }
.about.motion-reveal-ready.is-visible .about__benefits li:nth-child(1) { transition-delay: 0.34s; }
.about.motion-reveal-ready.is-visible .about__benefits li:nth-child(2) { transition-delay: 0.43s; }
.about.motion-reveal-ready.is-visible .about__benefits li:nth-child(3) { transition-delay: 0.52s; }
.about.motion-reveal-ready.is-visible .about__benefits li:nth-child(4) { transition-delay: 0.61s; }
.about.motion-reveal-ready.is-visible .about__button { transition-delay: 0.70s; }

@media (prefers-reduced-motion: reduce) {
  .hero.motion-reveal-ready .hero__title,
  .hero.motion-reveal-ready .hero__description,
  .hero.motion-reveal-ready .hero__offer,
  .hero.motion-reveal-ready .hero__actions,
  .hero.motion-reveal-ready .hero__media,
  .hero.motion-reveal-ready .hero-benefit,
  .about.motion-reveal-ready .about__media,
  .about.motion-reveal-ready .section-heading,
  .about.motion-reveal-ready .about__description,
  .about.motion-reveal-ready .about__benefits li,
  .about.motion-reveal-ready .about__button {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ===== Requested correction: services reveal + Dlaczego warto only ===== */
.services.motion-reveal-ready .section-heading,
.services.motion-reveal-ready .service-card {
  opacity: 0;
  transform: translateY(1.15rem);
  will-change: opacity, transform;
}

.services.motion-reveal-ready.is-visible .section-heading,
.services.motion-reveal-ready.is-visible .service-card {
  opacity: 1;
  transform: translateY(0);
  transition-property: opacity, transform;
  transition-duration: 0.78s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.services.motion-reveal-ready.is-visible .section-heading {
  transition-delay: 0.05s;
}

.services.motion-reveal-ready.is-visible .service-card:nth-child(1) { transition-delay: 0.14s; }
.services.motion-reveal-ready.is-visible .service-card:nth-child(2) { transition-delay: 0.24s; }
.services.motion-reveal-ready.is-visible .service-card:nth-child(3) { transition-delay: 0.34s; }
.services.motion-reveal-ready.is-visible .service-card:nth-child(4) { transition-delay: 0.44s; }
.services.motion-reveal-ready.is-visible .service-card:nth-child(5) { transition-delay: 0.54s; }
.services.motion-reveal-ready.is-visible .service-card:nth-child(6) { transition-delay: 0.64s; }

.advantages__connectors path {
  stroke-dasharray: 12 10;
  stroke-linecap: round;
  animation: advantages-dash-flow 1.15s linear infinite;
}

.advantages__action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@keyframes advantages-dash-flow {
  to {
    stroke-dashoffset: -44;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services.motion-reveal-ready .section-heading,
  .services.motion-reveal-ready .service-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .advantages__connectors path {
    animation: none;
  }
}


/* ===== Requested correction: unified section CTAs, slower advantages motion and FAQ ===== */
.button--section-cta {
  box-sizing: border-box;
  width: 14.5rem;
  min-width: 14.5rem;
  min-height: 3.25rem;
  padding-inline: 1.5rem;
  font-size: 1rem;
}

/* Slower, clearly readable reveal in the "Co nas wyróżnia?" section. */
.advantages.motion-reveal-ready .section-heading,
.advantages.motion-reveal-ready .advantage-card,
.advantages.motion-reveal-ready .advantages__center,
.advantages.motion-reveal-ready .advantages__connectors,
.advantages.motion-reveal-ready .advantages__action {
  opacity: 0;
  will-change: opacity, transform;
}

.advantages.motion-reveal-ready .section-heading,
.advantages.motion-reveal-ready .advantages__action {
  transform: translateY(1.25rem);
}

.advantages.motion-reveal-ready .advantage-card--left-top,
.advantages.motion-reveal-ready .advantage-card--left-bottom {
  transform: translateX(-1.5rem);
}

.advantages.motion-reveal-ready .advantage-card--right-top,
.advantages.motion-reveal-ready .advantage-card--right-bottom {
  transform: translateX(1.5rem);
}

.advantages.motion-reveal-ready .advantages__center {
  transform: scale(0.82);
}

.advantages.motion-reveal-ready.is-visible .section-heading,
.advantages.motion-reveal-ready.is-visible .advantage-card,
.advantages.motion-reveal-ready.is-visible .advantages__center,
.advantages.motion-reveal-ready.is-visible .advantages__connectors,
.advantages.motion-reveal-ready.is-visible .advantages__action {
  opacity: 1;
  transform: none;
  transition-property: opacity, transform;
  transition-duration: 1.2s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.advantages.motion-reveal-ready.is-visible .section-heading { transition-delay: 0.1s; }
.advantages.motion-reveal-ready.is-visible .advantages__center { transition-delay: 0.45s; }
.advantages.motion-reveal-ready.is-visible .advantages__connectors { transition-delay: 0.7s; }
.advantages.motion-reveal-ready.is-visible .advantage-card--left-top { transition-delay: 0.9s; }
.advantages.motion-reveal-ready.is-visible .advantage-card--right-top { transition-delay: 1.3s; }
.advantages.motion-reveal-ready.is-visible .advantage-card--left-bottom { transition-delay: 1.7s; }
.advantages.motion-reveal-ready.is-visible .advantage-card--right-bottom { transition-delay: 2.1s; }
.advantages.motion-reveal-ready.is-visible .advantages__action { transition-delay: 2.5s; }

.advantages__connectors path {
  animation-duration: 3.4s;
}

.advantages__center,
.advantages__connectors circle {
  animation-duration: 3.2s;
}

/* FAQ: full container width, left alignment and a plus control. */
.faq .section-heading {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.faq__list {
  width: 100%;
  max-width: none;
  margin: 0;
}

.faq-item {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.faq-item__question {
  position: relative;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.faq-item__question > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-item__icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ff6b00;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.35s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer::before {
  content: '';
  display: block;
  height: 0.0625rem;
  margin-inline: 1.5rem;
  background: #eadbce;
}

.faq-item__answer p {
  max-width: none;
  margin: 0;
  padding: 1.15rem 1.5rem 1.4rem;
  color: #2b323d;
  font-size: 1.0625rem;
  line-height: 1.65;
  text-align: left;
}

.faq-item__answer b {
  color: #ff6b00;
  font-weight: 800;
}

.faq__action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 35rem) {
  .button--section-cta {
    width: min(14.5rem, 100%);
    min-width: 0;
  }

  .faq-item__question {
    padding: 1.05rem 1rem;
  }

  .faq-item__answer::before {
    margin-inline: 1rem;
  }

  .faq-item__answer p {
    padding: 1rem 1rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advantages.motion-reveal-ready .section-heading,
  .advantages.motion-reveal-ready .advantage-card,
  .advantages.motion-reveal-ready .advantages__center,
  .advantages.motion-reveal-ready .advantages__connectors,
  .advantages.motion-reveal-ready .advantages__action {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-item__icon {
    transition: none;
  }
}

/* ===== Reviews slider: keep card shadows fully visible ===== */
.google-rating__brand {
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
}

.google-rating__brand img {
  width: 100%;
  height: 100%;
  display: block;
}

/* The clipping edge stays outside the card shadows. */
.reviews__viewport {
  box-sizing: border-box;
  overflow: hidden;
  padding: 3rem 3.25rem 3.5rem;
  margin: -3rem 0 -3.5rem;
}

.reviews__track {
  align-items: stretch;
}

.review-card {
  min-width: 0;
  min-height: 18.5rem;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  box-shadow: 0 1rem 2.5rem rgba(43, 50, 61, 0.12);
}

.review-card__top {
  align-items: flex-start;
}

.review-card__google {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 2.75rem;
  padding: 0.55rem;
  border: 0.0625rem solid rgba(43, 50, 61, 0.09);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.4rem 1rem rgba(43, 50, 61, 0.08);
}

.review-card__google img {
  width: 100%;
  height: 100%;
  display: block;
}

.review-card__top strong {
  font-size: 1.08rem;
  line-height: 1.3;
}

.review-card p {
  flex: 1;
}

.review-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
}

.review-card a img {
  width: 1rem;
  height: 1rem;
  display: block;
}

@media (max-width: 65.625rem) {
  .reviews__viewport {
    padding-inline: 2.25rem;
  }

  .review-card {
    min-height: 17rem;
  }
}

@media (max-width: 35rem) {
  .reviews__viewport {
    padding: 2rem 1.25rem 2.75rem;
    margin-block: -2rem -2.75rem;
  }

  .review-card {
    min-height: 0;
  }
}

/* ===== Reviews slider: shadow-safe slide wrappers =====
   Each visible card sits inside its own padded slide. The viewport can clip
   the next/previous slides while every card shadow remains fully inside
   the visible slide area, so no hard shadow cut appears at the edges. */
.reviews__viewport {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.reviews__track {
  gap: 0;
  align-items: stretch;
}

.review-slide {
  flex: 0 0 calc(100% / 3);
  min-width: 0;
  display: flex;
  box-sizing: border-box;
  padding: 2rem 1.25rem 2.75rem;
}

.review-slide .review-card {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 100%;
  box-shadow:
    0 1rem 1.9rem -0.9rem rgba(43, 50, 61, 0.16),
    0 0.3rem 0.75rem -0.35rem rgba(43, 50, 61, 0.08);
}

@media (max-width: 65.625rem) {
  .reviews__viewport {
    padding: 0;
  }

  .review-slide {
    flex-basis: 50%;
    padding: 1.75rem 1rem 2.5rem;
  }
}

@media (max-width: 45rem) {
  .review-slide {
    flex-basis: 100%;
    padding: 1.5rem 0.9rem 2.25rem;
  }
}

/* ===== Map section: interactive Google map + fixed contact/form panels ===== */
.map {
  min-height: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff6ee;
  box-shadow:
    inset 0 1.5rem 2.5rem -2rem rgba(43, 50, 61, 0.24),
    inset 0 -1.5rem 2.5rem -2rem rgba(43, 50, 61, 0.24);
}

.map::before,
.map::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  height: 4.5rem;
  pointer-events: none;
}

.map::before {
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 24%, rgba(255, 255, 255, 0) 100%);
}

.map::after {
  inset: auto 0 0;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 24%, rgba(255, 255, 255, 0) 100%);
}

.map__frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transform: none;
  pointer-events: auto;
  filter: grayscale(0.72) sepia(0.18) hue-rotate(335deg) saturate(0.78) brightness(1.08) contrast(0.9);
}

.map__container {
  min-height: 43rem;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(20rem, 24rem) minmax(5rem, 1fr) minmax(25rem, 29.5rem);
  grid-template-areas: 'contacts . form';
  align-items: center;
  gap: 2rem;
  padding-block: 5rem;
  pointer-events: none;
}

.map__contacts {
  grid-area: contacts;
  width: 100%;
  justify-self: start;
  padding: 2.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.92);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  box-shadow: 0 1.25rem 3.25rem rgba(43, 50, 61, 0.14);
  pointer-events: auto;
}

.map__contacts .section-heading__eyebrow {
  display: inline-block;
  margin-bottom: 1.35rem;
}

.map__contacts-list {
  display: grid;
  gap: 0.9rem;
}

.map__contact-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem;
  border: 0.0625rem solid rgba(255, 107, 0, 0.17);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.map__contact-item:is(a):hover {
  transform: translateY(-0.125rem);
  border-color: rgba(255, 107, 0, 0.38);
  background: rgba(255, 255, 255, 0.94);
}

.map__contact-item--address {
  cursor: default;
}

.map__contact-icon {
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 0.95rem;
  color: #ffffff;
  background: #ff6b00;
  font-size: 1.16rem;
}

.map__contact-item > span:last-child {
  min-width: 0;
  display: grid;
  gap: 0.05rem;
}

.map__contact-item small {
  color: #6f7784;
  font-size: 0.8rem;
  line-height: 1.3;
}

.map__contact-item strong {
  min-width: 0;
  color: #2b323d;
  font-size: 0.94rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.map__maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  color: #ff6b00;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.map__maps-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.contact-form {
  grid-area: form;
  width: 100%;
  max-width: 29.5rem;
  justify-self: end;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .map__container {
    min-height: 43rem;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(24rem, 1.25fr);
    grid-template-areas: 'contacts form';
    gap: 2rem;
  }
}

@media (max-width: 820px) {
  .map__container {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      'contacts'
      'form';
    gap: 1rem;
    padding-block: 5rem;
  }

  .map__contacts,
  .contact-form {
    width: min(100%, 35rem);
    max-width: none;
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .map::before,
  .map::after {
    height: 3rem;
  }

  .map__container {
    width: min(100% - 1.5rem, 35rem);
    padding-block: 3.75rem;
  }

  .map__contacts,
  .contact-form {
    padding: 1.35rem;
    border-radius: 1.35rem;
  }

  .map__contacts .section-heading__eyebrow {
    margin-bottom: 1rem;
  }
}


/* ===== Certificates section ===== */
.certificates {
  background: #fff;
  padding-top: 0;
}

.certificates__heading {
  max-width: 50rem;
}

.certificates__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.certificate-card {
  padding: 1.25rem 1.25rem 1rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.92));
}

.certificate-card__image-wrap {
  background: #fff;
  border-radius: 1.125rem;
  padding: 0.75rem;
  border: 0.0625rem solid rgba(7, 31, 61, 0.08);
  box-shadow: 0 1rem 2rem rgba(7, 31, 61, 0.06);
}

.certificate-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 0.875rem;
  background: #fff;
}

.certificate-card__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.certificate-card__label {
  color: #ff6b00;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-card__content h3 {
  margin: 0;
  color: #071f3d;
  font-size: 1.625rem;
  line-height: 1.15;
}

.certificate-card__content p {
  margin: 0;
  color: #667085;
  font-size: 1.125rem;
}

.certificate-card__content strong {
  color: #667085;
  font-size: 1.375rem;
  line-height: 1.2;
}

.certificates__note {
  margin: 1.5rem auto 0;
  max-width: 44rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.certificates__note p {
  margin: 0;
  color: #2b323d;
  font-size: 1.0625rem;
  font-weight: 600;
}

@media (max-width: 75rem) {
  .certificate-card__content h3 {
    font-size: 1.375rem;
  }
}

@media (max-width: 61.9375rem) {
  .certificates__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 47.9375rem) {
  .certificates__grid {
    grid-template-columns: 1fr;
  }

  .certificate-card {
    max-width: 32rem;
    width: 100%;
    margin: 0 auto;
  }

  .certificate-card__content h3 {
    font-size: 1.25rem;
  }

  .certificate-card__content p {
    font-size: 1rem;
  }

  .certificate-card__content strong {
    font-size: 1.125rem;
  }
}


/* ===== Seven complete service cards (no modal needed) ===== */
.services__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}
.service-card--full {
  min-height: 0;
  height: 100%;
  padding: 22px;
}
.service-card--full .service-card__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.service-card--full .service-card__thumb {
  width: 100%;
  height: 170px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}
.service-card--full .service-card__title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.service-card--full .service-card__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.22;
}
.service-card--full .service-card__description {
  margin: 18px 0 16px;
  font-size: 1rem;
  line-height: 1.62;
}
.service-card__details-block {
  margin-bottom: 20px;
}
.service-card__details-block h4 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 0.98rem;
  line-height: 1.35;
}
.service-card__list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.48;
}
.service-card__list i {
  margin-top: 4px;
  color: #ff6b00;
  font-size: 0.78rem;
}
.service-card__actions--single {
  grid-template-columns: 1fr;
  margin-top: auto;
}
.service-card__actions--single .button {
  width: 100%;
}
.services__grid > .service-card:nth-child(7) {
  grid-column: 2;
}
@media (max-width: 1120px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services__grid > .service-card:nth-child(7) {
    grid-column: auto;
  }
}
@media (max-width: 680px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .service-card--full .service-card__thumb {
    height: 190px;
  }
}


/* Service-card headings: icon + title aligned to the left */
.service-card--full .service-card__title-wrap {
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.service-card--full .service-card__title {
  text-align: left;
}


/* Floating phone and WhatsApp buttons */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.floating-contact__button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff8a1d 0%, #ff6b00 100%);
  font-size: 1.22rem;
  box-shadow: 0 10px 26px rgba(255, 107, 0, 0.34);
  animation: floatingContactShadow 1.8s ease-in-out infinite;
  transition: filter 0.2s ease;
}
.floating-contact__button .fa-whatsapp {
  font-size: 1.4rem;
}
.floating-contact__button:hover {
  filter: brightness(1.06);
}
@keyframes floatingContactShadow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.28), 0 10px 28px rgba(255, 107, 0, 0.32);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(255, 107, 0, 0), 0 14px 36px rgba(255, 107, 0, 0.52);
  }
}
@media (max-width: 680px) {
  .floating-contact {
    right: 14px;
    bottom: 14px;
    gap: 22px;
  }
}


/* ===== Appointment modal ===== */
.booking-modal {
  width: min(500px, calc(100% - 28px));
  padding: 38px;
  border: 0;
  border-radius: 26px;
  color: var(--color-ink);
  background: #fff;
  box-shadow: 0 32px 100px rgba(31, 26, 21, 0.32);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.booking-modal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.booking-modal::backdrop {
  background: rgba(31, 26, 21, 0.62);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.booking-modal.is-visible::backdrop {
  opacity: 1;
}
.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--color-ink);
  background: #fff4ea;
  cursor: pointer;
}
.booking-modal__title {
  max-width: 410px;
  margin: 0 auto 26px;
  padding: 0 34px;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-align: center;
}
.booking-modal__title span {
  color: #ff6b00;
}
.booking-modal__form {
  display: grid;
  gap: 14px;
}
.booking-modal__field {
  position: relative;
  display: block;
}
.booking-modal__field i {
  position: absolute;
  left: 17px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: #ff6b00;
  font-size: 1rem;
}
.booking-modal__field input {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px 13px 48px;
  border: 1px solid #ead7c7;
  border-radius: 13px;
  color: var(--color-ink);
  background: #fffaf6;
  outline: none;
}
.booking-modal__field input:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.11);
}
.booking-modal__field.is-invalid input {
  border-color: #d74a58;
}
.booking-modal__status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.82rem;
}
.booking-modal__status.is-error {
  color: #bd3141;
}
.booking-modal__status.is-success {
  color: #087d68;
}
@media (max-width: 520px) {
  .booking-modal {
    padding: 32px 20px 24px;
  }
  .booking-modal__title {
    padding-inline: 32px;
  }
}

.google-form-target { display: none; width: 0; height: 0; border: 0; }
.button[disabled] { opacity: 0.7; cursor: wait; pointer-events: none; }
.thank-you-body { min-height: 100vh; background: radial-gradient(circle at 15% 15%, #fff4e8 0, transparent 34%), linear-gradient(145deg, #f7fbff, #eef5fb); }
.thank-you-page { min-height: 100vh; display: grid; place-items: center; padding: 32px 20px; }
.thank-you-card { width: min(620px, 100%); display: flex; flex-direction: column; align-items: center; padding: 52px 44px; border: 1px solid #e2eaf2; border-radius: 28px; background: rgba(255,255,255,0.94); box-shadow: 0 24px 70px rgba(15,58,103,0.14); text-align: center; }
.thank-you-card__brand { margin-bottom: 34px; color: var(--color-ink); }
.thank-you-card__brand .brand__copy small { color: #ff7a00; }
.thank-you-card__icon { width: 78px; height: 78px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #ff9a25, #ff6f00); box-shadow: 0 15px 32px rgba(255,122,0,0.24); font-size: 1.9rem; }
.thank-you-card h1 { margin: 0 0 14px; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.08; letter-spacing: -0.04em; }
.thank-you-card p { max-width: 500px; margin: 0 0 30px; color: var(--color-muted); font-size: 1.04rem; }
.thank-you-card .button { min-width: 240px; }
@media (max-width: 620px) {
  .thank-you-card { padding: 38px 22px; border-radius: 22px; }
  .thank-you-card__brand { margin-bottom: 28px; }
  .thank-you-card .button { width: 100%; min-width: 0; }
}


/* Advantage cards: orange icons instead of photos */
.advantage-card img.advantage-card__icon {
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 0;
  padding: 6px;
}

/* ===== Dla firm i partnerów ===== */
.partners__box {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  padding: 30px 32px;
}
.partners__box h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.18;
}
.partners__box p {
  max-width: 820px;
  line-height: 1.65;
}
.partners__box .button {
  min-width: 180px;
}

.business-page {
  background: #fff;
}
.business-hero {
  padding: 86px 0 72px;
  background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}
.business-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 54px;
  align-items: center;
}
.business-hero__content h1 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(2.65rem, 4.8vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.business-hero__content p {
  max-width: 760px;
  margin: 0 0 15px;
  color: #2b323d;
  font-size: 1.05rem;
  line-height: 1.72;
}
.business-hero__content .button {
  margin-top: 18px;
  min-width: 205px;
}
.business-hero__media {
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255, 118, 18, 0.16);
  border-radius: 32px;
  box-shadow: 0 22px 60px rgba(38, 34, 28, 0.13);
}
.business-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: center;
}

.business-section {
  padding: 92px 0;
  background: #fff;
}
.business-section--soft {
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
}
.business-section__heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}
.business-section__heading > span,
.business-cta__box > div > span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff6b00;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.business-section__heading h2,
.business-bhp__content h2,
.business-cta__box h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.business-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.business-audience-card {
  min-height: 235px;
  padding: 25px 23px;
  border: 1px solid rgba(239, 219, 202, 0.95);
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 36px rgba(44, 36, 28, 0.06);
}
.business-audience-card > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #ff8a21, #ff6b00);
  font-size: 1.35rem;
}
.business-audience-card h3 {
  margin: 0 0 10px;
  font-size: 1.03rem;
  line-height: 1.35;
}
.business-audience-card p {
  margin: 0;
  color: #4a5059;
  font-size: 0.93rem;
  line-height: 1.62;
}

.business-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.business-benefit-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(239, 219, 202, 0.95);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,246,0.9));
  box-shadow: 0 14px 36px rgba(44, 36, 28, 0.055);
}
.business-benefit-card--wide {
  grid-column: 1 / -1;
}
.business-benefit-card > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #ff6b00;
  background: #fff0e4;
  font-size: 1.45rem;
}
.business-benefit-card h3 {
  margin: 2px 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
}
.business-benefit-card p {
  margin: 0;
  color: #444b55;
  font-size: 0.94rem;
  line-height: 1.65;
}

.business-section--bhp {
  padding-top: 40px;
  background: #fff;
}
.business-bhp {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border: 1px solid #efdfd2;
  border-radius: 28px;
  background: linear-gradient(115deg, #fff4e9, #fff);
  box-shadow: 0 18px 50px rgba(45, 36, 27, 0.08);
}
.business-bhp__media {
  min-height: 420px;
}
.business-bhp__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}
.business-bhp__content {
  align-self: center;
  padding: 48px 54px;
}
.business-bhp__content h2 {
  margin-bottom: 20px;
}
.business-bhp__content p {
  margin: 0 0 13px;
  color: #353c45;
  line-height: 1.7;
}

.business-cta {
  padding: 0 0 96px;
  background: #fff;
}
.business-cta__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 38px 42px;
  border: 1px solid rgba(255, 114, 12, 0.22);
  border-radius: 25px;
  background: linear-gradient(120deg, #fff4e8 0%, #fff 68%);
  box-shadow: 0 16px 44px rgba(44, 35, 26, 0.07);
}
.business-cta__box h2 {
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}
.business-cta__box p {
  max-width: 760px;
  margin: 0;
  color: #424952;
  line-height: 1.65;
}
.business-cta__box .button {
  min-width: 210px;
}

@media (max-width: 1050px) {
  .business-hero__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
  }
  .business-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .business-bhp__content {
    padding: 38px;
  }
}

@media (max-width: 820px) {
  .partners__box {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .partners__icon {
    justify-self: start;
  }
  .partners__box .button {
    justify-self: start;
  }
  .business-hero {
    padding: 58px 0 54px;
  }
  .business-hero__grid {
    grid-template-columns: 1fr;
  }
  .business-hero__media,
  .business-hero__media img {
    min-height: 360px;
  }
  .business-section {
    padding: 70px 0;
  }
  .business-audience-grid,
  .business-benefits-grid,
  .business-bhp,
  .business-cta__box {
    grid-template-columns: 1fr;
  }
  .business-benefit-card--wide {
    grid-column: auto;
  }
  .business-bhp__media,
  .business-bhp__media img {
    min-height: 320px;
  }
  .business-bhp__content {
    padding: 30px 24px 34px;
  }
  .business-cta__box {
    padding: 30px 24px;
  }
  .business-cta__box .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .business-hero__content h1 {
    font-size: 2.55rem;
  }
  .business-audience-grid {
    grid-template-columns: 1fr;
  }
  .business-audience-card {
    min-height: auto;
  }
  .business-benefit-card {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 21px;
  }
  .business-benefit-card > span {
    width: 50px;
    height: 50px;
  }
}


/* ===== Service updates 2026-08-21 ===== */
.services__grid > .service-card:nth-child(7) {
  grid-column: auto;
}

.service-card__note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  margin: 0 0 18px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 107, 0, 0.12);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 244, 235, 0.94), rgba(255, 249, 244, 0.96));
  color: var(--color-muted);
}

.service-card__note-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #ff6b00;
  font-size: 1.08rem;
}

.service-card__note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-ink);
  font-size: 0.88rem;
  line-height: 1.35;
}

.service-card__note p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.46;
}

.service-card__note p b {
  color: var(--color-ink);
  font-weight: 700;
}

/* ===== 2026-08-21: compact desktop visit process + exact navigation ===== */
@media (min-width: 821px) {
  .header__nav {
    gap: 24px;
  }

  .header__nav a {
    font-size: 0.94rem;
  }

  .process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
  }

  .process-step {
    min-width: 0;
    padding-inline: 0.45rem;
  }

  .process-step__heading {
    min-width: 0;
  }

  .process-step__heading h3 {
    font-size: clamp(1.08rem, 1.45vw, 1.34rem);
    overflow-wrap: anywhere;
  }

  .process-step p {
    max-width: 17rem;
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    overflow-wrap: anywhere;
  }
}

@media (min-width: 1051px) {
  .process__steps {
    gap: 1rem;
  }
}

/* ===== 2026-08-21: process icons above headings on desktop only ===== */
@media (min-width: 821px) {
  .process-step__heading {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .process-step__heading i {
    display: block;
    margin: 0 auto 0.1rem;
    font-size: 1.75rem;
    line-height: 1;
    filter: drop-shadow(0 7px 10px rgba(255, 107, 0, 0.18));
  }

  .process-step__heading h3 {
    text-align: center;
  }
}

@media (max-width: 820px) {
  .process-step__heading {
    flex-direction: row;
    align-items: center;
  }

  .process-step__heading i {
    margin: 0;
    filter: none;
  }
}

/* ===== Form validation + polished booking modal ===== */
.booking-modal {
  overflow: visible;
  border: 1px solid rgba(255, 122, 0, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
  box-shadow: 0 34px 110px rgba(31, 26, 21, 0.34), 0 0 0 1px rgba(255,255,255,0.8) inset;
}
.booking-modal__form { gap: 18px; }
.booking-modal__field,
.form-field { padding-bottom: 18px; }
.booking-modal__field input,
.form-field input {
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.booking-modal__field.is-valid input,
.form-field.is-valid input {
  border-color: rgba(16, 145, 103, 0.55);
  box-shadow: 0 0 0 3px rgba(16, 145, 103, 0.07);
}
.booking-modal__field.is-invalid input,
.form-field.is-invalid input {
  border-color: #d84b58;
  background: #fff9f9;
  box-shadow: 0 0 0 3px rgba(216, 75, 88, 0.08);
}
.booking-modal__error,
.form-field__error {
  position: absolute;
  left: 4px;
  bottom: 0;
  display: block;
  min-height: 15px;
  color: #bd3141;
  font-size: .75rem;
  font-weight: 650;
  line-height: 1.2;
}
.booking-modal__field.is-invalid i,
.form-field.is-invalid > i { color: #d84b58; }
.booking-modal__field.is-valid i,
.form-field.is-valid > i { color: #109167; }
.booking-modal__status,
.contact-form__status {
  font-weight: 650;
  line-height: 1.35;
}
.booking-modal .button--full {
  min-height: 54px;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.22);
}
@media (max-width: 520px) {
  .booking-modal { width: min(470px, calc(100% - 20px)); }
  .booking-modal__field,
  .form-field { padding-bottom: 20px; }
  .booking-modal__error,
  .form-field__error { font-size: .72rem; }
}

/* Keep booking form icons vertically aligned with the input itself (not the error-message area). */
.booking-modal__field > i {
  top: 27px;
  width: 18px;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}

/* Contact form: keep icons aligned to the actual control, not the validation area. */
.contact-form .form-field > i {
  top: 27px;
  width: 18px;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}
.contact-form .form-field--textarea > i {
  top: 25px;
  transform: none;
}
