@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --navy: #05063e;
  --navy-2: #111453;
  --navy-3: #171a62;
  --orange: #ff7014;
  --orange-2: #ff8b32;
  --ink: #171827;
  --muted: #676b79;
  --soft: #f4f6fa;
  --soft-2: #eef1f7;
  --white: #ffffff;
  --line: #e4e7ef;
  --success: #23875a;
  --shadow-sm: 0 14px 34px rgba(5, 6, 62, 0.08);
  --shadow-md: 0 24px 70px rgba(5, 6, 62, 0.12);
  --shadow-lg: 0 34px 100px rgba(5, 6, 62, 0.17);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

p {
  color: var(--muted);
}

::selection {
  color: var(--white);
  background: var(--orange);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

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

.section {
  padding: 112px 0;
}

.services-preview + .section {
  padding-top: 56px;
}

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

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: '';
}

.kicker-light {
  color: #ff9d5d;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .kicker {
  justify-content: center;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-heading h2 strong {
  color: var(--orange);
  font-weight: inherit;
}

.section-heading p {
  max-width: 640px;
  margin-top: 20px;
  font-size: 18px;
}

.section-heading.centered p {
  margin-inline: auto;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: var(--white);
}

.section-dark .section-heading p {
  color: #b8bbcf;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 112, 20, 0.26);
}

.btn-primary:hover {
  background: #ef650a;
  box-shadow: 0 18px 36px rgba(255, 112, 20, 0.34);
}

.btn-secondary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(5, 6, 62, 0.2);
}

.btn-secondary:hover {
  background: var(--navy-3);
}

.btn-outline {
  color: var(--navy);
  border-color: rgba(5, 6, 62, 0.18);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-white {
  color: var(--navy);
  background: var(--white);
}

.btn-white:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.text-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.text-link.orange {
  color: var(--orange);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4e5261;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.tag::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: '';
}

.icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  padding: 13px;
  border-radius: 16px;
  color: var(--orange);
  background: #fff1e7;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.utility-bar {
  height: 34px;
  color: #d6d8e5;
  background: var(--navy);
  font-size: 12px;
}

.utility-bar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-bar strong {
  color: #ff9c5b;
}

.utility-bar a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(228, 231, 239, 0.86);
  backdrop-filter: blur(18px);
}

.header-main {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 166px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  height: 48px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  color: #474b5c;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.active,
.nav-trigger.active,
.nav-item.is-open .nav-trigger {
  color: var(--navy);
  background: var(--soft);
}

.nav-link.active::after,
.nav-trigger.active::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: '';
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item.is-open .nav-chevron {
  transform: rotate(180deg);
}

.header-cta {
  flex: 0 0 auto;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(790px, calc(100vw - 40px));
  padding: 24px;
  border: 1px solid rgba(228, 231, 239, 0.9);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.nav-item.is-open .mega-menu,
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu::before {
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  height: 18px;
  content: '';
}

.mega-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 20px;
}

.mega-copy {
  padding: 14px 8px 10px;
}

.mega-eyebrow {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-copy h3 {
  margin: 8px 0 18px;
  color: var(--navy);
  font-size: 25px;
}

.mega-links {
  display: grid;
  gap: 4px;
}

.mega-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #555968;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.mega-links a span {
  color: var(--orange);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-links a:hover {
  color: var(--navy);
  background: var(--soft);
  transform: translateX(3px);
}

.mega-links a:hover span {
  opacity: 1;
  transform: none;
}

.mega-feature {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy);
}

.mega-feature img {
  display: block;
  width: calc(100% + 2px);
  max-width: none;
  height: calc(100% + 2px);
  margin: -1px;
  object-fit: cover;
  transform: scale(1.1);
}

.mega-feature-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  color: var(--white);
  background: rgba(5, 6, 62, 0.76);
  backdrop-filter: blur(13px);
}

.mega-feature-copy small,
.mega-feature-copy strong {
  display: block;
}

.mega-feature-copy small {
  margin-bottom: 3px;
  color: #d4d6e5;
  font-size: 11px;
}

.mega-feature-copy strong {
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
}

.mega-feature-copy > span {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy);
  background: var(--orange);
  font-weight: 900;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 56px;
  background:
    radial-gradient(circle at 87% 11%, rgba(255, 112, 20, 0.12), transparent 26%),
    linear-gradient(180deg, #fafbfe 0%, #ffffff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(5, 6, 62, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 6, 62, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 83%);
  content: '';
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 58px;
}

.hero-copy {
  padding: 34px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid #e4e6ee;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 112, 20, 0.12);
}

.hero h1 {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(3.25rem, 5.8vw, 5.7rem);
  line-height: 0.98;
}

.hero h1 strong {
  position: relative;
  color: var(--orange);
  font-weight: inherit;
}

.hero h1 strong::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 112, 20, 0.2);
  content: '';
}

.hero-copy > p {
  max-width: 610px;
  margin-top: 27px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d5160;
  font-size: 13px;
  font-weight: 700;
}

.proof-pill::before {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  content: '✓';
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-orbit {
  position: absolute;
  top: 30px;
  right: 0;
  width: 520px;
  height: 520px;
  border: 82px solid rgba(255, 112, 20, 0.1);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: '';
}

.hero-orbit::before {
  inset: -52px;
  border: 1px solid rgba(255, 112, 20, 0.24);
}

.hero-orbit::after {
  inset: 74px;
  border: 1px dashed rgba(5, 6, 62, 0.17);
}

.dashboard {
  position: absolute;
  top: 64px;
  right: 18px;
  width: min(590px, 96%);
  overflow: hidden;
  border: 1px solid rgba(226, 229, 238, 0.92);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.dashboard-top {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #eceef4;
  color: #777b89;
  font-size: 11px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7dae3;
}

.window-dots i:first-child {
  background: var(--orange);
}

.dashboard-user {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  font-size: 10px;
  font-weight: 800;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 420px;
}

.dashboard-side {
  padding: 22px 17px;
  background: var(--navy);
}

.dashboard-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 11px;
  color: var(--navy);
  background: var(--orange);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.dashboard-side i {
  display: block;
  width: 28px;
  height: 8px;
  margin: 17px auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.dashboard-side i.active {
  background: var(--orange);
}

.dashboard-content {
  padding: 24px;
  background: #f8f9fc;
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-heading small {
  color: #8c909d;
  font-size: 10px;
}

.dashboard-heading h3 {
  margin-top: 3px;
  color: var(--navy);
  font-size: 21px;
}

.dashboard-heading span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #727684;
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 21px 0 14px;
}

.metric-card {
  padding: 14px;
  border: 1px solid #eaecf2;
  border-radius: 14px;
  background: var(--white);
}

.metric-card small,
.metric-card strong,
.metric-card em {
  display: block;
}

.metric-card small {
  color: #8a8e9b;
  font-size: 9px;
}

.metric-card strong {
  margin: 7px 0 4px;
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
}

.metric-card em {
  color: var(--success);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.chart-panel {
  min-height: 203px;
  padding: 18px;
  border: 1px solid #eaecf2;
  border-radius: 16px;
  background: var(--white);
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.chart-head strong,
.chart-head small {
  display: block;
}

.chart-head strong {
  color: var(--navy);
  font-size: 12px;
}

.chart-head small,
.chart-head span {
  color: #9396a2;
  font-size: 8px;
}

.chart-svg {
  width: 100%;
  height: 130px;
  margin-top: 12px;
}

.chart-svg .grid-line {
  stroke: #edf0f5;
  stroke-width: 1;
}

.chart-svg .area {
  fill: url(#chartFill);
}

.chart-svg .line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
  stroke-linecap: round;
}

.chart-svg .dot {
  fill: var(--white);
  stroke: var(--orange);
  stroke-width: 4;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(228, 231, 239, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}

.floating-note > span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.floating-note b,
.floating-note small {
  display: block;
  white-space: nowrap;
}

.floating-note b {
  color: var(--navy);
  font-size: 12px;
}

.floating-note small {
  color: #898d9a;
  font-size: 9px;
}

.note-tax {
  top: 37px;
  left: 2px;
}

.note-support {
  right: -5px;
  bottom: 20px;
  animation-delay: -2s;
}

.note-support > span:first-child {
  color: var(--orange);
  background: var(--navy);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.hero-bottom > span {
  color: #8b8f9b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-segments {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.hero-segments a {
  position: relative;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.hero-segments a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  content: '';
}

/* Segmentos home */
.segments-showcase {
  position: relative;
  background: var(--soft);
}

.segments-showcase::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  opacity: 0.25;
  background-image: radial-gradient(rgba(5, 6, 62, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  content: '';
}

.segments-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 14px;
  margin-top: 36px;
}

.segment-card {
  position: relative;
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(224, 227, 235, 0.95);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(5, 6, 62, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.segment-card:hover {
  z-index: 2;
  border-color: rgba(255, 112, 20, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.segment-card.featured {
  grid-column: span 8;
  min-height: 250px;
  color: var(--white);
  border-color: transparent;
  background: var(--navy);
}

.segment-card.medium {
  grid-column: span 4;
}

.segment-card.small {
  grid-column: span 4;
}

.segment-card.wide {
  grid-column: span 12;
}

.segment-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
}

.segment-card.featured .icon {
  color: var(--navy);
  background: var(--orange);
}

.segment-card h3 {
  color: var(--navy);
  font-size: 18px;
}

.segment-card.featured h3 {
  max-width: 380px;
  color: var(--white);
  font-size: 28px;
}

.segment-card p {
  margin-top: 8px;
  font-size: 13px;
}

.segment-card.featured p {
  max-width: 420px;
  color: #bfc2d3;
  font-size: 14px;
}

.segment-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.segment-card-link span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--navy);
  background: #fff2e9;
}

.segment-card.featured .segment-card-link span {
  color: var(--navy);
  background: var(--orange);
}

.segment-pattern {
  position: absolute;
  right: -70px;
  bottom: -75px;
  width: 270px;
  height: 270px;
  border: 50px solid rgba(255, 112, 20, 0.14);
  border-radius: 50%;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card.featured {
  grid-row: span 2;
  min-height: 620px;
  color: var(--white);
  background: var(--navy);
}

.feature-no {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #a1a6b4;
  font-size: 11px;
}

.feature-card.featured .feature-no {
  color: rgba(255, 255, 255, 0.4);
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 13px;
  background: #fff1e7;
  color: var(--orange);
  font-size: 19px;
  font-weight: 800;
}

.feature-card.featured .icon-box {
  background: rgba(255, 255, 255, 0.12);
}

.feature-card h3 {
  color: var(--navy);
  font-size: 22px;
}

.feature-card.featured h3 {
  color: var(--white);
}

.feature-card p {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.feature-card.featured p {
  color: #b7bad0;
}

.feature-card > a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.card-visual {
  position: absolute;
  right: 27px;
  bottom: 27px;
  left: 27px;
  height: 240px;
  padding: 20px;
  border-radius: 13px;
  background: var(--white);
}

.mini-top {
  display: flex;
  gap: 5px;
}

.mini-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dce0e7;
}

.mini-numbers {
  display: flex;
  gap: 10px;
  margin: 25px 0;
}

.mini-numbers i {
  display: block;
  height: 48px;
  flex: 1;
  border-radius: 7px;
  background: var(--soft);
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 90px;
  border-bottom: 1px solid var(--line);
}

.mini-chart b {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--orange);
}

.mini-chart b:nth-child(1) { height: 35%; }
.mini-chart b:nth-child(2) { height: 60%; }
.mini-chart b:nth-child(3) { height: 47%; }
.mini-chart b:nth-child(4) { height: 80%; }
.mini-chart b:nth-child(5) { height: 68%; }

.check-stack {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.check-stack li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555968;
  font-size: 14px;
}

.check-stack li::before {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  content: '✓';
  font-size: 11px;
  font-weight: 900;
}

/* Platform showcase (tabs + device mockup) */
.platform-showcase {
  margin-top: 54px;
}

.platform-tabs {
  position: relative;
  display: flex;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto 26px;
  padding: 8px;
  border-radius: 999px;
  background: var(--soft);
}

.platform-tabs-indicator {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.platform-tabs-indicator.no-anim {
  transition: none;
}

.platform-tab {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5b5f6d;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s ease;
}

.platform-tab.active {
  color: var(--white);
}

.platform-device {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.platform-device-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.platform-device-slide.active {
  opacity: 1;
}

@media (max-width: 980px) {
  .platform-tabs { flex-wrap: wrap; border-radius: 22px; }
  .platform-tab { flex: 1 1 45%; }
}

/* Services cards */
.services-preview {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(255, 112, 20, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card.featured {
  color: var(--white);
  border-color: transparent;
  background: var(--orange);
}

.service-card .service-index {
  color: #afb3bf;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card.featured .service-index {
  color: rgba(255, 255, 255, 0.7);
}

.service-card h3 {
  margin-top: 38px;
  color: var(--navy);
  font-size: 25px;
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card p {
  margin-top: 14px;
  font-size: 14px;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card .service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
}

.service-card.featured .service-link {
  color: var(--white);
}

.service-card .service-link span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy);
  background: var(--soft);
}

.service-card.featured .service-link span {
  background: var(--white);
}

/* Services preview (home): stacked cards + photo */
.services-preview-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 30px;
}

.service-stack {
  display: flex;
  margin-top: 50px;
}

.service-stack .service-card {
  flex: 0 0 240px;
  width: 240px;
  margin-right: -70px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
}

.service-stack .service-card:nth-child(1) { z-index: 1; }
.service-stack .service-card:nth-child(2) { z-index: 2; }
.service-stack .service-card:nth-child(3) { z-index: 3; }
.service-stack .service-card:nth-child(4) { z-index: 4; }

.service-stack .service-card:last-child {
  margin-right: 0;
}

.service-stack .service-card:hover {
  z-index: 10;
  transform: translateY(-10px) scale(1.05);
}

.services-preview-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 380px;
}

.services-preview-blob {
  position: absolute;
  bottom: -14px;
  left: 40%;
  z-index: 2;
  width: 66%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.services-preview-person {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Process */
.process-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.process-section::before {
  position: absolute;
  top: -330px;
  left: -270px;
  width: 700px;
  height: 700px;
  border: 90px solid rgba(255, 112, 20, 0.08);
  border-radius: 50%;
  content: '';
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 90px;
}

.process-copy {
  position: sticky;
  top: 150px;
  align-self: start;
}

.process-copy h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
}

.process-copy h2 strong {
  color: var(--orange);
  font-weight: inherit;
}

.process-copy p {
  max-width: 470px;
  margin: 20px 0 30px;
  color: #b8bbcf;
  font-size: 17px;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step > span {
  color: var(--orange);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  color: var(--white);
  font-size: 22px;
}

.process-step p {
  margin-top: 8px;
  color: #aeb2c6;
  font-size: 14px;
}

/* Plans */
.plans-preview {
  background: var(--soft);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.plan-card.popular {
  border: 2px solid var(--orange);
  box-shadow: 0 28px 65px rgba(255, 112, 20, 0.14);
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 30px;
}

.plan-card > p {
  min-height: 78px;
  margin-top: 14px;
  font-size: 14px;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
}

.plan-card li {
  display: flex;
  gap: 10px;
  color: #555968;
  font-size: 14px;
}

.plan-card li::before {
  color: var(--orange);
  content: '✓';
  font-weight: 900;
}

.plan-card .btn {
  margin-top: auto;
}

/* Statement */
.statement-section {
  padding: 72px 0;
}

.statement-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 230px;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 54px;
  border-radius: 30px;
  color: var(--white);
  background: var(--navy);
}

.statement-card::after {
  position: absolute;
  top: -190px;
  right: -110px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--orange);
  content: '';
}

.statement-mark {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 105px;
  line-height: 0.7;
}

.statement-card blockquote {
  max-width: 720px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

/* Photo-focused variant (home statement block) */
.statement-card--photo {
  grid-template-columns: 360px 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  min-height: 372px;
  overflow: visible;
  background: transparent;
}

.statement-card--photo::after {
  content: none;
}

.statement-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
}

.statement-card-bg::after {
  position: absolute;
  top: -190px;
  right: -110px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--orange);
  content: '';
}

.statement-photo {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.statement-photo-blob {
  position: absolute;
  bottom: -8%;
  left: 50%;
  z-index: 0;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 112, 20, 0.45), rgba(255, 112, 20, 0) 72%);
}

.statement-photo img {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  display: block;
  width: 380px;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.statement-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 54px 60px 54px 6px;
}

.statement-content .statement-mark {
  font-size: 90px;
}

.statement-content blockquote {
  max-width: 620px;
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
}

/* Mirrored variant: photo on the right (sobre.html) */
.statement-card--photo-right {
  grid-template-columns: 1fr 360px;
}

.statement-card--photo-right .statement-content {
  padding: 54px 6px 54px 60px;
  transform: translateY(-22px);
}

.statement-card--photo-right .statement-photo img {
  left: 38%;
  width: 330px;
}

.statement-card--photo-right .statement-card-bg::after {
  top: auto;
  right: auto;
  bottom: -150px;
  left: -90px;
  width: 220px;
  height: 220px;
}

.statement-signature strong,
.statement-signature span {
  display: block;
}

.statement-signature strong {
  color: var(--orange);
  font-family: 'Manrope', sans-serif;
}

.statement-signature span {
  color: #b9bdcf;
  font-size: 13px;
}

/* Legacy avatar-style signature (still used on sobre.html until refactored) */
.statement-card > .statement-signature {
  position: relative;
  z-index: 2;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.statement-avatar {
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(closest-side, rgba(255, 112, 20, 0.4), rgba(255, 112, 20, 0.1) 75%);
}

.statement-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-intro h2 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.faq-intro p {
  max-width: 420px;
  margin: 18px 0 24px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--orange);
  background: #fff1e7;
  font-size: 18px;
  font-style: normal;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 720px;
  padding: 0 58px 22px 0;
  font-size: 14px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

/* CTA / forms */
.cta-section {
  padding: 62px 0 112px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  overflow: hidden;
  padding: 64px;
  border-radius: 32px;
  color: var(--white);
  background: var(--navy);
}

.cta-card::before {
  position: absolute;
  left: -240px;
  bottom: -330px;
  width: 560px;
  height: 560px;
  border: 80px solid rgba(255, 112, 20, 0.09);
  border-radius: 50%;
  content: '';
}

.cta-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.cta-copy {
  padding-right: 150px;
}

.cta-photo {
  position: absolute;
  right: -46px;
  bottom: -64px;
  z-index: 0;
  width: 190px;
  height: auto;
  pointer-events: none;
}

.cta-photo-blob {
  position: absolute;
  right: -70px;
  bottom: -64px;
  z-index: 0;
  width: 250px;
  height: 78%;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(closest-side, rgba(255, 112, 20, 0.22), rgba(255, 112, 20, 0) 72%);
  pointer-events: none;
}

/* CTA variant: full-width wave detail + focused photo (servicos.html) */
.cta-card--photo {
  grid-template-columns: 1fr 360px;
  align-items: end;
}

.cta-card-copy-wrap {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 26px;
  grid-column: 1;
}

.cta-card--photo .cta-copy {
  padding-right: 0;
}

.cta-card--photo .cta-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.cta-card-wave {
  position: absolute;
  bottom: -70px;
  display: block;
  max-width: none;
  height: auto;
  pointer-events: none;
}

.cta-card-wave--left {
  left: 0;
  z-index: 1;
  width: 64%;
}

.cta-card-wave--right {
  right: 0;
  bottom: -105px;
  z-index: 5;
  width: 100%;
}

.cta-card-photo {
  position: absolute;
  right: 0;
  bottom: 70px;
  z-index: 2;
  width: 550px;
  max-width: none;
  height: auto;
  pointer-events: none;
}

/* Mirrored variant: photo on the left (sobre.html) */
.cta-card--photo-left {
  grid-template-columns: 360px 1fr;
}

.cta-card--photo-left .cta-card-copy-wrap {
  grid-column: 2;
}

.cta-card--photo-left .cta-card-wave--left {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

.cta-card--photo-left .cta-card-wave--right {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}

.cta-card--photo-left .cta-card-photo {
  right: auto;
  left: -30px;
  transform: scaleX(-1);
}

/* Variant without a person photo: content centered across the full card width */
.cta-card--centered {
  grid-template-columns: 1fr;
}

.cta-card--centered .cta-card-copy-wrap {
  grid-column: 1;
  width: min(720px, 100%);
  margin-inline: auto;
}

.cta-card--centered .cta-copy {
  padding-right: 0;
}

.cta-copy h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
}

.cta-copy h2 strong {
  color: var(--orange);
  font-weight: inherit;
}

.cta-copy > p {
  max-width: 500px;
  margin-top: 18px;
  color: #b8bbcf;
  font-size: 17px;
}

.cta-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.cta-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.cta-points li::before {
  color: var(--orange);
  content: '✓';
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 22px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #4f5362;
  font-size: 11px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #dde1e9;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 112, 20, 0.1);
}

.form-consent {
  color: #9195a1;
  font-size: 10px;
  text-align: center;
}

.form-success {
  display: none;
  padding: 11px 13px;
  border-radius: 10px;
  color: #1f754e;
  background: #eaf8f1;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* Footer */
.site-footer {
  padding-top: 78px;
  background: var(--soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 175px;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 18px;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.footer-col a {
  color: #737786;
  font-size: 13px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-col span {
  color: #9195a1;
  font-size: 12px;
  line-height: 1.5;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #dfe2e9;
  color: #8a8e9b;
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 40px rgba(255, 112, 20, 0.34);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.floating-contact:hover {
  transform: translateY(-3px);
}

.floating-contact i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: var(--white);
  font-style: normal;
}

/* Internal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 84px;
  background:
    radial-gradient(circle at 83% 20%, rgba(255, 112, 20, 0.14), transparent 28%),
    var(--soft);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image: radial-gradient(rgba(5, 6, 62, 0.13) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
  content: '';
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 64px;
}

.page-hero-copy h1 {
  color: var(--navy);
  font-size: clamp(3rem, 5.5vw, 5.3rem);
}

.page-hero-copy h1 strong {
  color: var(--orange);
  font-weight: inherit;
}

.page-hero-copy > p {
  max-width: 640px;
  margin-top: 24px;
  font-size: 18px;
}

.page-hero-copy .hero-actions {
  margin-top: 30px;
}

.page-hero-visual {
  position: relative;
}

.page-hero-visual img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.page-hero-card {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.page-hero-card::before {
  position: absolute;
  top: -115px;
  right: -85px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.14;
  content: '';
}

.page-hero-stat-grid {
  position: relative;
  z-index: 1;
  width: calc(100% - 70px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-stat {
  min-height: 140px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.page-stat:nth-child(2) {
  background: var(--orange);
}

.page-stat small,
.page-stat strong,
.page-stat span {
  display: block;
}

.page-stat small {
  color: #c5c8d8;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-stat:nth-child(2) small,
.page-stat:nth-child(2) span {
  color: rgba(255, 255, 255, 0.82);
}

.page-stat strong {
  margin: 10px 0 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  line-height: 1.15;
}

.page-stat span {
  color: #adb1c5;
  font-size: 11px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #8a8e9b;
  font-size: 12px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs span {
  color: var(--orange);
}

/* Service tabs */
.service-tabs-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  margin-top: 54px;
}

.service-tab-nav {
  position: sticky;
  top: 140px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-tab-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 17px;
  border: 0;
  border-radius: 14px;
  color: #5f6371;
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-tab-button span:last-child {
  color: var(--orange);
  opacity: 0;
}

.service-tab-button.active {
  color: var(--white);
  background: var(--navy);
}

.service-tab-button.active span:last-child {
  opacity: 1;
}

.service-tab-panels {
  min-width: 0;
}

.service-panel {
  display: none;
  min-height: 580px;
  padding: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.service-panel.active {
  display: block;
  animation: fadePanel 0.32s ease;
}

@keyframes fadePanel {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.service-panel-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 50px;
}

.service-panel h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.service-panel h2 strong {
  color: var(--orange);
  font-weight: inherit;
}

.service-panel-copy > p {
  margin-top: 18px;
  font-size: 16px;
}

.service-panel-list {
  display: grid;
  gap: 12px;
  margin-top: 27px;
}

.service-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #4f5361;
  font-size: 14px;
}

.service-panel-list li::before {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  content: '✓';
  font-size: 11px;
  font-weight: 900;
}

.service-panel-aside {
  padding: 26px;
  border-radius: 22px;
  background: var(--soft);
}

.service-panel-aside h3 {
  color: var(--navy);
  font-size: 20px;
}

.service-panel-aside p {
  margin-top: 10px;
  font-size: 13px;
}

.service-panel-aside .tag-list {
  margin-top: 20px;
}

.service-panel-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.service-mini-step {
  padding: 20px;
  border-radius: 17px;
  background: var(--soft);
}

.service-mini-step span {
  color: var(--orange);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.service-mini-step h4 {
  margin-top: 8px;
  color: var(--navy);
  font-size: 16px;
}

.service-mini-step p {
  margin-top: 7px;
  font-size: 12px;
}

/* Segment page */
.segment-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.segment-index-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.segment-index-card h3 {
  margin-top: 24px;
  color: var(--navy);
  font-size: 24px;
}

.segment-index-card p {
  margin-top: 12px;
  font-size: 14px;
}

.segment-index-card .text-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--orange);
  font-size: 13px;
}

.segment-detail-list {
  display: grid;
  gap: 26px;
  margin-top: 54px;
}

.segment-detail {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  scroll-margin-top: 140px;
}

.segment-detail:nth-child(even) {
  background: var(--soft);
}

.segment-detail > div:first-child {
  display: flex;
  flex-direction: column;
}

.segment-detail > div:first-child .icon {
  width: 42px;
  height: 42px;
}

.segment-detail h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 24px;
}

.segment-detail-copy > p {
  font-size: 15px;
}

.segment-detail-copy .check-stack {
  grid-template-columns: repeat(2, 1fr);
}

.tax-focus {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.tax-focus-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
}

.tax-focus-visual::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.17;
  content: '';
}

.tax-card-stack {
  position: absolute;
  inset: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.tax-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.tax-card:nth-child(2) {
  transform: translateX(28px);
  background: var(--orange);
}

.tax-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--orange);
  background: var(--white);
  font-style: normal;
  font-weight: 900;
}

.tax-card:nth-child(2) i {
  color: var(--navy);
}

.tax-card strong,
.tax-card small {
  display: block;
}

.tax-card small {
  color: #b9bdcf;
  font-size: 11px;
}

.tax-card:nth-child(2) small {
  color: rgba(255, 255, 255, 0.78);
}

/* How it works page */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 54px;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 47px;
  width: 2px;
  background: var(--line);
  content: '';
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  padding-bottom: 34px;
}

.timeline-number {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 8px solid var(--white);
  border-radius: 28px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.timeline-item:nth-child(2) .timeline-number,
.timeline-item:nth-child(4) .timeline-number {
  background: var(--orange);
}

.timeline-content {
  min-height: 180px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.timeline-content h3 {
  color: var(--navy);
  font-size: 25px;
}

.timeline-content p {
  max-width: 740px;
  margin-top: 12px;
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.timeline-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #555968;
  background: var(--soft);
  font-size: 11px;
  font-weight: 700;
}

.dual-experience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.experience-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border-radius: 22px;
  color: var(--white);
  background: var(--navy);
}

.experience-card.orange {
  color: var(--white);
  background: var(--orange);
}

.experience-card .icon {
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: var(--white);
}

.experience-card h3 {
  margin-top: 24px;
  color: var(--white);
  font-size: 24px;
}

.experience-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.experience-card ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.experience-card li {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.experience-card li::before {
  content: '✓';
  font-weight: 900;
}

/* Plans page */
.plan-note {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border-radius: 12px;
  color: #5a5e6c;
  background: #fff4ec;
  font-size: 13px;
  text-align: center;
}

.comparison-wrap {
  margin-top: 52px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 790px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  min-width: 260px;
  color: var(--navy);
  text-align: left;
  font-weight: 800;
}

.comparison-table thead th {
  color: var(--navy);
  background: var(--soft);
  font-family: 'Manrope', sans-serif;
}

.comparison-table thead th.popular-col {
  color: var(--white);
  background: var(--orange);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.table-check {
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.table-dash {
  color: #c2c5ce;
}

/* About */
.about-story {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 80px;
}

.about-story img {
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

/* People photos (transparent cutouts) */
.people-photo-frame {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.people-photo-blob {
  position: absolute;
  bottom: -18px;
  left: 38%;
  z-index: 2;
  width: 95%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.people-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 490px;
  height: auto;
}

.about-story .people-photo,
.about-story .people-photo-blob {
  border-radius: 0;
  box-shadow: none;
}

.about-story-copy h2 {
  color: var(--navy);
  font-size: clamp(2.4rem, 4.3vw, 4.1rem);
}

.about-story-copy h2 strong {
  color: var(--orange);
  font-weight: inherit;
}

.about-story-copy p {
  margin-top: 18px;
  font-size: 17px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.value-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.value-card:nth-child(2) {
  color: var(--white);
  border-color: transparent;
  background: var(--navy);
}

.value-card:nth-child(3) {
  color: var(--white);
  border-color: transparent;
  background: var(--orange);
}

.value-card h3 {
  margin-top: 40px;
  color: var(--navy);
  font-size: 25px;
}

.value-card:nth-child(2) h3,
.value-card:nth-child(3) h3 {
  color: var(--white);
}

.value-card p {
  margin-top: 12px;
  font-size: 14px;
}

.value-card:nth-child(2) p,
.value-card:nth-child(3) p {
  color: rgba(255, 255, 255, 0.78);
}

.value-card:nth-child(2) .icon,
.value-card:nth-child(3) .icon {
  color: var(--navy);
  background: var(--white);
}

/* Contact page */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.contact-option {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.contact-option strong,
.contact-option span {
  display: block;
}

.contact-option strong {
  color: var(--navy);
  font-size: 15px;
}

.contact-option span {
  margin-top: 5px;
  color: #838794;
  font-size: 12px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 70px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 140px;
}

.contact-info h2 {
  color: var(--navy);
  font-size: clamp(2.4rem, 4.3vw, 4.1rem);
}

.contact-info h2 strong {
  color: var(--orange);
  font-weight: inherit;
}

.contact-info > p {
  margin-top: 18px;
  font-size: 17px;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
}

.contact-info-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--orange);
  background: #fff1e7;
  font-style: normal;
  font-weight: 900;
}

.contact-info-item strong,
.contact-info-item span {
  display: block;
}

.contact-info-item strong {
  color: var(--navy);
  font-size: 14px;
}

.contact-info-item span {
  color: #878b98;
  font-size: 12px;
}

.contact-form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  color: var(--navy);
  font-size: 27px;
}

.contact-form-card > p {
  margin: 10px 0 26px;
  font-size: 14px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

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

/* Responsive */
@media (max-width: 1120px) {
  .header-main { gap: 16px; }
  .main-nav { gap: 2px; }
  .nav-link, .nav-trigger { padding-inline: 9px; font-size: 13px; }
  .hero-grid { gap: 28px; }
  .dashboard { right: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .services-preview-layout { grid-template-columns: 1fr; }
  .services-preview-photo { display: none; }
  .service-stack { flex-wrap: wrap; gap: 18px; }
  .service-stack .service-card { flex: 1 1 240px; width: auto; margin-right: 0; }
}

@media (max-width: 980px) {
  .utility-bar { display: none; }
  .site-header { top: 0; }
  .header-main { height: 76px; }
  .brand { width: 150px; }
  .mobile-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 22px 20px 40px;
    overflow-y: auto;
    background: var(--white);
  }
  .main-nav.open { display: flex; flex-direction: column; }
  .nav-item { width: 100%; }
  .nav-link, .nav-trigger { width: 100%; height: 52px; justify-content: space-between; padding-inline: 16px; font-size: 15px; }
  .nav-link.active::after, .nav-trigger.active::after { display: none; }
  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    margin-top: 4px;
    padding: 12px;
    border-radius: 18px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-item.is-open .mega-menu { display: block; transform: none; }
  .nav-item:hover .mega-menu { display: none; }
  .nav-item.is-open:hover .mega-menu { display: block; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-feature { min-height: 245px; }
  .hero { padding-top: 58px; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy, .page-hero-copy { text-align: center; }
  .hero-eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .hero-copy > p, .page-hero-copy > p { margin-inline: auto; }
  .hero-visual { width: min(680px, 100%); min-height: 570px; margin-inline: auto; }
  .hero-bottom { flex-direction: column; text-align: center; }
  .hero-segments { justify-content: center; }
  .segments-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .segment-card.featured, .segment-card.medium, .segment-card.small, .segment-card.wide { grid-column: auto; grid-row: auto; min-height: 190px; }
  .segment-card.featured, .segment-card.wide { grid-column: 1 / -1; }
  .segment-card.featured { min-height: 260px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.featured { grid-row: span 1; grid-column: span 2; min-height: 460px; }
  .process-grid, .faq-layout, .cta-card, .tax-focus, .about-story, .contact-page-grid { grid-template-columns: 1fr; gap: 50px; }
  .cta-photo, .cta-photo-blob { display: none; }
  .cta-card-wave, .cta-card-photo { display: none; }
  .cta-card-copy-wrap { grid-column: auto; }
  .process-copy, .contact-info { position: static; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.popular { transform: none; }
  .statement-card { grid-template-columns: 70px 1fr; }
  .statement-signature { grid-column: 2; border-left: 0; padding-left: 0; }
  .statement-card--photo { grid-template-columns: 220px 1fr; min-height: 360px; }
  .statement-card--photo .statement-signature { grid-column: auto; }
  .statement-card--photo-right { grid-template-columns: 1fr 220px; }
  .statement-photo img { width: 220px; }
  .statement-content { padding: 40px 44px 40px 6px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .service-tabs-layout { grid-template-columns: 1fr; }
  .service-tab-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .service-panel-top { grid-template-columns: 1fr; }
  .segment-detail { grid-template-columns: 1fr; }
  .segment-index-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story img { width: min(700px, 100%); margin-inline: auto; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-heading p { font-size: 16px; }
  .brand { width: 136px; }
  .hero { padding: 45px 0 38px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-visual { min-height: 440px; }
  .hero-orbit { top: 25px; right: -100px; width: 400px; height: 400px; border-width: 60px; }
  .dashboard { top: 50px; width: 100%; border-radius: 20px; }
  .dashboard-body { grid-template-columns: 50px 1fr; min-height: 330px; }
  .dashboard-side { padding: 14px 10px; }
  .dashboard-mark { width: 30px; height: 30px; margin-bottom: 20px; }
  .dashboard-side i { width: 22px; margin-block: 13px; }
  .dashboard-content { padding: 13px; }
  .dashboard-heading h3 { font-size: 15px; }
  .metric-row { gap: 6px; margin-block: 12px 8px; }
  .metric-card { padding: 8px; }
  .metric-card strong { font-size: 11px; }
  .metric-card em { display: none; }
  .chart-panel { min-height: 140px; padding: 10px; }
  .chart-svg { height: 80px; }
  .floating-note { padding: 10px 12px; transform: scale(0.82); }
  .note-tax { top: 18px; left: -32px; transform-origin: left top; }
  .note-support { right: -22px; bottom: 4px; transform-origin: right bottom; }
  .hero-bottom { margin-top: 10px; }
  .hero-segments a:not(:last-child)::after { display: none; }
  .segments-grid, .service-grid, .segment-index-grid, .dual-experience, .about-values, .contact-options { grid-template-columns: 1fr; }
  .segment-card.featured { min-height: 250px; }
  .segment-card.featured h3 { font-size: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: auto; min-height: 460px; }
  .process-grid { gap: 44px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .statement-card { display: block; padding: 36px 26px; }
  .statement-mark { font-size: 78px; }
  .statement-card blockquote { margin-top: 5px; }
  .statement-signature { margin-top: 24px; }
  .statement-card--photo { display: grid; grid-template-columns: 1fr; grid-template-rows: auto auto; min-height: 0; padding: 0; border-radius: 24px; }
  .statement-card--photo .statement-signature { margin-top: 0; }
  .statement-card--photo .statement-card-bg { border-radius: 24px; }
  .statement-photo { height: 236px; }
  .statement-photo img { width: 200px; }
  .statement-content { padding: 22px 26px 36px; text-align: center; align-items: center; }
  .statement-content .statement-mark { font-size: 64px; }
  .statement-content blockquote { margin-top: 0; }
  .cta-card { padding: 38px 22px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 20px 0; }
  .floating-contact { width: 52px; height: 52px; justify-content: center; padding: 0; }
  .floating-contact span { display: none; }
  .floating-contact i { background: transparent; color: var(--white); }
  .page-hero { padding: 55px 0 60px; }
  .page-hero-copy h1 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .page-hero-card { min-height: 350px; }
  .page-hero-stat-grid { width: calc(100% - 36px); gap: 10px; }
  .page-stat { min-height: 120px; padding: 16px; }
  .page-stat strong { font-size: 18px; }
  .service-tab-nav { display: flex; overflow-x: auto; padding: 10px; }
  .service-tab-button { min-width: 210px; }
  .service-panel { padding: 28px 20px; }
  .service-panel-bottom { grid-template-columns: 1fr; }
  .segment-detail { padding: 30px 22px; }
  .segment-detail-copy .check-stack { grid-template-columns: 1fr; }
  .tax-card-stack { inset: 28px; }
  .tax-card:nth-child(2) { transform: translateX(10px); }
  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: 58px 1fr; gap: 16px; }
  .timeline-number { width: 58px; height: 58px; border-width: 5px; border-radius: 18px; font-size: 13px; }
  .timeline-content { min-height: 0; padding: 24px 20px; }
  .experience-card { min-height: 260px; padding: 24px 20px; }
  .contact-form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom div { flex-wrap: wrap; }
  .page-hero-stat-grid { grid-template-columns: 1fr; }
  .page-hero-card { min-height: 510px; }
  .hero-proof { display: grid; justify-items: start; }
  .service-card { min-height: 290px; }
}

/* Entry diagnostic modal */
body.modal-open {
  overflow: hidden;
}

.entry-modal[hidden] {
  display: none;
}

.entry-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  isolation: isolate;
}

.entry-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 6, 62, 0.72);
  backdrop-filter: blur(9px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.entry-modal-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 30px;
  outline: none;
  background: var(--white);
  box-shadow: 0 42px 120px rgba(2, 3, 36, 0.38);
  opacity: 0;
  transform: translateY(24px) scale(0.975);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.entry-modal.is-visible .entry-modal-backdrop {
  opacity: 1;
}

.entry-modal.is-visible .entry-modal-dialog {
  opacity: 1;
  transform: none;
}

.entry-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(5, 6, 62, 0.12);
  border-radius: 50%;
  cursor: pointer;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(5, 6, 62, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.entry-modal-close:hover {
  transform: rotate(6deg) scale(1.04);
  background: var(--white);
}

.entry-modal-close:focus-visible {
  outline: 3px solid rgba(255, 112, 20, 0.28);
  outline-offset: 3px;
}

.entry-modal-close svg {
  width: 19px;
  height: 19px;
}

.entry-modal-close path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.entry-modal-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  min-height: 590px;
}

.entry-modal-copy {
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 48px 52px 42px;
  scrollbar-width: thin;
  scrollbar-color: #cfd3dd transparent;
}

.entry-modal-logo {
  width: 158px;
  height: auto;
  margin-bottom: 24px;
}

.entry-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.entry-modal-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 112, 20, 0.11);
}

.entry-modal-copy h2 {
  max-width: 560px;
  margin-top: 15px;
  color: var(--navy);
  font-size: clamp(2.15rem, 3.7vw, 3.6rem);
  letter-spacing: -0.06em;
}

.entry-modal-copy h2 strong {
  color: var(--orange);
  font-weight: inherit;
}

.entry-modal-copy > p {
  max-width: 560px;
  margin-top: 16px;
  color: #696d7b;
  font-size: 15px;
  line-height: 1.65;
}

.entry-modal-form {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

.entry-modal-fields {
  display: grid;
  gap: 12px;
}

.entry-modal-form .form-field {
  gap: 6px;
}

.entry-modal-form .form-field label {
  color: #393d4d;
  font-size: 11px;
  letter-spacing: 0.01em;
}

.entry-modal-form .form-field label span {
  color: #8a8e9c;
  font-weight: 500;
}

.entry-modal-form .form-field input,
.entry-modal-form .form-field select {
  min-height: 50px;
  border-radius: 12px;
  background: #fafbfc;
}

.entry-modal-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
  color: #737786;
  font-size: 11px;
  line-height: 1.45;
}

.entry-modal-consent input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--orange);
}

.entry-modal-consent a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-modal-submit {
  min-height: 54px;
  margin-top: 1px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}

.entry-modal-submit:disabled {
  cursor: wait;
  opacity: 0.74;
}

.entry-modal-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #858997;
  font-size: 10px;
  font-weight: 700;
}

.entry-modal-note i {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--success);
  background: #eaf8f1;
  font-style: normal;
}

.entry-modal-visual {
  position: relative;
  order: -1;
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #151864 0%, #2726b4 55%, #5334df 100%);
}

.entry-modal-visual::before,
.entry-modal-visual::after {
  position: absolute;
  z-index: 2;
  content: '';
  pointer-events: none;
}

.entry-modal-visual::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 62, 0.08) 15%, rgba(5, 6, 62, 0.18) 48%, rgba(5, 6, 62, 0.9) 100%);
}

.entry-modal-visual::after {
  top: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  border: 46px solid rgba(255, 112, 20, 0.16);
  border-radius: 50%;
}

.entry-modal-visual > img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center 8%;
  transform: scale(1.035);
}

.entry-modal-visual-top {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: var(--white);
  background: rgba(5, 6, 62, 0.72);
  backdrop-filter: blur(12px);
}

.entry-modal-visual-top span {
  color: #ffad76;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.entry-modal-visual-top strong {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 15px;
}

.entry-modal-floating-card {
  position: absolute;
  right: 28px;
  bottom: 76px;
  left: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(2, 3, 36, 0.28);
  backdrop-filter: blur(14px);
}

.entry-modal-check {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--orange);
  font-size: 19px;
  font-weight: 900;
}

.entry-modal-floating-card strong,
.entry-modal-floating-card small {
  display: block;
}

.entry-modal-floating-card strong {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 14px;
}

.entry-modal-floating-card small {
  margin-top: 2px;
  color: #747887;
  font-size: 10px;
}

.entry-modal-segments {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.entry-modal-segments span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f2f3f9;
  background: rgba(5, 6, 62, 0.68);
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

@media (max-width: 860px) {
  .entry-modal-grid {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .entry-modal-copy {
    padding: 42px 38px 36px;
  }
}

@media (max-width: 720px) {
  .entry-modal {
    padding: 14px;
  }

  .entry-modal-dialog {
    width: min(560px, 100%);
    max-height: calc(100dvh - 28px);
    border-radius: 24px;
    overflow-y: auto;
  }

  .entry-modal-grid {
    display: block;
    min-height: 0;
  }

  .entry-modal-copy {
    max-height: none;
    overflow: visible;
    padding: 36px 28px 30px;
  }

  .entry-modal-logo {
    width: 140px;
    margin-bottom: 18px;
  }

  .entry-modal-copy h2 {
    padding-right: 24px;
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .entry-modal-visual {
    display: none;
  }

  .entry-modal-close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 430px) {
  .entry-modal-copy {
    padding: 30px 20px 24px;
  }

  .entry-modal-copy > p {
    font-size: 13px;
  }

  .entry-modal-form {
    margin-top: 20px;
  }

  .entry-modal-form .form-field input,
  .entry-modal-form .form-field select {
    min-height: 47px;
  }
}


/* ==========================================================================
   Ajuste visual v2: navegação clássica + hero original da Axxis
   ========================================================================== */
.utility-bar {
  display: none !important;
}

.nav-link.active::after,
.nav-trigger.active::after {
  display: none !important;
  content: none !important;
}

@media (min-width: 981px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 230, 237, 0.7);
    backdrop-filter: blur(14px);
  }

  .header-main {
    height: 82px;
    gap: 38px;
  }

  .brand {
    width: 175px;
  }

  .brand img {
    height: 52px;
    object-fit: contain;
    object-position: left center;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 32px;
    margin-left: auto;
  }

  .nav-link,
  .nav-trigger {
    height: auto;
    padding: 12px 0;
    border-radius: 0;
    color: #34384c;
    background: transparent !important;
    font-size: 14px;
    font-weight: 600;
  }

  .nav-link:hover,
  .nav-trigger:hover,
  .nav-link.active,
  .nav-trigger.active,
  .nav-item.is-open .nav-trigger {
    color: var(--orange);
    background: transparent !important;
  }

  .nav-chevron {
    width: 13px;
    height: 13px;
  }

  .header-cta {
    min-height: 44px;
    margin-left: 10px;
    padding-inline: 18px;
    border-radius: 10px;
    font-size: 13px;
    white-space: nowrap;
  }
}

/* Hero original, preservado apenas na home. */
body[data-page="home"] .hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

body[data-page="home"] .hero::before {
  display: none;
  content: none;
}

body[data-page="home"] .hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(2, 7, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 7, 53, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}

body[data-page="home"] .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 600px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

body[data-page="home"] .hero-copy {
  padding: 0;
}

body[data-page="home"] .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ff7200;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .eyebrow span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: #ff7200;
}

body[data-page="home"] .hero h1 {
  max-width: none;
  margin: 18px 0 24px;
  color: #020735;
  font-size: clamp(44px, 5vw, 67px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

body[data-page="home"] .hero h1 strong {
  position: static;
  color: #ff7200;
  font-weight: inherit;
}

body[data-page="home"] .hero h1 strong::after {
  display: none;
  content: none;
}

body[data-page="home"] .hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: #677083;
  font-size: 18px;
}

body[data-page="home"] .hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 32px 0;
}

body[data-page="home"] .hero .btn {
  min-height: 0;
  padding: 15px 24px;
  border-radius: 10px;
  font-size: 15px;
}

body[data-page="home"] .hero .text-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #020735;
  font-weight: 700;
}

body[data-page="home"] .hero .text-link::after {
  display: none;
  content: none;
}

body[data-page="home"] .play {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d8dce4;
  border-radius: 50%;
  color: #ff7200;
  font-size: 10px;
}

body[data-page="home"] .hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 0;
}

body[data-page="home"] .avatars {
  display: flex;
}

body[data-page="home"] .avatars span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: #020735;
  font-size: 9px;
  font-weight: 800;
}

body[data-page="home"] .avatars span:first-child {
  margin-left: 0;
}

body[data-page="home"] .avatars span:nth-child(2) {
  background: #ff7200;
}

body[data-page="home"] .avatars span:nth-child(3) {
  background: #5f6471;
}

body[data-page="home"] .avatars span:last-child {
  color: #020735;
  background: #e9ecf2;
}

body[data-page="home"] .hero-proof p {
  color: #677083;
  font-size: 12px;
  line-height: 1.35;
}

body[data-page="home"] .hero-proof b {
  color: #020735;
}

body[data-page="home"] .hero-visual {
  position: relative;
  height: 560px;
  min-height: 0;
}

body[data-page="home"] .dashboard-window {
  position: absolute;
  top: 44px;
  left: 15px;
  width: 650px;
  height: 450px;
  overflow: hidden;
  border: 1px solid #e8eaf0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 35px 100px rgba(2, 7, 53, 0.2);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}

body[data-page="home"] .window-top {
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #eceef3;
  color: #8b90a0;
  background: #fbfbfc;
  font-size: 11px;
}

body[data-page="home"] .window-dots {
  display: flex;
  gap: 5px;
}

body[data-page="home"] .window-dots i,
body[data-page="home"] .window-dots i:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dadde5;
}

body[data-page="home"] .window-top > span {
  margin: auto;
}

body[data-page="home"] .user-chip,
body[data-page="home"] .mini-logo {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #ffffff;
  background: #020735;
  font-size: 8px;
  font-weight: 800;
}

body[data-page="home"] .dashboard-body {
  height: calc(100% - 46px);
  min-height: 0;
  display: flex;
}

body[data-page="home"] .dash-menu {
  width: 55px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 15px;
  background: #020735;
}

body[data-page="home"] .dash-menu .mini-logo {
  background: transparent;
}

body[data-page="home"] .mini-logo img {
  width: 16px;
  height: auto;
  max-width: none;
}

body[data-page="home"] .dash-menu span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}

body[data-page="home"] .dash-menu span.active {
  border-color: #ff7200;
  background: #ff7200;
}

body[data-page="home"] .dash-content {
  flex: 1;
  padding: 22px;
  background: #f4f6fa;
}

body[data-page="home"] .dash-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body[data-page="home"] .dash-heading small {
  color: #9398a8;
}

body[data-page="home"] .dash-heading h3 {
  margin-top: 2px;
  color: #020735;
  font-size: 17px;
}

body[data-page="home"] .dash-heading button {
  padding: 6px 10px;
  border: 1px solid #e0e3e9;
  border-radius: 7px;
  color: #6f7482;
  background: #ffffff;
  font-size: 9px;
}

body[data-page="home"] .metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

body[data-page="home"] .metric {
  display: flex;
  flex-direction: column;
  padding: 13px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(2, 7, 53, 0.04);
}

body[data-page="home"] .metric-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 7px;
  font-size: 10px;
}

body[data-page="home"] .metric-icon.orange {
  color: #ff7200;
  background: #fff0e5;
}

body[data-page="home"] .metric-icon.blue {
  color: #020735;
  background: #e9eafb;
}

body[data-page="home"] .metric-icon.gray {
  color: #626978;
  background: #edf0f3;
}

body[data-page="home"] .metric small {
  color: #9298a8;
  font-size: 8px;
}

body[data-page="home"] .metric strong {
  color: #020735;
  font-size: 13px;
}

body[data-page="home"] .metric em {
  margin-top: 4px;
  color: #55a06b;
  font-size: 7px;
  font-style: normal;
}

body[data-page="home"] .chart-card {
  height: 203px;
  padding: 15px;
  border-radius: 11px;
  background: #ffffff;
}

body[data-page="home"] .chart-head {
  display: flex;
  align-items: initial;
  justify-content: space-between;
}

body[data-page="home"] .chart-head div {
  display: flex;
  flex-direction: column;
}

body[data-page="home"] .chart-head small {
  color: #999eac;
  font-size: 7px;
}

body[data-page="home"] .chart-head strong {
  color: #020735;
  font-size: 10px;
}

body[data-page="home"] .chart-head > span {
  color: #979baa;
  font-size: 7px;
}

body[data-page="home"] .chart-area {
  position: relative;
  height: 145px;
  margin-top: 4px;
}

body[data-page="home"] .line-chart {
  position: absolute;
  inset: 10px 0 0;
}

body[data-page="home"] .line-chart svg {
  width: 100%;
  height: 100%;
}

body[data-page="home"] .line-chart .area {
  fill: url(#classicHeroFill);
}

body[data-page="home"] .line-chart .line {
  fill: none;
  stroke: #ff7200;
  stroke-width: 3;
}

body[data-page="home"] .bars {
  position: absolute;
  inset: 15px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  opacity: 0.12;
}

body[data-page="home"] .bars i {
  width: 40px;
  border-radius: 4px 4px 0 0;
  background: #020735;
}

body[data-page="home"] .floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #e7e9ef;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(2, 7, 53, 0.14);
}

body[data-page="home"] .floating-card b {
  display: block;
  color: #020735;
  font-size: 10px;
}

body[data-page="home"] .floating-card small {
  display: block;
  color: #969aa7;
  font-size: 8px;
}

body[data-page="home"] .tax-card {
  top: 190px;
  left: -15px;
}

body[data-page="home"] .tax-card > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #3c9b5d;
  background: #e9f8ee;
}

body[data-page="home"] .support-card {
  right: -5px;
  bottom: 34px;
}

body[data-page="home"] .support-avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #ff7200;
  font-size: 9px;
  font-weight: 800;
}

body[data-page="home"] .online {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4bc675;
}

body[data-page="home"] .orange-orbit {
  position: absolute;
  border: 2px solid rgba(255, 114, 0, 0.25);
  border-radius: 50%;
}

body[data-page="home"] .orbit-one {
  top: 5px;
  right: -95px;
  width: 430px;
  height: 430px;
}

body[data-page="home"] .orbit-two {
  bottom: -10px;
  left: 50px;
  width: 270px;
  height: 270px;
  border-style: dashed;
}

body[data-page="home"] .trust-strip {
  position: relative;
  z-index: 1;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid #e1e4eb;
  color: #858b99;
  font-size: 12px;
}

body[data-page="home"] .trust-items {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #596071;
}

body[data-page="home"] .trust-items i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff7200;
}

@media (max-width: 1000px) {
  body[data-page="home"] .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-copy {
    text-align: center;
  }

  body[data-page="home"] .eyebrow,
  body[data-page="home"] .hero-actions,
  body[data-page="home"] .hero-proof {
    justify-content: center;
  }

  body[data-page="home"] .hero-copy > p {
    margin-inline: auto;
  }

  body[data-page="home"] .hero-visual {
    width: 100%;
    height: 520px;
    margin-inline: auto;
  }

  body[data-page="home"] .dashboard-window {
    left: 50%;
    width: min(650px, 95%);
    transform: translateX(-50%);
  }

  body[data-page="home"] .trust-strip {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 25px 0;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .header-main {
    height: 74px;
  }

  .brand {
    width: 132px;
  }
}

@media (max-width: 680px) {
  .brand {
    width: 122px;
  }

  body[data-page="home"] .hero {
    padding-top: 43px;
  }

  body[data-page="home"] .hero-grid {
    gap: 25px;
  }

  body[data-page="home"] .hero h1 {
    font-size: 43px;
  }

  body[data-page="home"] .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  body[data-page="home"] .hero-actions .btn,
  body[data-page="home"] .hero-actions .text-link {
    width: auto;
  }

  body[data-page="home"] .hero-visual {
    height: 400px;
    min-height: 0;
  }

  body[data-page="home"] .dashboard-window {
    top: 30px;
    height: 330px;
  }

  body[data-page="home"] .window-top {
    height: 35px;
  }

  body[data-page="home"] .dashboard-body {
    height: calc(100% - 35px);
  }

  body[data-page="home"] .dash-content {
    padding: 12px;
  }

  body[data-page="home"] .metric-grid {
    gap: 5px;
    margin: 10px 0;
  }

  body[data-page="home"] .metric {
    padding: 8px;
  }

  body[data-page="home"] .metric-icon,
  body[data-page="home"] .metric em {
    display: none;
  }

  body[data-page="home"] .chart-card {
    height: 145px;
    padding: 10px;
  }

  body[data-page="home"] .chart-area {
    height: 92px;
  }

  body[data-page="home"] .floating-card {
    transform: scale(0.8);
  }

  body[data-page="home"] .tax-card {
    top: 90px;
    left: -25px;
  }

  body[data-page="home"] .support-card {
    right: -20px;
    bottom: 0;
  }

  body[data-page="home"] .trust-items {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Legal pages (privacidade / termos) */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-meta {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content h2 {
  margin-top: 44px;
  color: var(--navy);
  font-size: 23px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content ul {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content li {
  margin-top: 8px;
}

.legal-content strong {
  color: var(--navy);
}

.legal-content a {
  color: var(--orange);
  font-weight: 700;
}
