:root {
  color-scheme: light;
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  --color-dark: #0b2f38;
  --color-darker: #072026;
  --color-primary: #ffffff;
  --color-primary-dark: #e2f0ff;
  --color-primary-soft: #f4f9ff;
  --color-accent: #0a8a5b;
  --color-accent-strong: #056a42;
  --color-light: #0f3b4a;
  --color-muted: #3f6475;
  --color-neutral: #547b8b;
  --color-sky: #e7f2ff;
  --color-sky-strong: #cfe4ff;
  --color-border: rgba(10, 138, 91, 0.18);
  --gradient-emerald: linear-gradient(135deg, #32d28a 0%, #0a8a5b 100%);
  --gradient-emerald-soft: linear-gradient(145deg, rgba(50, 210, 138, 0.18), rgba(10, 138, 91, 0.08));
  --shadow-soft: 0 18px 40px rgba(10, 79, 61, 0.12);
  --shadow-strong: 0 30px 68px rgba(7, 80, 59, 0.22);
}

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

body {
  background: linear-gradient(180deg, #fafdff 0%, var(--color-sky) 45%, #effaf5 100%);
  color: var(--color-light);
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(4.5rem, 10vw, 6.5rem);
}

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

a:hover,
a:focus {
  color: var(--color-accent);
}

h1,
h2,
h3,
h4 {
  text-align: center;
  color: var(--color-light);
  font-weight: 700;
  letter-spacing: 0.04em;
}

h2,
h3 {
  text-transform: uppercase;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem clamp(1.5rem, 6vw, 5rem);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid rgba(7, 80, 59, 0.12);
  box-shadow: 0 18px 36px rgba(7, 80, 59, 0.12);
}


.topbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-light);
}

.topbar__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.95rem;
  background: var(--gradient-emerald);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(10, 138, 91, 0.28);
}

.topbar__logo-mark svg {
  width: 1.6rem;
  height: 1.6rem;
}

.topbar__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1;
}

.topbar__logo-name {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.topbar__logo-name .topbar__logo-em {
  color: var(--color-accent);
}

.topbar__logo-highlight {
  color: var(--color-accent-strong);
  font-weight: 700;
}

.topbar__logo-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-neutral);
}

.topbar__nav {
  display: flex;
  gap: clamp(0.65rem, 2vw, 1.4rem);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  flex-wrap: nowrap;
  justify-content: center;
  text-transform: uppercase;
  color: var(--color-neutral);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.topbar__nav::-webkit-scrollbar {
  display: none;
}

.topbar__nav a {
  position: relative;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.topbar__nav a:hover,
.topbar__nav a:focus-visible,
.topbar__nav a[aria-current='page'] {
  background: rgba(10, 138, 91, 0.12);
  color: var(--color-darker);
  transform: translateY(-1px);
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  background: var(--gradient-emerald);
  box-shadow: 0 18px 36px rgba(10, 138, 91, 0.3);
}

.topbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(10, 138, 91, 0.4);
}

main {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.hero,
.section {
  scroll-margin-top: clamp(4.5rem, 10vw, 6.5rem);
}

.hero {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 5rem clamp(1.5rem, 6vw, 5rem) 3rem;
}

.hero__content {
  text-align: center;
  display: grid;
  gap: 1.25rem;
  justify-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
}

.hero__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.hero__lead {
  color: var(--color-light);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 36ch;
}

.hero__description {
  color: var(--color-neutral);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 38ch;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__note {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.95rem;
}

.hero__visuals {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.dashboard-shot {
  background: #ffffff;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 138, 91, 0.12);
}

.dashboard-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-shot figcaption {
  padding: 1rem 1.4rem;
  font-size: 0.9rem;
  color: var(--color-neutral);
}

.dashboard-shot--secondary {
  transform: translateX(5%);
}

.hero__visuals figure:nth-child(1) {
  transform: translateY(0);
}

.hero__visuals figure:nth-child(2) {
  transform: translateY(-0.5rem);
}

.section {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 6vw, 5rem);
}

.section--alt {
  background: var(--color-primary-soft);
  padding-block: 5rem;
}

.page-hero {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.page-hero + .section {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.section--highlight {
  background: radial-gradient(circle at top, rgba(50, 210, 138, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(231, 242, 255, 0.9) 0%, rgba(239, 250, 245, 0.85) 100%);
  padding-block: 5rem;
}

.section__header {
  max-width: 840px;
  margin-bottom: 3rem;
  margin-inline: auto;
  text-align: center;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
}

.section__subtitle {
  max-width: 720px;
  margin-inline: auto;
  color: var(--color-neutral);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section--conversion {
  background: var(--color-primary);
  padding-block: clamp(3rem, 5vw, 4rem);
}

.conversion {
  max-width: 880px;
  margin-inline: auto;
  background: linear-gradient(135deg, rgba(231, 242, 255, 0.8), rgba(215, 244, 232, 0.9));
  border: 1px solid rgba(10, 138, 91, 0.16);
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: grid;
  gap: 1.5rem;
}

.conversion__header h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.conversion__header p {
  color: var(--color-neutral);
  font-size: 1.05rem;
  line-height: 1.7;
}

.conversion__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--color-light);
}

.conversion__list li {
  position: relative;
  padding-left: 1.75rem;
}

.conversion__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--gradient-emerald);
  box-shadow: 0 0 0 4px rgba(10, 138, 91, 0.1);
}

.conversion__note {
  color: var(--color-accent-strong);
  font-weight: 600;
  font-size: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--features {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid--two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--functionalities {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.grid--blog {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature,
.card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(214, 249, 233, 0.85) 100%);
  border: 1px solid rgba(10, 138, 91, 0.14);
  border-radius: 1.5rem;
  padding: 2.1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature::before,
.card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(49, 210, 138, 0.12), rgba(207, 228, 255, 0.35));
  z-index: 0;
}

.feature > *,
.card > * {
  position: relative;
  z-index: 1;
}

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

.card--accent {
  border: 1px solid rgba(10, 138, 91, 0.22);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.95rem;
}

.card__link::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.card__link:hover::after,
.card__link:focus::after {
  transform: translateX(4px);
}

.feature h3,
.card h3,
.functionality h3,
.post h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature p,
.card p,
.functionality p,
.post p {
  color: var(--color-muted);
  line-height: 1.7;
}

.functionality {
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.functionality__preview {
  margin-top: 1.75rem;
  background: linear-gradient(160deg, #f7fbfa 0%, #ecf3f2 100%);
  border-radius: 1.3rem;
  border: 1px solid rgba(15, 84, 79, 0.16);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(15, 84, 79, 0.08);
}

.functionality__tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.3rem;
  gap: 0.35rem;
  align-self: flex-start;
}

.functionality__tab {
  border: none;
  background: transparent;
  color: var(--color-neutral);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.functionality__tab:hover,
.functionality__tab:focus {
  color: var(--color-accent);
}

.functionality__tab.is-active {
  background: #d5ebe8;
  color: var(--color-accent);
  box-shadow: 0 6px 16px rgba(15, 84, 79, 0.18);
}

.steps {
  align-items: stretch;
}

.step {
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.step::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(15, 84, 79, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover::after {
  opacity: 1;
}

.step__number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 84, 79, 0.12);
  border: 1px solid rgba(15, 84, 79, 0.32);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1.1rem;
}

.step__link {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 0.95rem;
}

.step__link:hover,
.step__link:focus {
  color: var(--color-darker);
}

.dashboard-preview {
  background: var(--color-primary);
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.dashboard-preview[data-state='spending'] {
  box-shadow: 0 18px 40px rgba(222, 127, 114, 0.18);
}

.dashboard-preview[data-state='projections'] {
  box-shadow: 0 18px 40px rgba(111, 184, 158, 0.18);
}

.dashboard-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.dashboard-preview__title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-accent);
}

.dashboard-preview__subtitle {
  font-size: 0.75rem;
  color: var(--color-neutral);
  margin-top: 0.15rem;
}

.dashboard-preview__chip {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #d5ebe8;
  color: var(--color-accent);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.dashboard-preview__content {
  display: grid;
  gap: 1.5rem;
}

.dashboard-preview__chart {
  position: relative;
  height: 140px;
  border-radius: 1rem;
  background: #edf4f3;
  border: 1px solid rgba(15, 84, 79, 0.18);
  overflow: hidden;
}

.chart-area__line {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(15, 84, 79, 0.35) 25%,
      rgba(15, 84, 79, 0.8) 50%,
      rgba(63, 140, 128, 0.6) 100%
    ),
    radial-gradient(circle at 20% 60%, rgba(132, 190, 180, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(15, 84, 79, 0.5) 0%, transparent 55%);
  mix-blend-mode: multiply;
}

.chart-area__gradient {
  position: absolute;
  inset: auto 0 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(15, 84, 79, 0.45), rgba(15, 84, 79, 0));
  opacity: 0.5;
}

.dashboard-preview__cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.dashboard-preview__card {
  background: #f6fbfa;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(15, 84, 79, 0.12);
  display: grid;
  gap: 0.45rem;
}

.dashboard-gallery {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section--dashboards {
  background: var(--color-primary-soft);
}

.dashboard-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.dashboard-grid figure {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(10, 138, 91, 0.12);
  display: grid;
  gap: 0;
}

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

.dashboard-grid figcaption {
  padding: 1rem 1.5rem;
  font-size: 0.92rem;
  color: var(--color-neutral);
}

.about-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(12, 118, 92, 0.1), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(12, 118, 92, 0.12), transparent 60%),
    linear-gradient(160deg, rgba(214, 249, 233, 0.65), rgba(231, 242, 255, 0.55));
  z-index: 0;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.about-hero__content h1 {
  text-align: left;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
}

.about-hero__content p {
  color: var(--color-light);
  max-width: 60ch;
  line-height: 1.7;
}

.about-hero__list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  color: var(--color-light);
}

.about-hero__list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.about-hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1rem;
  height: 1rem;
  border-radius: 0.45rem;
  background: linear-gradient(135deg, #1da57a, #0b5740);
  box-shadow: 0 10px 20px rgba(13, 87, 64, 0.22);
}

.about-hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.about-hero__glow {
  position: absolute;
  inset: auto;
  width: min(420px, 90%);
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 118, 92, 0.18), transparent 65%);
  filter: blur(0px);
  transform: translateY(12%);
  z-index: 0;
}

.about-hero__dashboard {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: 0 30px 60px rgba(7, 80, 59, 0.18);
}

.about-hero__dashboard img {
  width: 100%;
  display: block;
}

.about-hero__dashboard figcaption {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--color-neutral);
}

.metrics {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metrics--highlight {
  background: #ffffff;
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: var(--shadow-soft);
}

.metric {
  display: grid;
  gap: 0.75rem;
  text-align: left;
}

.metric__value {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent-strong);
}

.metric__label {
  color: var(--color-muted);
  line-height: 1.6;
}

.about-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.about-story__text {
  display: grid;
  gap: 1.4rem;
  color: var(--color-light);
  line-height: 1.75;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(10, 138, 91, 0.25), rgba(10, 138, 91, 0));
}

.timeline__item {
  position: relative;
  padding-left: 1.5rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -0.95rem;
  top: 0.4rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--gradient-emerald);
  box-shadow: 0 0 0 6px rgba(10, 138, 91, 0.1);
}

.timeline__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 138, 91, 0.12);
  color: var(--color-accent-strong);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.timeline__title {
  text-align: left;
  margin: 0.75rem 0 0.5rem;
  font-size: 1.2rem;
}

.timeline__item p {
  color: var(--color-muted);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.value-card {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  text-align: left;
}

.value-card h3 {
  text-align: left;
  color: var(--color-light);
  font-size: 1.25rem;
}

.value-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

.team {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.team-card {
  background: #ffffff;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-card__content {
  padding: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.team-card__content h3 {
  text-align: left;
  font-size: 1.35rem;
}

.team-card__role {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-weight: 600;
}

.team-card__content p {
  color: var(--color-muted);
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.impact-card {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.9rem;
  text-align: left;
}

.impact-card__meta {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.impact-card__author {
  font-weight: 600;
  color: var(--color-light);
}

.resources-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  background: linear-gradient(150deg, rgba(231, 242, 255, 0.9), rgba(214, 249, 233, 0.8));
  position: relative;
  overflow: hidden;
}

.resources-hero::after {
  content: '';
  position: absolute;
  inset: -20% -40% auto;
  height: 60%;
  background: radial-gradient(circle, rgba(12, 118, 92, 0.16), transparent 60%);
}

.resources-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.resources-hero__content h1 {
  text-align: left;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.1;
}

.resources-hero__content p {
  color: var(--color-light);
  line-height: 1.7;
  max-width: 58ch;
}

.resources-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.resources-hero__badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 138, 91, 0.12);
  color: var(--color-accent-strong);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.resources-hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.resources-hero__card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.resources-hero__card h2 {
  text-align: left;
  font-size: 1.45rem;
}

.resources-hero__card ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--color-muted);
}

.resources-hero__card li {
  position: relative;
  padding-left: 1.4rem;
}

.resources-hero__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--gradient-emerald);
}

.resources-hero__preview {
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(10, 138, 91, 0.12);
  box-shadow: 0 26px 48px rgba(7, 80, 59, 0.18);
}

.resources-hero__preview img {
  display: block;
  width: 100%;
}

.resource-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.resource-card {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2.1rem;
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.1rem;
}

.resource-card h3 {
  text-align: left;
  font-size: 1.25rem;
}

.resource-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

.resource-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--color-light);
}

.resource-card li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
}

.resource-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(10, 138, 91, 0.4);
}

.journey {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.journey-step {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  text-align: left;
}

.journey-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.9rem;
  background: var(--gradient-emerald);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 14px 22px rgba(10, 138, 91, 0.25);
}

.journey-step h3 {
  text-align: left;
  font-size: 1.25rem;
}

.journey-step p {
  color: var(--color-muted);
  line-height: 1.7;
}

.journey-step__detail {
  font-weight: 600;
  color: var(--color-accent-strong);
}

.dashboard-stacks {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.stack-card {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.stack-card header {
  display: grid;
  gap: 0.45rem;
}

.stack-card header span {
  font-size: 0.9rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.stack-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--color-light);
}

.stack-card li {
  position: relative;
  padding-left: 1.3rem;
}

.stack-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(10, 138, 91, 0.45);
}

.cta--center {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.cta--center p {
  max-width: 52ch;
  margin-inline: auto;
}

.redirect {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(160deg, rgba(231, 242, 255, 0.8), rgba(214, 249, 233, 0.8));
}

.redirect__card {
  max-width: 520px;
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 3rem;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: grid;
  gap: 1.25rem;
}

.redirect__card p {
  color: var(--color-muted);
  line-height: 1.7;
}

.blog-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  background: linear-gradient(160deg, rgba(231, 242, 255, 0.65), rgba(214, 249, 233, 0.65));
}

.blog-hero__content {
  display: grid;
  gap: 1.4rem;
}

.blog-hero__content h1 {
  text-align: left;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.1;
}

.blog-hero__content p {
  color: var(--color-light);
  line-height: 1.7;
}

.blog-hero__highlights {
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-hero__highlights a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-accent-strong);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
}

.blog-list {
  display: grid;
  gap: 2.5rem;
}

.blog-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  background: #ffffff;
  border-radius: 1.8rem;
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__content {
  padding: 2.2rem;
  display: grid;
  gap: 1rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-neutral);
}

.blog-card__tag {
  background: rgba(10, 138, 91, 0.12);
  color: var(--color-accent-strong);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card__content h3 {
  text-align: left;
  font-size: 1.45rem;
}

.blog-card__content p {
  color: var(--color-muted);
  line-height: 1.7;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-accent-strong);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.blog-card__link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.blog-card__link:hover::after,
.blog-card__link:focus::after {
  transform: translateX(4px);
}

.article {
  max-width: 880px;
  margin: clamp(4rem, 8vw, 5rem) auto;
  padding: 0 clamp(1.5rem, 5vw, 2.5rem);
  display: grid;
  gap: 2.5rem;
}

.article__header {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.article__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 138, 91, 0.12);
  color: var(--color-accent-strong);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.article__header h1 {
  text-align: left;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--color-neutral);
  font-size: 0.9rem;
}

.article__content {
  display: grid;
  gap: 1.6rem;
  color: var(--color-light);
  line-height: 1.75;
}

.article__content h2 {
  font-size: 1.55rem;
  text-align: left;
  margin-top: 1rem;
}

.article__list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  padding-left: 1.5rem;
}

.article__list li {
  position: relative;
  padding-left: 1.2rem;
}

.article__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gradient-emerald);
}

.article__steps {
  counter-reset: step;
  display: grid;
  gap: 0.85rem;
  margin-left: 1rem;
}

.article__steps li {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
  color: var(--color-light);
}

.article__quote {
  border-left: 4px solid var(--color-accent);
  padding: 1.2rem 1.5rem;
  background: rgba(10, 138, 91, 0.08);
  border-radius: 1rem;
  color: var(--color-light);
  font-style: italic;
}

.article__table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
}

.article__table th,
.article__table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
}

.article__table thead {
  background: rgba(10, 138, 91, 0.12);
  color: var(--color-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.article__table tbody tr:nth-child(even) {
  background: rgba(10, 138, 91, 0.05);
}

.article__footer {
  background: linear-gradient(135deg, rgba(231, 242, 255, 0.85), rgba(214, 249, 233, 0.85));
  border-radius: 1.8rem;
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  text-align: center;
  border: 1px solid rgba(10, 138, 91, 0.16);
}

.article__footer p {
  color: var(--color-light);
  line-height: 1.7;
}

.article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.plans-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  background: linear-gradient(145deg, rgba(214, 249, 233, 0.75), rgba(231, 242, 255, 0.75));
}

.plans-hero__content {
  display: grid;
  gap: 1.4rem;
}

.plans-hero__content h1 {
  text-align: left;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
}

.plans-hero__content p {
  color: var(--color-light);
  line-height: 1.7;
}

.plans-hero__list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--color-light);
}

.plans-hero__list li {
  position: relative;
  padding-left: 1.6rem;
}

.plans-hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gradient-emerald);
}

.plans-hero__aside {
  display: flex;
  align-items: stretch;
}

.guarantee {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2.2rem;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.1rem;
}

.guarantee h2 {
  text-align: left;
  font-size: 1.5rem;
}

.guarantee p {
  color: var(--color-muted);
  line-height: 1.7;
}

.guarantee__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(10, 138, 91, 0.12);
  color: var(--color-accent-strong);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.plan-card {
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 2.2rem;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
}

.plan-card--featured {
  position: relative;
  border: 1px solid rgba(10, 138, 91, 0.3);
  box-shadow: var(--shadow-strong);
  transform: translateY(-10px);
}

.plan-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--gradient-emerald);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card__header {
  display: grid;
  gap: 0.6rem;
  text-align: left;
}

.plan-card__tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  font-weight: 600;
}

.plan-card__header h3 {
  font-size: 1.6rem;
  text-align: left;
}

.plan-card__header p {
  color: var(--color-muted);
  line-height: 1.6;
}

.plan-card__price {
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--color-light);
}

.plan-card__currency {
  font-size: 1rem;
  font-weight: 600;
}

.plan-card__cents {
  font-size: 1.2rem;
}

.plan-card__period {
  font-size: 0.85rem;
  color: var(--color-neutral);
  letter-spacing: 0.06em;
}

.plan-card__note {
  font-size: 0.85rem;
  color: var(--color-muted);
  background: rgba(10, 138, 91, 0.08);
  padding: 0.6rem 0.8rem;
  border-radius: 0.9rem;
  text-align: left;
  letter-spacing: 0.02em;
}

.plan-card__features {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--color-light);
}

.plan-card__features li {
  position: relative;
  padding-left: 1.4rem;
}

.plan-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gradient-emerald);
}

.plans__notice {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--color-neutral);
  font-size: 0.95rem;
}

.comparison {
  overflow-x: auto;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
}

.comparison__table th,
.comparison__table td {
  padding: 1rem 1.2rem;
  text-align: left;
}

.comparison__table thead {
  background: rgba(10, 138, 91, 0.12);
  color: var(--color-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.comparison__table tbody tr:nth-child(even) {
  background: rgba(10, 138, 91, 0.05);
}

.benefits-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.benefit-card {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 2rem;
  border: 1px solid rgba(10, 138, 91, 0.16);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.9rem;
  text-align: left;
}

.benefit-card h3 {
  font-size: 1.3rem;
  text-align: left;
}

.benefit-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

.functionality-overview__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(280px, 1fr);
}

@media (min-width: 960px) {
  .functionality-overview__grid {
    grid-template-columns: minmax(420px, 2fr) minmax(220px, 1fr);
    align-items: start;
  }
}

.functionality--preview {
  display: grid;
  gap: 1.4rem;
}

.functionality-overview__highlights {
  display: grid;
  gap: 1.4rem;
}

.highlight-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.6rem;
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: var(--shadow-soft);
  text-align: left;
  display: grid;
  gap: 0.6rem;
}

.highlight-card h3 {
  font-size: 1.2rem;
  text-align: left;
}

.highlight-card p {
  color: var(--color-muted);
  line-height: 1.6;
}

.functional-points {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.functional-point {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid rgba(10, 138, 91, 0.14);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.6rem;
  text-align: left;
}

.functional-point h3 {
  font-size: 1.2rem;
  text-align: left;
}

.functional-point p {
  color: var(--color-muted);
  line-height: 1.6;
}

.journey--compact {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.dashboard-card {
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.dashboard-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.dashboard-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--color-neutral);
  display: inline-block;
  margin-bottom: 0.6rem;
}

.dashboard-card__title {
  font-size: 1.2rem;
  color: var(--color-accent);
}

.dashboard-card__tag {
  background: #d5ebe8;
  color: var(--color-accent);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

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

.dashboard-card__metrics--three {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.dashboard-card__label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-neutral);
}

.dashboard-card__value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
}

.dashboard-card__value.positivo {
  color: #4f9d81;
}

.dashboard-card__value.negativo {
  color: #e86f58;
}

.dashboard-card__description {
  font-size: 0.95rem;
  color: var(--color-neutral);
  line-height: 1.65;
}

.dashboard-card__chart {
  border-radius: 1.1rem;
  background: #edf4f3;
  border: 1px solid rgba(15, 84, 79, 0.12);
  overflow: hidden;
}

.dashboard-card__chart--bars {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  padding: 1.25rem 1.1rem 1rem;
  height: 140px;
}

.dashboard-card__bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(15, 84, 79, 0.7), rgba(15, 84, 79, 0.25));
  border-radius: 0.6rem;
}

.dashboard-card__progress {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}

.dashboard-card__progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-neutral);
}

.dashboard-card__progress-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 84, 79, 0.12);
}

.dashboard-card__progress-bar span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(15, 84, 79, 0.3), rgba(15, 84, 79, 0.85));
}

.dashboard-card__chart--line {
  position: relative;
  height: 160px;
}

.dashboard-card__line {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(15, 84, 79, 0.35) 20%,
      rgba(15, 84, 79, 0.8) 55%,
      rgba(63, 140, 128, 0.65) 100%
    );
}

.dashboard-card__gradient {
  position: absolute;
  inset: auto 0 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(15, 84, 79, 0.4), rgba(15, 84, 79, 0));
}

.dashboard-preview__segments {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.dashboard-preview__segments li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.dashboard-preview__label {
  font-size: 0.78rem;
  color: var(--color-neutral);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-preview__bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(15, 84, 79, 0.12);
  overflow: hidden;
}

.dashboard-preview__bar-fill {
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(15, 84, 79, 0.2), rgba(15, 84, 79, 0.85));
  transition: width 0.6s ease, background 0.4s ease;
}

.dashboard-preview__percent {
  font-size: 0.75rem;
  color: rgba(176, 194, 240, 0.72);
}

@media (min-width: 900px) {
  .dashboard-preview__content {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-areas:
      'chart cards'
      'segments cards';
    align-items: start;
  }

  .dashboard-preview__chart {
    grid-area: chart;
    height: 200px;
  }

  .dashboard-preview__cards {
    grid-area: cards;
  }

  .dashboard-preview__segments {
    grid-area: segments;
    margin-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .grid--functionalities {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }

  .functionality:first-child {
    grid-column: span 2;
  }

  .functionality:first-child .functionality__preview {
    height: 100%;
  }
}

.dashboard-preview[data-state='spending'] [data-progress='essentials'] {
  background: linear-gradient(90deg, rgba(232, 111, 88, 0.25), rgba(232, 111, 88, 0.85));
}

.dashboard-preview[data-state='spending'] [data-progress='lifestyle'] {
  background: linear-gradient(90deg, rgba(249, 149, 94, 0.25), rgba(249, 149, 94, 0.85));
}

.dashboard-preview[data-state='spending'] [data-progress='investments'] {
  background: linear-gradient(90deg, rgba(79, 157, 129, 0.25), rgba(79, 157, 129, 0.85));
}

.dashboard-preview[data-state='projections'] [data-progress='essentials'] {
  background: linear-gradient(90deg, rgba(103, 184, 158, 0.25), rgba(103, 184, 158, 0.85));
}

.dashboard-preview[data-state='projections'] [data-progress='lifestyle'] {
  background: linear-gradient(90deg, rgba(189, 162, 222, 0.25), rgba(189, 162, 222, 0.85));
}

.dashboard-preview[data-state='projections'] [data-progress='investments'] {
  background: linear-gradient(90deg, rgba(79, 157, 129, 0.25), rgba(79, 157, 129, 0.85));
}

@media (prefers-reduced-motion: reduce) {
  .functionality__tab,
  .dashboard-preview,
  .dashboard-preview__bar-fill,
  .chart-area__line,
  .chart-area__gradient {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }
}

.dashboard-preview__card h4 {
  font-size: 0.85rem;
  color: var(--color-neutral);
  font-weight: 500;
}

.dashboard-preview__value {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-accent);
}

.dashboard-preview__trend {
  font-size: 0.75rem;
  color: var(--color-neutral);
}

.dashboard-preview__trend.positivo {
  color: #4f9d81;
}

.dashboard-preview__trend.negativo {
  color: #e86f58;
}

.dashboard-preview[data-state='spending'] .chart-area__line {
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(232, 111, 88, 0.45) 25%,
      rgba(232, 111, 88, 0.9) 50%,
      rgba(250, 160, 131, 0.55) 100%
    ),
    radial-gradient(circle at 35% 45%, rgba(232, 111, 88, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(249, 149, 94, 0.5) 0%, transparent 60%);
}

.dashboard-preview[data-state='spending'] .chart-area__gradient {
  background: linear-gradient(180deg, rgba(232, 111, 88, 0.55), rgba(232, 111, 88, 0));
}

.dashboard-preview[data-state='projections'] .chart-area__line {
  background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(103, 184, 158, 0.4) 25%,
      rgba(103, 184, 158, 0.95) 50%,
      rgba(148, 216, 189, 0.65) 100%
    ),
    radial-gradient(circle at 25% 55%, rgba(103, 184, 158, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 65% 35%, rgba(148, 216, 189, 0.55) 0%, transparent 55%);
}

.dashboard-preview[data-state='projections'] .chart-area__gradient {
  background: linear-gradient(180deg, rgba(103, 184, 158, 0.55), rgba(103, 184, 158, 0));
}

.dashboard-preview[data-state='spending'] .dashboard-preview__chip {
  background: rgba(232, 111, 88, 0.15);
  color: #b95140;
}

.dashboard-preview[data-state='projections'] .dashboard-preview__chip {
  background: rgba(103, 184, 158, 0.18);
  color: #3b8069;
}

@media (max-width: 640px) {
  .functionality__preview {
    padding: 1.25rem;
  }

  .functionality__tabs {
    flex-wrap: wrap;
    width: 100%;
  }

  .functionality__tab {
    flex: 1 1 calc(33.333% - 0.35rem);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .functionality__tab {
    flex: 1 1 100%;
  }
}

.post {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(231, 242, 255, 0.8) 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(10, 138, 91, 0.16);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.post::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(214, 249, 233, 0.45), rgba(231, 242, 255, 0.45));
  z-index: 0;
}


.stats {
  list-style: none;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 0;
}

.stats__item {
  background: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.8rem;
}

.stats__value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent);
}

.stats__label {
  font-size: 1rem;
  line-height: 1.5;
}

.stats__item span {
  font-size: 0.85rem;
  color: var(--color-neutral);
}

.plans__comparison th,
.plans__comparison td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(15, 84, 79, 0.16);
}

.plans__comparison th {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--color-neutral);
}

.plans__comparison td:first-child,
.plans__comparison th:first-child {
  text-align: left;
}

.plans__comparison tbody tr:last-child td {
  border-bottom: none;
}

.payment__hero {
  margin: 0 auto;
  max-width: 1120px;
}

.payment__grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 2.5rem;
  align-items: start;
}

.payment__summary {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(214, 249, 233, 0.8));
  border: 1px solid rgba(10, 138, 91, 0.16);
  border-radius: 1.75rem;
  padding: 2rem;
  display: grid;
  gap: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.payment__summary h2 {
  font-size: 1.3rem;
}

.payment__plan-name {
  font-size: 1.05rem;
  font-weight: 600;
}

.payment__plan-price {
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 600;
}

.payment__plan-benefits {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--color-neutral);
  font-size: 0.95rem;
}

.payment__plan-benefits li::before {
  content: '•';
  color: var(--color-accent);
  margin-right: 0.5rem;
}

.payment__secure {
  font-size: 0.85rem;
  color: var(--color-neutral);
}

.payment__methods {
  display: grid;
  gap: 2rem;
}

.payment__method {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(231, 242, 255, 0.75));
  border: 1px solid rgba(10, 138, 91, 0.16);
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
}

.payment__method header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.payment__method header p {
  color: var(--color-neutral);
  line-height: 1.6;
}

.payment__form {
  display: grid;
  gap: 1rem;
}

.payment__feedback {
  padding: 0.75rem 1rem;
  border-radius: 0.8rem;
  background: rgba(255, 189, 89, 0.12);
  color: #b05b00;
  font-weight: 600;
  border: 1px solid rgba(255, 189, 89, 0.5);
}

.payment__feedback[data-state='error'] {
  background: rgba(240, 60, 60, 0.08);
  color: #8a1111;
  border-color: rgba(240, 60, 60, 0.35);
}

.payment__feedback[data-state='success'] {
  background: rgba(10, 138, 91, 0.08);
  color: #0a8a5b;
  border-color: rgba(10, 138, 91, 0.35);
}

.payment__form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-neutral);
}

.payment__form input {
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(10, 138, 91, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-light);
}

.payment__form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.payment__note {
  font-size: 0.85rem;
  color: var(--color-neutral);
}

.payment__pix {
  display: grid;
  gap: 1rem;
  color: var(--color-neutral);
  font-size: 0.95rem;
}

.payment__pix-key {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(231, 242, 255, 0.9), rgba(214, 249, 233, 0.65));
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-family: 'Outfit', monospace;
  border: 1px solid rgba(10, 138, 91, 0.2);
}

.payment__pix-key .label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--color-accent);
}

.payment__bank {
  display: grid;
  gap: 0.8rem;
  color: var(--color-neutral);
  font-size: 0.95rem;
}

.payment__bank ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.payment__bank strong {
  color: var(--color-accent);
}

@media (max-width: 980px) {
  .payment__grid {
    grid-template-columns: 1fr;
  }

  .payment__summary {
    order: -1;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,
    color 0.3s ease;
}

.btn--primary,
.btn--plan {
  background: var(--gradient-emerald);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(10, 138, 91, 0.28);
}

.btn--primary:hover,
.btn--plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 56px rgba(10, 138, 91, 0.32);
}

.btn--ghost {
  background: linear-gradient(135deg, rgba(231, 242, 255, 0.9), rgba(214, 249, 233, 0.65));
  border-color: rgba(10, 138, 91, 0.2);
  color: var(--color-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  background: var(--gradient-emerald);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(10, 138, 91, 0.28);
}

.cta {
  position: relative;
  background: linear-gradient(140deg, rgba(50, 210, 138, 0.16), rgba(231, 242, 255, 0.92));
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(214, 249, 233, 0.65));
  z-index: 0;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta p {
  color: var(--color-muted);
  line-height: 1.6;
}

.form {
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(231, 242, 255, 0.8));
  border: 1px solid rgba(10, 138, 91, 0.16);
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form label {
  font-weight: 500;
  color: var(--color-neutral);
}

.form input,
.form textarea {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(10, 138, 91, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-light);
  font-size: 1rem;
}

.form__feedback {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-success);
}

.form__feedback--error {
  color: var(--color-accent);
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(111, 138, 135, 0.6);
}

.contact__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card {
  position: relative;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(214, 249, 233, 0.75));
  border: 1px solid rgba(10, 138, 91, 0.18);
  border-radius: 1.5rem;
  padding: 2rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  text-align: center;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(231, 242, 255, 0.8), rgba(50, 210, 138, 0.18));
  z-index: 0;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.contact-card__link::after {
  content: '↗';
  font-size: 0.9rem;
}

.contact-card--faq {
  background: linear-gradient(155deg, rgba(50, 210, 138, 0.22), rgba(231, 242, 255, 0.95));
  border: 1px solid rgba(10, 138, 91, 0.25);
}

.contact-card--faq::before {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(50, 210, 138, 0.22));
}

.faq {
  display: grid;
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(10, 138, 91, 0.18);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq__item[open] {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.faq__question {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

.faq__question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  margin-top: 1rem;
  color: var(--color-neutral);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__answer p + p {
  margin-top: 0.75rem;
}

.footer {
  background: linear-gradient(135deg, #034e2c 0%, #056a42 100%);
  color: #ffffff;
  padding: 3.5rem clamp(1.5rem, 6vw, 5rem) 2.5rem;
}

.footer a {
  color: inherit;
}

.footer__content {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.footer__brand {
  display: grid;
  gap: 1rem;
}

.footer__brand-name {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__brand-name span {
  color: rgba(255, 255, 255, 0.7);
}

.footer__tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer__social svg {
  width: 1.2rem;
  height: 1.2rem;
}

.footer__social a:hover,
.footer__social a:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.footer__columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.footer__column {
  display: grid;
  gap: 1rem;
}

.footer__column h3 {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__column a:hover,
.footer__column a:focus-visible {
  text-decoration: underline;
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__version {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer__legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .topbar {
    justify-content: space-between;
    gap: 1rem;
  }

  .topbar__logo-subtitle {
    display: none;
  }

  .hero {
    padding-top: 6rem;
  }

  .section__header {
    text-align: center;
  }

  .plan-card--featured {
    transform: none;
  }

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

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

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

.hero {
  margin-bottom: 0; /* remove margem inferior */
  padding-bottom: 0; /* remove padding inferior */
}

.hero__content {
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero + .section {
  margin-top: 0; /* remove o espaço entre o hero e a próxima seção */
  padding-top: 0;
}
.hero {
  padding-top: 2rem; /* valor original pode ser 6rem ou mais — reduza para 3rem */
  padding-bottom: 4rem; /* mantém espaço inferior agradável */
}
/* Ajuste do espaçamento no topo da página Funcionalidades */
body.funcionalidades .functionality-overview,
body.funcionalidades .section--alt:first-of-type {

  padding-top: 1rem; /* antes provavelmente 6rem ou mais */
}

@media (max-width: 768px) {
  body.funcionalidades .functionality-overview,
  body.funcionalidades .section--alt:first-of-type {
    padding-top: 2rem;
  }
}
/* Ajuste do espaçamento no topo da página Funcionalidades */
body.planos .functionality-overview,
body.planos .section--alt:first-of-type {

  padding-top: 1rem; /* antes provavelmente 6rem ou mais */
}

/* Páginas legais e de carreira */
.legal-hero {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(31, 180, 125, 0.08), rgba(11, 87, 64, 0.04));
}

.legal-hero__content {
  max-width: 980px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  gap: 1rem;
}

.legal-hero__content h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.legal-hero__content p {
  color: var(--color-neutral);
  line-height: 1.7;
}

.legal-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.legal-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

@media (min-width: 900px) {
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.legal-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(10, 138, 91, 0.12);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: grid;
  gap: 0.75rem;
}

.legal-card h2 {
  font-size: 1.2rem;
}

.legal-card p {
  color: var(--color-neutral);
  line-height: 1.7;
}

.legal-list {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--color-neutral);
  line-height: 1.6;
}

.legal-highlight {
  border-left: 3px solid var(--color-accent);
  padding-left: 0.75rem;
}

.legal-callout {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(231, 242, 255, 0.9), rgba(215, 244, 232, 0.9));
  border: 1px solid rgba(10, 138, 91, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.75rem;
  text-align: center;
}

.legal-callout p {
  color: var(--color-neutral);
}

.careers-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.career-card {
  background: #ffffff;
  border-radius: 1.1rem;
  border: 1px solid rgba(10, 138, 91, 0.12);
  padding: 1.25rem;
  display: grid;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.career-card h3 {
  font-size: 1.05rem;
}

.career-card p,
.career-card li {
  color: var(--color-neutral);
  line-height: 1.6;
}

.career-card ul {
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}
