:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-soft: #EFF6FF;
  --dark: #0F172A;
  --text: #142033;
  --muted: #6B7280;
  --line: #E4EAF3;
  --soft: #F1F5F9;
  --panel: #FFFFFF;
  --footer: #06172D;
  --success: #34C77B;
  --warning: #FFB742;
  --shadow-sm: 0 8px 22px rgba(9, 37, 77, .08);
  --shadow-md: 0 18px 45px rgba(9, 37, 77, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body, input, textarea, select, button {
  font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
.container { max-width: 1180px; }

.site-header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 234, 243, .85);
}
.site-header .navbar { min-height: 74px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--primary) !important;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
}
.brand-mark .material-icons { font-size: 23px; }
.brand-text { font-size: 21px; }
.nav-center { gap: 22px; }
.nav-link {
  color: #172137 !important;
  font-weight: 600;
  font-size: 14px;
  opacity: .82;
}
.nav-link:hover { opacity: 1; color: var(--primary) !important; }
.btn {
  border-radius: 7px;
  font-weight: 800;
  box-shadow: none !important;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 8px; }
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  background: #fff;
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.user-link {
  width: 37px;
  height: 37px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #142033;
  background: #F5F8FC;
  text-decoration: none;
}
.user-link .material-icons { font-size: 21px; }

.hero-section { padding: 70px 0 36px; }
.hero-copy h1 {
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 900;
  color: #071225;
  margin: 0 0 21px;
}
.hero-copy h1 span { color: var(--primary); }
.hero-lead {
  color: var(--muted);
  max-width: 510px;
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 26px;
}
.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 28px;
  margin-bottom: 30px;
  font-weight: 650;
  color: #1E2B3F;
  font-size: 14px;
}
.hero-checks div { display: flex; align-items: center; gap: 9px; }
.check-dot {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  flex: 0 0 auto;
}
.check-dot .material-icons { font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 24px; }
.security-note {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  color: #24324B;
}
.security-note > .material-icons {
  color: #58B8A3;
  background: #E7F7F4;
  border-radius: 11px;
  padding: 7px;
}
.security-note small { color: var(--muted); }

.dashboard-preview {
  min-height: 380px;
  background: #fff;
  border: 1px solid #E8EDF5;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  overflow: hidden;
  max-width: 650px;
  margin-left: auto;
}
.preview-sidebar {
  width: 72px;
  background: #F6FAFF;
  border-right: 1px solid #E7EDF6;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.preview-logo {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 4px;
}
.preview-logo .material-icons { font-size: 32px; }
.side-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
}
.side-icon.active { background: #EAF3FF; color: var(--primary); }
.side-icon .material-icons { font-size: 20px; }
.preview-content { flex: 1; padding: 28px 28px 24px; }
.preview-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.preview-top h3 { margin: 0; font-weight: 900; font-size: 19px; color: #111B2F; }
.preview-top button {
  border: 0;
  background: #F4F7FB;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9AA6B8;
}
.preview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.preview-card {
  min-height: 128px;
  background: #fff;
  border: 1px solid #E7EDF6;
  border-radius: 14px;
  box-shadow: 0 5px 14px rgba(15, 23, 42, .04);
  padding: 18px;
}
.preview-card h4 { font-size: 14px; font-weight: 900; margin-bottom: 8px; color: #172033; }
.preview-card p { font-size: 12px; margin: 0 0 8px; color: #5D687A; }
.preview-card a {
  display: inline-block;
  padding: 7px 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  font-size: 11px;
  text-decoration: none;
  font-weight: 800;
}
.status-card, .notice-card { display: flex; justify-content: space-between; gap: 12px; }
.ok-icon, .bell-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.ok-icon { color: var(--success); background: #E8FAF0; }
.bell-icon { color: var(--warning); background: #FFF4DD; }
.event-card strong { color: var(--primary); margin-right: 8px; }
.ai-card h4 { display: flex; align-items: center; gap: 6px; }
.ai-card h4 .material-icons { color: var(--primary); font-size: 19px; }
.fake-input {
  margin-top: 17px;
  border: 1px solid #E4EAF3;
  background: #FAFCFF;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 12px;
  color: #B0B8C5;
  display: flex;
  justify-content: space-between;
}
.fake-input .material-icons { font-size: 16px; }

section { position: relative; }
.section-title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
  letter-spacing: -.035em;
  text-align: center;
  font-weight: 900;
  color: #10192C;
  margin: 0 0 40px;
}
.section-title.compact { margin-bottom: 24px; font-size: clamp(23px, 2.4vw, 29px); }
.section-title span, .testimonials-section span, .comparison-section b { color: var(--primary); }
.tools-section { padding: 30px 0 28px; }
.tool-grid.six { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.tool-card, .cap-card, .help-grid article, .price-card, .testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(8, 31, 68, .035);
}
.tool-card { min-height: 154px; padding: 20px; }
.tool-card .material-icons {
  color: var(--primary);
  font-size: 34px;
  margin-bottom: 18px;
}
.tool-card h3 { font-size: 15px; font-weight: 900; margin-bottom: 9px; }
.tool-card p { font-size: 12px; line-height: 1.45; color: #36455B; margin: 0; }

.steps-section { padding: 18px 0 24px; }
.steps-row {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  gap: 14px;
  align-items: center;
}
.step-box {
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 14px 20px;
}
.step-box strong { color: var(--primary); font-size: 34px; line-height: 1; }
.step-box b { display: block; font-size: 13px; }
.step-box span { display: block; color: #657084; font-size: 12px; }
.step-arrow { text-align: center; color: #9AA7BB; font-weight: 900; }

.capabilities-section, .why-section { padding: 22px 0 18px; }
.glass-panel {
  background: linear-gradient(180deg, #F5FAFF 0%, #FFFFFF 100%);
  border: 1px solid rgba(229, 237, 247, .9);
  border-radius: 4px;
  padding: 30px 36px;
}
.cap-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.cap-card { padding: 24px; min-height: 217px; }
.cap-card > .material-icons { color: var(--primary); font-size: 44px; margin-bottom: 20px; }
.cap-card h3 { font-size: 16px; font-weight: 900; margin-bottom: 14px; }
.cap-card ul { margin: 0 0 14px; padding-left: 18px; color: #4B596D; font-size: 13px; line-height: 1.7; }
.cap-card li::marker { color: var(--primary); }
.cap-card a { color: var(--primary); font-weight: 900; text-decoration: none; font-size: 13px; }

.help-section { padding: 22px 0 24px; }
.help-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.help-grid article { padding: 20px 22px; min-height: 112px; display: grid; grid-template-columns: 42px 1fr; column-gap: 17px; align-items: start; }
.help-grid .material-icons { color: var(--primary); font-size: 32px; grid-row: span 2; }
.help-grid h3 { font-size: 14px; font-weight: 900; margin: 0 0 4px; }
.help-grid p { color: #4E5D70; font-size: 12px; line-height: 1.45; margin: 0; }

.why-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px 25px; }
.why-grid div { display: flex; align-items: center; gap: 10px; font-weight: 850; font-size: 14px; color: #202C40; }
.why-grid .material-icons {
  color: var(--primary);
  border: 1px solid #DDEBFF;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #fff;
}

.comparison-section { padding: 22px 0 24px; }
.comparison-section .section-title span { color: #6B7280; font-size: 15px; margin: 0 18px; letter-spacing: 0; }
.comparison-table-wrap { max-width: 810px; margin: 0 auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 13px; color: #273246; }
.comparison-table th {
  border: 1px solid #CED8E8;
  padding: 9px 14px;
  background: #F7FAFE;
  font-size: 14px;
}
.comparison-table th:nth-child(2) { color: var(--primary); }
.comparison-table td { border: 1px solid #CED8E8; padding: 8px 14px; }
.comparison-table td:nth-child(2) { color: #24324B; font-weight: 650; }

.pricing-section { padding: 24px 0 34px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.price-card { padding: 28px 28px 24px; min-height: 245px; display: flex; flex-direction: column; }
.price-card h3 { font-size: 21px; font-weight: 900; margin-bottom: 7px; }
.price-card p { color: var(--muted); font-size: 14px; margin-bottom: 17px; }
.price-card ul { padding: 0; margin: 0 0 22px; list-style: none; font-size: 13px; line-height: 1.9; color: #28364D; }
.price-card li::before { content: '✓'; color: var(--primary); font-weight: 900; margin-right: 10px; }
.price-card .btn { margin-top: auto; width: 100%; padding: 10px 14px; }
.price-card.featured { box-shadow: var(--shadow-sm); }

.testimonials-section { padding: 24px 0 34px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.testimonial-card { padding: 22px; display: flex; gap: 17px; min-height: 148px; }
.avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(145deg, #D9EAFE, #F8FBFF);
  border: 1px solid #D8E8FF;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}
.testimonial-card h3 { font-size: 15px; font-weight: 900; margin-bottom: 1px; }
.testimonial-card .role { color: #69778A; font-size: 12px; margin-bottom: 8px; }
.testimonial-card p { font-size: 12px; color: #273449; margin-bottom: 8px; line-height: 1.45; }
.stars { color: var(--primary); letter-spacing: 3px; font-size: 17px; line-height: 1; }

.faq-cta-section { padding: 16px 0 44px; }
.faq-title { font-size: 23px; font-weight: 900; margin-bottom: 14px; letter-spacing: -.025em; }
.faq-list .accordion-item { border: 1px solid var(--line); margin-bottom: 5px; border-radius: 7px !important; overflow: hidden; }
.faq-list .accordion-button { padding: 10px 14px; font-size: 13px; font-weight: 750; box-shadow: none; }
.faq-list .accordion-button:not(.collapsed) { background: #F3F8FF; color: var(--primary); }
.faq-list .accordion-body { font-size: 13px; color: #4E5A6A; }
.final-cta {
  min-height: 222px;
  height: 100%;
  background: linear-gradient(135deg, #0B72F0 0%, #005BE3 100%);
  color: #fff;
  border-radius: 10px;
  padding: 46px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.final-cta h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.16; font-weight: 900; letter-spacing: -.035em; margin-bottom: 12px; }
.final-cta p { color: rgba(255, 255, 255, .9); margin-bottom: 24px; }
.final-cta .btn { min-width: 220px; margin-right: 12px; }
.final-cta .btn-outline-light { border-color: rgba(255, 255, 255, .65); color: #fff; }

.footer {
  background: var(--footer);
  color: rgba(255, 255, 255, .72);
  padding: 42px 0 38px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr .8fr 1.2fr .9fr .9fr; gap: 36px; align-items: start; }
.brand-footer { color: #fff !important; margin-bottom: 12px; }
.brand-footer .brand-mark { background: rgba(9, 105, 232, .18); }
.footer p { margin-bottom: 8px; font-size: 14px; }
.footer .copyright { margin-top: 22px; color: rgba(255,255,255,.55); }
.footer h6 { color: #fff; font-weight: 900; margin-bottom: 13px; }
.footer a { display: block; color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; margin-bottom: 6px; }
.footer a:hover { color: #fff; }
.footer-contact { color: #fff; font-size: 14px; }
.socials { display: flex; gap: 12px; margin-top: 13px; }
.socials .material-icons { color: rgba(255,255,255,.74); font-size: 28px; }

@media (max-width: 1199px) {
  .tool-grid.six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .nav-center { gap: 3px; }
  .hero-section { padding-top: 46px; }
  .dashboard-preview { margin: 10px auto 0; }
  .cap-grid, .help-grid, .pricing-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-row { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .hero-checks { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .dashboard-preview { display: block; min-height: auto; }
  .preview-sidebar { flex-direction: row; width: 100%; height: 64px; border-right: 0; border-bottom: 1px solid #E7EDF6; padding: 0 14px; justify-content: flex-start; }
  .preview-content { padding: 20px; }
  .preview-grid, .tool-grid.six, .cap-grid, .help-grid, .pricing-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .help-grid article { grid-template-columns: 34px 1fr; }
  .glass-panel { padding: 24px 18px; }
  .final-cta { padding: 32px 24px; }
  .final-cta .btn { width: 100%; margin: 0 0 12px; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ===== Fixes 18.06.2026: language, logo, hero, typography, CTA, footer socials ===== */

html.notranslate,
body.notranslate {
  translate: no;
}

.material-icons,
.material-icons.notranslate {
  font-family: 'Material Icons' !important;
  font-weight: normal !important;
  font-style: normal !important;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal !important;
  text-transform: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-copy h1,
.preview-top h3,
.card-title {
  font-weight: 500 !important;
}

.brand-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.footer-logo {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}

.site-header .navbar {
  min-height: 78px;
}

.brand {
  gap: 0;
}

.hero-visual-bg {
  position: relative;
  overflow: hidden;
  padding: 92px 0 58px;
  background:
    radial-gradient(circle at 9% 18%, rgba(37, 99, 235, .13) 0, rgba(37, 99, 235, .07) 22%, transparent 42%),
    radial-gradient(circle at 78% 22%, rgba(29, 78, 216, .13) 0, rgba(29, 78, 216, .05) 26%, transparent 46%),
    linear-gradient(135deg, #ffffff 0%, #F8FBFF 45%, #EEF5FF 100%);
}

.hero-visual-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 76%);
  pointer-events: none;
}

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

.hero-orb-one {
  width: 360px;
  height: 360px;
  right: -110px;
  top: 120px;
  background: rgba(37, 99, 235, .08);
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -80px;
  background: rgba(15, 23, 42, .06);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-copy,
.dashboard-preview,
.tool-card,
.feature-card,
.help-grid article,
.price-card,
.review-card,
.final-cta,
.why-modern-card {
  animation: uiFadeUp .7s ease both;
}

.dashboard-preview {
  transform: translateZ(0);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .14);
  border-color: rgba(37, 99, 235, .13);
}

.dashboard-preview:hover,
.tool-card:hover,
.feature-card:hover,
.price-card:hover,
.review-card:hover,
.why-modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, .12);
}

.tool-card,
.feature-card,
.help-grid article,
.price-card,
.review-card,
.why-modern-card,
.dashboard-preview {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

@keyframes uiFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-kicker {
  width: fit-content;
  margin: 0 auto 12px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 600;
  font-size: 13px;
}

.why-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
}

.why-modern-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.why-modern-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.94);
  border: 1px solid #E2E8F0;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
}

.why-modern-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -44px;
  top: -50px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .07);
}

.why-main-card {
  grid-row: span 2;
  background:
    radial-gradient(circle at 85% 20%, rgba(37,99,235,.16), transparent 34%),
    linear-gradient(135deg, #0F172A 0%, #1D4ED8 100%);
  color: #fff;
  min-height: 300px;
}

.why-main-card p,
.why-main-card .why-metric span {
  color: rgba(255,255,255,.78);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #EFF6FF;
  color: var(--primary);
}

.why-main-card .why-icon {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.why-modern-card h3 {
  position: relative;
  z-index: 1;
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: inherit;
}

.why-modern-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.why-metric {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: grid;
  gap: 4px;
}

.why-metric strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

.comparison-section .section-title span {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  margin: 0 6px;
  border-radius: 999px;
  background: #EFF6FF;
  color: var(--primary);
  font-size: .48em;
  vertical-align: middle;
  font-weight: 500;
}

.final-cta > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.final-cta .btn-outline-light:hover,
.final-cta .btn-outline-light:focus {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #0F172A !important;
}

.final-cta .btn-light:hover,
.final-cta .btn-light:focus {
  color: #0F172A !important;
}

.footer .socials {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .18s ease, background .18s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(37, 99, 235, .28);
}

.social-link img {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 991px) {
  .brand-logo { width: 190px; }
  .why-modern-grid { grid-template-columns: 1fr; }
  .why-main-card { grid-row: auto; min-height: auto; }
  .hero-visual-bg { padding-top: 64px; }
}

@media (max-width: 575px) {
  .brand-logo { width: 170px; }
  .footer-logo { width: 190px; }
  .final-cta > div { gap: 14px; }
}

/* ===== Насыщенность заголовков: 500 ===== */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-copy h1,
.preview-top h3,
.card-title,
.price-card h3,
.feature-card h3,
.tool-card h3,
.help-grid h3,
.why-modern-card h3,
.final-cta h2,
.footer h6 {
  font-weight: 500 !important;
}

/* ===== Русский язык, логотип, галочки и подвал ===== */

html.notranslate,
body.notranslate {
  translate: no;
}

.material-icons,
.material-icons.notranslate {
  font-family: "Material Icons" !important;
  font-weight: normal !important;
  font-style: normal !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
}

.site-header .navbar-brand.brand {
  display: inline-flex;
  align-items: center;
  max-width: 225px;
  padding-top: 0;
  padding-bottom: 0;
}

.brand-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.brand-footer {
  display: inline-flex !important;
  margin-bottom: 14px;
}

.footer-logo {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}

.hero-checks .check-dot {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  flex: 0 0 20px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 4px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  line-height: 0;
}

.hero-check-icon {
  display: block;
  width: 12px;
  height: 12px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer .socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 13px;
}

.footer .social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  transition:
    transform .18s ease,
    background-color .18s ease,
    border-color .18s ease;
}

.footer .social-link:hover,
.footer .social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(37, 99, 235, .30);
}

.footer .social-link img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .brand-logo {
    width: 190px;
  }
}

@media (max-width: 575px) {
  .brand-logo {
    width: 170px;
  }

  .footer-logo {
    width: 190px;
  }
}

/* ===== Логотип со слоганом в шапке ===== */
.site-header .navbar-brand.brand {
  display: inline-flex;
  align-items: center;
  width: 340px;
  max-width: 34vw;
  min-width: 260px;
  padding-top: 6px;
  padding-bottom: 6px;
  overflow: visible;
}

.brand-logo-main {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
}

.site-header .navbar {
  min-height: 88px;
}

@media (max-width: 1199px) {
  .site-header .navbar-brand.brand {
    width: 290px;
    min-width: 230px;
    max-width: 32vw;
  }

  .brand-logo-main {
    max-width: 290px;
  }
}

@media (max-width: 991px) {
  .site-header .navbar {
    min-height: 76px;
  }

  .site-header .navbar-brand.brand {
    width: 250px;
    min-width: 210px;
    max-width: 58vw;
  }

  .brand-logo-main {
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .site-header .navbar {
    min-height: 70px;
  }

  .site-header .navbar-brand.brand {
    width: 215px;
    min-width: 190px;
    max-width: 68vw;
  }

  .brand-logo-main {
    max-width: 215px;
  }
}

/* ===== Тёмный логотип со слоганом в подвале ===== */
.footer .brand-footer {
  display: inline-flex !important;
  align-items: center;
  width: 330px;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 0;
}

.footer-logo-dark {
  display: block;
  width: 100%;
  max-width: 330px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .footer .brand-footer {
    width: 285px;
  }

  .footer-logo-dark {
    max-width: 285px;
  }
}

@media (max-width: 480px) {
  .footer .brand-footer {
    width: 245px;
  }

  .footer-logo-dark {
    max-width: 245px;
  }
}

/* ===== Уменьшение обоих логотипов на 30% ===== */

/* Логотип в шапке: 340px -> 238px */
.site-header .navbar-brand.brand {
  width: 238px;
  max-width: 23.8vw;
  min-width: 182px;
}

.brand-logo-main {
  max-width: 238px;
}

/* Логотип в подвале: 330px -> 231px */
.footer .brand-footer {
  width: 231px;
}

.footer-logo-dark {
  max-width: 231px;
}

@media (max-width: 1199px) {
  /* 290px -> 203px */
  .site-header .navbar-brand.brand {
    width: 203px;
    min-width: 161px;
    max-width: 22.4vw;
  }

  .brand-logo-main {
    max-width: 203px;
  }
}

@media (max-width: 991px) {
  /* 250px -> 175px */
  .site-header .navbar-brand.brand {
    width: 175px;
    min-width: 147px;
    max-width: 40.6vw;
  }

  .brand-logo-main {
    max-width: 175px;
  }
}

@media (max-width: 767px) {
  /* 285px -> 200px */
  .footer .brand-footer {
    width: 200px;
  }

  .footer-logo-dark {
    max-width: 200px;
  }
}

@media (max-width: 575px) {
  /* 215px -> 151px */
  .site-header .navbar-brand.brand {
    width: 151px;
    min-width: 133px;
    max-width: 47.6vw;
  }

  .brand-logo-main {
    max-width: 151px;
  }
}

@media (max-width: 480px) {
  /* 245px -> 172px */
  .footer .brand-footer {
    width: 172px;
  }

  .footer-logo-dark {
    max-width: 172px;
  }
}

