:root {
  --primary: #0db6d8;
  --primary-dark: #305497;
  --primary-deep: #203e7a;
  --accent: #7fdcff;
  --accent-soft: #dff7ff;
  --warm-soft: #f3f8ff;
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --text: #31445f;
  --muted: #72809a;
  --line: #d6dfeb;
  --shadow: 0 14px 34px rgba(38, 68, 124, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(127, 220, 255, 0.16), transparent 20%),
    radial-gradient(circle at 85% 18%, rgba(48, 84, 151, 0.1), transparent 20%),
    var(--bg);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(214, 223, 235, 0.8);
  backdrop-filter: blur(12px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand img {
  width: clamp(180px, 23vw, 320px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #7e92ae;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--primary-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #17c1dc 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(13, 182, 216, 0.22);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(13, 182, 216, 0.28);
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.18);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu {
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero {
  background: linear-gradient(90deg, #0daecb 0%, #0d9fbc 52%, #0b87a5 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 72% 70%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: stretch;
  gap: 28px;
  min-height: 620px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0;
  color: #fff;
}

.hero-logo {
  width: 190px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.hero-copy p {
  max-width: 450px;
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 48%, transparent 60%);
  transform: translateX(-140%);
  transition: transform 500ms ease;
}

.hero-actions .btn:hover::after {
  transform: translateX(140%);
}

.hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-bottom-left-radius: 28px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(48, 84, 151, 0.12), rgba(32, 62, 122, 0.28));
  z-index: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  z-index: 2;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-one {
  right: -70px;
  top: 38px;
  width: 340px;
  height: 340px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(48, 84, 151, 0.48));
}

.hero-shape-two {
  left: -38px;
  bottom: -44px;
  width: 230px;
  height: 230px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(13, 182, 216, 0.24));
  animation-delay: -3s;
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 60px;
  width: min(360px, 82%);
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  color: #fff;
}

.hero-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.86;
}

.hero-card strong {
  font-size: 1.25rem;
  line-height: 1.45;
}

.section-head {
  margin-bottom: 26px;
}

.section-head.center {
  text-align: center;
}

.credentials .kicker {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--primary);
}

.services,
.about,
.specialties,
.testimonials,
.partners,
.credentials,
.blog,
.faq {
  padding: 72px 0;
}

.services {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(223, 247, 255, 0.18));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.specialty-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

.service-card,
.specialty-card,
.testimonial-card,
.blog-card,
.faq-list details,
.about-side,
.about-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.specialty-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.faq-list details:hover,
.about-copy:hover,
.about-side:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(38, 68, 124, 0.16);
  border-color: rgba(13, 182, 216, 0.28);
}

.service-card {
  padding: 28px 24px;
  text-align: center;
}

.service-card-expandable {
  text-align: left;
}

.service-card-summary {
  list-style: none;
  cursor: pointer;
  text-align: center;
}

.service-card-summary::-webkit-details-marker {
  display: none;
}

.service-toggle-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-toggle-label::after {
  content: "+";
  margin-left: 8px;
  font-size: 1rem;
}

.service-card-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: none;
}

.service-card-details h4 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 0.98rem;
}

.service-card-details ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.service-card-details li {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.service-modal[hidden] {
  display: none !important;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 31, 60, 0.58);
  backdrop-filter: blur(6px);
  animation: modalFade 180ms ease;
}

.service-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(84vh, 900px);
  overflow: auto;
  padding: 28px 24px 24px;
  border: 1px solid rgba(214, 223, 235, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(21, 41, 78, 0.24);
  animation: modalSlide 220ms ease;
}

.service-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal-body h3 {
  margin: 0 0 18px;
  padding-right: 44px;
  color: var(--primary-dark);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.service-modal-body h4 {
  margin: 20px 0 10px;
  color: var(--primary);
  font-size: 1rem;
}

.service-modal-body ul {
  margin: 0;
  padding-left: 20px;
}

.service-modal-body li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.specialty-card {
  padding: 26px 24px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  padding: 10px;
  margin-bottom: 18px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(13, 182, 216, 0.12), rgba(48, 84, 151, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12);
}

.service-card h3,
.testimonial-card strong,
.blog-card h3,
.about-points h3,
.footer h3 {
  margin-top: 0;
}

.service-card p,
.specialty-card li,
.about-copy p,
.about-points p,
.testimonial-card p,
.blog-copy p,
.blog-card p,
.faq-list p,
.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.7;
}

.specialty-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--primary-dark);
}

.specialty-card ul {
  margin: 0;
  padding-left: 18px;
}

.specialty-card li {
  margin-bottom: 8px;
}

.services-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding: 14px 18px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(32, 62, 122, 0.2);
}

.services-bar p {
  margin: 0;
  font-weight: 600;
}

.services-bar a {
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.about {
  background:
    radial-gradient(circle at 10% 20%, rgba(127, 220, 255, 0.14), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.specialties {
  background:
    radial-gradient(circle at 88% 22%, rgba(13, 182, 216, 0.1), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.about-copy,
.about-side {
  padding: 32px;
}

.about-stat {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.about-stat strong {
  display: block;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--primary);
  line-height: 1;
}

.about-stat span {
  color: var(--muted);
  font-weight: 600;
}

.about-points {
  display: grid;
  gap: 18px;
}

.dual-banner {
  background: linear-gradient(90deg, var(--primary) 0%, #18bfd4 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dual-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1), transparent 16%);
  pointer-events: none;
}

.dual-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 44px 0;
}

.dual-banner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.dual-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.payment-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}

.payment-flags img {
  width: auto;
  height: 71px;
  object-fit: contain;
  padding: 10px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(20, 40, 78, 0.14);
}

.testimonials {
  background: #fff;
}

.partners {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
  overflow: hidden;
}

.credentials {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.credential-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.credential-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(38, 68, 124, 0.14);
  border-color: rgba(13, 182, 216, 0.24);
}

.credential-logo {
  width: 100%;
  max-width: 170px;
  height: 76px;
  object-fit: contain;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: partner-scroll 38s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  min-width: 280px;
  height: 150px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.partner-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.96) grayscale(0.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
}

.partner-logo-card:hover img {
  transform: scale(1.04);
  filter: saturate(1) grayscale(0);
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 320ms ease;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 220px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.review-head strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-size: 1.08rem;
  grid-column: 2;
}

.review-head span {
  display: block;
  color: #e1a100;
  font-size: 0.92rem;
  font-weight: 700;
  grid-column: 2;
}

.review-avatar {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(13, 182, 216, 0.18);
}

.reviews-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.blog {
  background:
    radial-gradient(circle at 78% 18%, rgba(127, 220, 255, 0.16), transparent 18%),
    #f2f5fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: center;
}

.blog-card {
  overflow: hidden;
}

.blog-image {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(32, 62, 122, 0.24)),
    linear-gradient(135deg, #d8e7fa, #8ad9ef);
}

.blog-card-body {
  padding: 24px;
}

.blog-card a {
  color: var(--primary);
  font-weight: 800;
}

.contact-call {
  padding: 0;
  background: linear-gradient(90deg, var(--primary) 0%, #17bfd2 100%);
  position: relative;
  overflow: hidden;
}

.contact-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.08), transparent 16%);
  pointer-events: none;
}

.contact-call-box {
  padding: 56px 24px;
  text-align: center;
  color: #fff;
}

.contact-call-box h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-call-box p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.92);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 700;
}

.footer {
  padding: 56px 0 40px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr 1fr 1.2fr;
  gap: 28px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 16px;
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-size: 1rem;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 10px;
}

.footer-map iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.footer-credit {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-credit p {
  margin: 0;
  color: var(--muted);
}

.footer-credit a {
  color: var(--primary-dark);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #20be63;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(32, 190, 99, 0.3);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.floating-whatsapp img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-right: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 16px 34px rgba(32, 190, 99, 0.3);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(32, 190, 99, 0.38);
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
  }

  .mobile-menu {
    display: grid;
    gap: 4px;
    margin-top: 8px;
    padding: 10px 14px 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(214, 223, 235, 0.9);
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(38, 68, 124, 0.14);
    backdrop-filter: blur(12px);
  }

  .mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1rem;
  }

  .mobile-menu .mobile-cta {
    width: 100%;
    margin-top: 10px;
    min-height: 46px;
    justify-content: center;
    border-bottom: 0;
  }

  .hero-grid,
  .about-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .review-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .dual-banner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .header-row {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: min(190px, 100%);
  }

  .menu-toggle {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.98rem;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }

  .hero-copy {
    padding: 18px 0 24px;
  }

  .hero-visual {
    min-height: 250px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 28px;
    border-top-left-radius: 28px;
  }

  .hero-card {
    display: none;
  }

  .hero-photo {
    object-position: center top;
  }

  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 20px;
    width: auto;
    padding: 22px;
  }

  .hero-photo {
    object-position: center;
  }

  .hero-actions,
  .services-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .header-cta,
  .services-bar a {
    width: 100%;
  }

  .services,
  .about,
  .units,
  .testimonials,
  .blog,
  .faq {
    padding: 56px 0;
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

  .reviews-carousel {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .reviews-nav {
    display: inline-flex;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .review-card {
    flex: 0 0 100%;
    min-height: auto;
    padding: 20px;
  }

  .payment-flags {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }

  .payment-flags img {
    height: 46px;
    padding: 6px 8px;
    border-radius: 12px;
  }

  .about-copy,
  .about-side,
  .service-card,
  .testimonial-card,
  .blog-card-body,
  .faq-list details {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-call-box {
    padding: 48px 20px;
  }

  .partner-logo-card {
    width: 210px;
    min-width: 210px;
    height: 116px;
    padding: 8px 10px;
  }

  .partners-track {
    animation-duration: 30s;
  }

  .floating-whatsapp {
    right: 14px;
    left: auto;
    bottom: 12px;
    width: 64px;
    min-width: 64px;
    height: 64px;
    min-height: 64px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    box-shadow: 0 16px 30px rgba(32, 190, 99, 0.34);
  }

  .floating-whatsapp img {
    width: 34px;
    height: 34px;
    margin-right: 0;
  }

  .service-modal {
    padding: 12px;
  }

  .service-modal-dialog {
    padding: 24px 18px 20px;
    border-radius: 20px;
  }
}
