:root {
  --yellow: #f7ed13;
  --yellow-soft: #fff889;
  --blue: #26318d;
  --cyan: #119dca;
  --ink: #111827;
  --muted: #64748b;
  --paper: #fffdf1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(17, 157, 202, 0.14), transparent 34rem),
    linear-gradient(180deg, #fffefb 0%, #fffbe9 55%, #fdf6d2 100%);
  font-family: "Assistant", "Heebo", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  direction: ltr;
  background: rgba(255, 253, 241, 0.86);
  border-bottom: 1px solid rgba(38, 49, 141, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 241, 0.96);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.7rem clamp(1rem, 4vw, 4.5rem);
}

.brand img {
  display: block;
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(0.5rem, 2vw, 1.75rem);
  color: var(--blue);
  font-weight: 800;
}

.site-nav a {
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  transition: background 0.2s ease;
}

.site-nav a:hover {
  background: rgba(38, 49, 141, 0.08);
}

.lang-selector {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(38, 49, 141, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.45rem 0.8rem;
  color: var(--blue);
  font-family: inherit;
  font-size: 1.05rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lang-toggle:hover {
  border-color: var(--blue);
}

.lang-chevron {
  font-size: 0.6rem;
  opacity: 0.7;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(38, 49, 141, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem clamp(1rem, 4vw, 4.5rem) 0.75rem;
  border-top: 1px solid rgba(38, 49, 141, 0.1);
}

.mobile-nav.show {
  display: flex;
}

.mobile-nav a {
  width: 100%;
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid rgba(38, 49, 141, 0.08);
  color: var(--blue);
  font-weight: 800;
  font-size: 1.05rem;
  text-align: center;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 82px);
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5.5rem) 3rem;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--cyan);
  font-family: "Heebo", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  color: var(--blue);
  font-family: "Heebo", sans-serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 900;
  line-height: 0.95;
}

h2 {
  color: var(--blue);
  font-family: "Heebo", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

h3 {
  color: var(--blue);
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  color: #273449;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(38, 49, 141, 0.24);
}

.button.primary:hover {
  background: #1f2870;
  box-shadow: 0 16px 34px rgba(38, 49, 141, 0.3);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--blue);
  border-color: rgba(38, 49, 141, 0.22);
}

.button.secondary:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(38, 49, 141, 0.12);
}

.hero-panel {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    var(--yellow);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 13% 10% 14% 6%;
  border: 10px solid var(--cyan);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-20deg);
  opacity: 0.95;
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: 13%;
  left: 8%;
  width: 92px;
  height: 92px;
  border-top: 10px solid var(--cyan);
  border-left: 10px solid var(--cyan);
  transform: rotate(-44deg);
}

.rate-card {
  position: absolute;
  inset: auto 9% 10% 9%;
  z-index: 1;
  padding: 1.5rem;
  border: 1px solid rgba(38, 49, 141, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(38, 49, 141, 0.15);
}

.rate-card span,
.rate-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.rate-card strong {
  display: block;
  color: var(--blue);
  direction: ltr;
  font-family: "Heebo", sans-serif;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 1;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 0.6rem 1rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.18);
}

.chip-one {
  top: 16%;
  right: -1rem;
}

.chip-two {
  left: -0.8rem;
  bottom: 28%;
  background: var(--cyan);
}

.trust-strip,
.content-grid,
.branches,
.hours-contact {
  margin: 0 auto;
  width: min(1120px, calc(100% - 2rem));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(38, 49, 141, 0.14);
  border-radius: 18px;
  background: rgba(38, 49, 141, 0.14);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.1);
}

.trust-strip div {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.82);
}

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

.trust-strip strong {
  color: var(--blue);
  font-family: "Heebo", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 800;
}

.content-grid,
.branches,
.hours-contact {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 1.7rem;
}

.service-list,
.branch-grid,
.hours-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-list article,
.branch-card {
  border: 1px solid rgba(38, 49, 141, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list article:hover,
.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.12);
}

.service-list article {
  min-height: 220px;
  padding: 1.5rem;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 900;
}

.service-list p,
.branch-card p {
  color: #334155;
  font-size: 1.08rem;
  font-weight: 600;
}

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

.branch-card {
  position: relative;
  min-height: 250px;
  padding: 1.6rem;
  overflow: visible;
}

.branch-card::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
  border: 20px solid rgba(17, 157, 202, 0.12);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.branch-number {
  color: rgba(38, 49, 141, 0.18);
  direction: ltr;
  font-family: "Heebo", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.9;
}

.branch-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 3px solid var(--cyan);
}

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

.hours-card,
.contact-card {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: 22px;
}

.hours-card {
  border: 1px solid rgba(38, 49, 141, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
}

.contact-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), #171f57);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 60px rgba(38, 49, 141, 0.28);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -4rem;
  inset-inline-end: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card .eyebrow {
  color: var(--yellow);
}

.contact-card h3,
.contact-card .phone-link {
  color: #fff;
}

.contact-card .button.primary {
  background: var(--yellow);
  color: var(--blue);
  box-shadow: none;
}

.contact-card .button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.contact-card .contact-note {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  border-top-color: rgba(255, 255, 255, 0.18);
}

.contact-card .contact-note span {
  color: var(--yellow);
}

dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--paper);
}

dt,
dd {
  margin: 0;
  font-weight: 900;
}

dd,
.phone-link {
  color: var(--blue);
  direction: ltr;
  font-family: "Heebo", sans-serif;
}

.phone-link {
  display: inline-flex;
  margin-top: 0.5rem;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 900;
}

.site-footer {
  background: linear-gradient(135deg, var(--blue), #171f57);
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 5vw, 5.5rem) 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1120px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

.footer-brand .brand-mark {
  display: inline-flex;
  padding: 0.4rem 0.6rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
}

.footer-brand img {
  display: block;
  height: 38px;
  width: auto;
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col h4 {
  margin: 0 0 0.3rem;
  color: var(--yellow);
  font-family: "Heebo", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 700;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.section-description {
  max-width: 680px;
  color: #334155;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  margin-top: 0.75rem;
}

.section-heading div {
  display: flex;
  flex-direction: column;
}

.section-heading h2 span {
  color: var(--cyan);
}

.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.8rem;
  min-height: 280px;
}

.service-card.featured-service {
  border-color: var(--cyan);
  border-width: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 137, 0.2));
}

.service-number {
  color: rgba(38, 49, 141, 0.2);
  font-family: "Heebo", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  margin: 0.75rem 0;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 3px solid var(--cyan);
  font-size: 0.95rem;
}

.service-link:hover {
  color: var(--cyan);
}

.about-section {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  width: min(100%, calc(100% - 2rem));
}

.about-content {
  max-width: 580px;
}

.about-text {
  color: #273449;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  font-weight: 900;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  color: var(--blue);
  font-size: 1rem;
}

.feature-item small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card {
  border: 2px solid var(--cyan);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  max-width: 260px;
}

.about-stat {
  text-align: center;
  margin-bottom: 1.5rem;
}

.stat-number {
  font-family: "Heebo", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.about-divider {
  height: 1px;
  background: rgba(38, 49, 141, 0.1);
  margin: 1.5rem 0;
}

.about-detail {
  text-align: center;
}

.about-detail strong {
  display: block;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 900;
}

.about-detail span {
  display: block;
  color: var(--cyan);
  font-weight: 900;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  direction: ltr;
}

.why-us-section {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: rgba(38, 49, 141, 0.03);
}

.why-container {
  max-width: 1120px;
  margin: 0 auto;
  width: min(100%, calc(100% - 2rem));
}

.why-container h2 {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  border: 1px solid rgba(38, 49, 141, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.why-number {
  color: var(--cyan);
  font-family: "Heebo", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
}

.why-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.why-card p {
  color: #334155;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

.branches {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.branch-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 900;
  transition: color 0.25s ease;
}

.branch-card a:hover {
  color: var(--cyan);
}

.contact-note {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(38, 49, 141, 0.1);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-note span {
  color: var(--cyan);
  flex-shrink: 0;
}

.contact-note span {
  color: var(--cyan);
  flex-shrink: 0;
}

.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.2);
  text-decoration: none;
}

.floating-btn svg {
  display: block;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.3);
}

.floating-call {
  background: var(--blue);
  color: var(--white);
}

.floating-whatsapp {
  background: #25d366;
  color: var(--white);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  z-index: 45;
  min-width: 170px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  border: 1px solid rgba(38, 49, 141, 0.2);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.15);
  padding: 0.5rem;
  backdrop-filter: blur(12px);
}

.lang-dropdown.show {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.95rem;
  transition: background 0.25s ease;
}

.lang-dropdown a:hover {
  background: rgba(38, 49, 141, 0.08);
}

.lang-dropdown a.active {
  background: rgba(38, 49, 141, 0.06);
}

@media (max-width: 860px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .lang-selector {
    justify-self: center;
  }

  .lang-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: flex;
  }

  .hero,
  .service-list,
  .branch-grid,
  .hours-contact,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-container,
  .about-visual {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 330px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 44px;
  }

  h1 {
    font-size: clamp(2.45rem, 16vw, 4.2rem);
  }

  dl div,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    gap: 2rem;
  }

  .button {
    width: 100%;
  }

  .why-card:hover {
    transform: translateY(-2px);
  }

  .floating-actions {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }

  .floating-btn {
    width: 3rem;
    height: 3rem;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }

  .lang-dropdown {
    min-width: 160px;
  }
}

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