:root {
  --primary: #0d6efd;
  --primary-dark: #074fb8;
  --secondary: #ff9800;
  --accent: #25d366;
  --ink: #162033;
  --muted: #697386;
  --bg: #f7f9fc;
  --white: #fff;
  --line: #e4eaf2;
  --shadow: 0 18px 50px rgba(20, 49, 89, 0.11);
  --radius: 22px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: Poppins, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 9999;
  background: #fff;
  padding: 10px 18px;
  border-radius: 10px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 82px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(218, 228, 240, 0.8);
}
.site-header.scrolled {
  height: 72px;
  box-shadow: 0 8px 30px rgba(27, 54, 93, 0.1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo > span:last-child > span {
  color: var(--primary);
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #59a2ff);
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.25);
}
nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
}
nav a {
  font-size: 14px;
  font-weight: 500;
  color: #4d5869;
  position: relative;
  padding: 8px 0;
}
nav a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}
nav a:hover,
nav a.active {
  color: var(--primary);
}
nav a:hover:after,
nav a.active:after {
  right: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  position: relative;
  overflow: hidden;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #287ff9);
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.24);
}
.button-primary:hover {
  box-shadow: 0 14px 28px rgba(13, 110, 253, 0.34);
}
.button-whatsapp {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
}
.button-glass {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}
.hero {
  min-height: 750px;
  height: 100vh;
  max-height: 920px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 82px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(6, 22, 48, 0.95) 0%,
      rgba(5, 30, 66, 0.84) 49%,
      rgba(5, 31, 68, 0.25) 100%
    ),
    url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=2000&q=85');
  background-size: cover;
  background-position: center;
}
.hero-bg:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 25, 52, 0.35), transparent 45%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.62fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 16px;
}
.eyebrow.light {
  color: #b8d8ff;
}
.eyebrow.light span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 7px;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.17);
}
.hero h1 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.09;
  letter-spacing: -2.5px;
  max-width: 800px;
  margin-bottom: 24px;
}
.hero h1 em,
h2 em {
  font-style: normal;
  color: var(--secondary);
}
.hero-copy > p {
  font-size: 17px;
  color: #dce7f6;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  margin: 34px 0 30px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: #dce7f6;
}
.hero-proof span::first-letter {
  color: var(--accent);
}
.quick-book {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  background: rgba(37, 211, 102, 0.15);
  padding: 7px 11px;
  border-radius: 20px;
  color: #bfffd6;
}
.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.quick-book h2 {
  font-size: 27px;
  line-height: 1.25;
  margin: 18px 0 11px;
}
.quick-book p {
  font-size: 13px;
  color: #dbe4f1;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 25px 0;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}
.rating-row strong {
  font-size: 27px;
}
.stars {
  color: #ffb01f;
  letter-spacing: 2px;
}
.rating-row small {
  color: #c8d3e1;
  margin-left: auto;
}
.text-link {
  font-size: 13px;
  font-weight: 600;
}
.text-link span {
  float: right;
}
.trust-strip {
  background: #fff;
  box-shadow: 0 10px 40px rgba(30, 59, 99, 0.08);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 27px;
}
.stats-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--line);
}
.stats-grid > div:last-child {
  border: 0;
}
.stats-grid strong {
  font-size: 28px;
  color: var(--primary);
  line-height: 1.25;
}
.stats-grid span:last-child {
  font-size: 12px;
  color: var(--muted);
}
.section {
  padding: 105px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}
.section-head h2,
.why h2,
.center-head h2,
.faq-intro h2,
.contact h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.18;
  letter-spacing: -1.6px;
}
.section-head > p {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border: 1px solid #edf1f6;
  border-radius: 18px;
  padding: 24px 20px;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(27, 62, 105, 0.05);
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: #d8e5f7;
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eaf3ff;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 19px;
  transition: 0.35s;
}
.service-card:nth-child(3n + 2) .service-icon {
  color: #dd7900;
  background: #fff4e3;
}
.service-card:nth-child(3n) .service-icon {
  color: #1a9d4c;
  background: #e9faef;
}
.service-card:hover .service-icon {
  transform: rotate(-7deg) scale(1.07);
}
.service-card h3 {
  font-size: 16px;
  margin-bottom: 7px;
}
.service-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.service-card a {
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
  margin-top: auto;
  padding-top: 14px;
}
.why {
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image img {
  height: 590px;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
}
.why-image:before {
  content: '';
  position: absolute;
  width: 65%;
  height: 78%;
  left: -20px;
  bottom: -20px;
  border: 2px solid #d7e7fb;
  border-radius: 28px;
  z-index: -1;
}
.image-badge {
  position: absolute;
  right: -32px;
  bottom: 35px;
  background: #fff;
  padding: 20px 26px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.image-badge strong {
  font-size: 32px;
  color: var(--primary);
}
.image-badge span {
  font-size: 11px;
  width: 80px;
  line-height: 1.4;
}
.lead {
  color: var(--muted);
  font-size: 14px;
  margin: 19px 0 35px;
  max-width: 600px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 18px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 13px;
}
.feature > b {
  width: 41px;
  height: 41px;
  flex: none;
  display: grid;
  place-items: center;
  background: #edf5ff;
  color: var(--primary);
  border-radius: 12px;
}
.feature span {
  display: flex;
  flex-direction: column;
}
.feature strong {
  font-size: 13px;
}
.feature small {
  color: var(--muted);
  font-size: 10px;
}
.process {
  background: linear-gradient(150deg, #071c3b, #0b3d7a);
  color: #fff;
}
.center-head {
  text-align: center;
  margin-bottom: 55px;
}
.center-head p {
  color: #9fb1ca;
  margin-top: 12px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 28px;
}
.steps:before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 54px;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
}
.step {
  text-align: center;
  position: relative;
}
.step > b {
  position: absolute;
  top: 0;
  left: calc(50% + 26px);
  font-size: 10px;
  color: #8cb8ed;
}
.step > span {
  width: 108px;
  height: 108px;
  margin: 0 auto 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  font-size: 30px;
  position: relative;
  backdrop-filter: blur(10px);
}
.step h3 {
  font-size: 16px;
}
.step p {
  color: #9fb1ca;
  font-size: 11px;
  max-width: 185px;
  margin: 7px auto;
}
.reviews {
  background: #f7f9fc;
}
.slider-controls {
  display: flex;
  gap: 10px;
}
.slider-controls button {
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  color: var(--primary);
  font-size: 19px;
}
.testimonial-viewport {
  overflow: hidden;
  padding: 10px 2px 25px;
}
.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.testimonial {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 20px;
  padding: 29px;
  box-shadow: 0 10px 35px rgba(25, 54, 96, 0.07);
}
.testimonial blockquote {
  font-size: 13px;
  color: #4e5a6c;
  margin: 18px 0 26px;
  min-height: 88px;
}
.person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.person > span {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9f2ff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}
.person div {
  display: flex;
  flex-direction: column;
}
.person strong {
  font-size: 12px;
}
.person small {
  font-size: 10px;
  color: var(--muted);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}
.slider-dots button {
  border: 0;
  width: 7px;
  height: 7px;
  border-radius: 9px;
  background: #c8d2df;
  cursor: pointer;
  transition: 0.3s;
}
.slider-dots button.active {
  width: 25px;
  background: var(--primary);
}
.faq {
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}
.faq-intro p {
  font-size: 13px;
  color: var(--muted);
  margin: 20px 0 27px;
  max-width: 350px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  border: 0;
  background: none;
  width: 100%;
  padding: 23px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-item button i {
  font-style: normal;
  color: var(--primary);
  font-size: 22px;
  transition: 0.3s;
}
.faq-item.open button i {
  transform: rotate(45deg);
}
.answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s;
}
.answer p {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
}
.faq-item.open .answer {
  grid-template-rows: 1fr;
}
.faq-item.open .answer p {
  padding: 0 30px 22px 4px;
}
.contact {
  padding-top: 30px;
  background: #fff;
}
.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: linear-gradient(130deg, #0a64dc, #074ba9);
  border-radius: 28px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(13, 78, 167, 0.23);
}
.contact-copy {
  padding: 66px;
}
.contact-copy p {
  color: #d4e6ff;
  font-size: 13px;
  margin: 18px 0 29px;
}
.contact-details {
  padding: 48px;
  background: rgba(4, 40, 90, 0.45);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px;
}
.contact-details > div {
  display: flex;
  gap: 12px;
}
.contact-details > div > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.contact-details p {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-details small {
  color: #9fc3f2;
  font-size: 10px;
}
.contact-details strong,
.contact-details a {
  font-size: 11px;
  word-break: break-word;
}
.map-placeholder {
  grid-column: 1/-1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 11px;
}
.map-placeholder span {
  margin-right: 7px;
}
footer {
  background: #07182f;
  color: #a8b5c7;
  padding-top: 75px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.3fr;
  gap: 55px;
  padding-bottom: 55px;
}
.footer-logo {
  color: #fff;
  margin-bottom: 18px;
}
.footer-grid p {
  font-size: 11px;
  max-width: 300px;
}
.footer-grid h3 {
  color: #fff;
  font-size: 13px;
  margin-bottom: 17px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-grid > div:first-child {
  gap: 0;
}
.footer-grid a,
.footer-grid span {
  font-size: 11px;
}
.footer-grid a:hover {
  color: #fff;
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 19px;
}
.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #304059;
  border-radius: 8px;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #26364d;
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  font-size: 10px;
}
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-actions a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 21px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: floatPulse 2.5s infinite;
}
.float-call {
  background: var(--primary);
}
.float-wa {
  background: var(--accent);
}
@keyframes floatPulse {
  50% {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
  }
}
.popup[hidden] {
  display: none;
}
.popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 15, 31, 0.75);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 20px;
  animation: fadeIn 0.3s;
}
.popup-box {
  width: min(390px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  position: relative;
  border-radius: 23px;
  overflow: visible;
  animation: popIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.popup-content {
  overflow: hidden;
  border-radius: 23px;
  background: #fff;
}
.popup-content a {
  display: block;
}
.popup-content img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 40px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.popup-close {
  position: absolute;
  right: -13px;
  top: -13px;
  width: 39px;
  height: 39px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 25px;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.ripple-ink {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  nav {
    gap: 15px;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.55fr;
    gap: 35px;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    gap: 50px;
  }
  .why-image img {
    height: 520px;
  }
  .testimonial {
    flex-basis: calc((100% - 20px) / 2);
  }
  .faq-grid {
    gap: 55px;
  }
  .contact-copy {
    padding: 48px;
  }
  .contact-details {
    padding: 38px 30px;
  }
}
@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }
  .site-header {
    height: 70px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .menu-toggle.open span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
  nav {
    position: absolute;
    top: 70px;
    left: 15px;
    right: 15px;
    padding: 14px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
  }
  nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  nav a {
    padding: 11px;
  }
  .hero {
    height: auto;
    min-height: 760px;
    padding-block: 130px 70px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(6, 22, 48, 0.95), rgba(5, 30, 66, 0.71)),
      url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&w=1200&q=80');
  }
  .hero h1 {
    font-size: 45px;
  }
  .quick-book {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }
  .stats-grid > div:nth-child(2) {
    border: 0;
  }
  .section {
    padding: 80px 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-image {
    max-width: 570px;
  }
  .why-image img {
    height: 480px;
  }
  .image-badge {
    right: -5px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 45px;
  }
  .steps:before {
    display: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .logo {
    font-size: 17px;
  }
  .logo-mark {
    width: 35px;
    height: 35px;
  }
  .hero {
    min-height: 700px;
    padding-top: 120px;
  }
  .hero h1 {
    font-size: 37px;
    letter-spacing: -1.6px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-proof {
    gap: 10px 16px;
  }
  .stats-grid strong {
    font-size: 23px;
  }
  .stats-grid span:last-child {
    font-size: 10px;
  }
  .section {
    padding: 68px 0;
  }
  .section-head h2,
  .why h2,
  .center-head h2,
  .faq-intro h2,
  .contact h2 {
    font-size: 33px;
  }
  .section-head h2 br {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 205px;
  }
  .why-image img {
    height: 380px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step > span {
    width: 92px;
    height: 92px;
  }
  .testimonial {
    flex-basis: 100%;
  }
  .testimonial blockquote {
    min-height: auto;
  }
  .contact-copy {
    padding: 38px 25px;
  }
  .contact-details {
    grid-template-columns: 1fr;
    padding: 32px 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .floating-actions {
    right: 13px;
    bottom: 13px;
  }
  .floating-actions a {
    width: 47px;
    height: 47px;
  }
  .popup-copy h2 {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
