@font-face {
  font-display: swap;
  font-family: 'Poppins';
  src: url('/assets/fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-weight: 500 800;
  src: url('/assets/fonts/Raleway-Medium.ttf') format('truetype');
}

:root {
  --bg: #fff9fa;
  --surface: #ffffff;
  --surface-soft: #fff1f6;
  --pink-50: #fbdce1;
  --pink-100: #ffc3d8;
  --pink-200: #fc87a9;
  --pink-300: #fb5e90;
  --pink-400: #f14d88;
  --text: #14181b;
  --muted: #57636c;
  --line: rgba(251, 94, 144, 0.18);
  --shadow: 0 24px 80px rgba(251, 94, 144, 0.16);
  --shadow-strong: 0 34px 100px rgba(251, 94, 144, 0.22);
  --radius: 28px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --max-width: 1180px;
  --page-x: 24px;
  --section-y: 92px;
  --section-y-compact: 74px;
  --nav-offset: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(251, 220, 225, 0.8), transparent 30rem),
    linear-gradient(180deg, #fff9fa 0%, #ffffff 45%, #fff9fa 100%);
  color: var(--text);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

body::selection {
  background: var(--pink-100);
  color: var(--text);
}

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

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

button {
  border: 0;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(251, 94, 144, 0.42);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
}

.nav {
  align-items: center;
  background: rgba(255, 249, 250, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(251, 94, 144, 0.13);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(20, 24, 27, 0.08);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  left: 50%;
  max-width: var(--max-width);
  padding: 10px 12px 10px 18px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 40;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  border-radius: 16px;
  height: 38px;
  width: 38px;
}

.brand span {
  color: var(--pink-300);
  font-family: 'Raleway', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: rgba(20, 24, 27, 0.72);
  font-size: 0.84rem;
  padding: 10px 11px;
  position: relative;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(251, 94, 144, 0.1);
  color: var(--pink-300);
}

.nav-cta {
  background: var(--text);
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  padding: 11px 16px;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.nav-cta:hover {
  box-shadow: 0 12px 30px rgba(20, 24, 27, 0.16);
  transform: translateY(-2px);
}

.nav-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: var(--section-y) var(--page-x);
  scroll-margin-top: var(--nav-offset);
}

.hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.93fr) minmax(320px, 1.07fr);
  min-height: min(920px, 100svh);
  padding-bottom: 76px;
  padding-top: 124px;
}

#servicios {
  padding-bottom: 58px;
  padding-top: 86px;
}

#app,
#especialistas,
#cobertura,
#seguridad,
#faq {
  padding-bottom: 90px;
  padding-top: 82px;
}

#cobertura {
  padding-bottom: var(--section-y-compact);
  padding-top: var(--section-y-compact);
}

.eyebrow {
  align-items: center;
  background: rgba(251, 94, 144, 0.1);
  border: 1px solid rgba(251, 94, 144, 0.18);
  border-radius: 999px;
  color: var(--pink-400);
  display: inline-flex;
  font-size: 0.82rem;
  gap: 8px;
  padding: 7px 12px;
}

.eyebrow::before {
  background: var(--pink-300);
  border-radius: 50%;
  content: '';
  height: 8px;
  width: 8px;
}

h1,
h2,
h3 {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 11vw, 8.9rem);
  margin-top: 24px;
}

h2 {
  font-size: clamp(2.15rem, 4.35vw, 4.25rem);
  line-height: 1.04;
  max-width: 780px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  margin: 24px 0 0;
  max-width: 580px;
}

.hero-actions,
.section-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.button-primary {
  background: linear-gradient(135deg, var(--pink-300), var(--pink-200));
  box-shadow: 0 18px 45px rgba(251, 94, 144, 0.28);
  color: #fff;
}

.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}

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

.hero-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  max-width: 650px;
}

.metric {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.metric strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 0.84rem;
  margin-top: 8px;
}

.hero-visual {
  min-height: 560px;
  position: relative;
}

.hero-frame {
  border-radius: 42px;
  box-shadow: var(--shadow-strong);
  height: min(66vh, 640px);
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.hero-frame img {
  height: 108%;
  object-fit: cover;
  width: 100%;
  will-change: transform;
}

.hero-frame::after {
  background: linear-gradient(180deg, transparent 45%, rgba(20, 24, 27, 0.38));
  content: '';
  inset: 0;
  position: absolute;
}

.floating-card {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  bottom: 30px;
  box-shadow: 0 22px 60px rgba(20, 24, 27, 0.18);
  left: -24px;
  padding: 18px;
  position: absolute;
  width: min(330px, 78vw);
  z-index: 3;
}

.floating-card small {
  color: var(--pink-300);
  font-weight: 800;
}

.floating-card p {
  color: var(--text);
  font-weight: 700;
  margin: 5px 0 0;
}

.section-header {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  margin-bottom: 36px;
}

#servicios .section-header {
  margin-bottom: 30px;
}

.section-header p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 45px rgba(20, 24, 27, 0.06);
  color: inherit;
  cursor: pointer;
  min-height: 0;
  overflow: hidden;
  position: relative;
  text-align: left;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  width: 100%;
}

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

.service-card figure {
  aspect-ratio: 1.32;
  margin: 0;
  overflow: hidden;
}

.service-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms var(--ease);
  width: 100%;
}

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

.service-card div {
  min-height: 144px;
  padding: 18px 18px 20px;
}

.service-card h3 {
  font-size: clamp(1.32rem, 1.65vw, 1.68rem);
  line-height: 1.08;
}

.service-card p {
  color: var(--muted);
  line-height: 1.45;
  margin: 6px 0 0;
}

.service-card-action {
  color: var(--pink-300);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 14px;
}

.service-card-action::after {
  content: '→';
  margin-left: 7px;
  transform: translateY(-1px);
  transition: transform 180ms var(--ease);
}

.service-card:hover .service-card-action::after {
  transform: translate(3px, -1px);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  align-items: center;
  display: grid;
  inset: 0;
  padding: 24px;
  position: fixed;
  z-index: 80;
}

.gallery-backdrop {
  background: rgba(20, 24, 27, 0.42);
  backdrop-filter: blur(18px);
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.gallery-panel {
  background: rgba(255, 249, 250, 0.96);
  border: 1px solid rgba(251, 94, 144, 0.18);
  border-radius: 34px;
  box-shadow: 0 34px 110px rgba(20, 24, 27, 0.24);
  margin: 0 auto;
  max-height: min(880px, calc(100svh - 48px));
  max-width: 1040px;
  overflow: auto;
  padding: 26px;
  position: relative;
  width: min(100%, 1040px);
}

.gallery-header {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) 48px;
  margin-bottom: 22px;
}

.gallery-header h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-top: 12px;
  max-width: 720px;
}

.gallery-header p {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 680px;
}

.gallery-close {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  display: grid;
  font-size: 1.9rem;
  height: 48px;
  line-height: 1;
  place-items: center;
  width: 48px;
}

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

.gallery-grid figure {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(20, 24, 27, 0.07);
  margin: 0;
  overflow: hidden;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms var(--ease);
  width: 100%;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.app-flow {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 26px;
  display: grid;
  gap: 18px;
  grid-template-columns: 44px 1fr;
  padding: 16px 18px;
}

.step-number {
  align-items: center;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-200));
  border-radius: 17px;
  color: #fff;
  display: grid;
  font-weight: 800;
  height: 44px;
  place-items: center;
  width: 44px;
}

.step h3 {
  font-size: clamp(1.28rem, 1.7vw, 1.62rem);
  line-height: 1.08;
}

.step p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 8px 0 0;
}

.phone-mock {
  background: #111;
  border-radius: 46px;
  box-shadow: var(--shadow-strong);
  margin: 0 auto;
  max-width: 360px;
  padding: 12px;
}

.phone-screen {
  background: linear-gradient(180deg, #fff, var(--surface-soft));
  border-radius: 36px;
  min-height: 620px;
  overflow: hidden;
  padding: 18px;
}

.phone-hero {
  border-radius: 28px;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.phone-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-top: 14px;
  padding: 16px;
}

.phone-card strong {
  display: block;
}

.phone-card span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  margin-top: 4px;
}

.audience {
  background: linear-gradient(135deg, rgba(251, 220, 225, 0.64), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 42px;
  padding: 32px;
}

.audience .section-header {
  align-items: start;
  margin-bottom: 44px;
}

.audience .section-header h2 {
  margin-top: 18px;
}

.segmented {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
  padding: 5px;
}

.segmented button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 12px 18px;
  transition: background 160ms var(--ease), color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.segmented button.is-active {
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 24, 27, 0.08);
  color: var(--pink-300);
}

.audience-panels {
  margin-top: 28px;
}

.audience-panel {
  animation: fadePanel 160ms var(--ease);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
}

.audience-panel h3 {
  margin-bottom: 18px;
}

.audience-panel[hidden] {
  display: none;
}

@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.feature-list li {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  list-style: none;
  padding: 14px 16px;
}

.audience-image {
  border-radius: 34px;
  box-shadow: var(--shadow);
  height: clamp(320px, 33vw, 430px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.audience-panel[data-audience-panel='especialistas'] .audience-image {
  object-position: center 62%;
}

.coverage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: 0 16px 60px rgba(20, 24, 27, 0.06);
  padding: 34px;
}

.districts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.districts span {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  padding: 10px 14px;
}

.trust-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 241, 246, 0.72));
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: 0 22px 70px rgba(251, 94, 144, 0.1);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  padding: 24px;
}

.trust-summary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 241, 246, 0.8)),
    url('/assets/landing/trust-detail.webp') center/cover;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  overflow: hidden;
  padding: 26px;
}

.trust-kicker {
  align-items: center;
  background: rgba(251, 94, 144, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--pink-300);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 8px;
  padding: 8px 12px;
  width: fit-content;
}

.trust-kicker::before {
  background: var(--pink-300);
  border-radius: 50%;
  content: '';
  height: 8px;
  width: 8px;
}

.trust-summary h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.05;
  margin-top: 120px;
  max-width: 330px;
}

.trust-summary p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 360px;
}

.trust-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 26px;
  min-height: 172px;
  padding: 22px;
}

.trust-icon {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--pink-300);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.trust-card h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.5rem);
  line-height: 1.08;
}

.trust-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  margin: 12px 0 0;
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  width: 100%;
}

.faq-item button::after {
  content: '+';
  color: var(--pink-300);
  font-size: 1.45rem;
  line-height: 1;
}

.faq-item.is-open button::after {
  content: '-';
}

.faq-item p {
  color: var(--muted);
  display: none;
  margin: 0;
  padding: 0 22px 22px;
}

.faq-item.is-open p {
  display: block;
}

.footer {
  background: #14181b;
  color: #fff;
  margin-top: 56px;
  padding: 54px 24px 34px;
}

.footer-inner {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: var(--max-width);
}

.footer .brand span {
  color: #fff;
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
}

.footer-links {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.legal-page {
  margin: 0 auto;
  max-width: 900px;
  padding: 132px 24px 80px;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 8vw, 5.6rem);
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 70px rgba(20, 24, 27, 0.07);
  margin-top: 30px;
  padding: 32px;
}

.legal-card h2 {
  font-size: 1.55rem;
  margin-top: 30px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

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

@media (max-width: 980px) {
  .nav {
    border-radius: 26px;
    align-items: flex-start;
  }

  .nav-links {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    left: 14px;
    padding: 10px;
    position: absolute;
    right: 14px;
    top: 66px;
  }

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

  .nav-links a {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .app-flow,
  .audience-panel,
  .section-header,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-visual,
  .hero-frame {
    min-height: 420px;
  }

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

  .section-header {
    align-items: start;
    margin-bottom: 30px;
  }

  .trust-summary {
    min-height: 300px;
  }

  .trust-summary h3 {
    margin-top: 90px;
  }

  .audience-image {
    height: 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .gallery-panel {
    border-radius: 28px;
    padding: 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-x: 18px;
    --section-y: 68px;
    --section-y-compact: 56px;
    --nav-offset: 82px;
  }

  .section {
    padding: var(--section-y) var(--page-x);
  }

  #servicios,
  #app,
  #especialistas,
  #cobertura,
  #seguridad,
  #faq {
    padding-bottom: var(--section-y);
    padding-top: var(--section-y);
  }

  .hero {
    gap: 34px;
    padding-bottom: 58px;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3.7rem, 20vw, 5.4rem);
  }

  .hero-metrics,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    border-radius: 30px;
    height: 430px;
    min-height: 430px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .floating-card {
    bottom: 14px;
    left: 12px;
  }

  .audience,
  .coverage,
  .legal-card {
    border-radius: 28px;
    padding: 22px;
  }

  .audience .section-header {
    margin-bottom: 32px;
  }

  .audience .section-header h2 {
    margin-top: 14px;
  }

  .audience-panel h3 {
    margin-bottom: 14px;
  }

  .segmented {
    width: 100%;
  }

  .segmented button {
    padding: 11px 10px;
  }

  .audience-image {
    height: 300px;
  }

  .phone-screen {
    min-height: 520px;
  }

  .service-card div {
    min-height: 128px;
  }

  .trust-panel {
    border-radius: 30px;
    padding: 16px;
  }

  .trust-summary {
    border-radius: 24px;
    min-height: 250px;
    padding: 22px;
  }

  .trust-summary h3 {
    margin-top: 54px;
  }

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

  .trust-card {
    border-radius: 22px;
    min-height: auto;
    padding: 20px;
  }

  .gallery-modal {
    padding: 12px;
  }

  .gallery-panel {
    max-height: calc(100svh - 24px);
    padding: 16px;
  }

  .gallery-header {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .gallery-close {
    height: 44px;
    width: 44px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-grid figure {
    border-radius: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
