:root {
  --ink: #102038;
  --navy: #0e3e76;
  --blue: #1f69ab;
  --blue-2: #dff2ff;
  --blue-3: #e7f2ff;
  --gold: #f2b544;
  --gold-2: #c5901f;
  --white: #ffffff;
  --surface: #f7fbff;
  --paper: #fbfdff;
  --text: #475f7a;
  --muted: #728199;
  --border: #d9e5ef;
  --shadow: 0 26px 80px rgba(16, 32, 56, 0.12);
  --shadow-sm: 0 12px 28px rgba(16, 32, 56, 0.08);
  --radius: 30px;
  --radius-sm: 18px;
  --max: 1280px;
  --ease: cubic-bezier(0.18, 0.72, 0.28, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(31, 105, 171, 0.18);
  color: var(--ink);
}

img,
picture,
svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 105, 171, 0.24);
  outline-offset: 3px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  z-index: 9999;
}

.skip-link:focus {
  left: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, sans-serif;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 5.8vw, 5.4rem);
}

h2 {
  font-size: clamp(2.1rem, 3.5vw, 4rem);
}

h3 {
  font-size: clamp(1.4rem, 1.8vw, 2rem);
}

p,
li,
button,
input,
select,
textarea {
  color: var(--text);
}

p {
  font-size: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1rem;
}

.eyebrow:before {
  content: '';
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.lead-text {
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  font-weight: 600;
  line-height: 1.7;
  color: #324a67;
  margin-bottom: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 229, 239, 0.9);
  box-shadow: 0 12px 24px rgba(16, 32, 56, 0.06);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(16, 32, 56, 0.08);
}

.top-strip {
  background: linear-gradient(90deg, rgba(242, 181, 68, 0.14), rgba(226, 235, 246, 0.14));
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
  color: #465d79;
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.top-strip a {
  font-weight: 700;
  color: var(--navy);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand img {
  width: 158px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.nav a {
  padding: 0.95rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  color: #2d4e73;
  transition: transform 0.24s var(--ease), background 0.24s var(--ease), color 0.24s var(--ease);
}

.nav a:hover,
.nav a.active {
  background: rgba(31, 105, 171, 0.12);
  color: var(--blue);
  transform: translateY(-1px);
}

.nav .nav-cta {
  background: linear-gradient(135deg, var(--gold), #ffd57a);
  color: #3d2e0a;
  margin-left: 0.35rem;
  box-shadow: 0 14px 30px rgba(242, 181, 68, 0.23);
}

.nav .nav-cta:hover,
.nav .nav-cta.active {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 116px) 0;
  background: radial-gradient(circle at 14% 22%, rgba(242, 181, 68, 0.16), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(31, 105, 171, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(248, 249, 255, 0.95), transparent 38%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  line-height: 1.75;
  max-width: 760px;
  margin: 1.4rem 0 2rem;
  color: #40556f;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: #d4dce8;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
}

.trust-row div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.trust-row strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 1.7rem;
  color: var(--blue);
}

.trust-row span {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--muted);
  margin-top: 0.35rem;
}

.hero-visual {
  position: relative;
  transition: transform 0.35s var(--ease);
}

.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.photo-frame-hero {
  transform: rotate(1.4deg);
}

.image-tag,
.media-wrap span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(16, 32, 56, 0.1);
}

.hero-card {
  position: absolute;
  right: -16px;
  bottom: -24px;
  width: min(320px, 88%);
  padding: 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-2);
  font-weight: 900;
}

.hero-card strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 2rem;
  color: var(--navy);
  margin: 0.75rem 0 0.45rem;
}

.hero-card small {
  display: block;
  color: #576d88;
  margin-top: 0.35rem;
}

.stats-panel {
  position: relative;
  margin-top: -28px;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stats-grid div {
  padding: 1.8rem;
  border-right: 1px solid var(--border);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 2.5rem;
  color: var(--blue);
}

.stats-grid span {
  display: block;
  margin: 0.45rem 0 1rem;
  font-weight: 900;
  color: var(--ink);
}

.stats-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.soft-bg {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.split-section {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split-copy p {
  margin-bottom: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 900;
  color: var(--blue);
}

.text-link:hover {
  color: var(--gold-2);
}

.image-stack {
  position: relative;
}

.photo-frame.large img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.premium-advantages {
  padding-top: 14px;
}

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

.advantage-card {
  background: linear-gradient(180deg, rgba(242, 181, 68, 0.12), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(217, 229, 239, 0.9);
  border-radius: 26px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.advantage-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), #ffd687);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 22px rgba(242, 181, 68, 0.18);
}

.advantage-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.advantage-card p {
  color: var(--text);
  line-height: 1.75;
}

.cta-strip {
  background: linear-gradient(135deg, rgba(31, 105, 171, 0.08), rgba(242, 181, 68, 0.08));
  padding: 2rem 0;
  margin-top: -18px;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 1.5rem;
}

.cta-copy h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.7rem);
  line-height: 1.08;
  max-width: 700px;
  margin-top: 0.55rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.cta-actions .btn {
  min-width: 190px;
}

.mini-proof {
  position: absolute;
  right: 18px;
  bottom: -24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.2rem;
}

.mini-proof strong {
  display: block;
  color: var(--navy);
}

.mini-proof span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.services-section {
  background: var(--white);
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-header.centered {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0.9rem auto 0;
  color: var(--muted);
}

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

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

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

.service-card,
.feature-card,
.info-card,
.process-card,
.contact-panel,
.application-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card:hover,
.feature-card:hover,
.info-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 105, 171, 0.18);
}

.service-card h3,
.feature-card h3,
.info-card h3 {
  margin: 1.25rem 0 0.75rem;
}

.service-card p,
.feature-card p,
.info-card p {
  margin-bottom: 1rem;
}

.service-card a {
  font-weight: 900;
  color: var(--blue);
}

.media-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #edf4fb;
}

.media-wrap img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.service-card:hover .media-wrap img,
.feature-card:hover .media-wrap img {
  transform: scale(1.045);
}

.gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--white);
}

.gallery-grid img {
  width: 100%;
  object-fit: cover;
}

.gallery-grid figure:first-child img {
  min-height: 500px;
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.85rem 1rem;
  font-weight: 900;
  color: var(--navy);
  font-size: 0.88rem;
}

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

.process-card {
  padding: 1.8rem;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff5dc, #ffe4a8);
  color: #7c5313;
  font-weight: 900;
  margin-bottom: 1rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 700;
}

.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
  font-weight: 900;
}

.info-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: #eff6fd;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.application-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
  align-items: start;
}

.application-card iframe {
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.6rem;
  align-items: start;
}

.contact-panel {
  padding: 2rem;
}

.contact-panel .eyebrow {
  margin-bottom: 1.5rem;
}

.contact-panel strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.contact-panel a {
  display: block;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.pro-form {
  display: grid;
  gap: 1rem;
}

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

.pro-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 900;
  color: #233a57;
}

.pro-form input,
.pro-form select,
.pro-form textarea {
  width: 100%;
  border: 1px solid #c8d8e8;
  border-radius: 16px;
  padding: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.pro-form textarea {
  min-height: 180px;
  resize: vertical;
}

.pro-form input:focus,
.pro-form select:focus,
.pro-form textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(31, 105, 171, 0.1);
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
  padding: 80px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.85fr 1fr;
  gap: 2rem;
}

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

.footer-contact {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer a {
  font-weight: 800;
  color: var(--blue);
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--ink);
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 0.45rem 0;
}

.footer-column p {
  color: var(--text);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-badges span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #fff7e1;
  color: #7c5d18;
  font-weight: 800;
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.35rem;
  gap: 1rem;
}

.back-to-top {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s var(--ease), visibility 0.24s var(--ease), transform 0.24s var(--ease);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-section,
  .application-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid figure:first-child {
    grid-column: 1 / -1;
  }

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

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 860px) {
  .top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 102px;
    left: 16px;
    right: 16px;
    display: grid;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s var(--ease);
    max-height: calc(100vh - 128px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav a {
    padding: 0.95rem 1rem;
  }

  .trust-row,
  .card-grid.two,
  .card-grid.three,
  .gallery-grid,
  .process-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure:first-child {
    grid-column: auto;
  }

  .gallery-grid img,
  .gallery-grid figure:first-child img {
    min-height: 320px;
  }

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

@media (max-width: 620px) {
  .container,
  .split-section {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -18px 0 0;
    width: auto;
  }

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

  .stats-grid div {
    border-right: 0 !important;
    border-bottom: 1px solid var(--border);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
