/* ===== Fonts (SF Pro Display, self-hosted) ===== */
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/sf-pro-display/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/sf-pro-display/SFPRODISPLAYMEDIUM.OTF") format("opentype");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/sf-pro-display/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Design tokens (from Figma: Jett) ===== */
:root {
  --dark: #171d25;
  --gray: #98a2b3;
  --gray-bg: #f2f4f7;
  --green: #2ec995;
  --white: #ffffff;
  --border: #eef0f4;
  --red: #ef5252;

  --container-w: 1520px;
  --font-main: "SF Pro Display", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 47px;
  font-weight: 590;
  letter-spacing: -0.94px;
  margin: 0 0 60px;
}

.section-title--light {
  color: var(--white);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--border);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
}

.logo img {
  height: 26px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 510;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.36px;
  color: var(--dark);
  transition: background-color 0.2s ease;
}

.nav__link:hover {
  background: var(--gray-bg);
}

.nav__link--active {
  background: var(--green);
  color: var(--white);
}

.nav__link--active:hover {
  background: var(--green);
}

/* bitrix:menu "top" output: <ul class="metismenu"><li><a> */
.nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav li a {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 510;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.36px;
  color: var(--dark) !important;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.nav li a:hover {
  background: var(--gray-bg);
}

.nav li a.nav__link--active {
  background: var(--green);
  color: var(--white) !important;
}

.nav li a.nav__link--active:hover {
  background: var(--green);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 510;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.36px;
  color: var(--dark);
}

.chevron {
  width: 10px;
  height: 6px;
  display: inline-block;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--gray);
  transition: transform 0.2s ease;
}

/* ===== Language dropdown ===== */
.lang-dropdown {
  position: relative;
}

.lang-dropdown.is-open .chevron {
  transform: rotate(180deg);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 8px;
  min-width: 140px;
  background: var(--gray-bg);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(23, 29, 37, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 150;
}

.lang-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: var(--gray-bg);
  border-radius: 3px 0 0 0;
  transform: rotate(45deg);
}

.mobile-menu__bottom .lang-dropdown__menu {
  left: 0;
  right: auto;
  top: auto;
  bottom: calc(100% + 14px);
  transform: translateY(6px);
}

.mobile-menu__bottom .lang-dropdown.is-open .lang-dropdown__menu {
  transform: translateY(0);
}

.mobile-menu__bottom .lang-dropdown__menu::before {
  top: auto;
  bottom: -7px;
  left: 22px;
  right: auto;
  border-radius: 0 0 0 3px;
}

.lang-dropdown.is-open .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown__item {
  display: flex;
  align-items: stretch;
  padding: 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 510;
  color: var(--gray);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

/* The <a> must fill the whole pill — otherwise clicking the padded
   area around it does nothing because it lands outside the link */
.lang-dropdown__item a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  color: inherit;
  text-decoration: none;
}

.lang-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.6);
}

.lang-dropdown__item--active {
  background: var(--white);
  color: var(--dark);
}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}

.account-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 510;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.36px;
}

.account-icon {
  width: 30px;
  height: auto;
  flex-shrink: 0;
}

/* ===== Burger button (mobile) ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile side menu ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 29, 37, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 24px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 201;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-menu__top .logo img {
  height: 22px;
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-menu__close svg {
  width: 16px;
  height: 16px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-menu__link {
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 510;
  font-size: 18px;
  color: var(--dark);
}

.mobile-menu__link--active {
  background: var(--green);
  color: var(--white);
}

/* bitrix:menu "top" output: <ul class="metismenu"><li><a> */
.mobile-menu__nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-menu__nav li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-menu__nav li a {
  display: block;
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 510;
  font-size: 18px;
  color: var(--dark) !important;
  text-decoration: none;
}

.mobile-menu__nav li a.nav__link--active {
  background: var(--green);
  color: var(--white) !important;
}

.mobile-menu__bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu__bottom .lang-switch,
.mobile-menu__bottom .account-link {
  justify-content: flex-start;
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  padding: 65px 0 90px;
  overflow: hidden;
}

.hero__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hero__text {
  padding-top: 60px;
  max-width: 640px;
  flex-shrink: 0;
}

.hero__title {
  margin: 0 0 40px;
  font-size: 70px;
  font-weight: 590;
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.hero__title-accent {
  color: var(--green);
  display: block;
}

.hero__subtitle {
  margin: 0 0 40px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--gray);
  max-width: 610px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 100px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.5px;
  white-space: nowrap;
  border: none;
  vertical-align: middle;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  font-weight: 590;
}

.btn--secondary {
  background: var(--gray-bg);
  color: var(--gray);
  font-weight: 510;
}

.btn--small {
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 12px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  margin-right: -12px;
}

.hero__stats-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__stats-number {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 47px;
  font-weight: 510;
  letter-spacing: -0.94px;
  line-height: 1.1;
}

.hero__stats-arrow {
  width: 25px;
}

.hero__stats-text p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.36px;
  color: var(--gray);
  line-height: 1.3;
  max-width: 442px;
}

.hero__media {
  flex-shrink: 0;
  width: 45%;
  min-width: 480px;
}

/* ===== Features ===== */
.features {
  padding: 60px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.feature-card {
  margin: 0;
  border-radius: 40px;
  background: var(--gray-bg);
  padding: 60px 54px 0;
  overflow: hidden;
}

.feature-card__icon {
  width: 88px;
  height: auto;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 32px;
  font-weight: 510;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 16px;
  max-width: 480px;
}

.feature-card__text {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.4;
  margin: 0 0 32px;
  max-width: 480px;
}

.feature-card__media {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Wide brokerage card */
.feature-card--wide {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px;
}

.feature-card--wide__text {
  flex: 1;
  min-width: 280px;
}

.feature-card--wide__media {
  flex: 1;
  min-width: 320px;
}

.feature-card--wide__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Open account ===== */
.open-account {
  padding: 60px 0;
}

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

.step {
  background: var(--gray-bg);
  border-radius: 30px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.step--dark {
  background: var(--dark) url("assets/images/blok-bg.svg") no-repeat right bottom / 60% auto;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.step__icon-img {
  width: 72px;
  height: auto;
  margin-bottom: 44px;
}

.step--dark .step__title {
  margin-top: 0;
}

.step__title {
  font-size: 24px;
  font-weight: 590;
  margin: 0 0 12px;
}

.step__text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.45;
  margin: 0 0 20px;
}

.step--dark .step__text {
  color: #9aa2ad;
  margin-bottom: 0;
}

.step--dark .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ===== Download app ===== */
.download-app {
  background: var(--dark);
  padding: 70px 0 0;
  overflow: hidden;
  width: 100%;
}

.download-app .container {
  text-align: center;
}

.download-app__subtitle {
  color: #9aa2ad;
  font-size: 18px;
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 40px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #262d38;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 590;
  text-align: left;
}

.store-btn small {
  display: block;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 400;
  color: #9aa2ad;
}

.store-buttons--small {
  justify-content: flex-start;
  margin-bottom: 0;
}

.store-btn--dark {
  background: var(--dark);
  padding: 8px 14px;
}

.phones {
  display: flex;
  justify-content: center;
}

.phones img {
  max-width: 720px;
  width: 100%;
  height: auto;
}

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
}

.accordion {
  margin: 0 auto;
}

/* ---- Level 1: category ---- */
.faq-category {
  border-bottom: 1px solid var(--border);
  transition: background-color 0.26s ease, border-bottom-color 0.26s ease,
    border-radius 0.26s ease, margin-bottom 0.26s ease;
}

/* .is-open is toggled by JS at the same moment the content animation
   starts, so the background/border/margin transition runs in sync with
   the height animation instead of only starting after it finishes */
.faq-category.is-open {
  border-bottom-color: var(--gray-bg);
  background: var(--gray-bg);
  border-radius: 24px;
  margin-bottom: 28px;
}

/* Hide the border of the item right above an opened category —
   otherwise it sticks out next to the open item's rounded corner */
.faq-category:has(+ .faq-category.is-open) {
  border-bottom-color: transparent;
}

.faq-category__head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 24px;
  cursor: pointer;
  list-style: none;
}

.faq-category__head::-webkit-details-marker {
  display: none;
}

.accordion__num {
  color: var(--gray);
  font-size: 14px;
  width: 30px;
  flex-shrink: 0;
}

.accordion__q {
  flex: 1;
  font-size: 24px;
  font-weight: 510;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-size: 18px;
  color: var(--gray);
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-category.is-open .faq-toggle {
  background: var(--green);
  color: var(--white);
}

/* ---- Level 1 expanded panel ---- */
.faq-panel {
  padding: 0;
}

/* Padding lives on an inner wrapper, not on the element we animate —
   otherwise leftover padding is still visible when height animates to 0 */
.faq-panel__inner {
  padding: 0 24px 24px;
}

/* ---- Level 2: sub-questions ---- */
.faq-sub-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-sub {
  background: var(--white);
  border-radius: 14px;
  padding: 0 20px;
}

.faq-sub summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 510;
  color: var(--gray);
  transition: color 0.15s ease;
}

.faq-sub summary::-webkit-details-marker {
  display: none;
}

.faq-sub[open] summary {
  color: var(--dark);
}

.faq-sub__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: no-repeat center / 12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2398A2B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform 0.2s ease;
}

.faq-sub[open] .faq-sub__chevron {
  transform: rotate(180deg);
}

.faq-sub__answer {
  padding: 0;
}

/* Padding/margin live on an inner wrapper, not on the element we animate —
   otherwise leftover spacing is still visible when height animates to 0 */
.faq-sub__answer-inner {
  padding: 0 0 20px;
  margin-top: -8px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
  max-width: 640px;
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-bg);
  padding: 70px 0 40px;
  margin-top: 40px;
  width: 100%;
}


.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.footer__title {
  text-align: left;
  margin: 0 0 16px;
  font-size: 40px;
}

.footer__about {
  max-width: 400px;
}

.footer__text {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.footer__nav {
  font-size: 16px;
  color: var(--dark);
}

.footer__nav ul,
.footer__nav ul.metismenu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer__nav li,
.footer__nav ul.metismenu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer__nav li::marker {
  content: none;
}

/* Footer active link: just green text, no filled pill background */
.footer__nav li a.nav__link--active {
  background: none;
  color: var(--green);
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social img {
  width: 18px;
  height: 18px;
}

.footer__divider {
  border: none;
  border-top: 1px solid #dfe3ea;
  margin: 0 0 40px;
}

.footer__logo img {
  height: 34px;
  margin-bottom: 30px;
}

.footer__legal {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* ===== Commissions page ===== */
.c-hero {
  padding: 65px 0 90px;
}

.c-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.c-hero__text {
  max-width: 610px;
  flex-shrink: 0;
}

.c-hero__title {
  margin: 0 0 40px;
  font-size: 70px;
  font-weight: 590;
  line-height: 1.1;
  letter-spacing: -1.4px;
}

.c-hero__title-accent {
  color: var(--green);
  display: block;
}

.c-hero__subtitle {
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--gray);
  max-width: 610px;
}

.c-hero__media {
  flex-shrink: 0;
  width: 50%;
  max-width: 620px;
}

.c-hero__media img,
.c-hero__placeholder {
  width: 100%;
  height: auto;
  display: block;
}

.c-fees {
  padding: 40px 0;
}

.fee-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fee-row__label {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--gray-bg);
  border-radius: 16px;
  padding: 18px 28px;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.4;
}

.fee-row__label--title {
  justify-content: center;
  font-weight: 590;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fee-row--title {
  display: none;
}

.fee-code {
  color: inherit;
}

.fee-row__value {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  background: var(--green);
  color: var(--white);
  font-size: 16px;
  font-weight: 590;
  line-height: 1.4;
  padding: 18px 12px;
  border-radius: 14px;
  white-space: nowrap;
  text-align: center;
}

/* ===== Documents page ===== */
.doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.doc-row__label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-bg);
  border-radius: 16px;
  padding: 12px 28px 12px 12px;
  font-size: 16px;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.4;
}

.doc-row__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--green);
  border-radius: 12px;
}

.doc-row__icon svg {
  width: 18px;
  height: 18px;
}

.doc-row__download-icon {
  display: none;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: var(--gray);
}

.doc-row__download-icon svg {
  width: 100%;
  height: 100%;
}

.doc-row__btn {
  flex-shrink: 0;
  font-size: 16px;
  padding: 18px 26px;
  border-radius: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav,
  .header__actions {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero__row {
    flex-direction: column;
  }

  .hero__media {
    width: 100%;
    min-width: 0;
  }

  .hero__title {
    font-size: 48px;
  }

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

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

  .feature-card--wide {
    flex-direction: column;
  }

  .footer__right {
    align-items: flex-start;
  }

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

  .c-hero__media {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .header__row {
    height: 70px;
  }

  .fee-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .doc-row__label {
    width: 100%;
  }

  .doc-row__btn {
    display: none;
  }

  .doc-row__download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .c-hero__title {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .c-hero__subtitle {
    font-size: 18px;
  }

  .hero {
    padding: 30px 0 50px;
  }

  .hero__text {
    padding-top: 20px;
  }

  .hero__title {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .btn {
    padding: 14px 20px;
    font-size: 18px;
    white-space: normal;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 60px;
  }

  .hero__buttons .btn {
    width: 100%;
  }

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

  .section-title {
    font-size: 32px;
  }

  .feature-card {
    padding: 40px 24px 0;
  }

  .feature-card--wide {
    padding: 40px 24px;
  }

  .accordion__q {
    font-size: 18px;
  }
}
