:root {
  --blue-950: #121a47;
  --blue-900: #1b2461;
  --blue-800: #316dff;
  --blue-700: #17aafc;
  --blue-600: #39d0ff;
  --green-600: #7a2bff;
  --green-500: #b13dff;
  --ink: #071a3b;
  --text: #46566f;
  --muted: #738096;
  --line: #dfe6f0;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-blue: #f3efff;
  --shadow-sm: 0 8px 24px rgba(29, 38, 97, 0.09);
  --shadow-lg: 0 24px 60px rgba(34, 32, 87, 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: 238px;
  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 14% 12%, rgba(122, 43, 255, 0.13), transparent 29%),
    radial-gradient(circle at 86% 10%, rgba(23, 170, 252, 0.16), transparent 25%),
    linear-gradient(180deg, #fbfbff 0%, #f7f9ff 52%, #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(122, 43, 255, 0.16), transparent 26%),
    radial-gradient(circle at 5% 95%, rgba(23, 170, 252, 0.14), transparent 31%),
    linear-gradient(155deg, #ffffff 0%, #f7f6ff 54%, #eef8ff 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(122, 43, 255, 0.18);
  box-shadow: 0 0 0 32px rgba(122, 43, 255, 0.03), 0 0 0 64px rgba(23, 170, 252, 0.02);
}

.financial-graphic::after {
  bottom: -70px;
  left: -55px;
  width: 180px;
  height: 180px;
  background: rgba(23, 170, 252, 0.05);
}

.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-bars rect {
  fill: url(#barsGradient);
  opacity: 0.92;
}

.chart-bars rect:nth-child(odd) {
  opacity: 0.8;
}

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


/* Ajustes específicos de Dial & Dial Soluciones */
.brand img { max-height: 78px; object-fit: contain; }
.footer-logo { width: 260px; max-width: 100%; height: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }
.footer-social p { max-width: 390px; color: rgba(255,255,255,.7); margin: 0; }
.contact-grid-single { grid-template-columns: minmax(0, 640px); justify-content: center; }
.contact-grid-single .contact-item { min-height: 250px; text-align: center; align-items: center; }

@media (max-width: 720px) {
  .brand img { width: 185px; max-height: 68px; }
  .footer-logo { width: 220px; margin-inline: auto; }
  .footer-social p { margin-inline: auto; }
}

/* Contacto y redes sociales */
.footer-email {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.footer-email:hover,
.footer-email:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-follow {
  margin-top: 28px;
}

.footer-follow > span {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 750;
}

.footer-follow .social-link {
  width: fit-content;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .footer-follow .social-link {
    margin-inline: auto;
  }
}

/* =========================================================
   VERSIÓN SOBRIA / PREMIUM
   ========================================================= */
:root {
  --blue-950: #101827;
  --blue-900: #182238;
  --blue-800: #26334a;
  --blue-700: #5f7f92;
  --blue-600: #7898aa;
  --green-600: #9f8455;
  --green-500: #b49a68;
  --ink: #111827;
  --text: #4c5563;
  --muted: #7b828d;
  --line: #e4ded3;
  --surface: #ffffff;
  --surface-soft: #f6f3ed;
  --surface-blue: #f3efe7;
  --shadow-sm: 0 10px 30px rgba(16, 24, 39, 0.07);
  --shadow-lg: 0 30px 70px rgba(16, 24, 39, 0.16);
}

body {
  background: #fbfaf7;
  color: var(--ink);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-heading h2,
.experience-panel h3,
.owner-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.site-header {
  background: rgba(252, 251, 248, 0.96);
  border-bottom-color: rgba(16, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 224px;
}

.main-nav {
  color: #20293a;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta)::after {
  height: 1px;
  background: var(--green-500);
}

.hero {
  padding-top: 94px;
  background:
    radial-gradient(circle at 10% 12%, rgba(180, 154, 104, 0.10), transparent 28%),
    linear-gradient(180deg, #f8f6f1 0%, #fcfbf8 58%, #ffffff 100%);
}

.hero::before {
  border-color: rgba(180, 154, 104, 0.16);
  box-shadow: 0 0 0 54px rgba(180, 154, 104, 0.025), 0 0 0 108px rgba(16, 24, 39, 0.02);
}

.eyebrow {
  color: var(--green-600);
  letter-spacing: 0.17em;
}

.eyebrow::before {
  height: 1px;
  background: var(--green-500);
}

.hero h1 {
  max-width: 640px;
  color: #141b2a;
  font-size: clamp(2.7rem, 5.15vw, 4.75rem);
}

.hero-copy > p {
  color: #596170;
}

.button {
  min-height: 52px;
  border-radius: 6px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.button-primary {
  color: #fff;
  background: #152034;
  border-color: #152034;
  box-shadow: 0 14px 28px rgba(16, 24, 39, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #253149;
}

.button-secondary {
  color: #182238;
  background: transparent;
  border-color: rgba(24, 34, 56, 0.26);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #f2eee6;
}

.hero-trust span::before {
  width: 6px;
  height: 6px;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(180, 154, 104, 0.12);
}

.financial-graphic {
  min-height: 620px;
  background:
    radial-gradient(circle at 92% 4%, rgba(180, 154, 104, 0.16), transparent 27%),
    linear-gradient(160deg, #111827 0%, #172237 64%, #202b40 100%);
  border: 1px solid rgba(180, 154, 104, 0.35);
  border-radius: 24px;
  box-shadow: 0 34px 80px rgba(16, 24, 39, 0.27);
}

.financial-graphic::before {
  border-color: rgba(180, 154, 104, 0.20);
  box-shadow: 0 0 0 32px rgba(180, 154, 104, 0.025), 0 0 0 64px rgba(255, 255, 255, 0.012);
}

.financial-graphic::after {
  background: rgba(180, 154, 104, 0.05);
}

.dashboard-header {
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.dashboard-title strong,
.dashboard-metric strong,
.chart-heading strong,
.distribution-card strong,
.progress-heading span {
  color: #f7f4ee;
}

.dashboard-title > div > span,
.dashboard-metric small,
.chart-heading > div > span,
.distribution-card small,
.progress-heading small,
.dashboard-note {
  color: rgba(237, 232, 223, 0.62);
}

.dashboard-mark {
  color: #d8c6a3;
  background: rgba(180, 154, 104, 0.10);
  border: 1px solid rgba(180, 154, 104, 0.22);
}

.dashboard-mark i:nth-child(3) {
  background: #b49a68;
}

.dashboard-status {
  color: #e5d4b3;
  background: rgba(180, 154, 104, 0.10);
  border-color: rgba(180, 154, 104, 0.24);
}

.dashboard-status i {
  background: #b49a68;
  box-shadow: 0 0 0 4px rgba(180, 154, 104, 0.10);
}

.dashboard-metric,
.dashboard-chart,
.distribution-card,
.progress-card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

.metric-icon-blue,
.metric-icon-green,
.metric-icon-navy {
  color: #d8c6a3;
  background: rgba(180, 154, 104, 0.10);
}

.chart-chip {
  color: #e3d3b4 !important;
  background: rgba(180, 154, 104, 0.10);
  border: 1px solid rgba(180, 154, 104, 0.18);
}

.chart-grid-lines path {
  stroke: rgba(255, 255, 255, 0.07);
}

.chart-bars rect {
  filter: saturate(0.65);
  opacity: 0.78;
}

.chart-line {
  stroke-width: 3.5;
}

.chart-points circle {
  fill: #172237;
  stroke: #d8c6a3;
  stroke-width: 3;
}

.chart-labels text {
  fill: rgba(237, 232, 223, 0.58);
}

.donut {
  background: conic-gradient(#b49a68 0 38%, #6e8798 38% 78%, rgba(255, 255, 255, 0.12) 78% 100%);
}

.donut::before {
  background: #182238;
}

.donut span {
  color: #f4efe7;
}

.progress-row {
  color: rgba(237, 232, 223, 0.70);
}

.progress-row > i {
  background: rgba(255, 255, 255, 0.10);
}

.progress-row b {
  background: linear-gradient(90deg, #71899a, #b49a68);
}

.hero-card {
  background: rgba(251, 250, 247, 0.97);
  border: 1px solid rgba(180, 154, 104, 0.30);
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(16, 24, 39, 0.20);
}

.hero-card svg {
  stroke: var(--green-600);
}

.section {
  background: #ffffff;
}

.services {
  background: #f7f4ee;
}

.service-card {
  background: #fcfbf8;
  border: 1px solid #e5ded2;
  border-radius: 12px;
  box-shadow: none;
}

.service-card:hover {
  border-color: rgba(180, 154, 104, 0.60);
  box-shadow: 0 18px 36px rgba(16, 24, 39, 0.07);
}

.service-icon {
  color: #8e7448;
  background: #f1eadf;
  border-radius: 10px;
}

.about {
  background: #fcfbf8;
}

.value-list li::before {
  background: var(--green-500);
}

.experience-panel {
  background: #172237;
  border: 1px solid rgba(180, 154, 104, 0.25);
  border-radius: 18px;
  box-shadow: 0 26px 56px rgba(16, 24, 39, 0.16);
}

.experience-panel h3,
.experience-panel p,
.owner-card h3,
.owner-card p {
  color: #f6f2eb;
}

.experience-kicker,
.owner-role {
  color: #d2bd95;
}

.owner-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
}

.owner-initials {
  color: #f8f4eb;
  background: #9b7e4f;
}

.contact {
  background: #f2eee6;
}

.contact-item {
  background: #fcfbf8;
  border: 1px solid #ded6c9;
  border-radius: 12px;
  box-shadow: none;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  border-color: #b49a68;
  box-shadow: 0 16px 34px rgba(16, 24, 39, 0.08);
}

.contact-icon {
  color: #92784d;
  background: #eee7db;
}

.site-footer {
  background: #0e1625;
  border-top: 1px solid rgba(180, 154, 104, 0.25);
}

.footer-follow .social-link {
  border-color: rgba(180, 154, 104, 0.32);
}

.footer-follow .social-link:hover,
.footer-follow .social-link:focus-visible {
  background: rgba(180, 154, 104, 0.10);
}

@media (max-width: 760px) {
  .financial-graphic {
    min-height: auto;
    border-radius: 18px;
  }

  .hero-card {
    border-radius: 10px;
  }
}
