/* ============================================
   RENTU — Портал Арендатора
   Design System: Comfortaa + Montserrat
   Brand: #FF7D55 / #2C3744 / #F1F6FC
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3744;
  background: #fff;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- TOKENS --- */
:root {
  --brand: #FF7D55;
  --brand-hover: #e86d45;
  --graphite: #2C3744;
  --ice: #F1F6FC;
  --ice-alt: #EFF3F8;
  --card-blue: #43536A;
  --muted: #606060;
  --muted-light: #78909C;
  --border: #E0E0E0;
  --white: #ffffff;
  --radius-card: 20px;
  --radius-pill: 999px;
  --radius-lg: 30px;
  --shadow-card: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 14px 40px rgba(0,0,0,0.08);
  --max-w: 1200px;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn--brand:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,125,85,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--ghost:hover {
  background: var(--brand);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--graphite);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn--lg {
  padding: 16px 40px;
  font-size: 18px;
}
.btn--sm {
  padding: 10px 24px;
  font-size: 14px;
}

/* --- HEADER --- */
.brand__name {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--graphite);
  letter-spacing: 1px;
}

/* --- HERO --- */
.hero {
  position: relative;
  background: var(--ice);
  overflow: hidden;
  padding: 140px 20px 60px;
}
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero__shape--1 {
  width: 600px; height: 600px;
  background: var(--brand);
  top: -200px; right: -100px;
}
.hero__shape--2 {
  width: 300px; height: 300px;
  background: var(--card-blue);
  bottom: -100px; left: -50px;
}
.hero__shape--3 {
  width: 200px; height: 200px;
  background: var(--brand);
  bottom: 40px; right: 30%;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand);
  background: rgba(255,125,85,0.12);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero__title {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--graphite);
  line-height: 1.2;
  margin-bottom: 20px;
}
.accent { color: var(--brand); }
.hero__subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Dashboard Mock */
.hero__dashboard {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__dashboard-header {
  background: #f5f7fa;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eee;
}
.hero__dashboard-dots {
  display: flex;
  gap: 6px;
}
.hero__dashboard-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero__dashboard-dots span:nth-child(1) { background: #ff5f57; }
.hero__dashboard-dots span:nth-child(2) { background: #ffbd2e; }
.hero__dashboard-dots span:nth-child(3) { background: #28c940; }
.hero__dashboard-url {
  font-size: 12px;
  color: var(--muted-light);
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
  text-align: center;
}
.hero__dashboard-body {
  display: flex;
  min-height: 260px;
}
.hero__dashboard-sidebar {
  width: 140px;
  background: #fafbfd;
  padding: 16px 12px;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hds-item {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  transition: background var(--transition);
}
.hds-item--active {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}
.hero__dashboard-content {
  flex: 1;
  padding: 16px;
}
.hdc-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.hdc-search {
  height: 28px;
  width: 60%;
  background: #f5f7fa;
  border-radius: 6px;
}
.hdc-badge {
  font-size: 11px;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.hdc-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hdc-card {
  height: 50px;
  border-radius: 10px;
  opacity: 0.7;
}
.hdc-card--green { background: #c6f6d5; }
.hdc-card--orange { background: #feebc8; }
.hdc-card--blue { background: #bee3f8; }

/* --- VALUES --- */
.values {
  padding: 60px 20px;
  background: var(--white);
}
.values__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-card);
  background: var(--ice);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.value-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.value-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,125,85,0.1);
  border-radius: 14px;
}
.value-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--graphite);
  margin-bottom: 6px;
}
.value-card__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* --- SECTION TITLES --- */
.section-title {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--graphite);
  text-align: center;
  margin-bottom: 16px;
}
.section-title--dark {
  color: #fff;
}
.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* --- FEATURES GRID --- */
.features {
  padding: 80px 20px;
  background: var(--ice);
}
.features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feature-card__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ice);
  border-radius: 12px;
  margin-bottom: 14px;
}
.feature-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--graphite);
  margin-bottom: 8px;
  line-height: 1.3;
}
.feature-card__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* --- DETAIL SECTIONS --- */
.detail {
  padding: 80px 20px;
}
.detail--dark {
  background: var(--graphite);
  color: #fff;
}
.detail--light {
  background: var(--white);
}
.detail--ice {
  background: var(--ice);
}
.detail__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.detail__inner--reverse {
  direction: rtl;
}
.detail__inner--reverse > * {
  direction: ltr;
}
.detail__label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(255,125,85,0.12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.detail--dark .detail__label {
  color: #FF9A78;
  background: rgba(255,125,85,0.18);
}
.detail__title {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.detail--dark .detail__title {
  color: #fff;
}
.detail__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.detail--dark .detail__desc {
  color: rgba(255,255,255,0.7);
}
.detail__list {
  padding-left: 0;
}
.detail__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.detail--dark .detail__list li {
  color: rgba(255,255,255,0.85);
}
.detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px; height: 10px;
  background: var(--brand);
  border-radius: 50%;
}
.detail__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.detail--dark .detail__check span {
  color: rgba(255,255,255,0.85);
}

/* Reveal animation for detail sections */
.detail__text, .detail__visual {
  opacity: 0;
  transform: translateY(24px);
}
.detail__text.revealed, .detail__visual.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* --- MOCK BROWSER --- */
.detail__mock {
  background: var(--graphite);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.detail__mock--light {
  background: var(--white);
  border: 1px solid var(--border);
}
.detail__mock-bar {
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  background: rgba(0,0,0,0.15);
}
.detail__mock--light .detail__mock-bar {
  background: #f5f7fa;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot--red { background: #ff5f57; }
.dot--yellow { background: #ffbd2e; }
.dot--green { background: #28c940; }
.detail__mock-body {
  padding: 20px;
}
.mock-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
}
.mock-title-dark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--graphite);
  margin-bottom: 16px;
}
.mock-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}
.mock-row--header {
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
}

/* Light mock tables */
.mock-table-light {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-row-light {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--graphite);
  background: var(--ice);
  border-radius: 8px;
  align-items: center;
}
.mock-row-light--header {
  font-weight: 600;
  color: var(--muted-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
}
.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
}
.status-pill--green { background: #c6f6d5; color: #2d6a3f; }
.status-pill--orange { background: #feebc8; color: #9c4221; }
.status-pill--gray { background: #e2e8f0; color: #718096; }

/* Mock form */
.mock-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.mock-tab {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: var(--ice);
  cursor: default;
}
.mock-tab--active {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}
.mock-field {
  height: 32px;
  background: var(--ice);
  border-radius: 8px;
}
.mock-field--short {
  width: 60%;
}
.mock-btn-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.mock-btn-save {
  padding: 8px 16px;
  background: var(--ice);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.mock-btn-send {
  padding: 8px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

/* --- CHANNELS --- */
.channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
}
.channel__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.channel__icon--portal { background: var(--brand); }
.channel__icon--email { background: #4A90D9; }
.channel__icon--messenger { background: #0ABAAA; }
.channel__icon--telegram { background: #29A9EA; }
.channel__icon--mobile { background: #6E56CF; }

/* --- NOTIFY CARDS --- */
.notify-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.notify-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid transparent;
}
.notify-card--mass {
  border-left-color: var(--brand);
}
.notify-card--personal {
  border-left-color: #0ABAAA;
}
.notify-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,125,85,0.12);
  color: var(--brand);
  margin-bottom: 10px;
}
.notify-card__badge--personal {
  background: rgba(10,186,170,0.12);
  color: #0ABAAA;
}
.notify-card__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--graphite);
  margin-bottom: 6px;
}
.notify-card__meta {
  font-size: 13px;
  color: var(--muted-light);
}

/* --- DOCUMENT CATEGORIES --- */
.doc-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.doc-cat {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px;
}
.doc-cat__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}
.doc-cat__text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* --- DOCUMENT VISUAL --- */
.doc-visual {
  text-align: center;
}
.doc-visual__icon {
  margin: 0 auto 20px;
  width: 64px;
}
.doc-visual__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doc-vcard {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-align: left;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.doc-vcard:hover {
  background: rgba(255,255,255,0.14);
}
.doc-vcard__icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.doc-vcard__icon--word { background: #2B579A; }
.doc-vcard__icon--pdf { background: #D93025; }
.doc-vcard__icon--excel { background: #217346; }
.doc-vcard__icon--png { background: #7C3AED; }
.doc-vcard__name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.doc-vcard__date {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* --- INSURANCE BOARD --- */
.insurance-board {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
}
.insurance-board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.insurance-board__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--graphite);
}
.insurance-board__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
}
.insurance-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.insurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F5F8FC;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 12px 14px;
  transition: transform var(--transition);
}
.insurance-item:hover {
  transform: translateX(2px);
}
.insurance-item--warning {
  background: #FFF7EC;
  border-color: rgba(255,165,0,0.15);
}
.insurance-item__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,186,170,0.12);
  color: #0ABAAA;
  font-size: 15px;
  flex-shrink: 0;
}
.insurance-item__icon--warning {
  background: rgba(255,125,85,0.14);
  color: var(--brand);
}
.insurance-item__info {
  flex: 1;
  min-width: 0;
}
.insurance-item__name {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--graphite);
  margin-bottom: 3px;
}
.insurance-item__meta {
  font-size: 12px;
  color: var(--muted-light);
}
.insurance-item__status {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.insurance-item__status--active {
  background: rgba(10,186,170,0.14);
  color: #0A9B8D;
}
.insurance-item__status--warning {
  background: rgba(255,125,85,0.16);
  color: var(--brand);
}
.insurance-board__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,0.08);
  font-size: 12.5px;
  color: var(--muted);
}
.insurance-board__footer i {
  color: var(--brand);
}

/* --- ADVANTAGES --- */
.advantages {
  padding: 80px 20px;
  background: var(--graphite);
}
.advantages__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.advantage-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 28px 22px;
  transition: transform var(--transition), background var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.advantage-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.advantage-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}
.advantage-card--accent {
  background: rgba(255,125,85,0.15);
  border-color: rgba(255,125,85,0.3);
}
.advantage-card--accent:hover {
  background: rgba(255,125,85,0.22);
}
.advantage-card__num {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--brand);
  margin-bottom: 14px;
}
.advantage-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}
.advantage-card__text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.advantages__note {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* --- CTA --- */
.cta {
  padding: 80px 20px;
  background: var(--ice);
  text-align: center;
}
.cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta__title {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--graphite);
  margin-bottom: 16px;
}
.cta__text {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* --- FOOTER --- */

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual { display: flex; justify-content: center; }
  .hero__dashboard { max-width: 500px; width: 100%; }
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .values__inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .advantages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .detail__inner,
  .detail__inner--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail__inner--reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {

  .hero { padding: 60px 20px 40px; }
  .hero__title { font-size: clamp(24px, 5vw, 36px); }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .doc-categories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .features__grid {
    grid-template-columns: 1fr;
  }
  .values__inner {
    grid-template-columns: 1fr;
  }
  .advantages__grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .mock-tabs {
    flex-wrap: wrap;
  }
}

/* Staggered reveal animation delays */
.feature-card:nth-child(1) { transition-delay: 0ms; }
.feature-card:nth-child(2) { transition-delay: 60ms; }
.feature-card:nth-child(3) { transition-delay: 120ms; }
.feature-card:nth-child(4) { transition-delay: 180ms; }
.feature-card:nth-child(5) { transition-delay: 240ms; }
.feature-card:nth-child(6) { transition-delay: 300ms; }
.feature-card:nth-child(7) { transition-delay: 360ms; }
.feature-card:nth-child(8) { transition-delay: 420ms; }
.feature-card:nth-child(9) { transition-delay: 480ms; }
.feature-card:nth-child(10) { transition-delay: 540ms; }

.value-card:nth-child(1) { transition-delay: 0ms; }
.value-card:nth-child(2) { transition-delay: 80ms; }
.value-card:nth-child(3) { transition-delay: 160ms; }
.value-card:nth-child(4) { transition-delay: 240ms; }
.value-card:nth-child(5) { transition-delay: 320ms; }

.advantage-card:nth-child(1) { transition-delay: 0ms; }
.advantage-card:nth-child(2) { transition-delay: 80ms; }
.advantage-card:nth-child(3) { transition-delay: 160ms; }
.advantage-card:nth-child(4) { transition-delay: 240ms; }
.advantage-card:nth-child(5) { transition-delay: 320ms; }
