:root {
  --bg: #f5f9fc;
  --surface: #ffffff;
  --surface-alt: #eef4f9;
  --ink: #11233c;
  --muted: #5f7088;
  --line: rgba(17, 35, 60, 0.12);
  --primary: #0f5d99;
  --primary-deep: #0a3f69;
  --primary-soft: #dcebfb;
  --accent: #ff8a3d;
  --accent-soft: #fff1e6;
  --success: #16985a;
  --shadow-lg: 0 32px 80px rgba(18, 40, 70, 0.14);
  --shadow-md: 0 18px 40px rgba(18, 40, 70, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 93, 153, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 138, 61, 0.12), transparent 24%),
    linear-gradient(180deg, #fafdff 0%, #f3f7fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 93, 153, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 93, 153, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(var(--max-width), calc(100% - 1.5rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.9rem, 8vw, 5.6rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.15;
}

p {
  margin: 0;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 16px 32px rgba(15, 93, 153, 0.22);
}

.button-secondary {
  color: var(--primary);
  background: rgba(15, 93, 153, 0.09);
}

.button-small {
  min-height: 44px;
  padding: 0.75rem 1rem;
}

.button-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 253, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 35, 60, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  flex: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.brand-copy span:last-child {
  font-size: 0.84rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a:not(.button) {
  font-weight: 600;
  color: rgba(17, 35, 60, 0.78);
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  padding-top: 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-lead {
  max-width: 62ch;
  margin-top: 1.2rem;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin-top: 1.8rem;
  padding: 0.75rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 35, 60, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.search-bar input {
  min-height: 56px;
  padding: 0 1rem;
  border: 0;
  border-radius: 18px;
  background: var(--surface-alt);
  color: var(--ink);
}

.search-bar input:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid rgba(15, 93, 153, 0.24);
  outline-offset: 2px;
}

.search-feedback {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.hero-tags li {
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 35, 60, 0.08);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-metrics article {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 35, 60, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
}

.hero-metrics span {
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-main-card,
.floating-note,
.mini-spotlight {
  border: 1px solid rgba(17, 35, 60, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.hero-main-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 0.9rem;
  transform: rotate(-2deg);
}

.hero-main-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
}

.floating-note {
  position: relative;
  padding: 1.35rem;
  border-radius: 28px;
}

.floating-note::after {
  content: "";
  position: absolute;
  inset: auto 1.4rem -0.6rem auto;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.28), rgba(15, 93, 153, 0.18));
  z-index: -1;
}

.note-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #a44e00;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

.floating-note p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.mini-spotlight {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 26px;
  animation: floaty 6s ease-in-out infinite;
}

.mini-spotlight img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 20px;
}

.mini-spotlight strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.mini-spotlight span {
  color: var(--muted);
}

.booking-strip {
  position: relative;
  display: grid;
  gap: 1.3rem;
  margin-top: 2rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 61, 0.26), transparent 34%),
    linear-gradient(135deg, #0e4f82 0%, #092f4e 100%);
  box-shadow: var(--shadow-lg);
}

.booking-strip-copy h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.booking-strip-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.booking-inline {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 35, 60, 0.1);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
}

.booking-strip .field input,
.booking-strip .field select {
  border-color: rgba(255, 255, 255, 0.14);
}

.booking-result {
  min-height: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.booking-result-solid {
  margin-top: 1rem;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(15, 93, 153, 0.08);
  color: var(--primary-deep);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-note {
  max-width: 56ch;
  color: var(--muted);
}

.promise-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.promise-card,
.process-card,
.testimonial-card,
.service-card,
.gallery-card,
.booking-form-card,
.contact-card,
.booking-content,
.partner-strip,
.site-footer,
.contact-card,
.showcase-list article {
  border: 1px solid rgba(17, 35, 60, 0.08);
}

.promise-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.icon-badge {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--primary-soft), rgba(255, 138, 61, 0.14));
}

.icon-badge svg {
  width: 42px;
  height: 42px;
}

.icon-badge circle,
.icon-badge path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promise-card h3,
.process-card h3,
.testimonial-card strong,
.service-body h3,
.booking-checklist strong {
  margin-bottom: 0.65rem;
}

.promise-card p,
.process-card p,
.testimonial-card span,
.service-body p,
.booking-checklist span {
  color: var(--muted);
}

.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card.is-hidden {
  display: none;
}

.service-card.is-highlighted {
  border-color: rgba(255, 138, 61, 0.5);
  box-shadow: 0 24px 40px rgba(255, 138, 61, 0.16);
}

.service-media {
  overflow: hidden;
  height: 220px;
  border-radius: 24px;
  background: var(--surface-alt);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-media-illustrated {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-media-illustrated svg {
  width: 100%;
  height: 100%;
}

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

.service-kicker {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
}

.service-tags span {
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: rgba(15, 93, 153, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
}

.service-book-button {
  margin-top: auto;
  align-self: flex-start;
}

.process {
  background: linear-gradient(180deg, rgba(15, 93, 153, 0.05), transparent 100%);
}

.process-grid {
  counter-reset: process;
}

.process-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 22px;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 28px rgba(15, 93, 153, 0.22);
}

.showcase {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 61, 0.18), transparent 22%),
    linear-gradient(135deg, #0f2f4b 0%, #0a496f 100%);
}

.showcase-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.showcase-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.showcase-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.showcase-list article {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.showcase-list strong {
  display: block;
  margin-bottom: 0.35rem;
}

.showcase-gallery {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.testimonials {
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.05), transparent 100%);
}

.testimonial-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.testimonial-card p {
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.testimonial-card strong {
  display: block;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
}

.booking-grid {
  display: grid;
  gap: 1.2rem;
}

.booking-content {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(15, 93, 153, 0.08), rgba(255, 138, 61, 0.07));
}

.booking-checklist {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.booking-checklist article {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
}

.contact-card {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.contact-card span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.contact-card a {
  font-weight: 700;
}

.booking-form-card {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  gap: 0.95rem;
}

.field-full {
  grid-column: 1 / -1;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.slot-chip {
  min-height: 52px;
  padding: 0.8rem;
  border: 1px solid rgba(17, 35, 60, 0.12);
  border-radius: 18px;
  background: rgba(15, 93, 153, 0.04);
  color: var(--ink);
  font-weight: 700;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.slot-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-color: transparent;
  transform: translateY(-1px);
}

.partner-strip {
  margin: 0 0 0.75rem;
  padding: 0;
  background: none;
  box-shadow: none;
}

.partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.95), rgba(255, 166, 102, 0.88));
  box-shadow: 0 18px 40px rgba(255, 138, 61, 0.2);
}

.partner-inner .eyebrow {
  color: rgba(17, 35, 60, 0.7);
}

.partner-inner h2 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.site-footer {
  margin-top: 0.75rem;
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.86);
  background: #0a2034;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

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

.site-footer h3 {
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.site-footer a,
.site-footer p,
.site-footer small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a + a,
.site-footer a + p,
.site-footer p + small {
  margin-top: 0.55rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #27d367, #1faa55);
  box-shadow: 0 20px 38px rgba(39, 211, 103, 0.34);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (min-width: 700px) {
  .section {
    padding: 6.5rem 0;
  }

  .booking-inline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
  }

  .booking-inline .booking-result {
    grid-column: 1 / -1;
  }

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

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

  .gallery-card-large {
    grid-row: span 2;
  }

  .showcase-gallery {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .booking-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

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

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 0.6fr);
  }
}

@media (min-width: 920px) {
  .hero {
    padding-top: 3.2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
  }

  .hero-side-stack {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

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

  .services-grid .service-card:first-child {
    grid-column: span 2;
  }

  .showcase-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 919px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0.75rem;
    left: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 35, 60, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .button {
    width: 100%;
  }
}

@media (max-width: 699px) {
  .search-bar {
    grid-template-columns: 1fr;
  }

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

  .hero-metrics article {
    padding: 0.95rem 0.8rem;
  }

  .hero-metrics span {
    font-size: 0.82rem;
  }

  .mini-spotlight {
    grid-template-columns: 1fr;
  }

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

  .partner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float span {
    display: none;
  }
}

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

  .brand-copy span:last-child {
    display: none;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .header-inner {
    gap: 0.5rem;
    min-height: 78px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
