:root {
  --blue: #355cf5;
  --blue-dark: #2329a8;
  --orange: #ff6624;
  --amber: #ff9b29;
  --ink: #111111;
  --muted: #687187;
  --line: #dce2ee;
  --paper: #f2e7e1;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(35, 41, 168, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(242, 231, 225, 0.94);
  box-shadow: 0 12px 38px rgba(35, 41, 168, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: grid;
  align-items: center;
  width: 156px;
  height: 42px;
}

.brand img {
  grid-area: 1 / 1;
  width: 100%;
  height: 42px;
  object-fit: contain;
}

.site-header:not(.is-scrolled) .brand img {
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.72))
    drop-shadow(0 1px 0 rgba(242, 231, 225, 0.72));
}

.brand .logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand .logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand .logo-dark {
  opacity: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.92;
}

.nav a:hover {
  color: var(--amber);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.header-call {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--blue-dark);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  top: 76px;
  right: 14px;
  z-index: 19;
  display: none;
  min-width: 220px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px;
  border-radius: 6px;
  font-weight: 800;
}

.mobile-nav a:hover {
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 44, 0.94), rgba(22, 28, 110, 0.68) 48%, rgba(35, 41, 168, 0.18)),
    linear-gradient(0deg, rgba(6, 10, 44, 0.76), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(820px, 100%);
  padding: 150px clamp(20px, 6vw, 74px) 90px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.blue {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 26px;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border: 2px solid var(--orange);
}

.btn.secondary {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-strip a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  min-height: 112px;
  padding: 26px clamp(20px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.quick-strip .app-icon {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  color: var(--blue-dark);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.quick-strip span {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
}

.section {
  padding: clamp(64px, 8vw, 118px) clamp(20px, 5vw, 74px);
}

.intro,
.region {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}

.intro p,
.section-head p,
.split-copy p,
.region p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.services {
  background: var(--paper);
}

.service-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card,
.price-grid article {
  min-height: 270px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card.accent {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  border-color: var(--blue);
}

.service-card.discount-card {
  border-color: var(--orange);
  box-shadow: inset 0 4px 0 var(--orange);
}

.service-card p,
.price-grid span,
.fine-print {
  color: var(--muted);
  line-height: 1.62;
}

.service-card.accent p {
  color: rgba(255, 255, 255, 0.86);
}

.service-price {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 10px;
  color: var(--blue-dark);
  background: #edf1ff;
  border-radius: 999px;
  font-size: 0.9rem;
}

.service-card.accent .service-price {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 42px;
  margin-bottom: 30px;
  color: var(--orange);
  background: var(--paper);
  border-radius: 6px;
  font-weight: 900;
}

.service-icon .app-icon {
  width: 28px;
  height: 28px;
}

.image-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  background: var(--blue-dark);
}

.image-band img {
  width: 100%;
  height: min(54vw, 520px);
  object-fit: cover;
}

.process {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline article {
  padding: 32px 24px 10px 0;
  border-right: 1px solid var(--line);
}

.timeline article + article {
  padding-left: 24px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-radius: 50%;
  font-weight: 900;
}

.timeline span .app-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}

.timeline p {
  color: var(--muted);
  line-height: 1.62;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--paper);
}

.split img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border-left: 5px solid var(--orange);
  border-radius: 6px;
  font-weight: 800;
}

.check-list .app-icon {
  width: 28px;
  height: 28px;
  color: var(--blue-dark);
}

.pricing {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

.pricing .section-head p,
.pricing .fine-print {
  color: rgba(255, 255, 255, 0.74);
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-grid article {
  min-height: 220px;
}

.price-grid article > .app-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--orange);
}

.service-price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.service-price-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
}

.service-price-list h3 {
  margin-bottom: 6px;
  color: var(--blue-dark);
}

.service-price-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.service-price-list strong {
  padding: 9px 11px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 999px;
  font-size: 1rem;
  white-space: nowrap;
}

.price {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 2.25rem;
  font-weight: 950;
}

.fine-print {
  margin: 24px 0 0;
}

.region {
  background: var(--white);
}

.region-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: var(--paper);
  border-radius: 8px;
}

.region-panel strong {
  color: var(--blue);
  font-size: 1.2rem;
}

.region-panel span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 6px;
  font-weight: 800;
}

.region-panel .app-icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.gallery {
  background: var(--paper);
}

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

.gallery-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(35, 41, 168, 0.12);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
  background: var(--white);
}

.booking-copy p,
.app-download p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.booking-discount {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 102, 36, 0.96), rgba(255, 155, 41, 0.92)),
    var(--orange);
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(255, 102, 36, 0.34);
}

.discount-amount {
  width: fit-content;
  padding: 8px 12px;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 6px;
  font-size: clamp(1.7rem, 4vw, 3.25rem);
  font-weight: 950;
  line-height: 1;
}

.booking-discount strong {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.booking-discount span:not(.discount-amount) {
  font-size: 1.05rem;
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.calendar-booker {
  padding: 18px;
  background: var(--white);
  border: 1px solid #d7c9c2;
  border-radius: 8px;
}

.calendar-head {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.calendar-head strong {
  text-align: center;
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.calendar-nav {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.45rem;
  font-weight: 900;
  cursor: pointer;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.calendar-grid button {
  min-width: 0;
  aspect-ratio: 1;
  border: 1px solid #ded2cc;
  border-radius: 6px;
  color: var(--ink);
  background: #fffaf7;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.calendar-grid button:hover:not(:disabled),
.slot-grid button:hover {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 2px rgba(255, 102, 36, 0.22);
}

.calendar-grid button.is-today {
  color: var(--blue-dark);
  border-color: var(--blue);
}

.calendar-grid button.is-selected,
.slot-grid button.is-selected {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-color: var(--orange);
}

.calendar-grid button.has-discount:not(.is-selected) {
  color: var(--blue-dark);
  background: #edf1ff;
  border-color: rgba(53, 92, 245, 0.38);
}

.calendar-grid button.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.calendar-grid button:disabled {
  color: #a99d98;
  background: #eee3dd;
  cursor: not-allowed;
}

.calendar-legend {
  display: flex;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.calendar-legend i {
  width: 13px;
  height: 13px;
  background: #edf1ff;
  border: 1px solid rgba(53, 92, 245, 0.38);
  border-radius: 4px;
}

.slot-picker {
  display: grid;
  gap: 10px;
}

.slot-label {
  color: var(--blue-dark);
  font-weight: 900;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.slot-grid button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #d7c9c2;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.slot-grid .app-icon {
  width: 22px;
  height: 22px;
  color: var(--blue-dark);
}

.slot-grid button.is-selected .app-icon {
  color: var(--white);
}

.booking-summary {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: #fffaf7;
  border: 1px solid #d7c9c2;
  border-left: 5px solid var(--blue);
  border-radius: 6px;
}

.booking-summary strong {
  color: var(--blue-dark);
}

.booking-summary span {
  color: var(--muted);
  line-height: 1.45;
}

.booking-summary.needs-selection {
  border-left-color: var(--orange);
  box-shadow: 0 12px 34px rgba(255, 102, 36, 0.16);
}

.app-download {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(44px, 6vw, 70px) clamp(20px, 5vw, 74px);
  color: var(--white);
  background: linear-gradient(135deg, #111111, var(--blue-dark));
}

.app-download h2 {
  margin-bottom: 12px;
}

.app-download p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.app-buttons a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0 10px;
  align-items: center;
  min-width: 178px;
  min-height: 64px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
}

.app-buttons .app-icon {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  color: var(--blue-dark);
}

.app-buttons span {
  font-size: 0.78rem;
  font-weight: 800;
}

.app-buttons strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 7vw, 90px);
  background: var(--white);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 900;
}

.contact-lines a {
  color: var(--blue);
}

.contact-lines a,
.contact-lines span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-lines .app-icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd4e6;
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

select {
  min-height: 51px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue-dark) 50%),
    linear-gradient(135deg, var(--blue-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 14px) 21px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(20px, 5vw, 74px);
  color: var(--white);
  background: #111111;
}

.footer img {
  width: 150px;
  height: 44px;
  object-fit: contain;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 900;
}

.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: none;
  min-height: 48px;
  padding: 0 16px;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.app-page {
  background: #f7f3ef;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(247, 243, 239, 0.94);
  border-bottom: 1px solid #e4d8d2;
  backdrop-filter: blur(16px);
}

.app-logo img {
  width: 150px;
  height: 40px;
  object-fit: contain;
}

.app-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 900;
}

.app-nav a:hover {
  color: var(--orange);
}

.app-hero,
.app-section {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(340px, 1.3fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: stretch;
  min-height: calc(100vh - 74px);
  background:
    linear-gradient(135deg, rgba(242, 231, 225, 0.96), rgba(255, 255, 255, 0.9)),
    var(--paper);
}

.app-hero-copy {
  align-self: center;
}

.app-hero-copy p,
.app-section-head p,
.price-note {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.app-hero h1 {
  margin-bottom: 18px;
  color: var(--blue-dark);
}

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

.decision-card,
.flow-step,
.appointment-card,
.report-card,
.deposit-panel,
.reminder-list article,
.location-grid article,
.diagnostic-result {
  border: 1px solid #e0d2cc;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(35, 41, 168, 0.1);
}

.decision-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
}

.emergency-card {
  color: var(--white);
  background: linear-gradient(145deg, #111111, var(--blue-dark));
}

.maintenance-card {
  background: linear-gradient(145deg, var(--white), #fff5ef);
  border-color: rgba(255, 102, 36, 0.35);
}

.decision-label {
  width: fit-content;
  padding: 8px 10px;
  color: var(--blue-dark);
  background: var(--paper);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.emergency-card .decision-label {
  color: var(--white);
  background: var(--orange);
}

.decision-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.problem-tags,
.decision-actions,
.card-actions,
.trust-list,
.diagnostic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.problem-tags span,
.trust-list span {
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 850;
}

.maintenance-card .problem-tags span,
.trust-list span {
  color: var(--blue-dark);
  background: var(--paper);
  border-color: #e0d2cc;
}

.maintenance-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 900;
}

.maintenance-card li {
  padding: 12px 14px;
  background: var(--paper);
  border-left: 5px solid var(--orange);
  border-radius: 6px;
}

.btn.whatsapp {
  color: var(--blue-dark);
  background: var(--white);
}

.app-section {
  background: var(--white);
}

.app-section:nth-of-type(even) {
  background: var(--paper);
}

.app-section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.flow-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: clamp(20px, 4vw, 30px);
  margin-bottom: 16px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 50%;
  font-weight: 950;
}

.service-picker,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-picker article,
.location-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.service-picker article {
  border: 1px solid #e0d2cc;
  border-radius: 8px;
  background: #fffaf7;
}

.service-picker strong,
.location-grid strong {
  color: var(--blue-dark);
}

.service-picker span,
.location-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.service-picker .selected-service {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 2px rgba(255, 102, 36, 0.18);
}

.mini-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-slots button,
.diagnostic-grid button,
.card-actions button,
.card-actions a {
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #d9cbc5;
  border-radius: 6px;
  color: var(--blue-dark);
  background: var(--white);
  font: inherit;
  font-weight: 900;
}

.mini-slots .is-picked {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-color: var(--orange);
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.deposit-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #111111);
}

.deposit-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 16px;
}

.dashboard-grid .app-section-head {
  grid-column: 1 / -1;
}

.appointment-card,
.report-card {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 30px);
}

.status {
  width: fit-content;
  padding: 7px 10px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.status.done {
  background: var(--orange);
}

.reminder-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.reminder-list article {
  padding: 18px;
}

.reminder-list strong {
  color: var(--blue-dark);
}

.reminder-list p,
.appointment-card p,
.report-card p,
.diagnostic-result span {
  color: var(--muted);
  line-height: 1.55;
}

.location-grid a {
  color: var(--orange);
  font-weight: 900;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
}

.price-table th,
.price-table td {
  padding: 18px;
  border-bottom: 1px solid #eaded8;
  text-align: left;
}

.price-table th {
  color: var(--blue-dark);
}

.price-table td {
  font-weight: 950;
}

.diagnostic-grid button {
  cursor: pointer;
}

.diagnostic-result {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 20px;
  border-left: 6px solid var(--orange);
}

.app-bottom-nav {
  display: none;
}

.app-mockup-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 155, 41, 0.2), transparent 28%),
    linear-gradient(135deg, #f2e7e1 0%, #ffffff 46%, #e8ecff 100%);
}

.mobile-app-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 70px);
}

.phone-device {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  width: min(100%, 414px);
  height: min(860px, calc(100vh - 56px));
  min-height: 720px;
  overflow: hidden;
  color: var(--ink);
  background: #f8f3ef;
  border: 10px solid #111111;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.28);
}

.phone-device::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 112px;
  height: 22px;
  transform: translateX(-50%);
  background: #111111;
  border-radius: 0 0 16px 16px;
}

.phone-status,
.native-app-header,
.native-tabbar {
  position: relative;
  z-index: 2;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 12px 22px 8px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.native-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px 12px;
  background: rgba(248, 243, 239, 0.92);
  border-bottom: 1px solid #e7d9d2;
}

.native-app-header img {
  width: 128px;
  height: 34px;
  object-fit: contain;
}

.native-app-header a {
  padding: 8px 10px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.native-screen {
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  grid-auto-rows: max-content;
  align-content: start;
  gap: 20px;
  width: 100%;
  min-width: 0;
  padding: 20px 16px 96px;
  scroll-behavior: smooth;
}

.native-screen::-webkit-scrollbar {
  width: 0;
}

.native-home,
.native-card {
  width: 100%;
  min-width: 0;
  border: 1px solid #e1d4ce;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(35, 41, 168, 0.1);
}

.native-home {
  display: grid;
  gap: 20px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(242, 231, 225, 0.96)),
    var(--white);
}

.business-entry {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  gap: 10px;
  align-items: center;
  padding: 14px;
  color: var(--blue-dark);
  background: #edf1ff;
  border-radius: 12px;
}

.business-entry span {
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
  text-transform: none;
}

.business-entry strong {
  display: block;
}

.mini-label {
  width: fit-content;
  margin: 0;
  padding: 6px 9px;
  color: var(--blue-dark);
  background: #edf1ff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.native-home h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 2.9rem;
  line-height: 0.95;
}

.screen-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}

.native-action,
.native-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 16px;
}

.native-action span,
.native-card-head span {
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 950;
  text-transform: uppercase;
}

.native-action h2,
.native-card h2,
.native-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.05;
}

.native-hero-photo,
.native-card-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.native-hero-photo {
  height: 150px;
}

.native-card-photo {
  height: 134px;
}

.app-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: currentColor;
  border: 2px solid currentColor;
  border-radius: 9px;
}

.app-icon::before,
.app-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-alert::before {
  width: 3px;
  height: 11px;
  background: currentColor;
  border-radius: 2px;
  transform: translateY(-3px);
}

.icon-alert::after {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  transform: translateY(8px);
}

.icon-phone::before {
  width: 13px;
  height: 17px;
  border: 2px solid currentColor;
  border-top-width: 4px;
  border-radius: 4px;
}

.icon-chat::before {
  width: 14px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon-chat::after {
  bottom: 6px;
  left: 7px;
  width: 6px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-20deg);
}

.icon-calendar::before {
  width: 15px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-width: 5px;
  border-radius: 4px;
}

.icon-check::before {
  width: 13px;
  height: 7px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.icon-pipe::before {
  width: 15px;
  height: 11px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-radius: 0 0 0 8px;
}

.icon-water::before {
  width: 11px;
  height: 15px;
  background: currentColor;
  border-radius: 9px 9px 9px 2px;
  transform: rotate(45deg);
}

.icon-home::before {
  width: 15px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: translateY(3px);
}

.icon-home::after {
  width: 13px;
  height: 13px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(-4px) rotate(45deg);
}

.icon-smell::before,
.icon-smell::after {
  width: 13px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-radius: 50%;
}

.icon-smell::before {
  transform: translateY(-4px);
}

.icon-smell::after {
  transform: translateY(5px);
}

.icon-kitchen::before,
.icon-bath::before,
.icon-building::before,
.icon-sun::before,
.icon-clock::before,
.icon-moon::before,
.icon-location::before,
.icon-card::before,
.icon-close::before,
.icon-photo::before,
.icon-bell::before,
.icon-repeat::before {
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-sun::before,
.icon-clock::before,
.icon-moon::before,
.icon-bell::before,
.icon-repeat::before {
  border-radius: 50%;
}

.icon-location::before {
  border-radius: 50% 50% 50% 2px;
  transform: rotate(-45deg);
}

.icon-close::before,
.icon-close::after {
  width: 15px;
  height: 3px;
  background: currentColor;
  border: 0;
  border-radius: 2px;
}

.icon-close::before {
  transform: rotate(45deg);
}

.icon-close::after {
  transform: rotate(-45deg);
}

.emergency-action {
  color: var(--white);
  background: linear-gradient(145deg, #111111, var(--blue-dark));
}

.emergency-action span,
.emergency-action .screen-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.plan-action {
  background: #fff7f1;
  border: 1px solid rgba(255, 102, 36, 0.3);
}

.discount-pill {
  width: fit-content;
  padding: 8px 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-radius: 10px;
  font-size: 1.45rem;
  font-weight: 950;
}

.native-tags,
.native-actions,
.native-quick-actions,
.native-checks {
  display: grid;
  width: 100%;
  justify-self: stretch;
  gap: 8px;
}

.native-tags {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.native-actions,
.native-quick-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.native-actions > *,
.native-quick-actions > * {
  width: 100%;
  justify-self: stretch;
}

.native-tags button,
.native-quick-actions button,
.native-quick-actions a,
.native-actions a,
.native-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 14px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 900;
}

.native-actions a,
.native-primary {
  font-size: 1.05rem;
}

.native-tags button {
  height: 86px;
  justify-content: flex-start;
  text-align: left;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.light-tags button {
  height: auto;
  min-height: 52px;
  color: var(--blue-dark);
  background: #edf1ff;
  border-color: rgba(53, 92, 245, 0.18);
}

.native-actions a:first-child,
.native-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.native-primary {
  width: 100%;
}

.native-actions a:last-child {
  color: var(--blue-dark);
  background: var(--white);
}

.native-card-head {
  display: grid;
  gap: 4px;
}

.native-service-list,
.notification-list,
.location-list,
.native-price-list,
.native-form-grid {
  display: grid;
  gap: 8px;
}

.native-service-list button,
.native-slot-row button,
.location-list article,
.booking-ticket,
.diagnose-result,
.native-price-list span {
  border: 1px solid #e3d6d0;
  border-radius: 13px;
  background: #fffaf7;
}

.native-service-list button {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 4px 10px;
  min-height: 78px;
  padding: 14px;
  text-align: left;
  font: inherit;
}

.native-service-list .app-icon {
  grid-row: span 2;
  align-self: center;
  color: var(--blue-dark);
}

.native-service-list strong,
.native-slot-row strong {
  font-size: 1.08rem;
}

.native-service-list strong,
.booking-ticket strong,
.location-list strong,
.native-price-list strong {
  color: var(--blue-dark);
}

.native-service-list span,
.location-list span,
.native-card p {
  color: var(--muted);
  line-height: 1.45;
}

.native-service-list .is-active,
.native-slot-row .is-active {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 2px rgba(255, 102, 36, 0.22);
}

.native-slot-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.native-slot-row button {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 86px;
  padding: 12px 8px;
  color: var(--blue-dark);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
}

.address-helper,
.simple-result {
  display: grid;
  gap: 8px;
}

.address-helper {
  grid-template-columns: 32px 1fr;
  align-items: center;
  padding: 12px;
  color: var(--blue-dark);
  background: #edf1ff;
  border-radius: 13px;
  font-weight: 850;
}

.simple-result {
  grid-template-columns: 1fr;
}

.simple-result span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--blue-dark);
  background: #edf1ff;
  border-radius: 12px;
  font-weight: 900;
}

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

.native-form-grid input,
.native-form-grid select {
  min-height: 52px;
  border-radius: 12px;
  background-color: #fffaf7;
  font-weight: 800;
}

.deposit-native {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-dark), #111111);
}

.deposit-native .native-card-head span,
.deposit-native p {
  color: rgba(255, 255, 255, 0.76);
}

.deposit-native strong {
  font-size: 2rem;
}

.booking-ticket,
.diagnose-result {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.booking-ticket > span {
  width: fit-content;
  padding: 5px 8px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.native-quick-actions button,
.native-quick-actions a {
  color: var(--blue-dark);
  background: #edf1ff;
  text-align: center;
}

.live-tracker {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  background: #fffaf7;
  border: 1px solid #e3d6d0;
  border-radius: 14px;
}

.tracker-map {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(53, 92, 245, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(53, 92, 245, 0.08) 1px, transparent 1px),
    #edf1ff;
  background-size: 34px 34px;
  border-radius: 14px;
}

.map-route {
  position: absolute;
  top: 72px;
  left: 52px;
  width: calc(100% - 104px);
  height: 52px;
  border-top: 6px solid var(--blue-dark);
  border-right: 6px solid var(--blue-dark);
  border-radius: 0 28px 0 0;
}

.map-dot,
.map-van {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(35, 41, 168, 0.22);
}

.map-dot {
  width: 42px;
  height: 42px;
  background: var(--blue-dark);
}

.map-dot.start {
  top: 36px;
  left: 30px;
}

.map-dot.end {
  right: 18px;
  bottom: 24px;
  background: var(--orange);
}

.map-van {
  top: 58px;
  left: 52%;
  width: 54px;
  height: 54px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border: 4px solid var(--white);
}

.tracker-map .app-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

.tracker-eta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), #111111);
  border-radius: 14px;
}

.tracker-eta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tracker-eta strong {
  grid-row: span 2;
  color: var(--amber);
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
}

.tracker-eta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 850;
}

.master-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  background: var(--white);
  border-radius: 13px;
}

.master-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
}

.master-card div,
.tracker-eta p {
  min-width: 0;
}

.master-card strong {
  display: block;
  color: var(--blue-dark);
}

.master-card span {
  display: block;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.master-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--orange);
  border-radius: 12px;
}

.tracking-steps {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.tracking-steps span {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid #eaded8;
  border-radius: 12px;
  font-weight: 900;
}

.tracking-steps .app-icon {
  width: 24px;
  height: 24px;
  color: #9b928f;
  border-radius: 8px;
}

.tracking-steps .is-done {
  color: var(--blue-dark);
  background: #edf1ff;
  border-color: rgba(53, 92, 245, 0.18);
}

.tracking-steps .is-done .app-icon {
  color: var(--blue-dark);
}

.tracking-steps .is-current {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-color: var(--orange);
}

.tracking-steps .is-current .app-icon {
  color: var(--white);
}

.mini-photo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-photo-row img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
}

.notification-list p,
.location-list article,
.native-price-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.native-price-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 850;
}

.native-checks span {
  padding: 9px 10px;
  color: var(--blue-dark);
  background: #edf1ff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.native-tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 8px;
  background: rgba(17, 17, 17, 0.94);
}

.native-tabbar a {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 10px 4px;
  color: var(--white);
  border-radius: 11px;
  font-size: 0.71rem;
  font-weight: 900;
  text-align: center;
}

.native-tabbar .app-icon {
  width: 21px;
  height: 21px;
}

.native-tabbar a:hover {
  background: var(--orange);
}

.app-side-note {
  max-width: 420px;
}

.app-side-note h2 {
  color: var(--blue-dark);
}

.app-side-note p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.header-call .app-icon,
.btn .app-icon,
.footer .app-icon,
.sticky-call .app-icon,
.hero-facts .app-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}

.price-grid article > .app-icon,
.quick-strip .app-icon,
.service-icon .app-icon,
.timeline .app-icon,
.check-list .app-icon,
.region-panel .app-icon,
.contact-lines .app-icon,
.app-buttons .app-icon {
  border-width: 2px;
}

/* Lucide icons replace the old decorative CSS glyphs with recognisable symbols. */
.app-icon,
.header-call .app-icon,
.btn .app-icon,
.footer .app-icon,
.sticky-call .app-icon,
.hero-facts .app-icon,
.price-grid article > .app-icon,
.quick-strip .app-icon,
.service-icon .app-icon,
.timeline .app-icon,
.check-list .app-icon,
.region-panel .app-icon,
.contact-lines .app-icon,
.app-buttons .app-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  stroke-width: 2.2;
}

.app-icon::before,
.app-icon::after {
  display: none;
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .service-grid,
  .timeline,
  .gallery-grid,
  .service-picker,
  .reminder-list,
  .location-grid,
  .address-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 14px 8px 14px 14px;
  }

  .brand {
    width: 132px;
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    margin-right: -8px;
  }

  .mobile-nav {
    right: 6px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(6, 10, 44, 0.94), rgba(22, 28, 110, 0.42)),
      linear-gradient(90deg, rgba(6, 10, 44, 0.78), transparent);
  }

  .hero-content {
    padding: 110px 20px 72px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .hero-actions .btn,
  .booking-form .btn,
  .contact-form .btn {
    width: 100%;
  }

  .quick-strip,
  .intro,
  .booking,
  .app-download,
  .split,
  .region,
  .contact,
  .price-grid,
  .service-price-list {
    grid-template-columns: 1fr;
  }

  .service-price-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-price-list strong {
    width: fit-content;
  }

  .quick-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .timeline,
  .gallery-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-grid article {
    min-height: auto;
  }

  .timeline article,
  .timeline article + article {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-band img {
    height: 320px;
  }

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

  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-buttons {
    justify-content: stretch;
  }

  .app-buttons a {
    width: 100%;
  }

  .footer {
    display: grid;
    text-align: center;
    justify-items: center;
    padding-bottom: 88px;
  }

  .sticky-call {
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: center;
  }

  .app-topbar {
    grid-template-columns: 1fr auto;
    padding: 12px 10px 12px 14px;
  }

  .app-logo img {
    width: 132px;
  }

  .app-nav,
  .app-topbar > .btn {
    display: none;
  }

  .app-hero,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .app-hero {
    min-height: auto;
    padding-top: 34px;
  }

  .decision-grid,
  .service-picker,
  .mini-slots,
  .address-grid,
  .reminder-list,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    grid-template-columns: 1fr;
  }

  .deposit-panel {
    display: grid;
  }

  .deposit-panel .btn {
    width: 100%;
  }

  .price-table th,
  .price-table td {
    display: block;
    padding: 12px 14px;
  }

  .price-table tr {
    display: block;
    border-bottom: 1px solid #eaded8;
  }

  .app-bottom-nav {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 6px;
    background: rgba(17, 17, 17, 0.92);
    border-radius: 8px;
  }

  .app-bottom-nav a {
    padding: 10px 4px;
    color: var(--white);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 900;
    text-align: center;
  }

  .app-bottom-nav a:hover {
    background: var(--orange);
  }

  .app-mockup-page {
    overflow-x: hidden;
    background: #f8f3ef;
  }

  .mobile-app-stage {
    display: block;
    min-height: 100vh;
    padding: 0;
  }

  .phone-device {
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .phone-device::before {
    display: none;
  }

  .app-side-note {
    display: none;
  }

  .native-screen {
    padding-right: 12px;
    padding-left: 12px;
  }

  .native-slot-row {
    grid-template-columns: 1fr;
  }
}
