
:root {
  --navy-950: #04152f;
  --navy-900: #071f43;
  --navy-800: #0a2c5e;
  --blue-700: #0f4fcf;
  --blue-600: #155eef;
  --blue-500: #2970ff;
  --blue-100: #eaf2ff;
  --blue-50: #f5f8ff;
  --ink: #0d2346;
  --muted: #607391;
  --line: #dfe7f2;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --green: #12a150;
  --purple: #7c3aed;
  --red: #df2b2b;
  --shadow-sm: 0 8px 28px rgba(17, 49, 95, 0.08);
  --shadow-lg: 0 28px 80px rgba(8, 34, 76, 0.15);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.section {
  padding: 88px 0;
}

.section-small {
  padding: 32px 0 72px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: white;
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 230, 244, 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 32px rgba(5, 28, 65, 0.08);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 28px;
  align-items: center;
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: #38506f;
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--blue-600);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: var(--blue-600);
  transform: translateX(-50%);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 11px 24px rgba(21, 94, 239, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(21, 94, 239, 0.3);
}

.button-ghost {
  color: var(--blue-700);
  background: white;
  border-color: #bcd0f3;
}

.button-ghost:hover {
  border-color: var(--blue-500);
  box-shadow: 0 10px 22px rgba(13, 63, 160, 0.08);
}

.button-light {
  color: var(--blue-700);
  background: white;
  box-shadow: 0 14px 30px rgba(4, 20, 49, 0.16);
}

.button-outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 94px;
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 12% 15%, rgba(37, 99, 235, 0.08), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: -180px;
  top: -160px;
  border: 54px solid rgba(21, 94, 239, 0.035);
}

.hero-glow-two {
  width: 240px;
  height: 240px;
  left: -130px;
  bottom: -140px;
  border: 40px solid rgba(21, 94, 239, 0.03);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.cta-kicker {
  display: inline-block;
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.hero h1 {
  max-width: 680px;
  margin: 16px 0 20px;
  font-size: clamp(2.65rem, 5.3vw, 4.85rem);
  line-height: 1.01;
  letter-spacing: -0.052em;
}

.hero-text {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.feature-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 38px;
  max-width: 700px;
}

.feature-pill {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 16px;
  color: #244060;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #e1e9f6;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20, 52, 94, 0.05);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

.icon-box,
.metric-icon,
.solution-icon,
.outline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 10px;
  font-weight: 900;
}

.icon-box {
  width: 34px;
  height: 34px;
}

.icon-purple,
.outline-icon.purple,
.metric-icon.purple {
  color: var(--purple);
  background: #f3e9ff;
}

.icon-green,
.outline-icon.green,
.metric-icon.green,
.solution-icon.green {
  color: var(--green);
  background: #e9faef;
}

.product-stage {
  position: relative;
  width: 100%;
  padding-bottom: 34px;
}


.product-window {
  overflow: hidden;
  background: white;
  border: 1px solid #cfd9e7;
  border-radius: 19px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1400px) rotateY(-1.8deg) rotateX(0.6deg);
}

.browser-bar {
  min-height: 42px;
  display: grid;
  grid-template-columns: 72px 1fr 32px;
  gap: 12px;
  align-items: center;
  padding: 0 14px;
  background: #fbfcfe;
  border-bottom: 1px solid #e5ebf3;
}

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

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff615a;
}

.browser-dots span:nth-child(2) {
  background: #ffbd2d;
}

.browser-dots span:nth-child(3) {
  background: #28c840;
}

.browser-search {
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #9aa8bb;
  background: white;
  border: 1px solid #e2e8f1;
  border-radius: 8px;
  font-size: 0.62rem;
}

.browser-user {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy-800);
  border-radius: 50%;
  font-size: 0.57rem;
  font-weight: 850;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 430px;
}

.dashboard-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px 12px 12px;
  color: #dbe7fb;
  background: linear-gradient(180deg, #0a2d62, #071d3d);
}

.dashboard-logo {
  margin: 0 8px 15px;
  color: white;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.dash-link {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 8px 9px;
  border-radius: 7px;
  font-size: 0.58rem;
}

.dash-link.selected {
  color: white;
  background: #1459d4;
}

.dashboard-tenant {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 0.52rem;
}

.dashboard-tenant strong {
  color: white;
}

.dashboard-tenant small {
  opacity: 0.75;
}

.dashboard-main {
  padding: 19px 20px 22px;
  background: #f5f8fc;
}

.dash-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-title h2 {
  margin: 0;
  font-size: 1rem;
}

.dash-title p {
  margin: 2px 0 0;
  color: #7e8ea5;
  font-size: 0.58rem;
}

.dash-profile {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-profile > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: white;
  background: #0a3b83;
  border-radius: 50%;
  font-size: 0.5rem;
  font-weight: 800;
}

.dash-profile div {
  display: flex;
  flex-direction: column;
  font-size: 0.47rem;
}

.dash-profile small {
  color: #75859a;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.metric-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 9px;
  background: white;
  border: 1px solid #e4eaf2;
  border-radius: 10px;
}

.metric-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  font-size: 0.68rem;
}

.metric-icon.red {
  color: var(--red);
  background: #fff0f0;
}

.metric-card div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.metric-card small {
  overflow: hidden;
  color: #708099;
  font-size: 0.42rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-card strong {
  font-size: 0.86rem;
}

.attention-card {
  margin-top: 10px;
  padding: 9px 11px;
  color: #805300;
  background: #fff8e8;
  border: 1px solid #f1d59b;
  border-radius: 9px;
  font-size: 0.56rem;
}

.attention-card div {
  margin-top: 7px;
  display: inline-flex;
  gap: 5px;
  padding: 5px 9px;
  color: #6b6f7c;
  background: white;
  border-radius: 6px;
}

.attention-card div span {
  color: var(--red);
  font-weight: 850;
}

.protocol-table-card {
  margin-top: 10px;
  padding: 11px;
  background: white;
  border: 1px solid #e4eaf2;
  border-radius: 10px;
}

.table-heading {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
}

.table-heading span {
  color: var(--blue-600);
}

.protocol-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.4fr 0.85fr;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #edf1f7;
  font-size: 0.47rem;
}

.protocol-row:last-child {
  border-bottom: 0;
}

.table-labels {
  margin-top: 6px;
  color: #73839a;
  font-weight: 750;
}

.protocol-code {
  color: var(--blue-600);
  font-weight: 800;
}

.tag {
  display: inline-flex;
  padding: 3px 5px;
  border-radius: 999px;
  font-size: 0.42rem;
  font-style: normal;
  font-weight: 800;
}

.tag.blue {
  color: #0f4fcf;
  background: #eaf2ff;
}

.tag.green {
  color: #0c873f;
  background: #e7f8ee;
}

.tag.purple {
  color: #7c3aed;
  background: #f1e9ff;
}

.tag.red {
  color: #c82020;
  background: #ffebeb;
}

.product-shadow {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 8px;
  height: 20px;
  border-radius: 50%;
  background: rgba(3, 24, 56, 0.28);
  filter: blur(18px);
  z-index: -1;
}

.benefits {
  background: white;
}

.benefit-panel {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  background: linear-gradient(135deg, #f7faff, #ffffff);
  border: 1px solid #e4ebf5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.benefit-intro h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.benefit-intro p,
.benefit-item p {
  margin: 0;
  color: var(--muted);
}

.benefit-item {
  align-self: stretch;
  padding-left: 2px;
}

.outline-icon {
  width: 43px;
  height: 43px;
  margin-bottom: 14px;
  border: 1px solid #cbdaf4;
  background: white;
}

.benefit-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.benefit-item p {
  font-size: 0.9rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.solutions {
  background: #fbfdff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solution-card {
  min-height: 165px;
  display: flex;
  gap: 14px;
  padding: 24px;
  background: white;
  border: 1px solid #dee7f2;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(15, 48, 93, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: #b9cef2;
  box-shadow: 0 20px 38px rgba(14, 45, 91, 0.09);
}

.solution-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}

.solution-card h3 {
  margin: 2px 0 7px;
  font-size: 1rem;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.workflow {
  background: white;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.step-card {
  min-height: 198px;
  padding: 24px;
  background: #fff;
  border: 1px solid #dfe7f2;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(15, 48, 93, 0.05);
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #0f4fcf, #2970ff);
  border-radius: 50%;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(21, 94, 239, 0.22);
}

.step-card h3 {
  margin: 18px 0 9px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.workflow-arrow {
  color: #155eef;
  /*color: var(--blue-500);*/
  font-size: 1.7rem;
  font-weight: 900;
}

.security {
  padding-top: 30px;
  background: white;
}

.security-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 50px;
  background: linear-gradient(135deg, #f7faff, #fff);
  border: 1px solid #e1e9f4;
  border-radius: var(--radius-lg);
}

.security-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.security-copy p {
  margin: 0;
  color: var(--muted);
}

.security-list {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  color: #2b4363;
  font-weight: 650;
}

.security-list li span {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 50%;
  font-size: 0.75rem;
}

.shield-watermark {
  position: absolute;
  right: -25px;
  bottom: -95px;
  color: rgba(21, 94, 239, 0.035);
  font-size: 280px;
  line-height: 1;
  transform: rotate(45deg);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 54px;
  color: white;
  background:
    radial-gradient(circle at 4% 140%, rgba(255,255,255,0.14), transparent 35%),
    radial-gradient(circle at 82% -20%, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(135deg, #0b3da3, #135be5 58%, #0b3da3);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(15, 79, 207, 0.24);
}

.cta-kicker {
  color: #cfe0ff;
}

.cta-panel h2 {
  max-width: 720px;
  margin: 10px 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.cta-panel p {
  max-width: 680px;
  margin: 0;
  color: #d9e6ff;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact {
  padding-top: 74px;
  background: white;
}

.contact-form {
  padding: 30px;
  background: #fff;
  border: 1px solid #dfe7f2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label span {
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e0ec;
  border-radius: 10px;
  outline: none;
  background: #fbfcff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(41, 112, 255, 0.12);
}

.message-field {
  grid-column: span 2;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-top: 20px;
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  padding-top: 64px;
  padding: 54px 0 24px;
  color: #dbe6f7;
  background: linear-gradient(180deg, #082653, #041a38);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 52px;
}

.footer-brand img {
  width: 130px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 280px;
  color: #aebed3;
}

.footer-badges {
  display: flex;
  gap: 9px;
}

.footer-badges span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: #8eb5ff;
}

.site-footer h3 {
  margin: 0 0 15px;
  color: white;
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #b9c7da;
  font-size: 0.88rem;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #96a8c0;
  font-size: 0.8rem;
}

.footer-bottom a {
  margin: 0;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 150px 1fr auto;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.84rem;
  }

  .header-actions .button-ghost {
    display: none;
  }

 .hero-grid {
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
}

.hero-product {
  width: 118%;
  margin-left: -18px;
}

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

  .feature-pills {
    max-width: 720px;
  }

  .product-stage {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
  }

  .benefit-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-intro {
    grid-column: 1 / -1;
  }

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

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

  .workflow-arrow {
    display: none;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 76px 0;
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 124px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5e0ef;
    border-radius: 10px;
    background: white;
  }

  .menu-button span {
    width: 19px;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
  }

  .mobile-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px 24px;
    background: white;
    border-bottom: 1px solid #dce5f0;
    box-shadow: 0 18px 36px rgba(7, 31, 67, 0.14);
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav > a:not(.button) {
    padding: 11px 4px;
    color: #304a69;
    font-weight: 700;
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .feature-pills {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-shell {
    grid-template-columns: 92px 1fr;
  }

  .dashboard-sidebar {
    padding-left: 8px;
    padding-right: 8px;
  }

  .dash-link span {
    display: none;
  }

  .dashboard-tenant {
    display: none;
  }

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

  .protocol-row {
    grid-template-columns: 1fr 1fr;
  }

  .protocol-row span:nth-child(3),
  .protocol-row span:nth-child(4) {
    display: none;
  }

  .benefit-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .security-panel {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

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

  .message-field {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .hero-actions,
  .cta-actions,
  .form-footer,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .feature-pills,
  .solutions-grid,
  .workflow-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-window {
    transform: none;
    border-radius: 13px;
  }

  .dashboard-shell {
    grid-template-columns: 62px 1fr;
    min-height: 360px;
  }

  .dashboard-logo {
    margin-left: 0;
    font-size: 0.73rem;
  }

  .dashboard-main {
    padding: 12px;
  }

  .dash-profile {
    display: none;
  }

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

  .metric-card {
    gap: 5px;
    padding: 7px;
  }

  .metric-icon {
    flex-basis: 23px;
    width: 23px;
    height: 23px;
  }

  .metric-card small {
    font-size: 0.36rem;
  }

  .benefit-panel,
  .security-panel,
  .cta-panel,
  .contact-form {
    padding: 24px 20px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* =========================================================
   CORREÇÃO RESPONSIVA DO HERO — CELULAR E TABLET
   ========================================================= */
@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    align-items: start;
  }

  .hero-copy,
  .product-stage {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 1.02;
  }

  .hero-text {
    max-width: none;
  }

  .product-stage {
    margin: 0;
    padding-bottom: 12px;
  }

  .hero-product,
  .product-window {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }

  .feature-pills {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.25rem);
  }

  .hero-actions {
    width: 100%;
  }

  .feature-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-pill {
    min-height: 92px;
    padding: 14px;
  }
}

@media (max-width: 390px) {
  .feature-pills {
    grid-template-columns: 1fr;
  }
}