:root {
  --orange: #ff520e;
  --orange-dark: #e94405;
  --navy: #142f4c;
  --navy-deep: #102844;
  --text: #17243a;
  --muted: #657083;
  --line: #e6e9ee;
  --off-white: #f7f8fa;
  --white: #ffffff;
  --green: #20bd4b;
  --shadow: 0 14px 34px rgba(20, 47, 76, 0.14);
  --page: min(1160px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
.page-width { width: var(--page); margin-inline: auto; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 10px 16px;
  color: #fff; background: var(--navy); border-radius: 6px; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eef0f3;
}
.header-inner {
  min-height: 114px;
  display: grid;
  grid-template-columns: 178px 1fr auto;
  align-items: center;
  column-gap: 28px;
}
.brand {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
}
.brand img { width: 152px; height: auto; object-fit: contain; }
.main-navigation {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}
.main-navigation > a,
.nav-dropdown > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 114px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #172337;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}
.main-navigation > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 21px;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  background: var(--orange);
  transition: width .22s ease;
}
.main-navigation > a:hover,
.main-navigation > a:focus-visible,
.main-navigation > a.active,
.nav-dropdown > button:hover,
.nav-dropdown > button:focus-visible { color: var(--orange); }
.main-navigation > a:hover::after,
.main-navigation > a:focus-visible::after,
.main-navigation > a.active::after,
.nav-dropdown > button:hover::after,
.nav-dropdown > button:focus-visible::after { width: 100%; }
.nav-dropdown { position: relative; height: 100%; display: flex; align-items: center; }
.nav-dropdown > button span { margin-left: 6px; font-size: 15px; }
.dropdown-panel {
  position: absolute;
  top: calc(100% - 18px);
  left: 50%;
  min-width: 235px;
  padding: 9px;
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.open .dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  color: #26364a;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}
.dropdown-panel a:hover { color: var(--orange); background: #fff5f0; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}
.round-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 16px;
}
.mobile-menu-button { display: none; }

.hero-section {
  position: relative;
  min-height: 455px;
  background: linear-gradient(90deg, #fff 0%, #fff 31%, #f8f7f5 51%, #e8e1d8 100%);
  overflow: visible;
}
.hero-layout {
  position: relative;
  min-height: 455px;
  display: grid;
  grid-template-columns: 41% 31% 28%;
  align-items: stretch;
}
.hero-copy {
  position: relative;
  z-index: 4;
  padding: 46px 10px 42px 24px;
  background: linear-gradient(90deg, #fff 0%, #fff 72%, rgba(255,255,255,.78) 89%, rgba(255,255,255,0) 100%);
}
.orange-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .025em;
}
.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(35px, 3.05vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 900;
}
.hero-description {
  max-width: 440px;
  margin: 13px 0 23px;
  color: #263346;
  font-size: 15px;
  line-height: 1.7;
}
.hero-benefits {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 27px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 132px;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid #e6e6e6;
  color: #263346;
  font-size: 12px;
  line-height: 1.35;
}
.benefit-item:last-child { border-right: 0; padding-right: 0; margin-right: 0; min-width: 105px; }
.benefit-icon { flex: 0 0 38px; width: 38px; height: 38px; }
.benefit-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--orange); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.primary-button,
.submit-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff641c);
  box-shadow: 0 9px 20px rgba(255, 82, 14, .18);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .015em;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.primary-button:hover,
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 13px 24px rgba(255, 82, 14, .28); background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.primary-button:focus-visible,
.submit-button:focus-visible { outline: 3px solid rgba(255,82,14,.28); outline-offset: 3px; }
.hero-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ede7df;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,.2) 0%, transparent 19%, transparent 100%);
  pointer-events: none;
}
.hero-visual img {
  position: absolute;
  inset: -7% -10% -5% -8%;
  width: 125%;
  height: 116%;
  object-fit: cover;
  object-position: center center;
}
.booking-card {
  position: relative;
  z-index: 6;
  align-self: start;
  margin-top: 15px;
  margin-left: -2px;
  padding: 20px 17px 18px;
  background: rgba(255,255,255,.985);
  border-radius: 6px;
  box-shadow: 0 8px 23px rgba(34, 45, 57, .19);
}
.booking-heading { text-align: center; margin-bottom: 14px; }
.booking-heading h2 { margin: 0 0 2px; color: var(--orange); font-size: 18px; line-height: 1.25; font-weight: 900; }
.booking-heading p { margin: 0; color: #344055; font-size: 12px; }
.website-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.field-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 7px;
  border: 1px solid #dfe3e8;
  border-radius: 2px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field-shell:focus-within { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(255,82,14,.09); }
.field-icon {
  width: 31px;
  flex: 0 0 31px;
  color: #626c79;
  text-align: center;
  font-size: 13px;
}
.field-shell input,
.field-shell select,
.field-shell textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #223047;
  background: transparent;
  font-size: 11px;
}
.field-shell input,
.field-shell select { height: 32px; padding: 0 9px 0 0; }
.field-shell select { appearance: auto; }
.field-shell textarea { min-height: 46px; padding: 9px 9px 7px 0; resize: vertical; line-height: 1.4; }
.textarea-shell { align-items: flex-start; }
.textarea-shell .field-icon { padding-top: 8px; }
.field-shell input::placeholder,
.field-shell textarea::placeholder { color: #87909c; opacity: 1; }
.service-mode-row {
  display: flex;
  gap: 15px;
  margin: 5px 0 7px;
  color: #4c5664;
  font-size: 10px;
}
.service-mode-row label { display: inline-flex; align-items: center; gap: 4px; }
.service-mode-row input { accent-color: var(--orange); }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 5px 0 10px;
  color: #343c48;
  font-size: 10px;
  line-height: 1.35;
}
.consent-row input { width: 14px; height: 14px; margin: 0; accent-color: var(--orange); }
.consent-row a { color: var(--orange); text-decoration: underline; }
.submit-button { width: 100%; min-height: 36px; padding: 0 16px; font-size: 11px; box-shadow: none; }
.submit-button:disabled { cursor: wait; opacity: .72; }
.form-message { min-height: 0; margin-top: 7px; font-size: 10px; line-height: 1.35; }
.form-message.success { color: #137734; }
.form-message.error { color: #b42318; }

.expert-band { padding: 12px 0 0; background: #fff; }
.expert-panel {
  min-height: 214px;
  display: grid;
  grid-template-columns: 32% 43% 25%;
  align-items: stretch;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(110deg, #173653 0%, #112c49 55%, #173c61 100%);
  box-shadow: 0 9px 18px rgba(14, 42, 69, .18);
}
.expert-copy { padding: 22px 0 18px 31px; color: #fff; }
.expert-copy > p { margin: 0; font-size: 13px; font-weight: 700; }
.expert-copy h2 { margin: 0 0 1px; font-size: 24px; line-height: 1.1; }
.expert-copy > span { font-size: 12px; }
.expert-copy ul { list-style: none; padding: 0; margin: 11px 0 0; }
.expert-copy li { position: relative; padding-left: 23px; margin: 6px 0; font-size: 12px; }
.expert-copy li::before { content: "✓"; position: absolute; left: 0; color: #ffb300; font-weight: 900; }
.expert-image { position: relative; align-self: stretch; overflow: hidden; }
.expert-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: screen; }
.expert-contact { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 20px 25px; color: #fff; }
.expert-contact > p { margin: 0 0 3px; color: var(--orange); font-size: 15px; font-weight: 900; }
.expert-contact > span { margin-bottom: 10px; font-size: 12px; }
.expert-phone { margin-bottom: 12px; font-size: 17px; font-weight: 800; }
.outline-button { display: inline-flex; align-items: center; justify-content: center; min-width: 155px; min-height: 39px; border: 1.5px solid #fff; border-radius: 3px; font-size: 12px; font-weight: 800; transition: background .2s, color .2s; }
.outline-button:hover { background: #fff; color: var(--navy); }

.services-section { padding: 18px 0 12px; background: #fff; }
.section-heading { text-align: center; margin-bottom: 10px; }
.section-heading p { margin: 0; color: var(--orange); font-size: 13px; font-weight: 900; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: 20px; line-height: 1.25; font-weight: 900; }
.service-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.service-card {
  min-width: 0;
  overflow: hidden;
  padding: 0 15px 13px;
  border: 1px solid #e3e6e9;
  border-radius: 4px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,82,14,.45); box-shadow: 0 14px 28px rgba(20,47,76,.12); }
.service-card img { width: calc(100% + 30px); max-width: none; height: 112px; margin-left: -15px; object-fit: cover; object-position: center; background: #fff; }
.service-card h3 { min-height: 34px; margin: 4px 0 4px; color: var(--navy); font-size: 12px; line-height: 1.25; font-weight: 900; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 8px; }
.service-card li { position: relative; padding-left: 12px; margin: 3px 0; color: #343d49; font-size: 10px; line-height: 1.35; }
.service-card li::before { content: "•"; position: absolute; left: 0; color: var(--orange); font-size: 15px; line-height: 10px; }
.service-card:first-child li::before,
.service-card:nth-child(3) li::before { content: "✓"; font-size: 10px; font-weight: 900; line-height: 13px; }
.service-card a { color: var(--orange); font-size: 11px; font-weight: 700; }
.service-card a span { margin-left: 6px; color: #1b2f45; }

.stats-section { margin-top: 0; background: linear-gradient(100deg, #173653, #102a47); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); min-height: 92px; }
.stat-item { position: relative; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 13px 18px; }
.stat-item:not(:last-child)::after { content: ""; position: absolute; right: 0; width: 1px; height: 62%; background: rgba(255,255,255,.7); }
.stat-symbol { color: #fff; font-size: 47px; line-height: 1; }
.stat-item div { display: flex; flex-direction: column; }
.stat-item strong { font-size: 27px; line-height: 1; }
.stat-item span:last-child { margin-top: 7px; font-size: 9px; font-weight: 800; }

.testimonials-section { padding: 12px 0 11px; background: #fff; }
.section-heading.compact { margin-bottom: 10px; }
.section-heading.compact h2 { font-size: 18px; }
.testimonial-wrap { position: relative; padding-inline: 45px; }
.testimonial-track { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  min-width: 0;
  padding: 16px 17px 14px;
  border: 1px solid #e6e8eb;
  border-radius: 4px;
  background: #fff;
  scroll-snap-align: start;
}
.testimonial-card img { width: 58px; height: 58px; align-self: center; object-fit: cover; border-radius: 50%; }
.stars { color: var(--orange); font-size: 13px; letter-spacing: 1px; }
.testimonial-card p { margin: 4px 0 7px; color: #3b444f; font-size: 9.5px; line-height: 1.55; }
.testimonial-card strong { display: block; font-size: 10px; }
.testimonial-card span { display: block; font-size: 9px; }
.slider-button {
  position: absolute;
  top: 58%;
  z-index: 2;
  width: 32px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
}
.slider-button.previous { left: 0; }
.slider-button.next { right: 0; }

.site-footer { background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .9fr .95fr 1.3fr; gap: 0; padding: 9px 100px 14px; }
.footer-grid section { min-width: 0; padding: 0 20px; border-right: 1px solid #e6e8eb; }
.footer-grid section:first-child { padding-left: 0; }
.footer-grid section:last-child { padding-right: 0; border-right: 0; }
.footer-grid h2 { margin: 0 0 9px; color: #152a43; font-size: 9px; line-height: 1.3; font-weight: 900; }
.footer-grid p,
.footer-grid a { display: block; margin: 0 0 6px; color: #354150; font-size: 8.5px; line-height: 1.5; }
.footer-grid a:hover { color: var(--orange); }
.social-links { display: flex; gap: 9px; margin-top: 9px; }
.social-links a { display: grid; place-items: center; width: 23px; height: 23px; margin: 0; border-radius: 50%; color: #fff; background: #1d4473; font-size: 12px; font-weight: 900; }
.social-links a:nth-child(2) { background: #f04c4c; }
.social-links a:nth-child(3) { background: #e92d2d; }
.footer-bottom { color: #fff; background: var(--navy); }
.footer-bottom .page-width { min-height: 30px; display: flex; align-items: center; justify-content: space-between; padding-inline: 108px; font-size: 8px; }
.footer-bottom b { color: #ff4b3b; }

.floating-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 7px;
  border-radius: 26px 5px 5px 26px;
  color: #263142;
  background: #fff;
  box-shadow: 0 7px 20px rgba(17,42,68,.2);
  font-size: 11px;
}
.floating-whatsapp > span:first-child { display: grid; place-items: center; width: 36px; height: 36px; border: 3px solid #fff; border-radius: 50%; color: #fff; background: var(--green); font-size: 19px; box-shadow: 0 0 0 1px #1fa943; }
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 30px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(255,82,14,.25);
  font-size: 21px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s, visibility .2s, transform .2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.revealed { opacity: 1; transform: none; }

.policy-page { min-height: 100vh; background: #f5f7fa; }
.policy-shell { width: min(900px, calc(100% - 36px)); margin: 40px auto; padding: 38px; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.policy-shell h1 { color: var(--navy); font-size: 34px; }
.policy-shell h2 { margin-top: 26px; color: var(--navy); font-size: 22px; }
.policy-shell a { color: var(--orange); text-decoration: underline; }
.price-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.price-table th, .price-table td { padding: 13px 15px; border: 1px solid var(--line); text-align: left; }
.price-table th { color: #fff; background: var(--navy); }

@media (max-width: 1120px) {
  :root { --page: min(100% - 32px, 1040px); }
  .header-inner { grid-template-columns: 150px 1fr auto; column-gap: 16px; }
  .brand img { width: 136px; }
  .main-navigation { gap: 17px; }
  .main-navigation > a, .nav-dropdown > button { font-size: 12px; }
  .header-phone { font-size: 13px; }
  .hero-layout { grid-template-columns: 39% 32% 29%; }
  .hero-copy { padding-left: 12px; }
  .hero-copy h1 { font-size: 38px; }
  .benefit-item { min-width: 114px; margin-right: 10px; padding-right: 10px; }
  .footer-grid { padding-inline: 40px; }
  .footer-bottom .page-width { padding-inline: 48px; }
}

@media (max-width: 920px) {
  :root { --page: min(100% - 30px, 780px); }
  .header-inner { min-height: 88px; grid-template-columns: 145px 1fr auto; }
  .brand img { width: 132px; }
  .mobile-menu-button {
    justify-self: end;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    background: var(--navy);
  }
  .mobile-menu-button span { width: 100%; height: 2px; background: #fff; }
  .header-phone { font-size: 0; }
  .header-phone .round-icon { font-size: 16px; }
  .main-navigation {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 15px 14px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 14px 25px rgba(20,47,76,.12);
  }
  .navigation-open .main-navigation { display: flex; }
  .main-navigation > a, .nav-dropdown > button { min-height: 45px; width: 100%; justify-content: flex-start; font-size: 13px; }
  .main-navigation > a::after, .nav-dropdown > button::after { display: none; }
  .nav-dropdown { display: block; height: auto; }
  .dropdown-panel { position: static; min-width: 0; display: none; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 5px 15px; }
  .nav-dropdown.open .dropdown-panel { display: block; transform: none; }

  .hero-section { min-height: 0; background: #f7f5f2; }
  .hero-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 0; width: 100%; }
  .hero-copy { min-height: 460px; padding: 45px 30px 38px max(24px, calc((100vw - 750px) / 2)); }
  .hero-copy h1 { font-size: clamp(36px, 6vw, 48px); }
  .hero-visual { min-height: 460px; }
  .booking-card { grid-column: 1 / -1; width: min(620px, calc(100% - 30px)); margin: -32px auto 20px; padding: 24px; }
  .booking-heading h2 { font-size: 22px; }
  .field-shell { min-height: 44px; margin-bottom: 10px; }
  .field-shell input, .field-shell select { height: 42px; font-size: 14px; }
  .field-shell textarea { min-height: 80px; font-size: 14px; }
  .field-icon { width: 38px; flex-basis: 38px; font-size: 16px; }
  .consent-row, .service-mode-row { font-size: 13px; }
  .submit-button { min-height: 46px; font-size: 13px; }

  .expert-panel { grid-template-columns: 1fr 1fr; }
  .expert-contact { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 25px; }
  .expert-contact > p, .expert-contact > span { margin: 0; }
  .expert-phone { margin: 0; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card img { height: 160px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.3); }
  .testimonial-track { grid-template-columns: repeat(3, minmax(300px, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 20px; padding: 25px 0; }
  .footer-grid section { border: 0; padding: 0 20px; }
  .footer-grid h2 { font-size: 12px; }
  .footer-grid p, .footer-grid a { font-size: 11px; }
  .footer-bottom .page-width { padding-inline: 0; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 24px); }
  body { font-size: 15px; }
  .header-inner { grid-template-columns: 128px 1fr auto; min-height: 78px; }
  .brand img { width: 120px; }
  .main-navigation { top: 78px; }
  .header-phone { display: none; }
  .hero-layout { display: block; }
  .hero-copy { min-height: 0; padding: 36px 22px 20px; background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.82)); }
  .hero-copy h1 { font-size: 36px; }
  .hero-description { font-size: 14px; }
  .hero-benefits { gap: 12px; flex-wrap: wrap; }
  .benefit-item { width: calc(50% - 6px); min-width: 0; margin: 0; padding: 0; border: 0; }
  .hero-visual { min-height: 330px; }
  .hero-visual img { inset: -2% -12% -5% -4%; width: 120%; height: 112%; }
  .booking-card { width: calc(100% - 24px); margin: -20px auto 16px; padding: 20px 16px; }
  .expert-band { padding-top: 4px; }
  .expert-panel { width: calc(100% - 24px); grid-template-columns: 1fr; }
  .expert-copy { padding: 25px; }
  .expert-image { min-height: 220px; }
  .expert-contact { grid-column: auto; flex-direction: column; align-items: flex-start; padding: 25px; }
  .expert-contact > span { margin-bottom: 5px; }
  .expert-phone { margin-bottom: 8px; }
  .services-section { padding-top: 25px; }
  .section-heading h2 { font-size: 21px; }
  .service-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .service-card { padding-inline: 11px; }
  .service-card img { width: calc(100% + 22px); margin-left: -11px; height: 120px; }
  .service-card h3 { font-size: 11px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { justify-content: flex-start; padding-left: 38px; }
  .stat-item::after { display: none !important; }
  .stat-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.25); }
  .testimonial-wrap { padding-inline: 25px; }
  .testimonial-track { grid-template-columns: repeat(3, minmax(86vw,1fr)); gap: 12px; }
  .slider-button { width: 24px; font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid section { padding: 0; }
  .footer-bottom .page-width { flex-direction: column; justify-content: center; gap: 2px; min-height: 46px; font-size: 9px; }
  .floating-whatsapp { left: 10px; bottom: 16px; padding-right: 9px; }
  .floating-whatsapp > span:last-child { display: none; }
  .back-to-top { right: 12px; bottom: 18px; }
  .policy-shell { padding: 24px; }
}

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


/* =========================================================
   Readability and typography refinement - Version 1.1
   Uses fast system fonts; no external font download required.
   ========================================================= */

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #18263a;
}

.main-navigation > a,
.nav-dropdown > button {
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .012em;
}

.dropdown-panel a {
  font-size: 15px;
  line-height: 1.45;
}

.header-phone {
  font-size: 16px;
}

/* Services: larger, clearer titles and appliance lists */
.services-section {
  padding-top: 26px;
  padding-bottom: 20px;
}

.section-heading {
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .02em;
}

.section-heading h2 {
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.service-grid {
  gap: 16px;
}

.service-card {
  padding: 0 16px 17px;
}

.service-card img {
  width: calc(100% + 32px);
  margin-left: -16px;
  height: 125px;
}

.service-card h3 {
  min-height: 40px;
  margin: 8px 0 7px;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: .005em;
}

.service-card ul {
  margin-bottom: 12px;
}

.service-card li {
  padding-left: 16px;
  margin: 5px 0;
  color: #303b49;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 500;
}

.service-card li::before {
  font-size: 17px;
  line-height: 15px;
}

.service-card:first-child li::before,
.service-card:nth-child(3) li::before {
  font-size: 12px;
  line-height: 17px;
}

.service-card a {
  font-size: 12.5px;
  font-weight: 750;
}

/* Facts and figures: stronger contrast and readable labels */
.stats-grid {
  min-height: 112px;
}

.stat-item {
  gap: 20px;
  padding: 18px 22px;
}

.stat-symbol {
  font-size: 51px;
}

.stat-item strong {
  font-size: 31px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.02em;
}

.stat-item span:last-child {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .01em;
}

/* Testimonials: larger heading and customer comments */
.testimonials-section {
  padding-top: 20px;
  padding-bottom: 22px;
}

.section-heading.compact {
  margin-bottom: 16px;
}

.section-heading.compact h2 {
  font-size: 24px;
  line-height: 1.3;
}

.testimonial-track {
  gap: 20px;
}

.testimonial-card {
  grid-template-columns: 72px 1fr;
  gap: 15px;
  min-height: 170px;
  padding: 20px 20px 18px;
  border-radius: 7px;
}

.testimonial-card img {
  width: 68px;
  height: 68px;
}

.stars {
  font-size: 16px;
  line-height: 1.2;
}

.testimonial-card p {
  margin: 7px 0 10px;
  color: #303a48;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 450;
}

.testimonial-card strong {
  font-size: 13px;
  line-height: 1.4;
}

.testimonial-card span {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: #586476;
}

/* Footer: clear headings, links, contact details and copyright */
.footer-grid {
  grid-template-columns: 1.35fr .9fr 1.05fr 1.3fr;
  padding: 25px 52px 28px;
}

.footer-grid section {
  padding-left: 26px;
  padding-right: 26px;
}

.footer-grid h2 {
  margin-bottom: 13px;
  font-size: 13.5px;
  line-height: 1.4;
  letter-spacing: .01em;
}

.footer-grid p,
.footer-grid a {
  margin-bottom: 7px;
  color: #334154;
  font-size: 12.5px;
  line-height: 1.65;
  font-weight: 450;
}

.social-links {
  margin-top: 13px;
}

.social-links a {
  width: 30px;
  height: 30px;
  font-size: 14px;
}

.footer-bottom .page-width {
  min-height: 46px;
  padding-inline: 52px;
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 500;
}

.floating-whatsapp {
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1120px) {
  .main-navigation > a,
  .nav-dropdown > button { font-size: 13px; }

  .service-card h3 { font-size: 13.5px; }
  .service-card li { font-size: 12px; }

  .footer-grid { padding-inline: 24px; }
  .footer-grid section { padding-inline: 18px; }
  .footer-bottom .page-width { padding-inline: 24px; }
}

@media (max-width: 920px) {
  .main-navigation > a,
  .nav-dropdown > button { font-size: 14px; }

  .section-heading h2 { font-size: 24px; }

  .service-card h3 {
    min-height: auto;
    font-size: 15px;
  }

  .service-card li { font-size: 13px; }
  .service-card a { font-size: 13px; }

  .stat-item strong { font-size: 30px; }
  .stat-item span:last-child { font-size: 12px; }

  .testimonial-card p { font-size: 13.5px; }
  .testimonial-card strong { font-size: 13.5px; }
  .testimonial-card span { font-size: 12.5px; }

  .footer-grid {
    padding: 30px 0;
  }

  .footer-grid h2 { font-size: 14px; }
  .footer-grid p,
  .footer-grid a { font-size: 13px; }

  .footer-bottom .page-width {
    min-height: 48px;
    font-size: 11.5px;
  }
}

@media (max-width: 620px) {
  body { font-size: 16px; }

  .section-heading p { font-size: 14px; }
  .section-heading h2,
  .section-heading.compact h2 { font-size: 22px; }

  .service-card {
    padding-left: 13px;
    padding-right: 13px;
    padding-bottom: 16px;
  }

  .service-card img {
    width: calc(100% + 26px);
    margin-left: -13px;
  }

  .service-card h3 {
    min-height: 38px;
    font-size: 14px;
  }

  .service-card li {
    padding-left: 14px;
    font-size: 12.5px;
  }

  .stat-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .stat-item strong { font-size: 29px; }
  .stat-item span:last-child { font-size: 12px; }

  .testimonial-card {
    grid-template-columns: 68px 1fr;
    min-height: 190px;
    padding: 18px;
  }

  .testimonial-card img {
    width: 64px;
    height: 64px;
  }

  .testimonial-card p { font-size: 13.5px; }

  .footer-grid {
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .footer-grid h2 { font-size: 15px; }
  .footer-grid p,
  .footer-grid a { font-size: 13.5px; }

  .footer-bottom .page-width {
    min-height: 58px;
    padding: 8px 0;
    font-size: 11.5px;
    text-align: center;
  }
}

/* =========================================================
   Interaction and content enhancements - Version 1.2
   ========================================================= */

/* Animated facts and figures */
.stat-number {
  display: inline-block;
  min-width: 4.2ch;
  font-variant-numeric: tabular-nums;
  will-change: contents;
}

/* Six-review horizontal carousel: three visible on desktop */
.testimonial-track {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  padding: 3px 2px 8px;
}

.testimonial-card {
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 21px;
}

.rating-value {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 21px;
  margin: 0 !important;
  padding: 1px 7px;
  border-radius: 999px;
  color: #173653 !important;
  background: #fff1ea;
  font-size: 11.5px !important;
  line-height: 1 !important;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.slider-button {
  cursor: pointer;
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  color: var(--orange);
  background: #fff1ea;
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

/* Contact call-to-action strip */
.contact-cta {
  padding: 0 0 24px;
  background: #fff;
}

.contact-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, .95fr);
  align-items: center;
  gap: 34px;
  min-height: 150px;
  padding: 28px 38px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background:
    radial-gradient(circle at 82% -30%, rgba(255, 116, 45, .42), transparent 46%),
    linear-gradient(105deg, #102a47 0%, #173b5d 60%, #0e2742 100%);
  box-shadow: 0 13px 30px rgba(16, 42, 71, .16);
}

.contact-cta-inner::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -95px;
  width: 240px;
  height: 240px;
  border: 30px solid rgba(255, 255, 255, .045);
  border-radius: 50%;
  pointer-events: none;
}

.contact-cta-copy,
.contact-cta-actions {
  position: relative;
  z-index: 1;
}

.contact-cta-copy > span {
  display: block;
  margin-bottom: 5px;
  color: #ff8d58;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .08em;
}

.contact-cta-copy h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.025em;
}

.contact-cta-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13.5px;
  line-height: 1.6;
}

.contact-cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  align-items: stretch;
}

.cta-phone {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.cta-phone:hover {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.cta-phone svg,
.cta-button svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: currentColor;
}

.cta-phone small,
.cta-phone strong {
  display: block;
}

.cta-phone small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: .06em;
}

.cta-phone strong {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 850;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-whatsapp {
  color: #fff;
  background: #1fa855;
  box-shadow: 0 8px 16px rgba(21, 138, 68, .18);
}

.cta-whatsapp:hover {
  background: #188b46;
}

.cta-book {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 16px rgba(255, 82, 14, .18);
}

.cta-book:hover {
  background: var(--orange-dark);
}

/* Clear official-shape social icons */
.social-links {
  gap: 11px;
}

.social-links a,
.social-links a:nth-child(2),
.social-links a:nth-child(3) {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(23, 54, 83, .08);
  color: #fff;
  box-shadow: 0 5px 12px rgba(23, 54, 83, .14);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.social-links a.facebook { background: #1877f2; }
.social-links a.instagram { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 55%, #fcb045 100%); }
.social-links a.youtube { background: #ff0000; }

.social-links a:hover,
.social-links a:focus-visible {
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 17px rgba(23, 54, 83, .2);
  outline: none;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links .facebook svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 920px) {
  .testimonial-track {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

  .contact-cta-actions {
    grid-template-columns: minmax(240px, 1.2fr) 1fr 1fr;
  }

  .cta-phone {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .testimonial-track {
    grid-auto-columns: 86vw;
    gap: 12px;
  }

  .contact-cta {
    padding-bottom: 16px;
  }

  .contact-cta-inner {
    width: calc(100% - 24px);
    gap: 19px;
    padding: 25px 20px;
    border-radius: 8px;
  }

  .contact-cta-copy > span {
    font-size: 10.5px;
  }

  .contact-cta-copy h2 {
    font-size: 25px;
  }

  .contact-cta-copy p {
    font-size: 13px;
  }

  .contact-cta-actions {
    grid-template-columns: 1fr;
  }

  .cta-phone {
    grid-column: auto;
  }

  .cta-phone strong {
    font-size: 17px;
  }

  .cta-button {
    min-height: 46px;
  }

  .social-links a,
  .social-links a:nth-child(2),
  .social-links a:nth-child(3) {
    width: 38px;
    height: 38px;
  }
}

/* HostShop.in footer credit */
.footer-bottom .site-credit a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}

.footer-bottom .site-credit a:hover,
.footer-bottom .site-credit a:focus-visible {
  color: var(--orange);
}
