:root {
  --anchor-offset: 96px;
  --blue: #0d2f68;
  --blue-strong: #0a2350;
  --yellow: #ffd200;
  --yellow-strong: #f0c400;
  --red: #e30613;
  --ink-dark: #0c1b2f;
  --ink-light: #f4f7ff;
  --muted-light: #d7e2ff;
  --muted-dark: #384964;
  --shadow: 0 18px 42px rgba(6, 21, 50, 0.28);
  --radius: 16px;
  --max-width: 1180px;
  --transition: 180ms ease;
  --divider-h: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--blue);
  color: var(--ink-light);
  line-height: 1.6;
}

.section[id] {
  scroll-margin-top: var(--anchor-offset);
}


img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--blue-strong);
  border-bottom: 2px solid rgba(255, 210, 0, 0.85);
  box-shadow: 0 10px 30px rgba(5, 18, 44, 0.35);
  padding: 0.75rem 0;
  transition: padding var(--transition), box-shadow var(--transition);
}

.topbar.shrink {
  padding: 0.5rem 0;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.nav a {
  color: var(--ink-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.52rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink-dark);
  background: var(--yellow);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cta-group a {
  font-size: 0.98rem;
}

.btn-number {
  margin-left: 0.2rem;
}

.primary,
.ghost,
.whatsapp-chip,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.primary {
  background: var(--yellow);
  color: var(--ink-dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 28px rgba(255, 210, 0, 0.3);
}

.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(255, 210, 0, 0.4);
}

.book-visit-btn {
  background: var(--blue-strong);
  color: var(--ink-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 26px rgba(6, 21, 50, 0.34);
}

.book-visit-btn:hover {
  transform: translateY(-1px);
  background: var(--blue);
  box-shadow: 0 16px 30px rgba(6, 21, 50, 0.4);
}

.ghost {
  color: var(--ink-light);
  border: 1.5px solid rgba(255, 210, 0, 0.7);
  background: transparent;
}

.ghost:hover {
  background: rgba(255, 210, 0, 0.13);
}

.whatsapp-chip,
.floating-whatsapp {
  background: #25d366;
  color: #05230d;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.primary[href*="wa.me"]::before,
.whatsapp-chip::before,
.floating-whatsapp::before {
  content: "";
  width: 1.02em;
  height: 1.02em;
  display: inline-block;
  flex: 0 0 auto;
  background-image: url("../img/whatsapp-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink-light);
}

.section {
  position: relative;
  padding: 4.8rem 0;
  overflow: visible;
}

.blue {
  background: var(--blue-strong);
  color: var(--ink-light);
  --tail-color: var(--blue-strong);
}

.yellow {
  background: var(--yellow-strong);
  color: var(--ink-dark);
  --tail-color: var(--yellow-strong);
}

.next-yellow::after,
.next-blue::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(var(--divider-h) * -1 + 1px);
  width: 100%;
  height: var(--divider-h);
  clip-path: polygon(0 0, 100% 0, 100% 48%, 50% 100%, 0 48%);
  z-index: 5;
  box-shadow: none;
  background: var(--tail-color);
  opacity: 1;
  transform: translateY(0);
  transform-origin: top center;
  transition: opacity 950ms ease, transform 950ms cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.js .next-yellow::after,
.js .next-blue::after {
  opacity: 0;
  transform: translateY(-10px);
}

.js .section.connector-visible.next-yellow::after,
.js .section.connector-visible.next-blue::after {
  opacity: 1;
  transform: translateY(0);
}
.hero {
  padding-top: 1.2rem;
}

body.services-hash-mode #top {
  display: none;
}

body.services-hash-mode #services {
  padding-top: 2rem;
}

body.reviews-hash-mode #top,
body.reviews-hash-mode #services,
body.reviews-hash-mode #sermi,
body.reviews-hash-mode #coverage,
body.reviews-hash-mode #process {
  display: none;
}

body.reviews-hash-mode #reviews {
  padding-top: 2rem;
}

body.quote-hash-mode #top,
body.quote-hash-mode #services,
body.quote-hash-mode #sermi,
body.quote-hash-mode #coverage,
body.quote-hash-mode #process,
body.quote-hash-mode #reviews {
  display: none;
}

body.quote-hash-mode #quote {
  padding-top: 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 3.4vw, 2.8rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.blue .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.yellow .eyebrow {
  color: rgba(12, 27, 47, 0.74);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.15;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
}

.subline {
  margin: 0 0 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.93rem;
}

.blue .subline {
  color: #ffe875;
}

.yellow .subline {
  color: #5d4500;
}

.lede {
  margin: 0;
  max-width: 45ch;
  font-size: 1.05rem;
}

.blue .lede {
  color: rgba(244, 247, 255, 0.95);
}

.yellow .lede {
  color: rgba(12, 27, 47, 0.87);
}

.service-mobile-note {
  margin: 0.9rem 0 0;
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
  font-size: 0.97rem;
  line-height: 1.45;
}

.blue .service-mobile-note {
  color: rgba(244, 247, 255, 0.96);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.yellow .service-mobile-note {
  color: rgba(12, 27, 47, 0.9);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(12, 27, 47, 0.2);
}


.hero-sermi-banner {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin: 0.25rem 0 1.1rem;
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink-light);
  border: 1.5px solid rgba(255, 210, 0, 0.82);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 10px 22px rgba(4, 14, 38, 0.24);
  backdrop-filter: blur(2px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.hero-sermi-banner:hover,
.hero-sermi-banner:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-color: rgba(255, 210, 0, 1);
  box-shadow: 0 14px 26px rgba(4, 14, 38, 0.32);
}

.hero-sermi-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  padding: 0 0.72rem;
  border-right: 1.5px solid rgba(255, 210, 0, 0.82);
  background: rgba(12, 38, 84, 0.36);
}

.hero-sermi-logo {
  width: 100%;
  max-width: 122px;
  height: auto;
  display: block;
}

.hero-sermi-copy {
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.95rem;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.25;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0;
}

.pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list li {
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.blue .pill-list li {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--ink-light);
  background: rgba(255, 255, 255, 0.08);
}

.yellow .pill-list li {
  border: 1px solid rgba(12, 27, 47, 0.26);
  color: var(--ink-dark);
  background: rgba(255, 255, 255, 0.38);
}

.hero-card,
.card,
.step,
.testimonial,
.quote-form,
.map-card,
.floating-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
}

.muted {
  margin: 0;
}

.blue .muted {
  color: var(--muted-light);
}

.yellow .muted {
  color: var(--muted-dark);
}

.tiny {
  margin: 0.15rem 0 0;
  font-size: 0.86rem;
}

.hero-carousel {
  margin-top: 1rem;
  overflow: hidden;
}

.slides {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow: hidden;
  transition: transform 360ms ease;
}

.slide {
  min-height: 158px;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink-dark);
}

.slide h3 {
  margin: 0.35rem 0 0.2rem;
}

.dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.dots button {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.dots button.active {
  background: var(--red);
}

.section-header {
  text-align: center;
  display: grid;
  gap: 0.35rem;
}

#sermi .section-header {
  margin-bottom: 1rem;
}

.max-600 {
  max-width: 600px;
  margin: 0 auto;
}

.services-grid,
.steps,
.quote-grid {
  display: grid;
  gap: 1.3rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  margin-top: 1.1rem;
  align-items: stretch;
}

.card {
  padding: 1.35rem;
}

.blue .card,
.blue .step,
.blue .testimonial,
.blue .quote-form,
.blue .floating-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.yellow .card,
.yellow .step,
.yellow .testimonial,
.yellow .quote-form,
.yellow .floating-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(12, 27, 47, 0.16);
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.7rem 0 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  align-items: center;
}

.map-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.map-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 1rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.4rem;
}

.chip {
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.blue .chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--ink-light);
}

.yellow .chip {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(12, 27, 47, 0.2);
  color: var(--ink-dark);
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
}

.step-num {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 800;
  background: var(--red);
  color: #fff;
}

.testimonials {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0.9rem;
  overflow: hidden;
  transition: transform 360ms ease;
}

.testimonial {
  min-height: 180px;
  padding: 1.25rem;
}

.quote {
  margin: 0 0 0.7rem;
  font-size: 1.04rem;
}

.author {
  margin: 0;
  font-weight: 600;
}

.pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.22);
  color: var(--ink-dark);
  font-size: 1.45rem;
  cursor: pointer;
}

.quote-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
  gap: 1.5rem;
}

.quote-form {
  padding: 1.4rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.field.split {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.86rem 0.92rem;
  border-radius: 10px;
  border: 1px solid rgba(12, 27, 47, 0.25);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-dark);
  font-size: 0.98rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(227, 6, 19, 0.4);
  border-color: var(--red);
}

.full {
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
  margin: 1rem 0;
}

.contact-link {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.assurance {
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px dashed rgba(12, 27, 47, 0.3);
  background: rgba(255, 255, 255, 0.42);
}

.footer {
  background: linear-gradient(135deg, var(--blue-strong) 0%, #091b3c 100%);
  color: var(--ink-light);
  padding: 2.3rem 0 1.4rem;
  border-top: 2px solid rgba(255, 210, 0, 0.7);
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.footer a {
  color: var(--ink-light);
  text-decoration: none;
}

.footer .muted,
.footer .tiny {
  color: var(--muted-light);
}

.footer-copy {
  text-align: center;
  margin: 1.2rem 0 0;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
}

@media (max-width: 960px) {
  :root {
    --anchor-offset: 84px;
  }

  .nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: 78px;
    width: 220px;
    padding: 0.9rem;
    border-radius: 12px;
    flex-direction: column;
    gap: 0.25rem;
    background: linear-gradient(135deg, var(--blue-strong) 0%, #08214e 100%);
    border: 1px solid rgba(255, 210, 0, 0.55);
  }

  .nav.open {
    display: flex;
  }

  .cta-group {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo-img {
    height: 54px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.4rem, var(--max-width));
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 0.9rem;
  }


  .hero-sermi-banner {
    width: 100%;
    max-width: 560px;
    border-radius: 14px;
  }

  .hero-sermi-mark {
    min-width: 86px;
    padding: 0 0.56rem;
  }

  .hero-sermi-logo {
    max-width: 104px;
  }

  .hero-sermi-copy {
    padding: 0.42rem 0.72rem;
    font-size: 0.88rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .next-yellow::after,
  .next-blue::after {

    height: 34px;
    bottom: -33px;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .pill.prev,
  .pill.next {
    justify-self: center;
  }

  .floating-whatsapp {
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.92rem;
    padding: 0.74rem 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}






.js.scrolling-up .next-yellow::after,
.js.scrolling-up .next-blue::after {
  opacity: 0 !important;
  transform: translateY(-10px) !important;
}


@media (max-width: 1280px) {
  .cta-group .btn-number {
    display: none;
  }
}


.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card-title {
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 4.8rem;
  padding: 0.88rem 1.15rem 0.92rem;
  background: linear-gradient(135deg, var(--blue-strong) 0%, #103a80 100%);
  color: var(--ink-light);
  border-bottom: 1px solid rgba(255, 210, 0, 0.82);
  font-size: 1.16rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.15rem 1.2rem;
}

.service-card-body > p {
  margin: 0;
}

.service-card-body > ul {
  margin: 0.72rem 0 0;
  padding-left: 1.1rem;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(6, 21, 50, 0.26);
  border-color: rgba(12, 27, 47, 0.34);
}

.service-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.82rem 1.15rem 0.86rem;
  background: linear-gradient(135deg, var(--blue-strong) 0%, #103a80 100%);
  color: var(--ink-light);
  border-top: 1px solid rgba(255, 210, 0, 0.84);
  border-radius: 0 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card-footer-label {
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.service-card-footer-icon {
  position: relative;
  width: 1.72rem;
  height: 1.72rem;
  border-radius: 999px;
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 14px rgba(6, 21, 50, 0.28);
  flex: 0 0 auto;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.service-card-footer-icon::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0.49rem;
  width: 0;
  height: 0;
  border-top: 0.36rem solid transparent;
  border-bottom: 0.36rem solid transparent;
  border-left: 0.5rem solid var(--blue-strong);
}

.service-card:focus-visible {
  outline: 3px solid rgba(255, 210, 0, 0.7);
  outline-offset: 2px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: fit-content;
  margin-top: 0.95rem;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid rgba(12, 27, 47, 0.24);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 18px rgba(6, 21, 50, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.blue .card-cta {
  color: var(--ink-light);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.service-card:hover .service-card-footer,
.service-card:focus-visible .service-card-footer {
  background: linear-gradient(135deg, #0b2b62 0%, #16468f 100%);
  border-top-color: rgba(255, 210, 0, 0.96);
}

.service-card:hover .service-card-footer-icon,
.service-card:focus-visible .service-card-footer-icon {
  transform: translateX(2px);
  box-shadow: 0 10px 18px rgba(6, 21, 50, 0.34);
}

.sermi-card:hover .card-cta,
.sermi-card:focus-visible .card-cta {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(6, 21, 50, 0.22);
  border-color: rgba(255, 210, 0, 0.9);
}

.sermi-card {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 1.2rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sermi-card:hover,
.sermi-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 34px rgba(5, 18, 44, 0.32);
  border-color: rgba(255, 210, 0, 0.7);
}

.sermi-logo-wrap {
  display: grid;
  place-items: center;
}

.sermi-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.sermi-logo.large {
  max-width: 260px;
}

.sermi-content h3 {
  margin-bottom: 0.6rem;
}

.sermi-content ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.landing-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.landing-bullets {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
}

.landing-bullets li {
  margin-bottom: 0.35rem;
}

.landing-fact-card {
  margin-top: 0.8rem;
  padding: 1.2rem;
}

.center-cta {
  justify-content: center;
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: auto;
  }

  .service-card-title {
    min-height: 0;
    align-items: flex-start;
    padding: 0.78rem 1rem 0.82rem;
    font-size: 1.04rem;
  }

  .service-card-body {
    padding: 1rem 1rem 0.9rem;
  }

  .service-card-footer {
    padding: 0.72rem 1rem 0.78rem;
    gap: 0.7rem;
  }

  .service-card-footer-label {
    font-size: 0.95rem;
  }

  .service-card-footer-icon {
    width: 1.62rem;
    height: 1.62rem;
  }

  .service-card-footer-icon::before {
    left: 0.6rem;
    top: 0.44rem;
  }
}

@media (max-width: 980px) {
  .sermi-card {
    grid-template-columns: 1fr;
  }

  .landing-fact-card {
    margin-top: 0;
  }
}










