:root {
  --bg: #f0f1f3;
  --paper: #ffffff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --red: #2563eb;
  --red-deep: #1d4ed8;
  --gold: #60a5fa;
  --line: #dbe2ec;
  --ok: #25d366;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 10px 20px rgba(10, 10, 12, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 4%, #ffffff 0, #eff1f4 36%, #e8ebef 100%);
  line-height: 1.5;
}

.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;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

main {
  padding: 0.9rem 0 2.2rem;
}

.section-shell {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #d0d9e8;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.section-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa 0%, #1d4ed8 100%);
  z-index: 2;
}

.section-shell:hover {
  transform: translateY(-2px);
  border-color: #b8c7df;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.section-shell:not(.container) {
  width: min(1180px, 94vw);
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: "Rajdhani", sans-serif;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.24), transparent 32%),
    linear-gradient(130deg, #0d0f12 0%, #1f242b 50%, #0f1115 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -48deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 12px,
    transparent 12px,
    transparent 38px
  );
  background-size: 220px 220px;
  animation: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, rgba(96, 165, 250, 0) 68%);
  animation: none;
}

.topbar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.brand-icon {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: cover;
  object-position: left center;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 10px;
  font-size: 1.2rem;
  padding: 0.4rem 0.7rem;
}

.menu {
  display: flex;
  gap: 0.95rem;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.menu a:hover {
  border-color: #60a5fa;
  color: #dbeafe;
}

.menu a.active,
.menu a[aria-current="page"] {
  border-color: #93c5fd;
  color: #dbeafe;
  font-weight: 600;
}

.menu-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 2rem 0 3.4rem;
}

.page-hero {
  background: radial-gradient(circle at 86% 8%, rgba(59, 130, 246, 0.24), transparent 34%),
    linear-gradient(130deg, #0f1520 0%, #1f2a3a 56%, #111827 100%);
}

.inner-hero {
  position: relative;
  z-index: 2;
  padding: 0.8rem 0 2.4rem;
}

.inner-hero h1 {
  margin: 0.3rem 0 0.45rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.inner-hero .lead {
  max-width: 62ch;
}

.hero-left > * {
  animation: fadeSlideUp 0.7s ease both;
}

.hero-left .eyebrow {
  animation-delay: 0.05s;
}

.hero-left h1 {
  animation-delay: 0.12s;
}

.hero-left .lead {
  animation-delay: 0.22s;
}

.hero-left .cta-group {
  animation-delay: 0.32s;
}

.hero-left .hero-trust {
  animation-delay: 0.42s;
}

.hero-right {
  animation: fadeSlideUp 0.75s 0.25s ease both;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.83rem;
  letter-spacing: 0.09em;
}

h1 {
  margin: 0.4rem 0 0.7rem;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 0.98;
}

.lead {
  margin: 0;
  max-width: 60ch;
  color: #d5deeb;
  font-size: 1rem;
}

.cta-group {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  padding: 0.74rem 1.2rem;
  cursor: pointer;
  transition: transform 0.14s ease, filter 0.14s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.btn.primary {
  background: linear-gradient(130deg, #3b82f6 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 8px 16px rgba(30, 64, 175, 0.24);
  position: relative;
  overflow: hidden;
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.35s ease;
}

.btn.primary:hover::after {
  transform: translateX(120%);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn.ghost.dark {
  color: var(--ink);
  border-color: #c7d2e2;
}

.hero-trust {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-trust span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.3rem 0.64rem;
}

.hero-right {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 0.8rem;
  box-shadow: var(--shadow);
}

.logo {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.logo-note {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: #ced7e4;
}

main section {
  padding: 3.8rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

main section:first-of-type {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.quick-stats {
  margin-top: -1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-stats article {
  background: var(--paper);
  border: 1px solid #d8dde5;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.quick-stats h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1d4ed8;
}

.quick-stats p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
}

.promos {
  background: linear-gradient(135deg, #f7f9fc 0%, #eef3fa 100%);
}

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

.promo-card {
  background: #fff;
  border: 1px solid #d6dfec;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.promo-card:hover {
  transform: translateY(-2px);
  border-color: #bfd0e8;
  box-shadow: 0 10px 18px rgba(30, 58, 138, 0.12);
}

.promo-chip {
  display: inline-block;
  margin-bottom: 0.45rem;
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
}

.promo-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.28rem;
}

.promo-card p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
}

.brands {
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f8 100%);
  border-top: 1px solid #d6dbe3;
  border-bottom: 1px solid #d6dbe3;
}

.brands h2 {
  text-align: center;
  font-size: clamp(1.55rem, 2.7vw, 2.3rem);
  margin: 0;
}

.brand-note {
  margin: 0.85rem auto 1.4rem;
  max-width: 42rem;
  text-align: center;
  color: var(--ink-soft);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
}

.brand-card {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  padding: 1rem 0.85rem 0.9rem;
  background:
    radial-gradient(circle at top, rgba(29, 78, 216, 0.08), transparent 60%),
    #fff;
  border: 1px solid #d6deea;
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: #b9c9e7;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.09);
}

.brand-logo-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 72px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #dce5f1;
  overflow: hidden;
}

.brand-logo-shell img {
  width: auto;
  height: auto;
  max-width: 74px;
  max-height: 44px;
  object-fit: contain;
}

.brand-initial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0f172a;
}

.brand-card.logo-fallback .brand-initial {
  opacity: 1;
}

.brand-name {
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.section-title p {
  margin: 0;
  color: #1e40af;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.83rem;
}

.section-title h2 {
  margin: 0.35rem 0 1.2rem;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1;
}

.portal {
  background: linear-gradient(135deg, #f9fbff 0%, #eff4fd 100%);
}

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

.portal-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #d5e0f0;
  border-radius: var(--radius-md);
  padding: 1.05rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.portal-card:hover {
  transform: translateY(-2px);
  border-color: #bdd1ec;
  box-shadow: 0 10px 18px rgba(30, 58, 138, 0.12);
}

.portal-card h3 {
  margin: 0 0 0.4rem;
}

.portal-card p {
  margin: 0;
  color: var(--ink-soft);
}

.home-cta {
  background: linear-gradient(125deg, #eaf2ff 0%, #dfeaff 100%);
}

.home-cta-wrap {
  text-align: center;
}

.home-cta-wrap h2 {
  margin-bottom: 0.35rem;
}

.home-cta-wrap p {
  margin: 0 0 1rem;
  color: #334155;
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #bfd0e8;
  box-shadow: 0 10px 18px rgba(30, 58, 138, 0.12);
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.28rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.process {
  background: linear-gradient(130deg, #f8f9fb 0%, #eceff3 100%);
}

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

.process-grid article {
  background: #fff;
  border: 1px solid #d5dbe3;
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.process-grid article:hover {
  transform: translateY(-2px);
  border-color: #bfd0e8;
  box-shadow: 0 10px 18px rgba(30, 58, 138, 0.12);
}

.step {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(130deg, #3b82f6 0%, #1d4ed8 100%);
}

.about {
  color: #fff;
  background: radial-gradient(circle at 88% 14%, rgba(37, 99, 235, 0.22), transparent 36%),
    linear-gradient(145deg, #111214 0%, #2a2f35 100%);
}

.about.section-shell {
  border-color: #2d3a52;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.about .section-title p {
  color: var(--gold);
}

.about-story,
.about-values {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  padding: 1.1rem;
}

.placeholder {
  color: #b8c6da;
}

.timeline {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline div {
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 12px;
  padding: 0.75rem;
}

.timeline span {
  display: block;
  color: #93c5fd;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.timeline p {
  margin: 0.3rem 0 0;
}

.history-timeline {
  margin-top: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-story h3 {
  margin: 1rem 0 0.45rem;
  color: #e2ecff;
  font-size: 1.3rem;
}

.history-points {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
}

.history-points li {
  color: #d5dfeb;
}

.about-values h3 {
  margin: 0.4rem 0 0.25rem;
}

.about-values p,
.about-values li {
  color: #d5dfeb;
}

.about-values ul {
  margin: 0;
  padding-left: 1.1rem;
}

.about-values {
  display: grid;
  gap: 0.9rem;
}

.mvv-kicker {
  margin: 0;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.mvv-grid {
  display: grid;
  gap: 0.75rem;
}

.mvv-card {
  border-radius: 14px;
  border: 1px solid #93c5fd;
  background: #f8fbff;
  padding: 0.95rem;
}

.mvv-card h3 {
  margin: 0 0 0.35rem;
  color: #1d4ed8;
  font-size: 1.25rem;
}

.mvv-card p {
  margin: 0;
  color: #334155;
}

.mvv-values {
  border-color: #60a5fa;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

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

.value-item {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 0.45rem 0.55rem;
  background: #dbeafe;
}

.value-icon {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1d4ed8;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.value-item p {
  margin: 0;
  color: #1e3a8a;
  font-size: 0.83rem;
  line-height: 1.2;
  font-weight: 600;
}

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

.mission-card {
  background: #fff;
  border: 1px solid #d8e1ef;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mission-card:hover {
  transform: translateY(-2px);
  border-color: #bdd1ec;
  box-shadow: 0 10px 18px rgba(30, 58, 138, 0.12);
}

.mission-card h3 {
  margin: 0 0 0.3rem;
}

.mission-card p {
  margin: 0;
  color: var(--ink-soft);
}

.audience-card {
  background: #fff;
  border: 1px solid #dce6f3;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.12);
}

.audience-card h2 {
  margin: 0;
  font-size: 2rem;
}

.audience-card p {
  margin: 0.35rem 0 0.7rem;
  color: var(--ink-soft);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.audience-tags span {
  background: #f4f8ff;
  border: 1px solid #d9e4f3;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.service-policies {
  background: linear-gradient(130deg, #f8f9fb 0%, #eceff3 100%);
}

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

.policy-card {
  background: #fff;
  border: 1px solid #d3d9e2;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.policy-card:hover {
  transform: translateY(-2px);
  border-color: #bfd0e8;
  box-shadow: 0 10px 18px rgba(30, 58, 138, 0.12);
}

.policy-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.4rem;
}

.policy-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.policy-card li {
  margin-bottom: 0.35rem;
}

.location {
  background: #fff;
  border-top: 1px solid #d6dbe3;
  border-bottom: 1px solid #d6dbe3;
}

.location-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}

.location-grid p {
  color: var(--ink-soft);
}

.location-placeholder {
  color: #1e40af;
  font-weight: 600;
}

.location-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.schedule-card {
  margin-top: 0.9rem;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border: 1px solid #cfe0f7;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
}

.schedule-card h3 {
  margin: 0 0 0.5rem;
  color: #1d4ed8;
}

.schedule-card p {
  margin: 0.3rem 0;
  color: #334155;
}

.map-card {
  border: 1px solid #d2d8e1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 350px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.map-card:hover {
  transform: translateY(-2px);
  border-color: #bfd0e8;
  box-shadow: 0 12px 20px rgba(30, 58, 138, 0.12);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

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

.rating-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  border: 1px solid #d4deeb;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  background: #eff6ff;
  color: #1e3a8a;
}

.rating-strip span {
  font-size: 1.08rem;
  letter-spacing: 0.1em;
}

.rating-strip small {
  color: #334155;
}

.testimonials-grid article {
  background: #fff;
  border: 1px solid #d4dae2;
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.testimonials-grid article:hover {
  transform: translateY(-2px);
  border-color: #bfd0e8;
  box-shadow: 0 10px 18px rgba(30, 58, 138, 0.12);
}

.testimonials-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.testimonials-grid h4 {
  margin: 0.7rem 0 0;
  color: #1e40af;
}

.reviews-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.faq {
  background: #fff;
  border-top: 1px solid #d6dce4;
  border-bottom: 1px solid #d6dce4;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid #d3dae3;
  border-radius: 12px;
  background: #f6f8fa;
  padding: 0.85rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details:hover {
  transform: translateY(-2px);
  border-color: #b9cae2;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.1);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  color: var(--ink-soft);
  margin: 0.5rem 0 0;
}

.quote-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
}

.quote-form,
.quote-side {
  background: #fff;
  border: 1px solid #d2d9e2;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quote-form:hover,
.quote-side:hover {
  transform: translateY(-2px);
  border-color: #bfd0e8;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.12);
}

.quote-form {
  display: grid;
  gap: 0.8rem;
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

input,
textarea {
  font: inherit;
  border: 1px solid #becddd;
  border-radius: 10px;
  padding: 0.72rem;
}

input:focus,
textarea:focus {
  outline: 2px solid #ffd36c;
  border-color: #ffd36c;
}

.full {
  width: 100%;
}

.form-message {
  margin: 0;
  color: #4a5b73;
  font-size: 0.88rem;
}

.quote-side h3 {
  margin-bottom: 0.6rem;
}

.quote-side p {
  margin: 0.3rem 0;
}

.quote-side span {
  color: #5f7088;
}

.quote-side a {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
}

.quote-side a:hover {
  text-decoration: underline;
}

.footer {
  background: linear-gradient(160deg, #111315 0%, #1d2128 100%);
  color: #cfdbeb;
  padding: 2.7rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.footer p {
  margin: 0.35rem 0;
}

.footer-hours {
  color: #c3d3e8;
}

.footer-hours strong {
  color: #ffffff;
}

.muted {
  color: #9fb0c6;
}

.footer a {
  color: #93c5fd;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.copy {
  margin: 1rem 0 0;
  text-align: center;
  border-top: 1px solid #343b46;
  padding: 0.95rem;
  color: #9cb0c8;
}

.copy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: 1px solid #465264;
  border-radius: 999px;
  color: #d8e6f8;
  background: rgba(255, 255, 255, 0.03);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.copy-link:hover {
  text-decoration: none;
  background: rgba(147, 197, 253, 0.12);
  border-color: #7cb5f3;
  color: #ffffff;
  transform: translateY(-1px);
}

.copy-link:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 3px;
}

.legal-intro {
  margin: 0 auto;
  max-width: 54rem;
  text-align: center;
  color: var(--ink-soft);
}

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

.legal-card {
  background: #fff;
  border: 1px solid #d8e1ef;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.legal-card h3 {
  margin: 0 0 0.45rem;
}

.legal-card p {
  margin: 0;
  color: var(--ink-soft);
}

.legal-card a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-card + .legal-card {
  margin-top: 0;
}

.legal-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.45rem;
}

.legal-meta {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: #5b6b7f;
}

.legal-block {
  background: #0f1420;
  color: #c9d5e7;
  border-top: 1px solid #273449;
}

.legal-grid {
  padding: 1rem 0 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.legal-grid h4 {
  margin: 0 0 0.3rem;
  color: #e2ebf8;
}

.legal-grid p {
  margin: 0;
  font-size: 0.92rem;
  color: #9fb1c8;
}

.floating-whatsapp {
  position: fixed;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 5;
  text-decoration: none;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  background: var(--ok);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  animation: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
  display: block;
}

.mobile-cta-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: auto;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes heroPatternMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 260px 180px;
  }
}

@keyframes heroGlowFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 24px) scale(1.08);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  }
  50% {
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22), 0 0 0 10px rgba(37, 211, 102, 0.2);
  }
}

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

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

body.low-motion .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

body.low-motion .hero::before,
body.low-motion .hero::after,
body.low-motion .brand-icon,
body.low-motion .floating-whatsapp {
  animation: none !important;
}

body.low-motion .hero-left > *,
body.low-motion .hero-right {
  animation: none !important;
}

body.low-motion .btn.primary::after {
  display: none;
}

body.low-motion .section-shell,
body.low-motion .card,
body.low-motion .promo-card,
body.low-motion .policy-card,
body.low-motion .mission-card,
body.low-motion .map-card,
body.low-motion .testimonials-grid article,
body.low-motion .quote-form,
body.low-motion .quote-side {
  transition: none !important;
}

@media (max-width: 980px) {
  .hero-content,
  .about-grid,
  .quote-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-stats,
  .promo-grid,
  .portal-grid,
  .products-grid,
  .process-grid,
  .policies-grid,
  .testimonials-grid,
  .timeline,
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .section-shell:not(.container) {
    width: min(1140px, 92vw);
  }

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

  .menu {
    position: absolute;
    top: 72px;
    right: 4vw;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #171b22;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.8rem;
  }

  .menu.open {
    display: flex;
  }
}

@media (max-width: 620px) {
  .quick-stats,
  .promo-grid,
  .portal-grid,
  .products-grid,
  .process-grid,
  .policies-grid,
  .testimonials-grid,
  .timeline,
  .mission-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .brand-icon {
    width: 62px;
    height: 62px;
  }

  .section-shell:hover,
  .card:hover,
  .promo-card:hover,
  .policy-card:hover,
  .mission-card:hover,
  .map-card:hover,
  .testimonials-grid article:hover,
  .quote-form:hover,
  .quote-side:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .floating-whatsapp {
    right: 0.7rem;
    bottom: 4.8rem;
  }

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

  body {
    padding-bottom: 74px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #171c23;
    border-top: 1px solid #37404e;
  }

  .mobile-cta-bar a {
    text-decoration: none;
    color: #fff;
    text-align: center;
    padding: 0.85rem 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    border-right: 1px solid #343e4d;
  }

  .mobile-cta-bar a:last-child {
    border-right: 0;
  }

  .mobile-cta-bar .cta-call {
    background: #2b323c;
  }

  .mobile-cta-bar .cta-wa {
    background: #1e9b4b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-cta-bar .cta-wa img {
    width: 23px;
    height: 23px;
    display: block;
  }

  .mobile-cta-bar .cta-ml {
    background: #323a46;
  }
}
