@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

/* ===== base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: "Onest", sans-serif; color: #1c1c1c; background: #f3f3f3; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1280px; width: 100%; margin: 0 auto; padding: 0 40px; }

:root {
  --grad: linear-gradient(135deg, #64321B 0%, #DF986E 36%, #91472A 100%);
  --accent: #91472A;
}
.accent { color: var(--accent); }

/* ===== buttons ===== */
.btn { font-family: inherit; cursor: pointer; border: none; padding: 14px 26px; font-size: 14px; border-radius: 2px; transition: all .2s; }
.btn--ghost { background: transparent; color: #fff; border: 1px solid #fff; }
.btn--ghost:hover { background: #fff; color: #1c1c1c; }
.btn-grad { background: var(--grad); color: #fff; border: none; padding: 16px 32px; font-size: 14px; cursor: pointer; font-family: inherit; border-radius: 2px; transition: filter .2s; }
.btn-grad:hover { filter: brightness(1.08); }
.btn-grad--full { width: 100%; padding: 18px; font-size: 15px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 760px; color: #fff; overflow: hidden; display: flex; flex-direction: column; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; background-color: #1a1a1a; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,20,.55), rgba(20,20,20,.75)); z-index: 1; }

.header { position: relative; z-index: 3; display: flex; align-items: center; gap: 40px; padding-top: 22px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.08); }
.header__logo img { height: 42px; }
.header__nav { display: flex; gap: 38px; flex: 1; justify-content: center; }
.header__nav a { font-size: 15px; color: #e8e8e8; transition: color .2s; }
.header__nav a:hover { color: #DF986E; }
.header__contacts { display: flex; align-items: center; gap: 16px; }
.header__phone-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; }
.header__phone-icon svg { display: block; }
.header__phone { display: flex; flex-direction: column; line-height: 1.2; }
.header__phone-num { font-size: 16px; color: #fff; font-weight: 500; }
.header__phone-sub { font-size: 11px; color: #b8b8b8; }

.hero__inner { position: relative; z-index: 2; padding-top: 80px; display: flex; gap: 60px; flex: 1; }
.hero__left { flex: 1.4; }
.hero__title { font-size: 44px; font-weight: 300; line-height: 1.25; letter-spacing: -.5px; color: #f5f5f5; }
.hero__divider { margin-top: 30px; height: 2px; background: linear-gradient(135deg, #64321B 0%, #DF986E 36%, #91472A 100%); width: 100%; max-width: 540px; }

.hero__right { flex: 1; padding-top: 130px; }
.hero__icon { margin-bottom: 22px; opacity: .5; }
.hero__text { font-size: 17px; color: #d8d8d8; line-height: 1.6; font-weight: 300; }
.hero__text strong { color: #fff; font-weight: 600; }

/* hero cards: впритык к низу секции, без gap между ними */
.hero__cards-wrap { position: relative; z-index: 2; margin-top: auto; }
.hero__cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.hcard { background: rgba(20,20,20,.85); padding: 24px 26px; min-height: 170px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; position: relative; }
.hcard--bordered::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hcard__check { width: 28px; height: 28px; border-radius: 50%; background: #171717; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; }
.hcard__text { font-size: 15px; line-height: 1.4; color: #ddd; }
.hcard__text strong { color: #fff; font-weight: 600; display: inline-block; margin-top: 4px; }
.hcard--cta { background: var(--grad); border: none; align-items: center; justify-content: center; text-align: center; }
.hcard--cta .hcard__text { color: #fff; font-weight: 500; font-size: 16px; }
.hcard__icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; }
.hcard__icon.without-bg { background: transparent; }

/* ===== WHY ===== */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-top: 100px; padding-bottom: 100px; }
.why__title { font-size: 36px; font-weight: 400; margin-bottom: 24px; }
.why__lead, .why__text { font-size: 15px; line-height: 1.65; color: #2c2c2c; margin-bottom: 18px; }
.why__photo { margin-top: 26px; aspect-ratio: 16/10; background: #d6d6d6; overflow: hidden; }
.why__photo img { width: 100%; height: 100%; object-fit: cover; }

.why__right { display: flex; flex-direction: column; gap: 18px; }
.why__dark { position: relative; background: #242424; padding: 36px 38px; color: #fff; overflow: hidden; min-height: 380px; }
.why__dark-title { font-size: 18px; line-height: 1.45; max-width: 380px; margin-bottom: 26px; font-weight: 400; }
.why__logo { position: absolute; top: 30px; right: 30px; width: 50px; }
.why__list { list-style: none; display: flex; flex-direction: column; gap: 10px; max-width: 480px; }
.why__list li { background: #2B2B2B; border: 1px solid rgba(255,255,255,.05); padding: 12px 18px; font-size: 14px; color: #e0e0e0; border-radius: 2px; z-index: 2;}
.why__check { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.circle-check { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; }
.why__check p { font-size: 14px; color: #cfcfcf; line-height: 1.4; }
.why__cable { position: absolute; right: -40px; bottom: -20px; width: 280px; opacity: .55; pointer-events: none; }
.why__cable img { width: 100%; }

.why__light { background: #FFFFFF; padding: 30px 36px; min-height: 220px; margin-top: auto; }
.why__light-icon { width: 36px; height: 36px; border-radius: 50%; background: #e8e8e8; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why__light p { font-size: 14px; line-height: 1.6; color: #1c1c1c; margin-bottom: 12px; }


/* ===== INCOME ===== */
.income { padding-top: 30px; padding-bottom: 100px; }
.income__head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding-bottom: 30px; }
.income__title { font-size: 36px; font-weight: 400; line-height: 1.2; }
.income__lead { font-size: 14px; line-height: 1.65; color: #2c2c2c; padding-top: 8px; margin-top: auto;}

.income__sub { display: flex; align-items: center; gap: 12px; padding: 22px 0; border-top: 1px solid #e2e2e2; font-size: 14px; color: #1c1c1c; font-weight: 500; }
.income__sub-mark { width: 14px; height: 14px; background: var(--grad); display: inline-block; }

.income__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-bottom: 24px; }
.icard { background: #fff; padding: 26px 24px 30px; border: 1px solid #e6e6e6; min-height: 280px; display: flex; flex-direction: column; }
.icard__icon { width: 40px; height: 40px; border-radius: 50%; background: #ececec; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.icard h4 { font-size: 15px; font-weight: 600; line-height: 1.35; margin-bottom: 16px; }
.icard p { font-size: 13px; color: #555; line-height: 1.55; }

.income__line { height: 1px; background: #e2e2e2; margin: 4px 0 100px; position: relative; }
.income__line:after { content: ''; position: absolute; right: -6px; top: -4px; border: 5px solid transparent; border-left-color: #e2e2e2; z-index: 2;}

.income__head--small { padding-bottom: 28px; }
.income__subtitle { font-size: 32px; font-weight: 400; line-height: 1.2; }
.income__lead--small { padding-top: 18px; }

.src-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.src-card { position: relative; aspect-ratio: 4/3.2; background-size: cover; background-position: center; background-color: #444; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; padding: 22px; }
/* .src-card:before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.7) 100%); z-index: 0; } */
.src-card__badge { position: absolute; top: 22px; left: 22px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 1; }
.src-card__body { position: relative; z-index: 1; }
.src-card__body h5 { font-size: 16px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.src-card__line { width: 100%; height: 1px; background: rgba(255,255,255,.5); margin-bottom: 12px; }
.src-card__body p { font-size: 13px; color: #e6e6e6; line-height: 1.5; }


/* ===== EXPERT ===== */
.expert { display: grid;  grid-template-columns: 1.55fr 1fr; gap: 30px; padding-top: 80px; padding-bottom: 100px; align-items: center; }
.expert__title { font-size: 32px; font-weight: 400; line-height: 1.25; margin-bottom: 24px; }
.expert__lead { font-size: 14px; line-height: 1.65; color: #2c2c2c; margin-bottom: 24px; }
.expert__divider { height: 1px; background: #d4d4d4; margin-bottom: 22px; }
.expert__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 28px; }
.expert__cols p { font-size: 13px; line-height: 1.6; color: #2c2c2c; margin-bottom: 14px; }

.expert__cta { display: grid; grid-template-columns: 1.6fr 1fr; min-height: 130px; background-size: cover; background-position: center; background-color: #2a2a2a; overflow: hidden; }
.expert__cta-text { padding: 26px 30px; color: #fff; font-size: 14px; line-height: 1.5; align-self: center; background: linear-gradient(90deg, rgba(20,20,20,.85), rgba(20,20,20,.55)); height: 100%; display: flex; align-items: center; }
.expert__cta-btn { background: var(--grad); color: #fff; border: none; cursor: pointer; font-family: inherit; font-size: 14px; line-height: 1.4; padding: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }

.expert__right { display: flex; }
.expert__photo { position: relative; flex: 1; background: #d8d8d8; overflow: hidden; }
.expert__photo img { width: 100%; height: 100%; object-fit: cover; }
.expert__photo-cap { position: absolute; left: 24px; bottom: 22px; color: #fff; line-height: 1.3; text-shadow: 0 2px 6px rgba(0,0,0,.4); }
.expert__photo-cap strong { display: block; font-size: 18px; font-weight: 600; }
.expert__photo-cap span { font-size: 13px; opacity: .85; }


/* ===== PARTNERS ===== */
.partners { background: #1c1c1c; }
.partners__strip { display: flex; align-items: center; min-height: 90px; }
.partners__label { display: flex; align-items: center; gap: 16px; padding: 0 32px 0 24px; min-height: 90px; background: linear-gradient(90deg, #2a2a2a 0%, #1c1c1c 100%); color: #fff; font-size: 13px; line-height: 1.3; position: relative; }
.partners__label img { height: 28px; opacity: .9; }
.partners__arrow { width: 0; height: 0; position: absolute; right: -22px; top: 50%; transform: translateY(-50%); border: 22px solid transparent; border-left-color: #1c1c1c; }
.partners__logos { flex: 1; display: flex; align-items: center; justify-content: space-around; gap: 30px; padding: 0 50px; overflow: hidden; }
.partners__logos img { height: 36px; width: auto; opacity: .85; filter: grayscale(.2); }


/* ===== EXPERT CENTER ===== */
.ec { padding-top: 100px; padding-bottom: 100px; }
.ec__top { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; padding-bottom: 80px; }
.ec__title { font-size: 36px; font-weight: 400; line-height: 1.25; margin-bottom: 22px; }
.ec__lead { font-size: 14px; line-height: 1.65; color: #2c2c2c; max-width: 520px; }
.ec__quote { position: relative; background: #1c1c1c; color: #d6d6d6; padding: 28px 32px; margin-top: 90px; max-width: 540px; min-height: 150px; overflow: hidden; }
.ec__quote p { font-size: 14px; line-height: 1.5; max-width: 320px; position: relative; z-index: 1; }
.ec__quote-img { position: absolute !important; right: 0px; bottom: 0px; width: fit-content; height: auto; opacity: .9; pointer-events: none; }

.ec__sub { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; font-size: 14px; font-weight: 500; }
.ec__sub-mark { width: 10px; height: 10px; background: var(--grad); border-radius: 2px; }
.ec__list { list-style: none; }
.ec__list li { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid #d4d4d4; align-items: start; }
.ec__list li:last-child { border-bottom: 1px solid #d4d4d4; }
.ec__list-icon { width: 40px; height: 40px; border-radius: 50%; background: #ececec; display: flex; align-items: center; justify-content: center; }
.ec__list h5 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.ec__list p { font-size: 13px; color: #555; line-height: 1.55; max-width: 540px; }

/* sources */
.ec__sources { padding-top: 30px; }
.ec__sources-head { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center; padding-bottom: 28px; }
.ec__sources-title { font-size: 32px; font-weight: 400; line-height: 1.2; }
.ec__sources-text { font-size: 13px; line-height: 1.55; color: #2c2c2c; }
.ec__sources-head .btn-grad { justify-self: end; }
.ec__sources-line { height: 1px; background: #d4d4d4; margin-bottom: 22px; }
.ec__sources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.srccard { background: #fff; border: 1px solid #e6e6e6; display: flex; flex-direction: column; }
.srccard__head { padding: 22px 22px 18px; }
.srccard__icon { width: 36px; height: 36px; border-radius: 50%; background: #ececec; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.srccard__head h5 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.srccard__head p { font-size: 13px; color: #555; line-height: 1.45; }
.srccard__photo { aspect-ratio: 4/3; overflow: hidden; background: #d8d8d8; margin-top: auto;}
.srccard__photo img { width: 100%; height: 100%; object-fit: cover; }
.srccard__photo--ph { background: repeating-linear-gradient(45deg, #d8d8d8 0 10px, #cfcfcf 10px 20px); }


/* ===== MARKET ===== */
.market { padding-top: 80px; padding-bottom: 40px; }
.market__title { font-size: 36px; font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
.market__lead { font-size: 14px; color: #444; margin-bottom: 38px; }
.market__sub { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; padding-bottom: 14px; }
.market__sub-mark { width: 10px; height: 10px; background: var(--grad); display: inline-block; border-radius: 2px;}
.market__divider { height: 1px; background: #d4d4d4; margin-bottom: 28px; }
.market__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mcard { padding: 0 8px; }
.mcard__check { width: 36px; height: 36px; border-radius: 50%; background: #ececec; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: #555; }
.mcard h5 { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.mcard p { font-size: 13px; color: #555; line-height: 1.55; }


/* ===== KIT ===== */
.kit { padding-top: 80px; padding-bottom: 100px; text-align: center; }
.kit__title { font-size: 32px; font-weight: 400; line-height: 1.25; margin-bottom: 18px; }
.kit__lead { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 40px; }
.kit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; margin-bottom: 18px; }
.kit__bottom { display: grid; grid-template-columns: 1fr 2fr; gap: 18px; text-align: left; }
.kcard { background: #fff; border: 1px solid #e6e6e6; padding: 26px 28px; min-height: 280px; }
.kcard__icon { width: 40px; height: 40px; border-radius: 50%; background: #ececec; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.kcard h5 { font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.kcard p { font-size: 13px; color: #555; line-height: 1.6; }
.kcard p strong { color: #1c1c1c; font-weight: 600; }

.kcard--small { min-height: 240px; }
.kcard--smart { background-color: #1c1c1c; background-size: cover; background-position: right center; background-repeat: no-repeat; color: #f0f0f0; min-height: 240px; position: relative; overflow: hidden; }
.kcard--smart.with-image {background-image:url('../images/ekosys.png'); background-size: contain; background-position: right;}
.kcard--smart:before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #1c1c1c 35%, rgba(28,28,28,.55) 70%, rgba(28,28,28,0) 100%); z-index: 0; }
.kcard--smart > * { position: relative; z-index: 1; }
.kcard__icon--dark { background: rgba(255,255,255,.1); }
.kcard--smart h5 { color: #fff; }
.kcard--smart p { color: #d8d8d8; max-width: 540px; }
.kcard--smart p strong { color: #fff; }


/* ===== TERMS ===== */
.terms { position: relative; min-height: 600px; color: #fff; padding: 80px 0 100px; overflow: hidden; }
.terms__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #1a1a1a; z-index: 0; }
.terms__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,20,20,.85) 0%, rgba(20,20,20,.55) 60%, rgba(20,20,20,.4) 100%); z-index: 1; }
.terms__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.terms__title { font-size: 36px; font-weight: 400; margin-bottom: 16px; }
.terms__lead { font-size: 14px; color: #d0d0d0; line-height: 1.6; margin-bottom: 36px; max-width: 520px; }
.terms__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 540px; }
.tstat { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.tstat--wide { grid-column: 1 / -1; }
.tstat__check { width: 28px; height: 28px; border-radius: 50%; background: #fff; color: #222; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.tstat strong { display: block; white-space: nowrap; font-size: 26px; font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 4px; }
.tstat span.tstat__check {color: #222;}
.tstat span { font-size: 13px; color: #FFFFFF; }

.terms__form { background: rgba(20,20,20,.75); padding: 30px 32px; max-width: 460px; justify-self: end; width: 100%; }
.terms__form-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; gap: 12px; }
.terms__form-head p { font-size: 18px; line-height: 1.45; color: #d8d8d8; }
.terms__form-head strong { color: #fff; }
.terms__form-radio { position: relative; width: 18px; height: 18px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.terms__form-radio__dot { width: 12px; height: 12px; border-radius: 50%; background: #fff; position: relative; z-index: 1; }
.terms__form-radio__dot::before,
.terms__form-radio__dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: rgba(255,255,255,.5); animation: radio-pulse 2s ease-out infinite; }
.terms__form-radio__dot::after { animation-delay: 1s; }
@keyframes radio-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(3.2); opacity: 0; }
}
.terms__form-price { font-size: 32px; font-weight: 400; color: #fff; margin-bottom: 22px; }
.terms__form input[type="text"], .terms__form input[type="tel"] { width: 100%; padding: 16px 18px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15); color: #fff; font-family: inherit; font-size: 14px; margin-bottom: 12px; outline: none; }
.terms__form input::placeholder { color: #b0b0b0; }
.terms__form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: #c0c0c0; line-height: 1.45; margin: 14px 0 18px; cursor: pointer; }
.terms__form-check input { margin-top: 2px; }


/* ===== responsive ===== */
@media (max-width: 1100px) {
  .header__nav { display: none; }
  .hero__inner { flex-direction: column; gap: 30px; }
  .hero__right { padding-top: 0; }
  .hero__cards { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; padding-top: 60px; }
  .income__head { grid-template-columns: 1fr; gap: 20px; }
  .income__grid { grid-template-columns: repeat(2, 1fr); }
  .src-grid { grid-template-columns: 1fr; }
  .expert { grid-template-columns: 1fr; }
  .expert__cols { grid-template-columns: 1fr; }
  .ec__top { grid-template-columns: 1fr; }
  .ec__sources-head { grid-template-columns: 1fr; }
  .ec__sources-head .btn-grad { justify-self: start; }
  .ec__sources-grid { grid-template-columns: repeat(2, 1fr); }
  .market__grid { grid-template-columns: repeat(2, 1fr); }
  .kit__grid { grid-template-columns: 1fr; }
  .kit__bottom { grid-template-columns: 1fr; }
  .terms__inner { grid-template-columns: 1fr; }
  .terms__form { justify-self: start; }
}

/* ===== TERRITORY (block 9, top) ===== */
.territory { padding: 80px 0 60px; }
.territory__box { position: relative; background: #1c1c1c; color: #fff; border-radius: 4px; overflow: hidden; min-height: 280px; padding: 50px 60px; display: flex; align-items: center; }
.territory__bg-left  { position: absolute; left: 0; bottom: 0; width: 280px; height: 100%; background-repeat: no-repeat; background-position: left bottom; background-size: contain; opacity: .85; pointer-events: none; z-index: 0; }
.territory__bg-right { position: absolute; right: 0; top: 0; width: 420px; height: 100%; background-repeat: no-repeat; background-position: right center; background-size: contain; opacity: .95; pointer-events: none; z-index: 0; }
.territory__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr 1fr; grid-template-areas: "title text1 text2" "title btn btn"; gap: 22px 40px; align-items: center; max-width: 75%; width: 100%; }
.territory__title { grid-area: title; font-size: 32px; font-weight: 400; line-height: 1.2; color: #fff; align-self: center; }
.territory__col { display: block; }
.territory__col:nth-of-type(1) { grid-area: text1; }
.territory__col:nth-of-type(2) { grid-area: text2; }
.territory__col .territory__text { font-size: 14px; line-height: 1.6; color: #d8d8d8; margin: 0; }
.territory__col .territory__text p { margin: 0 0 8px; }
.territory__col .territory__text p:last-child { margin-bottom: 0; }
.territory__col .territory__text strong { color: #fff; font-weight: 600; }
.territory__btn { grid-area: btn; padding: 14px 32px; font-size: 14px; width: 100%; }

/* ===== FAQ ===== */
.faq { padding: 90px 40px; }
.faq__title { font-size: 36px; font-weight: 400; margin-bottom: 40px; color: #1c1c1c; text-align: center; }
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.faq__col { display: flex; flex-direction: column; gap: 16px; }
.faq__item { background: #fff; border: 1px solid #e6e6e6; border-radius: 4px; padding: 0; }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15px; font-weight: 500; color: #1c1c1c; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { flex-shrink: 0; width: 34px; height: 34px; background: var(--grad); border-radius: 4px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: #fff; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item[open] .faq__icon::after { display: none; }
.faq__body { padding: 0 24px 22px; font-size: 14px; color: #555; line-height: 1.6; }

/* ===== FINAL CTA ===== */
.final { position: relative; color: #fff; padding: 80px 0; overflow: hidden; }
.final__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #1a1a1a; z-index: 0; }
.final__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,15,15,.9) 0%, rgba(15,15,15,.7) 60%, rgba(15,15,15,.5) 100%); z-index: 1; }
.final__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.final__title { font-size: 32px; font-weight: 400; line-height: 1.25; margin-bottom: 50px; }
.final__contacts { display: flex; flex-direction: column; gap: 28px; }
.final__phone-sub { font-size: 13px; color: #c8c8c8; line-height: 1.5; display: block; margin-bottom: 6px; }
.final__phone-num { font-size: 22px; font-weight: 500; color: #fff; }
.final__social { display: flex; align-items: center; gap: 20px; margin-top: 10px; }
.final__social-label { font-size: 13px; color: #c8c8c8; line-height: 1.5; }
.final__social-icons { display: flex; gap: 12px; }
.socbtn { width: 40px; height: 40px; background: var(--grad); display: flex; align-items: center; justify-content: center; transition: filter .2s; }
.socbtn:hover { filter: brightness(1.1); }
.final__form { display: flex; flex-direction: column; gap: 14px; }
.final__form input[type=text], .final__form input[type=tel] { background: transparent; border: 1px solid #555; padding: 16px 18px; color: #fff; font-family: inherit; font-size: 14px; border-radius: 2px; outline: none; transition: border-color .2s; }
.final__form input::placeholder { color: #999; }
.final__form input:focus { border-color: #DF986E; }
.final__form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: #b8b8b8; line-height: 1.5; cursor: pointer; padding: 6px 0; }
.final__form-check input { margin-top: 2px; accent-color: #91472A; }

/* ===== FOOTER ===== */
.footer { background: #ebebeb; padding: 30px 0; font-size: 12px; color: #555; }
.footer__inner { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 30px; align-items: center; }
.footer__col { display: flex; flex-direction: column; gap: 6px; }
.footer__col a { color: #555; text-decoration: underline; text-underline-offset: 3px; }
.footer__col a:hover { color: var(--accent); }
.footer__col--addr { text-align: right; }

/* ===== MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility 0s linear .28s; }
.modal.is-open { opacity: 1; visibility: visible; transition: opacity .28s ease, visibility 0s linear 0s; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(2px); }
.modal__dialog { position: relative; z-index: 1; background: #1f1f1f; color: #fff; width: 100%; max-width: 520px; padding: 44px 44px 40px; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.5); transform: translateY(20px) scale(.97); opacity: 0; transition: transform .35s cubic-bezier(.2,.9,.3,1.2), opacity .25s ease; }
.modal.is-open .modal__dialog { transform: translateY(0) scale(1); opacity: 1; }
.modal__close { position: absolute; top: 14px; right: 18px; background: transparent; border: none; color: #888; font-size: 28px; line-height: 1; cursor: pointer; padding: 4px 10px; transition: color .2s, transform .2s; }
.modal__close:hover { color: #fff; transform: rotate(90deg); }
.modal__title { font-size: 28px; font-weight: 400; line-height: 1.2; margin-bottom: 12px; }
.modal__sub { font-size: 13px; color: #b8b8b8; margin-bottom: 28px; }
.modal__form { display: flex; flex-direction: column; gap: 14px; }
.modal__form input[type=text], .modal__form input[type=tel] { background: transparent; border: 1px solid #555; padding: 16px 18px; color: #fff; font-family: inherit; font-size: 14px; border-radius: 2px; outline: none; transition: border-color .2s, background .2s; }
.modal__form input::placeholder { color: #999; }
.modal__form input:focus { border-color: #DF986E; background: rgba(255,255,255,.03); }
.modal__check { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: #b8b8b8; line-height: 1.5; cursor: pointer; padding: 6px 0 4px; }
.modal__check input { margin-top: 2px; accent-color: #91472A; }
.modal__success { padding: 30px 10px; text-align: center; animation: successFadeIn .45s ease both; }
.modal__success-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; animation: successPop .55s cubic-bezier(.2,.9,.3,1.4) both; }
.modal__success-text { font-size: 20px; font-weight: 400; color: #fff; line-height: 1.4; }

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes successPop {
  0%   { transform: scale(.3); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* hcard--cta as button */
button.hcard { font-family: inherit; cursor: pointer; text-align: left; border: none; }
button.hcard.hcard--cta:hover { filter: brightness(1.06); }

/* ===== BURGER (hidden on desktop) ===== */
.header__burger { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255,255,255,.5); cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 2px; transition: background .2s; }
.header__burger span { display: block; width: 18px; height: 2px; background: #fff; transition: transform .25s, opacity .2s; }
.header__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-active span:nth-child(2) { opacity: 0; }
.header__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE PHONE in header (compact) ===== */
.header__phone-mobile { display: none; align-items: center; gap: 8px; color: #fff; font-size: 13px; font-weight: 500; margin-left: auto; }
.header__phone-mobile-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.header__phone-mobile-num { white-space: nowrap; }

/* ===== MOBILE MENU ===== */
.header__menu { display: none; }

/* ===== FIELD ERRORS ===== */
.field-error { font-size: 12px; color: #ff8a6c; margin: -6px 0 6px; line-height: 1.4; }
input.has-error, .has-error + .terms__form-radio { border-color: #ff8a6c !important; }
label.has-error { color: #ff8a6c; }

/* mobile-only hero card hidden by default */
.hcard--mob-only { display: none; }

/* ===== MOBILE (≤ 768px) — screens 1..4 ===== */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* HEADER */
  .header { padding: 14px 0; gap: 10px; border-bottom: none; flex-wrap: nowrap; }
  .header__logo img { height: 38px; }
  .header__logo { flex-shrink: 0; }
  .header__nav, .header__contacts { display: none; }
  .header__phone-mobile { display: flex; }
  .header__phone-mobile-num { font-size: 12px; }
  .header__burger { display: flex; flex-shrink: 0; }

  /* hide compact phone on very narrow screens */
  @media (max-width: 360px) {
    .header__phone-mobile-num { display: none; }
  }

  /* MOBILE DRAWER MENU */
  .header__menu { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: #1c1c1c; padding: 20px 22px 28px; gap: 4px; z-index: 50; box-shadow: 0 12px 30px rgba(0,0,0,.4); border-top: 1px solid rgba(255,255,255,.06); transform: translateY(-12px); opacity: 0; transition: transform .28s ease, opacity .28s ease; }
  .header__menu.is-open { transform: translateY(0); opacity: 1; }
  .header__menu[hidden] { display: none; }
  .header__menu a { color: #fff; font-size: 15px; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); transition: color .2s, padding-left .2s; }
  .header__menu a:hover, .header__menu a:active { color: #DF986E; padding-left: 8px; }
  .header__menu a:last-of-type { border-bottom: none; }
  .header__menu .header__menu-phone { color: #DF986E; font-weight: 500; font-size: 16px; }
  .header__menu .btn { margin-top: 14px; width: 100%; }

  /* HERO */
  .hero { min-height: 0; }
  .hero__inner { flex-direction: column; padding-top: 36px; gap: 28px; padding-bottom: 28px; }
  .hero__left, .hero__right { flex: none; width: 100%; }
  .hero__title { font-size: 26px; line-height: 1.25; }
  .hero__divider { margin-top: 22px; max-width: 100%; }
  .hero__right { padding-top: 0; }
  .hero__icon { margin-bottom: 14px; }
  .hero__text { font-size: 14px; line-height: 1.55; }

  .hero__cards-wrap { margin-top: 0; padding-bottom: 0; }
  .hero__cards { grid-template-columns: 1fr 1fr; gap: 0; }
  .hcard { min-height: 110px; padding: 18px 18px; }
  .hcard__text { font-size: 14px; }
  .hcard--mob-only { display: flex; }
  .hcard--cta { grid-column: 1 / -1; min-height: 90px; padding: 22px 18px; flex-direction: column; gap: 10px; }
  .hcard--cta .hcard__icon { width: 32px; height: 32px; margin-bottom: 0; }
  .hcard--cta .hcard__text { font-size: 15px; }

  /* WHY */
  .why { grid-template-columns: 1fr; gap: 24px; padding-top: 50px; padding-bottom: 50px; }
  .why__title { font-size: 26px; line-height: 1.25; margin-bottom: 18px; }
  .why__lead, .why__text { font-size: 14px; }
  .why__photo { aspect-ratio: 16/10; margin-top: 18px; }
  .why__right { gap: 16px; }
  .why__dark { padding: 26px 22px; min-height: auto; padding-bottom: 20px; }
  .why__dark-title { font-size: 16px; max-width: 100%; margin-bottom: 22px; }
  .why__logo { width: 38px; top: 22px; right: 22px; opacity: 0;}
  .why__list { max-width: 100%; }
  .why__list li { font-size: 13px; padding: 12px 16px; }
  .why__check { margin-top: 22px; position: relative; z-index: 2;}
  .why__check p { font-size: 13px; }
  .why__cable { width: 200px; right: -30px; bottom: -20px; }
  .why__light { padding: 24px 22px; min-height: auto; }
  .why__light p { font-size: 13px; }

  /* INCOME */
  .income { padding-top: 30px; padding-bottom: 50px; }
  .income__head, .income__head--small { grid-template-columns: 1fr; gap: 16px; padding-bottom: 22px; }
  .income__title, .income__subtitle { font-size: 26px; line-height: 1.25; }
  .income__lead, .income__lead--small { padding-top: 0; font-size: 14px; }
  .income__sub { font-size: 13px; padding: 18px 0; }
  .income__grid { grid-template-columns: 1fr; gap: 14px; padding-bottom: 18px; }
  .icard { min-height: auto; padding: 22px 22px 24px; }
  .icard__icon { margin-bottom: 18px; }
  .income__line { margin: 4px 0 50px; display: none;}

  .src-grid { grid-template-columns: 1fr; gap: 14px; }
  .src-card { aspect-ratio: 16/9; padding: 20px; }

  /* EXPERT */
  .expert { grid-template-columns: 1fr; gap: 18px; padding-bottom: 50px; padding-top: 30px; }
  .expert__left { display: contents; }
  .expert__right { order: 2; }
  .expert__cta { order: 3; }
  .expert__title { font-size: 26px; line-height: 1.25; margin-bottom: 18px; }
  .expert__lead { font-size: 14px; margin-bottom: 18px; }
  .expert__cols { grid-template-columns: 1fr; gap: 0; margin-bottom: 0px; }
  .expert__cols > div + div { border-top: 1px solid #d4d4d4; padding-top: 16px; margin-top: 4px; }
  .expert__cols p { font-size: 13px; }
  .expert__cta { grid-template-columns: 1fr; min-height: 0; }
  .expert__cta-text { padding: 22px 22px; font-size: 13px; }
  .expert__cta-text br { display: none; }
  .expert__cta-btn { padding: 18px; font-size: 13px; flex-direction: column; }
  .expert__right { width: 100%; }
  .expert__photo { min-height: 380px; }
  .expert__photo-cap strong { font-size: 16px; }
  .expert__photo-cap span { font-size: 12px; }

  .kcard--smart.with-image {
    background: url("../images/ekosys-mob.png") right bottom no-repeat #1c1c1c;
    padding-bottom: 130px;
  }
  .kcard--smart.with-image:before {background: transparent;}
}

/* ===== MOBILE — screens 5..8 ===== */
@media (max-width: 768px) {
  /* PARTNERS (screen 5) */
  .partners__strip { min-height: 70px; }
  .partners__label { padding: 0 22px 0 18px; min-height: 70px; font-size: 12px; gap: 10px; }
  .partners__label img { height: 22px; }
  .partners__arrow { right: -16px; border-width: 16px; }
  .partners__logos { padding: 0 24px 0 32px; gap: 18px; justify-content: flex-start; overflow-x: auto; }
  .partners__logos img { height: 24px; flex-shrink: 0; }

  /* EXPERT CENTER (screen 6) */
  .ec { padding-top: 50px; padding-bottom: 50px; }
  .ec__top { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .ec__title { font-size: 26px; line-height: 1.25; margin-bottom: 18px; }
  .ec__lead { font-size: 14px; max-width: 100%; }
  .ec__quote { margin-top: 28px; max-width: 100%; padding: 22px 22px; min-height: auto; padding-right: 110px; }
  .ec__quote p { font-size: 13px; max-width: 100%; }
  .ec__quote-img { max-width: 100%; right: 0px; bottom: 0px; content: url('../images/clipboard-2-mob.png'); }
  .ec__quote br { display: none; }
  .ec__sub { font-size: 13px; padding-bottom: 14px; }
  .ec__list li { grid-template-columns: 40px 1fr; gap: 12px; padding: 18px 0; }
  .ec__list-icon { width: 32px; height: 32px; }
  .ec__list h5 { font-size: 14px; }
  .ec__list p { font-size: 13px; }

  /* sources head (screen 6 bottom) */
  .ec__sources { padding-top: 20px; }
  .ec__sources-head { grid-template-columns: 1fr; gap: 16px; padding-bottom: 20px; }
  .ec__sources-title { font-size: 26px; line-height: 1.25; }
  .ec__sources-text { font-size: 13px; }
  .ec__sources-text br { display: none; }
  .ec__sources-head .btn-grad { justify-self: stretch; width: 100%; padding: 16px; }

  /* sources grid (screen 7) */
  .ec__sources-grid { display: flex !important; flex-direction: row; flex-wrap: nowrap; grid-template-columns: none; gap: 14px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; margin: 0 -18px; padding: 4px 18px 12px; scrollbar-width: none; }
  .ec__sources-grid::-webkit-scrollbar { display: none; }
  .ec__sources-grid > * { flex: 0 0 85%; min-width: 0; width: 85%; scroll-snap-align: start; }
  .srccard__head { padding: 22px 22px 16px; }
  .srccard__photo { aspect-ratio: 4/3; }

  /* MARKET (screen 8 top) */
  .market { padding-top: 50px; padding-bottom: 30px; }
  .market__title { font-size: 26px; line-height: 1.25; }
  .market__title br { display: none; }
  .market__lead { font-size: 14px; margin-bottom: 26px; }
  .market__sub { font-size: 13px; }
  .market__grid { grid-template-columns: 1fr; gap: 4px; }
  .mcard { padding: 14px 0 6px; }
  .mcard__check { margin-bottom: 14px; }
  .mcard h5 { font-size: 15px; }
  .mcard p { font-size: 13px; }

  /* KIT (screen 8 bottom) */
  .kit { padding-top: 50px; padding-bottom: 50px; text-align: left; }
  .kit__title { font-size: 26px; line-height: 1.25; }
  .kit__lead { font-size: 14px; margin-bottom: 28px; }
  .kit__lead br { display: none; }
  .kit__grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
  .kit__bottom { grid-template-columns: 1fr; gap: 14px; }
  .kcard { min-height: auto; padding: 24px 22px; }
  .kcard h5 { font-size: 15px; }
  .kcard p { font-size: 13px; }
  .kcard--smart { padding: 24px 22px 220px; background-position: center bottom; background-size: 280px auto; min-height: auto; }
  .kcard--smart:before { background: linear-gradient(180deg, #1c1c1c 40%, rgba(28,28,28,.7) 70%, rgba(28,28,28,.2) 100%); }
}

/* ===== MOBILE - screens 9..12 ===== */
@media (max-width: 768px) {
  /* TERMS (screen 9) */
  .terms { padding: 50px 0 50px; min-height: 0; }
  .terms__overlay { background: linear-gradient(180deg, rgba(20,20,20,.55) 0%, rgba(20,20,20,.92) 45%, rgba(20,20,20,.92) 100%); }
  .terms__inner { grid-template-columns: 1fr; gap: 28px; padding-top: 100px; }
  .terms__title { font-size: 28px; line-height: 1.2; }
  .terms__lead { font-size: 14px; margin-bottom: 28px; max-width: 100%; }
  .terms__stats { grid-template-columns: 1fr 1fr; gap: 26px 18px; max-width: 100%; }
  .tstat { grid-template-columns: 1fr; gap: 14px; }
  .tstat__check { width: 28px; height: 28px; font-size: 12px; }
  .tstat strong { font-size: 22px; white-space: normal; }
  .tstat span { font-size: 12px; color: #b8b8b8; }
  .tstat--wide { grid-column: auto; order: 3; }
  .terms__stats .tstat:nth-child(3) { grid-column: 1 / -1; order: 4; }

  .terms__bg { background-position: center top; background-size: contain; background-repeat: no-repeat;}
  .terms__overlay {background:linear-gradient(180deg, rgba(36,36,36, .5) 0%, #242424 225px, #242424 100%);}

  .terms__form { max-width: 100%; padding: 24px 22px; justify-self: stretch; background: #282828;}
  .terms__form-head p { font-size: 13px; }
  .terms__form-price { font-size: 26px; margin-bottom: 18px; }

  /* TERRITORY (screen 10 top) */
  .territory { padding: 50px 0 30px; }
  .territory__box { padding: 30px 22px 0; min-height: 0; overflow: hidden; padding-bottom: 170px; display: block; }
  .territory__bg-left  { display: none; }
  .territory__bg-right { position: absolute; left: auto; right: auto; bottom: 0; width: 100%; margin:  0; margin-top: auto; height: 255px; background-size: 400px; background-position: right bottom; opacity: .4; background-image: url('../images/map-mobile.svg') !important; }
  .territory__grid { grid-template-columns: 1fr; grid-template-areas: "title" "text1" "text2" "btn"; gap: 18px; max-width: 100%; }
  .territory__title { font-size: 26px; line-height: 1.2; align-self: start; }
  .territory__col .territory__text { margin-bottom: 14px; }
  .territory__btn { width: 100%; padding: 16px; }

  /* FAQ (screen 10 bottom) */
  .faq { padding: 40px 18px 50px; }
  .faq__title { font-size: 26px; line-height: 1.25; margin-bottom: 22px; }
  .faq__grid { grid-template-columns: 1fr; gap: 10px; }
  .faq__col { gap: 10px; }
  .faq__item { background: #ededed; border-color: #e0e0e0; }
  .faq__item summary { padding: 16px 18px; font-size: 13px; gap: 12px; }
  .faq__icon { width: 28px; height: 28px; }
  .faq__icon::before { width: 10px; }
  .faq__icon::after  { height: 10px; }
  .faq__body { padding: 0 18px 16px; font-size: 13px; }

  /* FINAL CTA (screen 11) */
  .final { padding: 0; }
  .final__bg { background-image: url("../images/final-bg-mob.png") !important; background-position: top center; height: 220px; inset: auto 0 auto 0; top: 0; }
  .final__overlay { background: linear-gradient(180deg, rgba(36,36,36, .5) 0%, #242424 225px, #242424 100%); top: 0; left: 0; right: 0; bottom: 0; position: absolute; }
  .final__inner { display: flex; flex-direction: column; gap: 26px; padding-top: 180px; padding-bottom: 50px; }
  .final__left { display: contents; }
  .final__title { font-size: 26px; line-height: 1.25; margin-bottom: 0; order: 1; }
  .final__title br { display: none; }
  .final__form { order: 2; gap: 12px; }
  .final__contacts { order: 3; gap: 22px; }
  .final__phone-num { font-size: 22px; }
  .final__social { flex-direction: column; align-items: flex-start; gap: 14px; }
  .final__social-label br { display: none; }

  /* FOOTER (screen 12) */
  .footer { padding: 26px 0 30px; }
  .footer__inner { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .footer__col { gap: 10px; }
  .footer__col--addr { text-align: left; }
  .footer__inner > .footer__col:nth-child(2) { order: 3; }
  .footer__inner > .footer__col--addr { order: 2; }

  /* MODAL on mobile */
  .modal__dialog { padding: 36px 24px 28px; max-width: 100%; }
  .modal__title { font-size: 22px; }
  .modal__sub { font-size: 12px; margin-bottom: 22px; }
}

/* ===== SHEETS (white wrappers, max 1400px) ===== */
.sheet { max-width: 1400px; margin: 0 auto; background: #fff; }
.sheet--dark { background: transparent; }
/* sections inside sheet should not break out */
.sheet > .terms,
.sheet > .final,
.sheet > .territory,
.sheet > .faq { max-width: none; }

/* ===== PARTNERS MARQUEE ===== */
.partners { background: #1c1c1c; overflow: hidden; position: relative; min-height: 90px; }
.partners__marquee { display: flex; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); }
.partners__track { flex-shrink: 0; display: flex; align-items: center; gap: 60px; padding-right: 60px; min-height: 90px; animation: marquee 28s linear infinite; will-change: transform; }
.partners__track img { height: 36px; width: auto; opacity: .85; filter: grayscale(.2); flex-shrink: 0; transition: opacity .3s, filter .3s; }
.partners__track img:hover { opacity: 1; filter: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.partners__overlay { position: absolute; inset: 0; pointer-events: none; display: flex; align-items: stretch; }
.partners__label { position: relative; pointer-events: auto; display: flex; align-items: center; min-height: 90px; width: 240px; padding: 0 30px 0 18px; color: #fff; font-size: 13px; line-height: 1.3; flex-shrink: 0; }
.partners__plate { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 0; filter: drop-shadow(4px 0 10px rgba(0,0,0,.45)); }
.partners__label-text { position: relative; z-index: 1; }

/* ===== REVEAL ON SCROLL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== HOVER POLISH ===== */
.icard, .srccard, .kcard, .mcard, .hcard, .faq__item { transition: transform .35s ease, box-shadow .35s ease, border-color .25s; }
.icard:hover, .srccard:hover, .kcard:not(.kcard--smart):hover { transform: translateY(-4px); box-shadow: 0 14px 30px -16px rgba(28,28,28,.25); border-color: #c9c9c9; }
.faq__item:hover { border-color: #c9c9c9; }
/* .hcard--bordered:hover { background: rgba(20,20,20,.95); } */
.hcard--cta:hover, .btn-grad:hover, .socbtn:hover { transform: translateY(-2px); filter: brightness(1.08); }
button.hcard.hcard--cta { transition: transform .25s, filter .25s; }
.btn-grad, .socbtn { transition: transform .25s, filter .25s, box-shadow .25s; }
.socbtn:hover { box-shadow: 0 8px 20px -6px rgba(145,71,42,.6); }
.header__nav a { position: relative; }
.header__nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: var(--grad); transition: right .3s ease; }
.header__nav a:hover::after { right: 0; }
a.socbtn { color: #fff; }

/* smooth scroll */
html { scroll-behavior: smooth; }

@media (max-width: 768px) {
  .sheet { max-width: 100%; }
  .partners, .partners__track, .partners__label { min-height: 70px; }
  .partners__label { width: 130px; padding: 0 36px 0 16px; font-size: 11px; }
  .partners__track { gap: 40px; padding-right: 40px; animation-duration: 22s; }
  .partners__track img { height: 24px; }
}

/* Legal links inside form consent checkboxes (dark backgrounds) */
.terms__form-check a, .final__form-check a, .modal__check a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255,255,255,.4);
  transition: color .2s, text-decoration-color .2s;
}
.terms__form-check a:hover, .final__form-check a:hover, .modal__check a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

/* ===== EXTRA LIGHT ANIMATIONS ===== */
/* gradient buttons subtle shimmer on hover */
.btn-grad { position: relative; overflow: hidden; }
.btn-grad::before { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transform: skewX(-20deg); transition: left .6s ease; pointer-events: none; }
.btn-grad:hover::before { left: 130%; }

/* hero icon subtle float */
.hero__icon { animation: floaty 4s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* phone icon ring pulse on hover */
.header__phone-icon, .header__phone-mobile-icon { transition: transform .25s, box-shadow .25s; }
.header__phone-icon:hover, .header__phone-mobile:hover .header__phone-mobile-icon { transform: scale(1.08); box-shadow: 0 6px 18px -4px rgba(145,71,42,.6); }

/* card image zoom on hover */
.expert__photo img, .why__photo img, .srccard__photo img { transition: transform .6s ease; }
.expert__photo:hover img, .why__photo:hover img, .srccard:hover .srccard__photo img { transform: scale(1.05); }

/* form fields focus elevation */
.terms__form input:focus, .final__form input:focus { background: rgba(255,255,255,.05); }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
