:root {
  --blue-950: #081a43;
  --blue-900: #10265f;
  --blue-800: #173a91;
  --blue-700: #2458cc;
  --blue-600: #2d68e8;
  --green-600: #08a878;
  --green-500: #12c893;
  --ink: #142033;
  --text: #4b5a70;
  --muted: #738096;
  --line: #dfe6f0;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-blue: #edf4ff;
  --shadow-sm: 0 8px 24px rgba(16, 38, 95, 0.08);
  --shadow-lg: 0 24px 60px rgba(8, 26, 67, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 106px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 38, 95, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease, min-height 200ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(8, 26, 67, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 154px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.98rem;
  font-weight: 650;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue-700), var(--green-500));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after,
.main-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  padding: 11px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  box-shadow: 0 12px 26px rgba(36, 88, 204, 0.2);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-900);
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 104px;
  background:
    radial-gradient(circle at 12% 12%, rgba(45, 104, 232, 0.13), transparent 31%),
    radial-gradient(circle at 88% 8%, rgba(18, 200, 147, 0.12), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.hero::before {
  position: absolute;
  right: -150px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(36, 88, 204, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(36, 88, 204, 0.03), 0 0 0 108px rgba(18, 200, 147, 0.025);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue-700), var(--green-500));
  border-radius: 999px;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-heading h2 {
  margin: 0;
  color: var(--blue-950);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.65rem, 5.2vw, 4.85rem);
}

.hero-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-width: 190px;
  padding: 13px 24px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  box-shadow: 0 14px 32px rgba(36, 88, 204, 0.22);
}

.button-secondary {
  color: var(--blue-900);
  background: #fff;
  border-color: rgba(23, 58, 145, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface-blue);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 200, 147, 0.12);
}

.hero-visual {
  position: relative;
}

.financial-graphic {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 26px;
  background:
    radial-gradient(circle at 92% 5%, rgba(18, 200, 147, 0.16), transparent 26%),
    radial-gradient(circle at 5% 95%, rgba(45, 104, 232, 0.13), transparent 31%),
    linear-gradient(155deg, #ffffff 0%, #f5f8ff 58%, #eefaf7 100%);
  border: 8px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.financial-graphic::before,
.financial-graphic::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.financial-graphic::before {
  top: -95px;
  right: -85px;
  width: 245px;
  height: 245px;
  border: 1px solid rgba(18, 200, 147, 0.22);
  box-shadow: 0 0 0 32px rgba(18, 200, 147, 0.025), 0 0 0 64px rgba(45, 104, 232, 0.018);
}

.financial-graphic::after {
  bottom: -70px;
  left: -55px;
  width: 180px;
  height: 180px;
  background: rgba(45, 104, 232, 0.035);
}

.dashboard-header,
.dashboard-title,
.dashboard-metrics,
.dashboard-metric,
.chart-heading,
.dashboard-bottom,
.distribution-card,
.progress-heading,
.progress-row {
  display: flex;
  align-items: center;
}

.dashboard-header {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(16, 38, 95, 0.08);
}

.dashboard-title {
  gap: 12px;
}

.dashboard-title strong,
.dashboard-title span,
.dashboard-metric small,
.dashboard-metric strong,
.chart-heading span,
.chart-heading strong,
.distribution-card small,
.distribution-card strong,
.progress-heading span,
.progress-heading small {
  display: block;
}

.dashboard-title strong {
  color: var(--blue-950);
  font-size: 1.02rem;
}

.dashboard-title > div > span {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.76rem;
}

.dashboard-mark {
  display: flex;
  width: 43px;
  height: 43px;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  color: var(--blue-700);
  background: linear-gradient(145deg, rgba(45, 104, 232, 0.12), rgba(18, 200, 147, 0.13));
  border-radius: 13px;
}

.dashboard-mark i {
  width: 5px;
  background: currentColor;
  border-radius: 4px 4px 1px 1px;
}

.dashboard-mark i:nth-child(1) { height: 10px; }
.dashboard-mark i:nth-child(2) { height: 17px; }
.dashboard-mark i:nth-child(3) { height: 24px; background: var(--green-500); }

.dashboard-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--green-600);
  background: rgba(18, 200, 147, 0.09);
  border: 1px solid rgba(18, 200, 147, 0.14);
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 780;
}

.dashboard-status i {
  width: 7px;
  height: 7px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 200, 147, 0.1);
}

.dashboard-metrics {
  position: relative;
  z-index: 1;
  gap: 12px;
  margin-top: 20px;
}

.dashboard-metric {
  min-width: 0;
  flex: 1 1 0;
  gap: 10px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 38, 95, 0.07);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(16, 38, 95, 0.055);
}

.metric-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
}

.metric-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.metric-icon-blue { color: var(--blue-700); background: rgba(45, 104, 232, 0.1); }
.metric-icon-green { color: var(--green-600); background: rgba(18, 200, 147, 0.1); }
.metric-icon-navy { color: var(--blue-900); background: rgba(16, 38, 95, 0.08); }

.dashboard-metric small {
  color: var(--muted);
  font-size: 0.66rem;
}

.dashboard-metric strong {
  margin-top: 1px;
  color: var(--blue-950);
  font-size: 0.86rem;
  line-height: 1.2;
}

.dashboard-chart {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 18px 18px 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 38, 95, 0.08);
  border-radius: 19px;
  box-shadow: 0 12px 28px rgba(16, 38, 95, 0.07);
}

.chart-heading {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 4px;
}

.chart-heading > div > span {
  color: var(--muted);
  font-size: 0.7rem;
}

.chart-heading strong {
  color: var(--blue-950);
  font-size: 0.96rem;
}

.chart-chip {
  padding: 6px 9px;
  color: var(--blue-700) !important;
  background: var(--surface-blue);
  border-radius: 999px;
  font-size: 0.68rem !important;
  font-weight: 800;
}

.dashboard-chart > svg {
  width: 100%;
  height: 225px;
  overflow: visible;
}

.chart-grid-lines path {
  fill: none;
  stroke: rgba(16, 38, 95, 0.07);
  stroke-width: 1;
}

.chart-area { fill: url(#areaGradient); }
.chart-line {
  fill: none;
  stroke: url(#lineGradient);
  stroke-linecap: round;
  stroke-width: 5;
}

.chart-points circle {
  fill: #fff;
  stroke: var(--green-500);
  stroke-width: 4;
}

.chart-labels text {
  fill: var(--muted);
  font-family: inherit;
  font-size: 18px;
}

.dashboard-bottom {
  position: relative;
  z-index: 1;
  align-items: stretch;
  gap: 12px;
  margin-top: 16px;
}

.distribution-card,
.progress-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 38, 95, 0.07);
  border-radius: 16px;
}

.distribution-card {
  width: 42%;
  gap: 12px;
  padding: 13px;
}

.donut {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  background: conic-gradient(var(--green-500) 0 34%, var(--blue-600) 34% 77%, rgba(16, 38, 95, 0.1) 77% 100%);
  border-radius: 50%;
}

.donut::before {
  grid-area: 1 / 1;
  width: 39px;
  height: 39px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.donut span {
  z-index: 1;
  color: var(--blue-950);
  font-size: 0.66rem;
  font-weight: 850;
}

.distribution-card small {
  color: var(--muted);
  font-size: 0.66rem;
}

.distribution-card strong {
  margin-top: 2px;
  color: var(--blue-950);
  font-size: 0.79rem;
  line-height: 1.25;
}

.progress-card {
  flex: 1;
  padding: 13px 15px;
}

.progress-heading {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.progress-heading span {
  color: var(--blue-950);
  font-size: 0.73rem;
  font-weight: 800;
}

.progress-heading small {
  color: var(--muted);
  font-size: 0.61rem;
}

.progress-row {
  gap: 8px;
  margin-top: 6px;
  color: var(--text);
  font-size: 0.61rem;
}

.progress-row > span {
  width: 90px;
  flex: 0 0 auto;
}

.progress-row > i {
  overflow: hidden;
  height: 6px;
  flex: 1;
  background: rgba(16, 38, 95, 0.08);
  border-radius: 999px;
}

.progress-row b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
  border-radius: inherit;
}

.dashboard-note {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.6rem;
  text-align: right;
}

.hero-card {
  position: absolute;
  bottom: -30px;
  left: -34px;
  display: flex;
  max-width: 310px;
  align-items: center;
  gap: 14px;
  padding: 19px 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 38, 95, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(8, 26, 67, 0.2);
  backdrop-filter: blur(12px);
}

.hero-card svg {
  width: 36px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--green-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  color: var(--blue-950);
  line-height: 1.25;
}

.hero-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 106px 0;
}

.services {
  background: var(--surface-soft);
}

.section-heading,
.contact-heading {
  max-width: 690px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading .eyebrow,
.contact-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.about-copy h2,
.contact-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}

.section-heading p,
.contact-heading p {
  margin: 20px auto 0;
  color: var(--text);
  font-size: 1.06rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(16, 38, 95, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 112px;
  height: 112px;
  content: "";
  background: linear-gradient(135deg, rgba(45, 104, 232, 0.08), rgba(18, 200, 147, 0.1));
  border-radius: 50%;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(36, 88, 204, 0.2);
  box-shadow: 0 20px 46px rgba(16, 38, 95, 0.13);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--blue-700);
  background: linear-gradient(135deg, rgba(45, 104, 232, 0.12), rgba(18, 200, 147, 0.13));
  border-radius: 16px;
}

.service-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.18rem;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 0.96rem;
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 72px;
}

.about-copy > p {
  margin: 22px 0 0;
  color: var(--text);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 680;
}

.value-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 14px;
  height: 8px;
  content: "";
  border-bottom: 3px solid var(--green-500);
  border-left: 3px solid var(--green-500);
  transform: rotate(-45deg);
}

.experience-panel {
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-top {
  padding: 42px;
}

.experience-kicker {
  color: #86f0cc;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-panel h3 {
  margin: 12px 0 0;
  font-size: 1.75rem;
  line-height: 1.2;
}

.experience-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.owner-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 42px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.owner-initials {
  display: grid;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-950);
  background: linear-gradient(145deg, #ffffff, #bff6e4);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
}

.owner-role {
  color: #86f0cc;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.owner-card h3 {
  margin-top: 4px;
  font-size: 1.24rem;
}

.owner-card p {
  margin-top: 7px;
  font-size: 0.92rem;
}

.contact {
  padding: 100px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(45, 104, 232, 0.12), transparent 35%),
    linear-gradient(180deg, #f2f6fb 0%, #eaf0f7 100%);
}

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

.contact-item {
  min-height: 260px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 38, 95, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 38, 95, 0.14);
}

.contact-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-800), var(--green-500));
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(23, 58, 145, 0.2);
}

.contact-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.contact-label {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--blue-950);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  overflow-wrap: anywhere;
}

.contact-item > span:last-child:not(.contact-icon):not(.contact-label) {
  margin-top: 4px;
  color: var(--text);
}

.site-footer {
  color: #fff;
  background: #0c0f14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  padding-top: 54px;
  padding-bottom: 50px;
}

.footer-social h2 {
  margin: 0 0 18px;
  font-size: 1.15rem;
}

.social-list {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

.social-link svg {
  width: 24px;
  fill: currentColor;
}

.social-link.is-pending {
  color: rgba(255, 255, 255, 0.65);
  cursor: default;
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-legal strong {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
}

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

.is-hidden {
  display: none !important;
}

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

:focus-visible {
  outline: 3px solid rgba(18, 200, 147, 0.55);
  outline-offset: 4px;
}

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

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

@media (max-width: 980px) {
  :root {
    --header-height: 90px;
  }

  .brand img {
    width: 126px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    padding: 34px 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    box-shadow: -20px 30px 50px rgba(8, 26, 67, 0.18);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transform: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }

  .main-nav > a:not(.nav-cta) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .hero-card {
    left: 22px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

  .hero {
    padding: 48px 0 78px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .financial-graphic {
    min-height: 0;
    padding: 17px;
    border-width: 5px;
    border-radius: 24px;
  }

  .dashboard-header {
    align-items: flex-start;
  }

  .dashboard-status {
    display: none;
  }

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

  .dashboard-metric {
    padding: 11px;
  }

  .dashboard-chart {
    padding: 14px 12px 4px;
  }

  .dashboard-chart > svg {
    height: 190px;
  }

  .chart-labels text {
    font-size: 16px;
  }

  .dashboard-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .distribution-card {
    width: 100%;
  }

  .progress-row > span {
    width: 86px;
  }

  .hero-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: none;
    margin: -22px 14px 0;
  }

  .section {
    padding: 78px 0;
  }

  .service-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .experience-top,
  .owner-card {
    padding: 30px 24px;
  }

  .owner-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact {
    padding: 76px 0;
  }

  .contact-item {
    min-height: 230px;
    padding: 26px 20px;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-legal {
    text-align: left;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
