:root {
  --brand-primary: #0249ab;
  --brand-secondary: #3ab5fd;
  --brand-soft: #a7c6e6;
  --brand-deep: #3b629c;

  --ink-900: #0a1a38;
  --ink-700: #25406d;
  --ink-500: #44638f;

  --surface-0: #f6f9ff;
  --surface-1: #ffffff;
  --surface-2: #eef4ff;

  --border-subtle: rgba(2, 73, 171, 0.14);
  --shadow-soft: 0 10px 26px rgba(13, 43, 88, 0.08);
  --shadow-elev: 0 24px 48px rgba(8, 41, 96, 0.14);

  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;

  --content-width: min(1140px, 92vw);
  --header-mobile-height: 74px;
}

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

html {
  scroll-behavior: smooth;
}

::selection {
  color: #ffffff;
  background: rgba(2, 73, 171, 0.72);
}

body {
  margin: 0;
  color: var(--ink-900);
  font-family: "Manrope", sans-serif;
  text-rendering: geometricPrecision;
  background:
    radial-gradient(circle at 8% -4%, rgba(58, 181, 253, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 96% 7%, rgba(2, 73, 171, 0.14) 0%, transparent 35%),
    linear-gradient(180deg, #fcfdff 0%, #f1f6ff 55%, #f8fbff 100%);
}

body.menu-locked {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 79px,
      rgba(3, 52, 120, 0.03) 80px,
      rgba(3, 52, 120, 0.03) 81px
    );
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.2) 100%);
  z-index: -1;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--brand-primary);
  transition: top 0.25s ease;
}

.skip-link:focus-visible {
  top: 14px;
}

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

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

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  border: 1px solid rgba(58, 181, 253, 0.36);
  background: rgba(58, 181, 253, 0.1);
}

.section-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(130deg, var(--brand-primary), var(--brand-secondary));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-family: "Sora", sans-serif;
}

h1 {
  font-size: clamp(2rem, 1.18rem + 3.2vw, 4rem);
}

h2 {
  font-size: clamp(1.45rem, 1rem + 1.8vw, 2.35rem);
}

p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.88) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0.8;
  z-index: -1;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(2, 73, 171, 0),
    rgba(2, 73, 171, 0.22),
    rgba(58, 181, 253, 0.24),
    rgba(2, 73, 171, 0)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.site-header.is-scrolled {
  border-color: var(--border-subtle);
  box-shadow: 0 10px 30px rgba(9, 40, 91, 0.08);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transition: min-height 0.35s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 72px;
}

.brand img {
  width: clamp(136px, 11vw, 164px);
  transition: transform 0.35s ease;
}

.site-header.is-scrolled .brand img {
  transform: scale(0.94);
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(2, 73, 171, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-primary);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(9, 40, 91, 0.08);
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.26s ease, opacity 0.22s ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

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

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

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

.menu a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.menu a:hover {
  color: var(--brand-primary);
}

.menu a:hover::after,
.menu a.active::after {
  width: calc(100% - 24px);
}

.menu a.active {
  color: var(--brand-primary);
  background: rgba(58, 181, 253, 0.11);
}

main {
  isolation: isolate;
}

.hero {
  padding: clamp(54px, 5vw, 86px) 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(20px, 2.5vw, 34px);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3vw, 44px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow-soft);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at -10% -18%, rgba(58, 181, 253, 0.2), transparent 38%),
    radial-gradient(circle at 103% 124%, rgba(2, 73, 171, 0.16), transparent 42%);
  pointer-events: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(58, 181, 253, 0.4);
  background: rgba(58, 181, 253, 0.12);
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(130deg, var(--brand-primary), var(--brand-secondary));
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  max-width: 18ch;
}

.hero-copy p {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  max-width: 58ch;
}

.hero-actions {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 14px 24px rgba(2, 73, 171, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 30px rgba(2, 73, 171, 0.3);
}

.btn-outline {
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(2, 73, 171, 0.23);
}

.btn-outline:hover {
  background: rgba(58, 181, 253, 0.08);
}

.hero-points {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.mini-metrics {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-metrics .metric {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(2, 73, 171, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.mini-metrics .metric span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  font-weight: 700;
}

.mini-metrics .metric strong {
  display: block;
  margin-top: 5px;
  color: var(--ink-900);
  font-size: 0.9rem;
}

.hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(160deg, var(--brand-primary), var(--brand-secondary));
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: clamp(320px, 42vw, 500px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-elev);
  background: linear-gradient(160deg, rgba(2, 73, 171, 0.58), rgba(2, 73, 171, 0.16));
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -6%;
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1200&q=80")
    center / cover;
  transform: scale(1);
  animation: mediaDrift 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 10%, rgba(58, 181, 253, 0.45), transparent 42%),
    linear-gradient(180deg, rgba(2, 73, 171, 0.08), rgba(2, 73, 171, 0.52));
}

.hero-media-content {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
  padding: 18px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(245, 250, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #f3f8ff;
}

.hero-media-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  opacity: 0.88;
}

.hero-media-content h2 {
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(1.25rem, 1rem + 1.1vw, 1.7rem);
}

.hero-media-content p {
  margin-top: 8px;
  color: rgba(239, 248, 255, 0.96);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section {
  padding: clamp(24px, 2.2vw, 38px) 0 clamp(56px, 5vw, 80px);
}

.section-head {
  max-width: 70ch;
}

.section-head h2 {
  margin-bottom: 12px;
}

.section-intro {
  font-size: clamp(1rem, 0.92rem + 0.28vw, 1.08rem);
}

.cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(185deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  --spot-x: 50%;
  --spot-y: 50%;
}

.card::before {
  content: "";
  position: absolute;
  inset: -45% -45% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(58, 181, 253, 0.18), transparent 68%);
  z-index: -1;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 73, 171, 0.28);
  box-shadow: 0 20px 38px rgba(12, 45, 96, 0.13);
}

.card h3 {
  font-size: clamp(1.08rem, 0.9rem + 0.45vw, 1.28rem);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(2, 73, 171, 0.18);
  background: rgba(58, 181, 253, 0.08);
  color: var(--brand-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card p {
  margin-top: 10px;
  font-size: 0.97rem;
}

.note-band {
  margin-top: 24px;
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(58, 181, 253, 0.28);
  background: linear-gradient(120deg, rgba(233, 244, 255, 0.82), rgba(255, 255, 255, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--ink-700);
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(2, 73, 171, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-700);
}

.list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 99px;
  background: var(--brand-primary);
  flex: 0 0 auto;
}

.page-title {
  padding: clamp(54px, 5vw, 86px) 0 14px;
}

.page-title h1 {
  max-width: 16ch;
}

.page-title .section-intro {
  margin-top: 14px;
  max-width: 68ch;
}

.service-card .service-index {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(58, 181, 253, 0.14);
  border: 1px solid rgba(58, 181, 253, 0.42);
  border-radius: 999px;
  padding: 6px 10px;
}

.method-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.method-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.9));
  box-shadow: var(--shadow-soft);
  --spot-x: 50%;
  --spot-y: 50%;
}

.method-side {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(2, 73, 171, 0.92), rgba(59, 98, 156, 0.88));
  box-shadow: var(--shadow-elev);
  --spot-x: 50%;
  --spot-y: 50%;
}

.method-side h3 {
  color: #fff;
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem);
}

.method-side p {
  margin-top: 10px;
  color: rgba(236, 245, 255, 0.95);
}

.method-side .btn-outline {
  margin-top: 18px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.method-side .meta-note {
  display: inline-flex;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(237, 246, 255, 0.86);
}

.method-side .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.contact-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 16px;
}

.contact-box {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.3vw, 30px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
  box-shadow: var(--shadow-soft);
  --spot-x: 50%;
  --spot-y: 50%;
}

.interactive-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    320px circle at var(--spot-x) var(--spot-y),
    rgba(58, 181, 253, 0.16),
    transparent 44%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.interactive-surface:hover::after {
  opacity: 1;
}

.contact-box h2 {
  margin-bottom: 18px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.contact-list li {
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(2, 73, 171, 0.16);
  color: var(--ink-700);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list strong {
  color: var(--ink-900);
}

.contact-meta {
  margin-top: 12px;
  font-size: 0.94rem;
  color: var(--ink-500);
}

.quick-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(2, 73, 171, 0.24);
  color: var(--brand-primary);
  background: rgba(58, 181, 253, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.quick-actions a:hover {
  background: rgba(58, 181, 253, 0.16);
}

.map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 0.92rem;
}

.contact-response {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(58, 181, 253, 0.34);
  background: rgba(58, 181, 253, 0.11);
  color: var(--brand-primary);
  font-size: 0.86rem;
  font-weight: 700;
}

.map-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.28s ease;
}

.map-link:hover::after {
  transform: translateX(4px);
}

.site-footer {
  margin-top: 26px;
  border-top: 1px solid rgba(2, 73, 171, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(167, 198, 230, 0.12));
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.footer-inner a {
  color: var(--brand-primary);
  font-weight: 700;
}

.footer-micro {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-micro::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(140deg, var(--brand-primary), var(--brand-secondary));
}

.focus-ring:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(58, 181, 253, 0.5);
  outline-offset: 2px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0ms);
}

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

@keyframes mediaDrift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-8px, -5px, 0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .cards,
  .method-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

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

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: var(--header-mobile-height);
    gap: 12px;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(95vw, 520px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(2, 73, 171, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(10, 46, 102, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s ease;
  }

  .site-header.menu-open .menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu a {
    width: 100%;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 78px;
    flex-wrap: nowrap;
    padding: 10px 0;
  }

  .skip-link {
    left: 10px;
  }

  .hero-copy,
  .card,
  .method-card,
  .method-side,
  .contact-box {
    padding: 20px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero {
    padding: 34px 0 42px;
  }

  .hero-copy h1 {
    font-size: clamp(1.74rem, 6.8vw, 2.2rem);
    max-width: 100%;
  }

  .hero-copy p,
  .hero-points li {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-media-content {
    inset: auto 12px 12px;
    padding: 12px;
  }

  .section {
    padding: 14px 0 52px;
  }

  .page-title {
    padding: 36px 0 10px;
  }

  .service-card .service-index,
  .card-tag {
    font-size: 0.66rem;
  }

  .quick-actions a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 126px;
  }

  .btn {
    min-height: 44px;
    font-size: 0.88rem;
  }

  .contact-list li,
  .list li,
  .card p,
  .method-side p {
    font-size: 0.89rem;
  }
}

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

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

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

  .hero-media::before {
    animation: none;
  }
}
