* {
  box-sizing:border-box;
  margin-top:0px;
  margin-right:0px;
  margin-bottom:0px;
  margin-left:0px;
  padding-top:0px;
  padding-right:0px;
  padding-bottom:0px;
  padding-left:0px;
}

:root {
  --primary:#0f172a;
  --primary-hover:#1e293b;
  --accent:#ea580c;
  --accent-hover:#c2410c;
  --bg-light:#f8fafc;
  --bg-white:#ffffff;
  --text-main:#475569;
  --text-dark:#0f172a;
  --text-muted:#94a3b8;
  --border-color:#e2e8f0;
  --border-focus:#ea580c;
  --transition:all 0.3s cubic-bezier(0.4,
0,
0.2,
1);
  --shadow-sm:0 1px 2px 0 rgba(0,
0,
0,
0.05);
  --shadow-md:0 4px 6px -1px rgba(0,
0,
0,
0.08),
0 2px 4px -2px rgba(0,
0,
0,
0.08);
  --shadow-lg:0 10px 15px -3px rgba(0,
0,
0,
0.06),
0 4px 6px -4px rgba(0,
0,
0,
0.06);
  --font:'Inter',
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
sans-serif;
  --container-width:1200px;
  --header-height:80px;
}

html {
  scroll-behavior:smooth;
}

body {
  font-family:var(--font);
  color:var(--text-main);
  background-color:var(--bg-white);
  line-height:1.6;
  overflow-x:hidden;
}

.container {
  width:100%;
  max-width:var(--container-width);
  margin-top:0px;
  margin-right:auto;
  margin-bottom:0px;
  margin-left:auto;
  padding-top:0px;
  padding-right:24px;
  padding-bottom:0px;
  padding-left:24px;
}

section {
  padding-top:90px;
  padding-right:0px;
  padding-bottom:90px;
  padding-left:0px;
}

.section-bg {
  background-color:var(--bg-light);
}

h1,
h2,
h3,
h4 {
  color:var(--text-dark);
  font-weight:700;
  line-height:1.25;
}

h2 {
  font-size:2.25rem;
  margin-bottom:12px;
}

p {
  margin-bottom:16px;
}

.text-center {
  text-align:center;
}

.section-title {
  margin-bottom:60px;
}

.section-subtitle {
  font-size:1.125rem;
  color:var(--text-muted);
  max-width:600px;
  margin-top:0px;
  margin-right:auto;
  margin-bottom:0px;
  margin-left:auto;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font);
  font-size:1rem;
  font-weight:600;
  padding-top:14px;
  padding-right:28px;
  padding-bottom:14px;
  padding-left:28px;
  border-top-left-radius:8px;
  border-top-right-radius:8px;
  border-bottom-right-radius:8px;
  border-bottom-left-radius:8px;
  border-top-width:1px;
  border-top-style:solid;
  border-top-color:transparent;
  border-right-width:1px;
  border-right-style:solid;
  border-right-color:transparent;
  border-bottom-width:1px;
  border-bottom-style:solid;
  border-bottom-color:transparent;
  border-left-width:1px;
  border-left-style:solid;
  border-left-color:transparent;
  border-image-outset:0;
  border-image-repeat:stretch;
  border-image-slice:100%;
  border-image-source:none;
  border-image-width:1;
  cursor:pointer;
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
  outline-color:currentcolor;
  outline-style:none;
  outline-width:medium;
}

.btn-primary {
  background-color:var(--accent);
  color:var(--bg-white);
}

.btn-primary:hover {
  background-color:var(--accent-hover);
}

.btn-secondary {
  background-color:var(--bg-light);
  color:var(--text-dark);
}

.btn-secondary:hover {
  background-color:var(--border-color);
}

.btn-outline {
  background-color:transparent;
  color:var(--text-dark);
}

.btn-outline:hover {
  background-color:var(--text-dark);
  color:var(--bg-white);
}

.btn-sm {
  padding-top:8px;
  padding-right:16px;
  padding-bottom:8px;
  padding-left:16px;
  font-size:0.875rem;
}

.btn-block {
  width:100%;
}

.header {
  height:var(--header-height);
  background-color:var(--bg-white);
}

.logo {
  display:flex;
  align-items:center;
  row-gap:12px;
  column-gap:12px;
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
}

.logo-img {
  height:38px;
  width:auto;
}

.logo-text {
  font-weight:800;
  font-size:1.35rem;
  color:var(--text-dark);
  letter-spacing:-0.5px;
}

.nav {
  display:flex;
  align-items:center;
  row-gap:32px;
  column-gap:32px;
}

.nav-link {
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
  color:var(--text-main);
  font-weight:500;
  font-size:0.95rem;
}

.nav-link:hover {
  color:var(--accent);
}

.header-contacts {
  display:flex;
  align-items:center;
  row-gap:24px;
  column-gap:24px;
}

.phone {
  font-weight:700;
  font-size:1.1rem;
  color:var(--text-dark);
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
}

.phone:hover {
  color:var(--accent);
}

.burger {
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width:24px;
  height:18px;
  background-color:transparent;
  background-position-x:0%;
  background-position-y:0%;
  background-repeat:repeat;
  background-attachment:scroll;
  background-image:none;
  background-size:auto;
  background-origin:padding-box;
  background-clip:border-box;
  border-top-width:medium;
  border-top-style:none;
  border-top-color:currentcolor;
  border-right-width:medium;
  border-right-style:none;
  border-right-color:currentcolor;
  border-bottom-width:medium;
  border-bottom-style:none;
  border-bottom-color:currentcolor;
  border-left-width:medium;
  border-left-style:none;
  border-left-color:currentcolor;
  border-image-outset:0;
  border-image-repeat:stretch;
  border-image-slice:100%;
  border-image-source:none;
  border-image-width:1;
  cursor:pointer;
  z-index:102;
}

.burger span {
  display:block;
  width:100%;
  height:2px;
  background-color:var(--text-dark);
}

.mobile-nav-overlay {
  position:fixed;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background-color:rgba(255,
255,
255,
0.98);
  z-index:101;
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  pointer-events:none;
}

.mobile-nav-overlay.active {
  opacity:1;
  pointer-events:auto;
}

.mobile-nav {
  display:flex;
  flex-direction:column;
  align-items:center;
  row-gap:24px;
  column-gap:24px;
  text-align:center;
}

.mobile-nav-link {
  font-size:1.5rem;
  font-weight:700;
  color:var(--text-dark);
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
}

.mobile-nav-link:hover {
  color:var(--accent);
}

.mobile-nav-contacts {
  margin-top:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  row-gap:16px;
  column-gap:16px;
}

.hero {
  padding-top:calc(var(--header-height) + 60px);
  background-color:var(--bg-white);
}

.hero-container {
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  row-gap:50px;
  column-gap:50px;
  align-items:center;
}

.hero-badge-wrapper {
  margin-bottom:20px;
}

.hero-badge {
  background-color:var(--bg-light);
  color:var(--text-dark);
  font-size:0.85rem;
  font-weight:600;
  padding-top:6px;
  padding-right:14px;
  padding-bottom:6px;
  padding-left:14px;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  border-bottom-right-radius:30px;
  border-bottom-left-radius:30px;
  display:inline-block;
}

.hero-title {
  font-size:3rem;
  line-height:1.15;
  margin-bottom:24px;
  letter-spacing:-0.5px;
}

.hero-description {
  font-size:1.125rem;
  color:var(--text-main);
  margin-bottom:36px;
  max-width:540px;
}

.hero-actions {
  display:flex;
  align-items:center;
  row-gap:20px;
  column-gap:20px;
}

.phone-icon {
  margin-right:8px;
}

.hero-image-area {
  display:flex;
  justify-content:flex-end;
}

.hero-image-card {
  position:relative;
  border-top-left-radius:16px;
  border-top-right-radius:16px;
  border-bottom-right-radius:16px;
  border-bottom-left-radius:16px;
  overflow-x:hidden;
  overflow-y:hidden;
  box-shadow:var(--shadow-lg);
  width:100%;
}

.hero-img {
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}

.advantages-grid {
  display:grid;
  grid-template-columns:repeat(3,
1fr);
  row-gap:32px;
  column-gap:32px;
}

.advantage-card {
  background-color:var(--bg-white);
  padding-top:32px;
  padding-right:32px;
  padding-bottom:32px;
  padding-left:32px;
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  border-bottom-right-radius:12px;
  border-bottom-left-radius:12px;
}

.advantage-card:hover {
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
}

.adv-icon {
  font-size:2.25rem;
  margin-bottom:20px;
}

.advantage-card h3 {
  font-size:1.25rem;
  margin-bottom:12px;
}

.advantage-card p {
  color:var(--text-main);
  font-size:0.95rem;
  margin-bottom:0px;
}

.catalog-grid {
  display:grid;
  grid-template-columns:repeat(3,
1fr);
  row-gap:32px;
  column-gap:32px;
}

.product-card {
  background-color:var(--bg-white);
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  border-bottom-right-radius:12px;
  border-bottom-left-radius:12px;
  overflow-x:hidden;
  overflow-y:hidden;
  display:flex;
  flex-direction:column;
}

.product-card:hover {
  box-shadow:var(--shadow-lg);
}

.product-img-box {
  aspect-ratio:16 / 10;
  overflow-x:hidden;
  overflow-y:hidden;
}

.product-img-box img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-card:hover .product-img-box img {
  transform:scale(1.05);
}

.product-content {
  padding-top:24px;
  padding-right:24px;
  padding-bottom:24px;
  padding-left:24px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}

.product-content h3 {
  font-size:1.35rem;
  margin-bottom:12px;
}

.product-desc {
  font-size:0.9rem;
  color:var(--text-main);
  margin-bottom:20px;
  min-height:54px;
}

.product-specs {
  width:100%;
  border-collapse:collapse;
  margin-bottom:24px;
  font-size:0.85rem;
}

.product-specs td {
  padding-top:8px;
  padding-right:0px;
  padding-bottom:8px;
  padding-left:0px;
  color:var(--text-main);
}

.product-specs td:last-child {
  text-align:right;
  font-weight:600;
  color:var(--text-dark);
}

.product-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
}

.product-price {
  font-weight:700;
  color:var(--text-dark);
  font-size:1rem;
}

.solutions-list {
  display:flex;
  flex-direction:column;
  row-gap:80px;
  column-gap:80px;
}

.solution-block {
  display:grid;
  grid-template-columns:1fr 1fr;
  row-gap:60px;
  column-gap:60px;
  align-items:center;
}

.solution-block-reverse {
  direction:rtl;
}

.solution-block-reverse .solution-details {
  direction:ltr;
}

.solution-img-wrapper {
  border-top-left-radius:16px;
  border-top-right-radius:16px;
  border-bottom-right-radius:16px;
  border-bottom-left-radius:16px;
  overflow-x:hidden;
  overflow-y:hidden;
  box-shadow:var(--shadow-md);
}

.solution-img-wrapper img {
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.solution-num {
  font-size:3.5rem;
  font-weight:800;
  color:var(--border-color);
  line-height:1;
  margin-bottom:12px;
}

.solution-details h3 {
  font-size:1.75rem;
  margin-bottom:16px;
}

.solution-details p {
  font-size:1.05rem;
  margin-bottom:24px;
}

.benefit-points {
  list-style-position:outside;
  list-style-image:none;
  list-style-type:none;
}

.benefit-points li {
  position:relative;
  padding-left:28px;
  margin-bottom:12px;
  font-weight:500;
  color:var(--text-dark);
}

.benefit-points li::before {
  content:"✓";
  position:absolute;
  left:0px;
  top:0px;
  color:var(--accent);
  font-weight:700;
  font-size:1.1rem;
}

.materials-grid {
  display:grid;
  grid-template-columns:repeat(6,
1fr);
  row-gap:20px;
  column-gap:20px;
}

.material-card {
  background-color:var(--bg-white);
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  border-bottom-right-radius:12px;
  border-bottom-left-radius:12px;
  padding-top:24px;
  padding-right:24px;
  padding-bottom:24px;
  padding-left:24px;
  text-align:center;
}

.material-card:hover {
  box-shadow:var(--shadow-md);
}

.material-card-icon {
  font-size:2.5rem;
  margin-bottom:16px;
}

.material-card h4 {
  font-size:1.1rem;
  margin-bottom:8px;
}

.material-card p {
  font-size:0.85rem;
  color:var(--text-main);
  margin-bottom:0px;
}

.audience-grid {
  display:grid;
  grid-template-columns:repeat(5,
1fr);
  row-gap:24px;
  column-gap:24px;
}

.audience-card {
  background-color:var(--bg-light);
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  border-bottom-right-radius:12px;
  border-bottom-left-radius:12px;
  padding-top:24px;
  padding-right:24px;
  padding-bottom:24px;
  padding-left:24px;
  position:relative;
}

.audience-card:hover {
  background-color:var(--bg-white);
  box-shadow:var(--shadow-md);
}

.aud-number {
  font-size:2rem;
  font-weight:800;
  color:var(--border-color);
  margin-bottom:16px;
}

.audience-card h4 {
  font-size:1.15rem;
  margin-bottom:12px;
}

.audience-card p {
  font-size:0.85rem;
  color:var(--text-main);
  margin-bottom:0px;
}

.process-steps {
  display:grid;
  grid-template-columns:repeat(5,
1fr);
  row-gap:32px;
  column-gap:32px;
  position:relative;
}

.process-steps::before {
  content:"";
  position:absolute;
  top:36px;
  left:40px;
  right:40px;
  height:2px;
  background-color:var(--border-color);
  z-index:1;
}

.step-card {
  position:relative;
  z-index:2;
  text-align:center;
}

.step-icon-wrap {
  width:72px;
  height:72px;
  border-top-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  border-bottom-left-radius:50%;
  background-color:var(--bg-white);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:0px;
  margin-right:auto;
  margin-bottom:24px;
  margin-left:auto;
}

.step-num-bubble {
  font-size:1.5rem;
  font-weight:700;
  color:var(--text-dark);
}

.step-card:hover .step-icon-wrap {
  background-color:var(--accent);
}

.step-card:hover .step-num-bubble {
  color:var(--bg-white);
}

.step-card h4 {
  font-size:1.15rem;
  margin-bottom:12px;
}

.step-card p {
  font-size:0.85rem;
  color:var(--text-main);
  margin-bottom:0px;
}

.accordion-container {
  max-width:800px;
  margin-top:0px;
  margin-right:auto;
  margin-bottom:0px;
  margin-left:auto;
}

.accordion-header {
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:24px;
  padding-right:0px;
  padding-bottom:24px;
  padding-left:0px;
  background-color:transparent;
  background-position-x:0%;
  background-position-y:0%;
  background-repeat:repeat;
  background-attachment:scroll;
  background-image:none;
  background-size:auto;
  background-origin:padding-box;
  background-clip:border-box;
  border-top-width:medium;
  border-top-style:none;
  border-top-color:currentcolor;
  border-right-width:medium;
  border-right-style:none;
  border-right-color:currentcolor;
  border-bottom-width:medium;
  border-bottom-style:none;
  border-bottom-color:currentcolor;
  border-left-width:medium;
  border-left-style:none;
  border-left-color:currentcolor;
  border-image-outset:0;
  border-image-repeat:stretch;
  border-image-slice:100%;
  border-image-source:none;
  border-image-width:1;
  outline-color:currentcolor;
  outline-style:none;
  outline-width:medium;
  font-family:var(--font);
  font-size:1.15rem;
  font-weight:600;
  color:var(--text-dark);
  cursor:pointer;
  text-align:left;
}

.accordion-trigger-icon {
  font-size:1.5rem;
  color:var(--text-muted);
}

.accordion-content {
  max-height:0px;
  overflow-x:hidden;
  overflow-y:hidden;
  transition-property:max-height;
  transition-duration:0.3s;
  transition-timing-function:ease-out;
  transition-delay:0s;
  transition-behavior:normal;
}

.accordion-content-inner {
  padding-bottom:24px;
  font-size:1rem;
  color:var(--text-main);
}

.accordion-item.active .accordion-trigger-icon {
  transform:rotate(45deg);
  color:var(--accent);
}

.request-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  row-gap:60px;
  column-gap:60px;
  align-items:center;
}

.request-info h2 {
  font-size:2.25rem;
  margin-bottom:20px;
}

.request-info p {
  font-size:1.1rem;
  margin-bottom:40px;
}

.contact-details {
  display:flex;
  flex-direction:column;
  row-gap:24px;
  column-gap:24px;
}

.contact-detail-item {
  display:flex;
  align-items:center;
  row-gap:16px;
  column-gap:16px;
}

.contact-icon {
  font-size:1.75rem;
  width:48px;
  height:48px;
  background-color:var(--bg-white);
  border-top-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  border-bottom-left-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-sm);
}

.detail-label {
  font-size:0.85rem;
  color:var(--text-muted);
}

.detail-value {
  font-size:1.15rem;
  font-weight:700;
  color:var(--text-dark);
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
}

.request-form-card {
  background-color:var(--bg-white);
  padding-top:40px;
  padding-right:40px;
  padding-bottom:40px;
  padding-left:40px;
  border-top-left-radius:16px;
  border-top-right-radius:16px;
  border-bottom-right-radius:16px;
  border-bottom-left-radius:16px;
  box-shadow:var(--shadow-lg);
}

.form-group {
  margin-bottom:20px;
}

.form-group label {
  display:block;
  font-size:0.85rem;
  font-weight:600;
  color:var(--text-dark);
  margin-bottom:8px;
}

.form-group input,
.form-group select {
  width:100%;
  height:48px;
  padding-top:0px;
  padding-right:16px;
  padding-bottom:0px;
  padding-left:16px;
  border-top-left-radius:8px;
  border-top-right-radius:8px;
  border-bottom-right-radius:8px;
  border-bottom-left-radius:8px;
  font-family:var(--font);
  font-size:0.95rem;
  outline-color:currentcolor;
  outline-style:none;
  outline-width:medium;
}

.form-group input:focus,
.form-group select:focus {
  box-shadow:rgba(234,
88,
12,
0.1) 0px 0px 0px 3px;
}

.form-agreement {
  font-size:0.75rem;
  color:var(--text-muted);
  margin-top:16px;
  line-height:1.4;
  text-align:center;
}

.form-agreement a {
  color:var(--text-main);
}

.success-card svg {
  margin-bottom:16px;
}

.footer {
  background-color:var(--primary);
  color:var(--bg-light);
  padding-top:80px;
  padding-right:0px;
  padding-bottom:0px;
  padding-left:0px;
}

.footer-container {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  row-gap:60px;
  column-gap:60px;
  padding-bottom:60px;
  border-bottom-width:1px;
  border-bottom-style:solid;
  border-bottom-color:rgb(30,
41,
59);
}

.footer-brand .logo {
  margin-bottom:24px;
}

.footer-brand .logo-text {
  color:var(--bg-white);
}

.footer-desc {
  color:var(--text-muted);
  font-size:0.9rem;
  max-width:320px;
}

.footer-menu {
  display:flex;
  flex-direction:column;
  row-gap:16px;
  column-gap:16px;
}

.footer-contacts {
  display:flex;
  flex-direction:column;
  row-gap:16px;
  column-gap:16px;
}

.footer h4 {
  color:var(--bg-white);
  font-size:1.1rem;
  margin-bottom:8px;
}

.footer-menu a,
.footer-contacts a {
  color:var(--text-muted);
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
  font-size:0.9rem;
}

.footer-menu a:hover,
.footer-contacts a:hover {
  color:var(--accent);
}

.footer-contact-link {
  font-weight:700;
  font-size:1.1rem !important;
  color:var(--bg-white) !important;
}

.footer-contact-text {
  font-size:0.9rem;
  color:var(--text-muted);
}

.footer-bottom {
  background-color:rgb(2,
6,
23);
  padding-top:24px;
  padding-right:0px;
  padding-bottom:24px;
  padding-left:0px;
}

.footer-bottom-container {
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:0.8rem;
  color:var(--text-muted);
}

.conf-link {
  color:var(--text-muted);
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
}

.conf-link:hover {
  color:var(--accent);
}

.modal-overlay {
  position:fixed;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  background-color:rgba(15,
23,
42,
0.6);
  z-index:200;
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  pointer-events:none;
  backdrop-filter:blur(4px);
}

.modal-overlay.active {
  opacity:1;
  pointer-events:auto;
}

.modal-box {
  background-color:var(--bg-white);
  border-top-left-radius:16px;
  border-top-right-radius:16px;
  border-bottom-right-radius:16px;
  border-bottom-left-radius:16px;
  max-width:460px;
  width:100%;
  padding-top:40px;
  padding-right:40px;
  padding-bottom:40px;
  padding-left:40px;
  box-shadow:var(--shadow-lg);
  position:relative;
  transform:translateY(20px);
}

.modal-overlay.active .modal-box {
  transform:translateY(0px);
}

.modal-close-btn {
  position:absolute;
  top:20px;
  right:20px;
  background-color:transparent;
  background-position-x:0%;
  background-position-y:0%;
  background-repeat:repeat;
  background-attachment:scroll;
  background-image:none;
  background-size:auto;
  background-origin:padding-box;
  background-clip:border-box;
  border-top-width:medium;
  border-top-style:none;
  border-top-color:currentcolor;
  border-right-width:medium;
  border-right-style:none;
  border-right-color:currentcolor;
  border-bottom-width:medium;
  border-bottom-style:none;
  border-bottom-color:currentcolor;
  border-left-width:medium;
  border-left-style:none;
  border-left-color:currentcolor;
  border-image-outset:0;
  border-image-repeat:stretch;
  border-image-slice:100%;
  border-image-source:none;
  border-image-width:1;
  font-size:1.75rem;
  line-height:1;
  cursor:pointer;
  color:var(--text-muted);
}

.modal-close-btn:hover {
  color:var(--text-dark);
}

.modal-box-header {
  margin-bottom:24px;
}

.modal-box-header h3 {
  font-size:1.5rem;
  margin-bottom:8px;
}

.modal-box-header p {
  font-size:0.9rem;
  color:var(--text-muted);
  margin-bottom:0px;
}

.cookie-banner {
  position:fixed;
  bottom:24px;
  left:24px;
  right:24px;
  background-color:var(--bg-white);
  box-shadow:var(--shadow-lg);
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  border-bottom-right-radius:12px;
  border-bottom-left-radius:12px;
  padding-top:16px;
  padding-right:24px;
  padding-bottom:16px;
  padding-left:24px;
  z-index:150;
  transform:translateY(150%);
  transition-property:transform;
  transition-duration:0.4s;
  transition-timing-function:cubic-bezier(0.4,
0,
0.2,
1);
  transition-delay:0s;
  transition-behavior:normal;
}

.cookie-banner.active {
  transform:translateY(0px);
}

.cookie-content {
  display:flex;
  align-items:center;
  justify-content:space-between;
  row-gap:24px;
  column-gap:24px;
}

.cookie-content span {
  font-size:0.85rem;
  color:var(--text-main);
  line-height:1.5;
}

.cookie-content a {
  color:var(--text-dark);
  text-decoration-color:currentcolor;
  text-decoration-line:underline;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
}

.cookie-content button {
  flex-shrink:0;
}

:root {
  --header-height:126px;
}

.header {
  position:fixed;
  top:0px;
  left:0px;
  right:0px;
  z-index:100;
  height:auto;
  background-color:var(--bg-white);
}

.header.header-sticky {
  height:auto;
  box-shadow:var(--shadow-md);
}

.header-top {
  height:76px;
  background-color:var(--bg-white);
}

.header.header-sticky .header-top {
  height:70px;
}

.header-top-container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:100%;
  row-gap:30px;
  column-gap:30px;
}

.header-top .logo {
  flex-shrink:0;
}

.header-top .logo-img {
  display:block;
  width:auto;
  max-width:220px;
  height:48px;
  object-fit:contain;
}

.header-contacts {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  row-gap:18px;
  column-gap:18px;
  margin-left:auto;
  text-wrap-mode:nowrap;
  white-space-collapse:collapse;
}

.header-contacts .phone {
  font-size:1.05rem;
  font-weight:700;
}

.header-contacts .btn {
  padding-top:10px;
  padding-right:20px;
  padding-bottom:10px;
  padding-left:20px;
  font-size:0.9rem;
}

.header-socials {
  display:flex;
  align-items:center;
  row-gap:8px;
  column-gap:8px;
}

.mobile-socials {
  display:flex;
  align-items:center;
  row-gap:8px;
  column-gap:8px;
}

.header-social-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  min-width:38px;
  padding-top:0px;
  padding-right:0px;
  padding-bottom:0px;
  padding-left:0px;
  border-top-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  border-bottom-left-radius:50%;
  color:var(--text-dark);
  background-color:var(--bg-white);
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
}

.header-social-link svg {
  width:18px;
  height:18px;
  fill:currentcolor;
}

.social-icon-img {
  display:block;
  width:18px;
  height:18px;
  object-fit:contain;
}

.header-social-link:hover {
  color:var(--bg-white);
  background-color:var(--accent);
}

.header-social-link:hover .social-icon-img {
  filter:brightness(0) invert(1);
}

.header-bottom {
  height:50px;
  background-color:var(--primary);
}

.header-bottom .container {
  height:100%;
}

.header-bottom .nav {
  display:flex;
  align-items:center;
  height:100%;
  row-gap:0px;
  column-gap:0px;
}

.header-bottom .nav-link {
  position:relative;
  display:flex;
  align-items:center;
  height:100%;
  padding-top:0px;
  padding-right:20px;
  padding-bottom:0px;
  padding-left:20px;
  color:var(--bg-white);
  font-size:0.95rem;
  font-weight:600;
  text-wrap-mode:nowrap;
  white-space-collapse:collapse;
  text-decoration-color:currentcolor;
  text-decoration-line:none;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
}

.header-bottom .nav-link:hover {
  color:var(--bg-white);
  background-color:var(--accent);
}

.header-bottom .nav-link:not(:last-child)::after {
  content:"";
  position:absolute;
  right:0px;
  top:50%;
  width:1px;
  height:18px;
  background-color:rgba(255,
255,
255,
0.15);
  transform:translateY(-50%);
}

#ilda9.hero {
  position:relative;
  background-color:var(--primary);
  background-image:radial-gradient(circle at 85% 30%,
rgba(234,
88,
12,
0.25) 0%,
transparent 55%),
linear-gradient(135deg,
rgba(15,
23,
42,
0.95) 0%,
rgba(15,
23,
42,
0.86) 50%,
rgba(15,
23,
42,
0.74) 100%),
url("/staticfiles/5-%D0%9C%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C%D0%BD%D1%8B%D0%B8-%D0%B4%D1%80%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C%D0%BD%D1%8B%D0%B8-%D0%BA%D0%BE%D0%BC%D0%BF%D0%BB%D0%B5%D0%BA%D1%81.PNG");
  background-size:cover;
  background-position-x:center;
  background-position-y:center;
  background-repeat:no-repeat;
  background-attachment:scroll;
  color:var(--bg-white);
  overflow-x:hidden;
  overflow-y:hidden;
}

#ilda9.hero::before {
  content:"";
  position:absolute;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  background-color:rgba(0,
0,
0,
0);
  background-position-x:0%;
  background-position-y:0%;
  background-repeat:repeat;
  background-attachment:scroll;
  background-image:radial-gradient(circle at 15% 40%,
rgba(234,
88,
12,
0.18) 0%,
transparent 60%);
  background-size:auto;
  background-origin:padding-box;
  background-clip:border-box;
  pointer-events:none;
}

.hero-container {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  row-gap:48px;
  column-gap:48px;
  align-items:center;
}

.hero-content .hero-badge {
  background-color:rgba(255,
255,
255,
0.12);
  border-top-width:1px;
  border-top-style:solid;
  border-top-color:rgba(255,
255,
255,
0.25);
  border-right-width:1px;
  border-right-style:solid;
  border-right-color:rgba(255,
255,
255,
0.25);
  border-bottom-width:1px;
  border-bottom-style:solid;
  border-bottom-color:rgba(255,
255,
255,
0.25);
  border-left-width:1px;
  border-left-style:solid;
  border-left-color:rgba(255,
255,
255,
0.25);
  border-image-outset:0;
  border-image-repeat:stretch;
  border-image-slice:100%;
  border-image-source:none;
  border-image-width:1;
  color:rgb(255,
255,
255);
  backdrop-filter:blur(8px);
}

.hero-title {
  color:rgb(255,
255,
255);
  font-size:3.1rem;
  line-height:1.15;
  margin-bottom:24px;
  letter-spacing:-0.5px;
  text-shadow:rgba(0,
0,
0,
0.35) 0px 2px 12px;
}

.hero-description {
  color:rgb(226,
232,
240);
  font-size:1.15rem;
  line-height:1.6;
  margin-bottom:34px;
  max-width:580px;
}

.hero-actions {
  display:flex;
  align-items:center;
  row-gap:18px;
  column-gap:18px;
  margin-bottom:0;
}

.hero-actions .btn-hero-phone {
  background-color:rgba(255,
255,
255,
0.12);
  color:rgb(255,
255,
255);
  border-top-color:rgba(255,
255,
255,
0.28);
  border-right-color:rgba(255,
255,
255,
0.28);
  border-bottom-color:rgba(255,
255,
255,
0.28);
  border-left-color:rgba(255,
255,
255,
0.28);
  backdrop-filter:blur(8px);
}

.hero-actions .btn-hero-phone:hover {
  background-color:rgba(255,
255,
255,
0.24);
  border-top-color:rgb(255,
255,
255);
  border-right-color:rgb(255,
255,
255);
  border-bottom-color:rgb(255,
255,
255);
  border-left-color:rgb(255,
255,
255);
  color:rgb(255,
255,
255);
}

.hero-features {
  display:grid;
  grid-template-columns:repeat(3,
1fr);
  row-gap:20px;
  column-gap:20px;
  padding-top:26px;
  border-top-width:1px;
  border-top-style:solid;
  border-top-color:rgba(255,
255,
255,
0.16);
}

.hero-feature-item {
  display:flex;
  flex-direction:column;
  row-gap:4px;
  column-gap:4px;
}

.hero-feature-val {
  font-size:1.35rem;
  font-weight:800;
  color:rgb(251,
146,
60);
  line-height:1.2;
}

.hero-feature-lbl {
  font-size:0.85rem;
  color:rgb(203,
213,
225);
  line-height:1.3;
}

.hero-image-area {
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-image-card {
  position:relative;
  border-top-left-radius:20px;
  border-top-right-radius:20px;
  border-bottom-right-radius:20px;
  border-bottom-left-radius:20px;
  overflow-x:hidden;
  overflow-y:hidden;
  box-shadow:rgba(0,
0,
0,
0.5) 0px 24px 60px,
rgba(255,
255,
255,
0.15) 0px 0px 0px 1px;
  background-color:rgba(15,
23,
42,
0.6);
  background-position-x:0%;
  background-position-y:0%;
  background-repeat:repeat;
  background-attachment:scroll;
  background-image:none;
  background-size:auto;
  background-origin:padding-box;
  background-clip:border-box;
  backdrop-filter:blur(12px);
  width:100%;
  max-width:520px;
}

.hero-image-card:hover {
  transform:translateY(-6px);
  box-shadow:rgba(0,
0,
0,
0.6) 0px 30px 70px,
rgba(234,
88,
12,
0.45) 0px 0px 0px 1px;
}

.hero-img {
  width:100%;
  height:100%;
  min-height:380px;
  max-height:480px;
  object-fit:cover;
  display:block;
  transition-property:transform;
  transition-duration:0.6s;
  transition-timing-function:cubic-bezier(0.4,
0,
0.2,
1);
  transition-delay:0s;
  transition-behavior:normal;
}

.hero-image-card:hover .hero-img {
  transform:scale(1.04);
}

.hero-image-badge {
  position:absolute;
  bottom:20px;
  left:20px;
  background-color:rgba(15,
23,
42,
0.88);
  background-position-x:0%;
  background-position-y:0%;
  background-repeat:repeat;
  background-attachment:scroll;
  background-image:none;
  background-size:auto;
  background-origin:padding-box;
  background-clip:border-box;
  backdrop-filter:blur(12px);
  border-top-width:1px;
  border-top-style:solid;
  border-top-color:rgba(255,
255,
255,
0.2);
  border-right-width:1px;
  border-right-style:solid;
  border-right-color:rgba(255,
255,
255,
0.2);
  border-bottom-width:1px;
  border-bottom-style:solid;
  border-bottom-color:rgba(255,
255,
255,
0.2);
  border-left-width:1px;
  border-left-style:solid;
  border-left-color:rgba(255,
255,
255,
0.2);
  border-image-outset:0;
  border-image-repeat:stretch;
  border-image-slice:100%;
  border-image-source:none;
  border-image-width:1;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  border-bottom-right-radius:30px;
  border-bottom-left-radius:30px;
  padding-top:9px;
  padding-right:18px;
  padding-bottom:9px;
  padding-left:18px;
  display:inline-flex;
  align-items:center;
  row-gap:10px;
  column-gap:10px;
  color:rgb(255,
255,
255);
  font-size:0.88rem;
  font-weight:600;
  box-shadow:rgba(0,
0,
0,
0.4) 0px 8px 24px;
}

.badge-dot {
  width:9px;
  height:9px;
  border-top-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  border-bottom-left-radius:50%;
  background-color:rgb(34,
197,
94);
  box-shadow:rgb(34,
197,
94) 0px 0px 10px;
}

.advantages .adv-icon {
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding-top:6px;
  padding-right:10px;
  padding-bottom:6px;
  padding-left:10px;
  border-top-left-radius:8px;
  border-top-right-radius:8px;
  border-bottom-right-radius:8px;
  border-bottom-left-radius:8px;
  background-color:var(--primary);
  color:var(--bg-white);
  font-size:1rem;
  font-weight:800;
  line-height:1;
}

.catalog-disclaimer {
  margin-top:28px;
  margin-right:auto;
  margin-bottom:0px;
  margin-left:auto;
  padding-top:14px;
  padding-right:18px;
  padding-bottom:14px;
  padding-left:18px;
  background-color:var(--bg-white);
  font-size:0.9rem;
}

.accordion-content-inner ul {
  margin-top:12px;
  margin-right:0px;
  margin-bottom:18px;
  margin-left:0px;
  padding-left:22px;
}

.accordion-content-inner li {
  margin-bottom:6px;
}

.mobile-nav-close {
  position:absolute;
  top:20px;
  right:24px;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-top-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  border-bottom-left-radius:50%;
  color:var(--text-dark);
  font-family:var(--font);
  font-size:24px;
  font-weight:300;
  line-height:1;
  cursor:pointer;
}

.mobile-nav-close:hover {
  color:var(--bg-white);
}

.hero-content {
  min-width:0px;
}

.hero-image-area {
  min-width:0px;
}

.hero-image-card {
  min-width:0px;
}

.form-consent {
  display:flex;
  align-items:flex-start;
  row-gap:10px;
  column-gap:10px;
  margin-top:14px;
  margin-right:0px;
  margin-bottom:18px;
  margin-left:0px;
  font-size:12px;
  line-height:1.45;
  color:rgb(107,
114,
128);
  cursor:pointer;
}

.form-consent input[type="checkbox"] {
  width:17px;
  height:17px;
  min-width:17px;
  margin-top:1px;
  accent-color:rgb(17,
25,
110);
  cursor:pointer;
}

.form-consent a {
  color:rgb(17,
25,
110);
  text-decoration-color:currentcolor;
  text-decoration-line:underline;
  text-decoration-style:solid;
  text-decoration-thickness:auto;
}

#ie2zwz .section-title {
  margin-bottom:48px;
}

#ie2zwz .advantages-grid {
  display:grid;
  grid-template-columns:repeat(3,
1fr);
  row-gap:28px;
  column-gap:28px;
}

#ie2zwz .advantage-card {
  display:flex;
  flex-direction:column;
  background-color:var(--bg-white,
#ffffff);
  padding-top:32px;
  padding-right:28px;
  padding-bottom:32px;
  padding-left:28px;
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  border-bottom-right-radius:12px;
  border-bottom-left-radius:12px;
  border-top-width:1px;
  border-right-width:1px;
  border-bottom-width:1px;
  border-left-width:1px;
  border-top-style:solid;
  border-right-style:solid;
  border-bottom-style:solid;
  border-left-style:solid;
  border-top-color:rgba(0,
0,
0,
0.08);
  border-right-color:rgba(0,
0,
0,
0.08);
  border-bottom-color:rgba(0,
0,
0,
0.08);
  border-left-color:rgba(0,
0,
0,
0.08);
  border-image-source:none;
  border-image-slice:100%;
  border-image-width:1;
  border-image-outset:0;
  border-image-repeat:stretch;
  box-shadow:rgba(0,
0,
0,
0.03) 0px 4px 16px;
  transition-behavior:normal,
normal,
normal;
  transition-duration:0.25s,
0.25s,
0.25s;
  transition-timing-function:ease,
ease,
ease;
  transition-delay:0s,
0s,
0s;
  transition-property:transform,
box-shadow,
border-color;
  height:100%;
}

#ie2zwz .advantage-card:hover {
  transform:translateY(-5px);
  box-shadow:var(--shadow-md,
0 12px 24px rgba(0,
0,
0,
0.08));
  border-top-color:rgba(0,
0,
0,
0.15);
  border-right-color:rgba(0,
0,
0,
0.15);
  border-bottom-color:rgba(0,
0,
0,
0.15);
  border-left-color:rgba(0,
0,
0,
0.15);
}

#ie2zwz .adv-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  min-height:40px;
  padding-top:6px;
  padding-right:14px;
  padding-bottom:6px;
  padding-left:14px;
  border-top-left-radius:8px;
  border-top-right-radius:8px;
  border-bottom-right-radius:8px;
  border-bottom-left-radius:8px;
  background-color:var(--primary,
#ff9900);
  color:var(--bg-white,
#ffffff);
  font-size:1.1rem;
  font-weight:800;
  line-height:1;
  margin-bottom:20px;
  letter-spacing:0.02em;
}

#ie2zwz .advantage-card h3 {
  font-size:1.25rem;
  font-weight:700;
  line-height:1.3;
  margin-bottom:12px;
  color:var(--text-dark,
#1f2937);
}

#ie2zwz .advantage-card p {
  color:var(--text-main,
#4b5563);
  font-size:0.95rem;
  line-height:1.55;
  margin-bottom:0px;
}

#ilda9.hero {
  position:relative;
  background-color:var(--primary,
#0f172a);
  background-image:radial-gradient(circle at 85% 30%,
rgba(234,
88,
12,
0.25) 0%,
transparent 55%),
linear-gradient(135deg,
rgba(15,
23,
42,
0.95) 0%,
rgba(15,
23,
42,
0.86) 50%,
rgba(15,
23,
42,
0.74) 100%),
url("/staticfiles/5-%D0%9C%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C%D0%BD%D1%8B%D0%B8-%D0%B4%D1%80%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C%D0%BD%D1%8B%D0%B8-%D0%BA%D0%BE%D0%BC%D0%BF%D0%BB%D0%B5%D0%BA%D1%81.PNG");
  background-size:cover;
  background-position-x:center;
  background-position-y:center;
  background-repeat:no-repeat;
  color:var(--bg-white,
#ffffff);
  overflow-x:hidden;
  overflow-y:hidden;
  padding-top:calc(var(--header-height,
70px) + 36px);
  padding-bottom:70px;
}

#ilda9.hero::before {
  content:"";
  position:absolute;
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  background-image:radial-gradient(circle at 15% 40%,
rgba(234,
88,
12,
0.18) 0%,
transparent 60%);
  pointer-events:none;
}

#ilda9 .hero-container {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  row-gap:40px;
  column-gap:48px;
  align-items:center;
}

#ilda9 .hero-content {
  min-width:0px;
}

#ilda9 .hero-badge-wrapper {
  margin-bottom:20px;
}

#ilda9 .hero-badge {
  background-color:rgba(255,
255,
255,
0.12);
  border-top-width:1px;
  border-right-width:1px;
  border-bottom-width:1px;
  border-left-width:1px;
  border-top-style:solid;
  border-right-style:solid;
  border-bottom-style:solid;
  border-left-style:solid;
  border-top-color:rgba(255,
255,
255,
0.25);
  border-right-color:rgba(255,
255,
255,
0.25);
  border-bottom-color:rgba(255,
255,
255,
0.25);
  border-left-color:rgba(255,
255,
255,
0.25);
  border-image-source:none;
  border-image-slice:100%;
  border-image-width:1;
  border-image-outset:0;
  border-image-repeat:stretch;
  color:rgb(255,
255,
255);
  font-size:0.85rem;
  font-weight:600;
  padding-top:6px;
  padding-right:14px;
  padding-bottom:6px;
  padding-left:14px;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  border-bottom-right-radius:30px;
  border-bottom-left-radius:30px;
  display:inline-block;
  backdrop-filter:blur(8px);
}

#ilda9 .hero-title {
  color:rgb(255,
255,
255);
  font-size:3.1rem;
  line-height:1.15;
  margin-bottom:24px;
  letter-spacing:-0.5px;
  text-shadow:rgba(0,
0,
0,
0.35) 0px 2px 12px;
}

#ilda9 .hero-description {
  color:rgb(226,
232,
240);
  font-size:1.15rem;
  line-height:1.6;
  margin-bottom:34px;
  max-width:580px;
}

#ilda9 .hero-actions {
  display:flex;
  align-items:center;
  row-gap:18px;
  column-gap:18px;
}

#ilda9 .hero-actions .btn-hero-phone {
  background-color:rgba(255,
255,
255,
0.12);
  color:rgb(255,
255,
255);
  border-top-width:1px;
  border-right-width:1px;
  border-bottom-width:1px;
  border-left-width:1px;
  border-top-style:solid;
  border-right-style:solid;
  border-bottom-style:solid;
  border-left-style:solid;
  border-top-color:rgba(255,
255,
255,
0.28);
  border-right-color:rgba(255,
255,
255,
0.28);
  border-bottom-color:rgba(255,
255,
255,
0.28);
  border-left-color:rgba(255,
255,
255,
0.28);
  border-image-source:none;
  border-image-slice:100%;
  border-image-width:1;
  border-image-outset:0;
  border-image-repeat:stretch;
  backdrop-filter:blur(8px);
}

#ilda9 .hero-actions .btn-hero-phone:hover {
  background-color:rgba(255,
255,
255,
0.24);
  border-top-color:rgb(255,
255,
255);
  border-right-color:rgb(255,
255,
255);
  border-bottom-color:rgb(255,
255,
255);
  border-left-color:rgb(255,
255,
255);
  color:rgb(255,
255,
255);
}

#ilda9 .hero-image-area {
  display:flex;
  justify-content:center;
  align-items:center;
  min-width:0px;
}

#ilda9 .hero-image-card {
  position:relative;
  border-top-left-radius:20px;
  border-top-right-radius:20px;
  border-bottom-right-radius:20px;
  border-bottom-left-radius:20px;
  overflow-x:hidden;
  overflow-y:hidden;
  box-shadow:rgba(0,
0,
0,
0.5) 0px 24px 60px,
rgba(255,
255,
255,
0.15) 0px 0px 0px 1px;
  background-color:rgba(15,
23,
42,
0.6);
  backdrop-filter:blur(12px);
  width:100%;
  max-width:520px;
  transition-behavior:normal,
normal;
  transition-duration:0.3s,
0.3s;
  transition-timing-function:ease,
ease;
  transition-delay:0s,
0s;
  transition-property:transform,
box-shadow;
}

#ilda9 .hero-image-card:hover {
  transform:translateY(-6px);
  box-shadow:rgba(0,
0,
0,
0.6) 0px 30px 70px,
rgba(234,
88,
12,
0.45) 0px 0px 0px 1px;
}

#ilda9 .hero-img {
  width:100%;
  height:100%;
  min-height:360px;
  max-height:440px;
  object-fit:cover;
  display:block;
  transition-behavior:normal;
  transition-duration:0.6s;
  transition-timing-function:cubic-bezier(0.4,
0,
0.2,
1);
  transition-delay:0s;
  transition-property:transform;
}

#ilda9 .hero-image-card:hover .hero-img {
  transform:scale(1.04);
}

#ilda9 .hero-image-badge {
  position:absolute;
  bottom:20px;
  left:20px;
  background-color:rgba(15,
23,
42,
0.88);
  backdrop-filter:blur(12px);
  border-top-width:1px;
  border-right-width:1px;
  border-bottom-width:1px;
  border-left-width:1px;
  border-top-style:solid;
  border-right-style:solid;
  border-bottom-style:solid;
  border-left-style:solid;
  border-top-color:rgba(255,
255,
255,
0.2);
  border-right-color:rgba(255,
255,
255,
0.2);
  border-bottom-color:rgba(255,
255,
255,
0.2);
  border-left-color:rgba(255,
255,
255,
0.2);
  border-image-source:none;
  border-image-slice:100%;
  border-image-width:1;
  border-image-outset:0;
  border-image-repeat:stretch;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  border-bottom-right-radius:30px;
  border-bottom-left-radius:30px;
  padding-top:9px;
  padding-right:18px;
  padding-bottom:9px;
  padding-left:18px;
  display:inline-flex;
  align-items:center;
  row-gap:10px;
  column-gap:10px;
  color:rgb(255,
255,
255);
  font-size:0.88rem;
  font-weight:600;
  box-shadow:rgba(0,
0,
0,
0.4) 0px 8px 24px;
}

#ilda9 .badge-dot {
  width:9px;
  height:9px;
  border-top-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  border-bottom-left-radius:50%;
  background-color:rgb(34,
197,
94);
  box-shadow:rgb(34,
197,
94) 0px 0px 10px;
}

#ilda9 .hero-features {
  grid-column-start:1;
  grid-column-end:-1;
  width:100%;
  display:grid;
  grid-template-columns:repeat(6,
minmax(0px,
1fr));
  row-gap:16px;
  column-gap:16px;
  padding-top:26px;
  border-top-width:1px;
  border-top-style:solid;
  border-top-color:rgba(255,
255,
255,
0.16);
}

#ilda9 .hero-feature-item {
  display:flex;
  flex-direction:column;
  row-gap:6px;
  column-gap:6px;
  padding-top:16px;
  padding-right:14px;
  padding-bottom:16px;
  padding-left:14px;
  background-color:rgba(255,
255,
255,
0.05);
  border-top-width:1px;
  border-right-width:1px;
  border-bottom-width:1px;
  border-left-width:1px;
  border-top-style:solid;
  border-right-style:solid;
  border-bottom-style:solid;
  border-left-style:solid;
  border-top-color:rgba(255,
255,
255,
0.1);
  border-right-color:rgba(255,
255,
255,
0.1);
  border-bottom-color:rgba(255,
255,
255,
0.1);
  border-left-color:rgba(255,
255,
255,
0.1);
  border-image-source:none;
  border-image-slice:100%;
  border-image-width:1;
  border-image-outset:0;
  border-image-repeat:stretch;
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  border-bottom-right-radius:12px;
  border-bottom-left-radius:12px;
  backdrop-filter:blur(8px);
  transition-behavior:normal,
normal,
normal;
  transition-duration:0.25s,
0.25s,
0.25s;
  transition-timing-function:ease,
ease,
ease;
  transition-delay:0s,
0s,
0s;
  transition-property:transform,
border-color,
background-color;
}

#ilda9 .hero-feature-item:hover {
  transform:translateY(-3px);
  border-top-color:rgba(251,
146,
60,
0.45);
  border-right-color:rgba(251,
146,
60,
0.45);
  border-bottom-color:rgba(251,
146,
60,
0.45);
  border-left-color:rgba(251,
146,
60,
0.45);
  background-color:rgba(255,
255,
255,
0.08);
}

#ilda9 .hero-feature-val {
  font-size:1.22rem;
  font-weight:800;
  color:rgb(251,
146,
60);
  line-height:1.2;
}

#ilda9 .hero-feature-lbl {
  font-size:0.82rem;
  color:rgb(203,
213,
225);
  line-height:1.35;
}

#i45vl.hero-container {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  row-gap:40px;
  column-gap:48px;
  align-items:center;
}

#i45vl .hero-content {
  min-width:0px;
}

#i45vl .hero-badge-wrapper {
  margin-bottom:20px;
}

#i45vl .hero-badge {
  background-color:rgba(255,
255,
255,
0.12);
  border-top-width:1px;
  border-right-width:1px;
  border-bottom-width:1px;
  border-left-width:1px;
  border-top-style:solid;
  border-right-style:solid;
  border-bottom-style:solid;
  border-left-style:solid;
  border-top-color:rgba(255,
255,
255,
0.25);
  border-right-color:rgba(255,
255,
255,
0.25);
  border-bottom-color:rgba(255,
255,
255,
0.25);
  border-left-color:rgba(255,
255,
255,
0.25);
  border-image-source:none;
  border-image-slice:100%;
  border-image-width:1;
  border-image-outset:0;
  border-image-repeat:stretch;
  color:rgb(255,
255,
255);
  font-size:0.85rem;
  font-weight:600;
  padding-top:6px;
  padding-right:14px;
  padding-bottom:6px;
  padding-left:14px;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  border-bottom-right-radius:30px;
  border-bottom-left-radius:30px;
  display:inline-block;
  backdrop-filter:blur(8px);
}

#i45vl .hero-title {
  color:rgb(255,
255,
255);
  font-size:3.1rem;
  line-height:1.15;
  margin-bottom:24px;
  letter-spacing:-0.5px;
  text-shadow:rgba(0,
0,
0,
0.35) 0px 2px 12px;
}

#i45vl .hero-description {
  color:rgb(226,
232,
240);
  font-size:1.15rem;
  line-height:1.6;
  margin-bottom:34px;
  max-width:580px;
}

#i45vl .hero-actions {
  display:flex;
  align-items:center;
  row-gap:18px;
  column-gap:18px;
}

#i45vl .hero-actions .btn-hero-phone {
  background-color:rgba(255,
255,
255,
0.12);
  color:rgb(255,
255,
255);
  border-top-width:1px;
  border-right-width:1px;
  border-bottom-width:1px;
  border-left-width:1px;
  border-top-style:solid;
  border-right-style:solid;
  border-bottom-style:solid;
  border-left-style:solid;
  border-top-color:rgba(255,
255,
255,
0.28);
  border-right-color:rgba(255,
255,
255,
0.28);
  border-bottom-color:rgba(255,
255,
255,
0.28);
  border-left-color:rgba(255,
255,
255,
0.28);
  border-image-source:none;
  border-image-slice:100%;
  border-image-width:1;
  border-image-outset:0;
  border-image-repeat:stretch;
  backdrop-filter:blur(8px);
}

#i45vl .hero-actions .btn-hero-phone:hover {
  background-color:rgba(255,
255,
255,
0.24);
  border-top-color:rgb(255,
255,
255);
  border-right-color:rgb(255,
255,
255);
  border-bottom-color:rgb(255,
255,
255);
  border-left-color:rgb(255,
255,
255);
  color:rgb(255,
255,
255);
}

#i45vl .hero-image-area {
  display:flex;
  justify-content:center;
  align-items:center;
  min-width:0px;
}

#i45vl .hero-image-card {
  position:relative;
  border-top-left-radius:20px;
  border-top-right-radius:20px;
  border-bottom-right-radius:20px;
  border-bottom-left-radius:20px;
  overflow-x:hidden;
  overflow-y:hidden;
  box-shadow:rgba(0,
0,
0,
0.5) 0px 24px 60px,
rgba(255,
255,
255,
0.15) 0px 0px 0px 1px;
  background-color:rgba(15,
23,
42,
0.6);
  backdrop-filter:blur(12px);
  width:100%;
  max-width:520px;
  transition-behavior:normal,
normal;
  transition-duration:0.3s,
0.3s;
  transition-timing-function:ease,
ease;
  transition-delay:0s,
0s;
  transition-property:transform,
box-shadow;
}

#i45vl .hero-image-card:hover {
  transform:translateY(-6px);
  box-shadow:rgba(0,
0,
0,
0.6) 0px 30px 70px,
rgba(234,
88,
12,
0.45) 0px 0px 0px 1px;
}

#i45vl .hero-img {
  width:100%;
  height:100%;
  min-height:360px;
  max-height:440px;
  object-fit:cover;
  display:block;
  transition-behavior:normal;
  transition-duration:0.6s;
  transition-timing-function:cubic-bezier(0.4,
0,
0.2,
1);
  transition-delay:0s;
  transition-property:transform;
}

#i45vl .hero-image-card:hover .hero-img {
  transform:scale(1.04);
}

#i45vl .hero-image-badge {
  position:absolute;
  bottom:20px;
  left:20px;
  background-color:rgba(15,
23,
42,
0.88);
  backdrop-filter:blur(12px);
  border-top-width:1px;
  border-right-width:1px;
  border-bottom-width:1px;
  border-left-width:1px;
  border-top-style:solid;
  border-right-style:solid;
  border-bottom-style:solid;
  border-left-style:solid;
  border-top-color:rgba(255,
255,
255,
0.2);
  border-right-color:rgba(255,
255,
255,
0.2);
  border-bottom-color:rgba(255,
255,
255,
0.2);
  border-left-color:rgba(255,
255,
255,
0.2);
  border-image-source:none;
  border-image-slice:100%;
  border-image-width:1;
  border-image-outset:0;
  border-image-repeat:stretch;
  border-top-left-radius:30px;
  border-top-right-radius:30px;
  border-bottom-right-radius:30px;
  border-bottom-left-radius:30px;
  padding-top:9px;
  padding-right:18px;
  padding-bottom:9px;
  padding-left:18px;
  display:inline-flex;
  align-items:center;
  row-gap:10px;
  column-gap:10px;
  color:rgb(255,
255,
255);
  font-size:0.88rem;
  font-weight:600;
  box-shadow:rgba(0,
0,
0,
0.4) 0px 8px 24px;
}

#i45vl .badge-dot {
  width:9px;
  height:9px;
  border-top-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  border-bottom-left-radius:50%;
  background-color:rgb(34,
197,
94);
  box-shadow:rgb(34,
197,
94) 0px 0px 10px;
}

#i45vl .hero-features {
  grid-column-start:1;
  grid-column-end:-1;
  width:100%;
  display:grid;
  grid-template-columns:repeat(6,
minmax(0px,
1fr));
  row-gap:24px;
  column-gap:24px;
  padding-top:26px;
  border-top-width:1px;
  border-top-style:solid;
  border-top-color:rgba(255,
255,
255,
0.16);
}

#i45vl .hero-feature-item {
  display:flex;
  flex-direction:column;
  row-gap:4px;
  column-gap:4px;
  background-image:initial;
  background-position-x:initial;
  background-position-y:initial;
  background-size:initial;
  background-repeat:initial;
  background-attachment:initial;
  background-origin:initial;
  background-clip:initial;
  background-color:transparent;
  border-top-width:medium;
  border-right-width:medium;
  border-bottom-width:medium;
  border-left-width:medium;
  border-top-style:none;
  border-right-style:none;
  border-bottom-style:none;
  border-left-style:none;
  border-top-color:currentcolor;
  border-right-color:currentcolor;
  border-bottom-color:currentcolor;
  border-left-color:currentcolor;
  border-image-source:none;
  border-image-slice:100%;
  border-image-width:1;
  border-image-outset:0;
  border-image-repeat:stretch;
  padding-top:0px;
  padding-right:0px;
  padding-bottom:0px;
  padding-left:0px;
  border-top-left-radius:0px;
  border-top-right-radius:0px;
  border-bottom-right-radius:0px;
  border-bottom-left-radius:0px;
  backdrop-filter:none;
  box-shadow:none;
}

#i45vl .hero-feature-val {
  font-size:1.35rem;
  font-weight:800;
  color:rgb(251,
146,
60);
  line-height:1.2;
}

#i45vl .hero-feature-lbl {
  font-size:0.85rem;
  color:rgb(203,
213,
225);
  line-height:1.35;
}

@media (max-width: 1200px) {
  .advantages-grid {
  grid-template-columns:repeat(3,
1fr);
}

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

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

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

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

.process-steps::before {
  display:none;
}

#ilda9 .hero-features {
  grid-template-columns:repeat(3,
minmax(0px,
1fr));
  row-gap:16px;
  column-gap:16px;
}

#i45vl .hero-features {
  grid-template-columns:repeat(3,
minmax(0px,
1fr));
  row-gap:20px;
  column-gap:20px;
}

}

@media (max-width: 1100px) {
  .header-top-container {
  row-gap:18px;
  column-gap:18px;
}

.header-contacts {
  row-gap:12px;
  column-gap:12px;
}

.header-bottom .nav-link {
  padding-top:0px;
  padding-right:16px;
  padding-bottom:0px;
  padding-left:16px;
  font-size:0.9rem;
}

#ilda9.hero {
  padding-top:calc(var(--header-height) + 28px);
}

}

@media (max-width: 992px) {
  h1 {
  font-size:2.5rem !important;
}

.hero-container {
  grid-template-columns:1fr;
  row-gap:40px;
  column-gap:40px;
}

.hero-image-area {
  justify-content:center;
  order:-1;
}

.solution-block {
  grid-template-columns:1fr;
  row-gap:30px;
  column-gap:30px;
}

.solution-block-reverse {
  direction:ltr;
}

.solution-block-reverse .solution-details {
  direction:ltr;
}

.request-grid {
  grid-template-columns:1fr;
  row-gap:40px;
  column-gap:40px;
}

.hero-container {
  grid-template-columns:minmax(0px,
1fr);
  width:100%;
}

.hero-content {
  width:100%;
  max-width:100%;
  min-width:0px;
}

.hero-image-area {
  justify-content:center;
  order:1;
}

.hero-image-card {
  max-width:100%;
}

#ie2zwz .advantages-grid {
  grid-template-columns:repeat(2,
1fr);
  row-gap:24px;
  column-gap:24px;
}

#ilda9.hero {
  padding-top:calc(var(--header-height,
70px) + 24px);
  padding-bottom:50px;
}

#ilda9 .hero-container {
  grid-template-columns:1fr;
  row-gap:36px;
}

#ilda9 .hero-title {
  font-size:2.5rem;
}

#ilda9 .hero-image-area {
  justify-content:center;
}

#ilda9 .hero-image-card {
  max-width:100%;
}

#ilda9 .hero-features {
  grid-template-columns:repeat(3,
minmax(0px,
1fr));
}

#i45vl.hero-container {
  grid-template-columns:1fr;
  row-gap:36px;
}

#i45vl .hero-title {
  font-size:2.5rem;
}

#i45vl .hero-image-area {
  justify-content:center;
}

#i45vl .hero-image-card {
  max-width:100%;
}

#i45vl .hero-features {
  grid-template-columns:repeat(3,
minmax(0px,
1fr));
}

}

@media (max-width: 768px) {
  section {
  padding-top:60px;
  padding-right:0px;
  padding-bottom:60px;
  padding-left:0px;
}

.nav {
  display:none;
}

.header-contacts .phone,
.header-contacts .btn {
  display:none;
}

.burger {
  display:flex;
}

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

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

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

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

.process-steps {
  grid-template-columns:1fr;
  row-gap:40px;
  column-gap:40px;
}

.cookie-content {
  flex-direction:column;
  align-items:flex-start;
  row-gap:16px;
  column-gap:16px;
}

.cookie-content button {
  width:100%;
}

.footer-container {
  grid-template-columns:1fr;
  row-gap:40px;
  column-gap:40px;
}

:root {
  --header-height:80px;
}

.header {
  height:80px;
}

.header.header-sticky {
  height:80px;
}

.header-top,
.header.header-sticky .header-top {
  height:80px;
}

.header-top-container {
  display:flex;
  justify-content:space-between;
  row-gap:16px;
  column-gap:16px;
}

.header-top .logo-img {
  max-width:180px;
  height:42px;
}

.header-bottom {
  display:none;
}

.burger {
  display:flex;
}

.hero-features {
  grid-template-columns:repeat(2,
1fr);
  row-gap:16px;
  column-gap:16px;
}

.hero-actions {
  width:100%;
  min-width:0px;
  flex-wrap:wrap;
  row-gap:12px;
  column-gap:12px;
}

.hero-actions .btn {
  max-width:100%;
}

#ilda9 .hero-title {
  font-size:2rem;
}

#ilda9 .hero-description {
  font-size:1rem;
  margin-bottom:24px;
}

#ilda9 .hero-actions {
  flex-direction:column;
  align-items:stretch;
  width:100%;
}

#ilda9 .hero-actions .btn {
  width:100%;
}

#ilda9 .hero-features {
  grid-template-columns:repeat(2,
minmax(0px,
1fr));
  row-gap:12px;
  column-gap:12px;
  padding-top:24px;
}

#ilda9 .hero-img {
  min-height:260px;
  max-height:340px;
}

#i45vl .hero-title {
  font-size:2rem;
}

#i45vl .hero-description {
  font-size:1rem;
  margin-bottom:24px;
}

#i45vl .hero-actions {
  flex-direction:column;
  align-items:stretch;
  width:100%;
}

#i45vl .hero-actions .btn {
  width:100%;
}

#i45vl .hero-features {
  grid-template-columns:repeat(2,
minmax(0px,
1fr));
  row-gap:16px;
  column-gap:16px;
  padding-top:24px;
}

#i45vl .hero-img {
  min-height:260px;
  max-height:340px;
}

}

@media (max-width: 640px) {
  #ie2zwz .section-title {
  margin-bottom:32px;
}

#ie2zwz .advantages-grid {
  grid-template-columns:1fr;
  row-gap:16px;
}

#ie2zwz .advantage-card {
  padding-top:24px;
  padding-right:20px;
  padding-bottom:24px;
  padding-left:20px;
}

}

@media (max-width: 576px) {
  h1 {
  font-size:2rem !important;
}

h2 {
  font-size:1.75rem;
}

.hero-actions {
  flex-direction:column;
  align-items:stretch;
}

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

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

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

.request-form-card {
  padding-top:24px;
  padding-right:24px;
  padding-bottom:24px;
  padding-left:24px;
}

.modal-box {
  padding-top:24px;
  padding-right:24px;
  padding-bottom:24px;
  padding-left:24px;
}

.footer-bottom-container {
  flex-direction:column;
  row-gap:12px;
  column-gap:12px;
  text-align:center;
}

.hero-title {
  font-size:1.85rem !important;
}

.hero-features {
  grid-template-columns:1fr;
  row-gap:12px;
  column-gap:12px;
}

.header-top .logo-img {
  max-width:155px;
  height:38px;
}

.hero-img {
  min-height:260px;
  max-height:340px;
}

.hero-image-badge {
  bottom:14px;
  left:14px;
  padding-top:7px;
  padding-right:14px;
  padding-bottom:7px;
  padding-left:14px;
  font-size:0.8rem;
}

.mobile-nav-close {
  top:18px;
  right:18px;
  width:40px;
  height:40px;
}

.hero-actions {
  flex-direction:column;
  align-items:stretch;
}

.hero-actions .btn {
  width:100%;
}

}

@media (max-width: 480px) {
  #ilda9 .hero-title {
  font-size:1.75rem;
}

#ilda9 .hero-features {
  grid-template-columns:1fr;
}

#ilda9 .hero-image-badge {
  bottom:12px;
  left:12px;
  padding-top:6px;
  padding-right:12px;
  padding-bottom:6px;
  padding-left:12px;
  font-size:0.78rem;
}

#i45vl .hero-title {
  font-size:1.75rem;
}

#i45vl .hero-features {
  grid-template-columns:1fr;
  row-gap:14px;
  column-gap:14px;
}

#i45vl .hero-image-badge {
  bottom:12px;
  left:12px;
  padding-top:6px;
  padding-right:12px;
  padding-bottom:6px;
  padding-left:12px;
  font-size:0.78rem;
}

}