/* new styles _ddev */

    :root {
      --primary: #0ea5e9;
      /* Современный ярко-голубой */
      --primary-dark: #0284c7;
      --secondary-bg: #f0f9ff;
      /* Очень светло-голубой фон */
      --text-main: #0f172a;
      --text-muted: #64748b;
      --border: #e2e8f0;
      --radius-lg: 24px;
      --radius-md: 16px;
      --shadow: 0 10px 30px -10px rgba(14, 165, 233, 0.15);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background-color: #fff;
      color: var(--text-main);
      line-height: 1.6;
    }

    .container {
      margin: 0 auto;
    }

    h1,
    h2,
    h3 {
      font-weight: 800;
      letter-spacing: -0.5px;
    }

    h2 {
      font-size: 32px;
      margin-bottom: 20px;
    }

    p {
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    /* --- 1. Hero Section & Value Props --- */
    .hero-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }

    .hero-header h1 {
      font-size: 42px;
      margin-bottom: 15px;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .value-props {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .prop-card {
      background: #fff;
      padding: 30px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: all 0.3s ease;
      align-items: center;
    }

    .prop-card:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow);
      transform: translateY(-5px);
    }

    /* Место для 3D иконок (ключ, копилка, оператор) */
    .prop-icon-placeholder {
      width: 60px;
      height: 60px;
      flex-shrink: 0;
      background: var(--secondary-bg);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }

    .prop-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .prop-card p {
      font-size: 14px;
      margin-bottom: 0;
    }


    /* --- 2. Quick Contacts Channels --- */
    .contacts-bar {
      background: var(--secondary-bg);
      padding: 40px;
      border-radius: var(--radius-lg);
      margin-bottom: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .contacts-intro {
      max-width: 400px;
    }

    .messengers {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .messenger-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 24px;
      background: #fff;
      border-radius: 50px;
      text-decoration: none;
      color: var(--text-main);
      font-weight: 600;
      font-size: 15px;
      transition: all 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .messenger-btn.tg {
      color: #229ED9;
    }

    .messenger-btn.wa {
      color: #25D366;
    }

    .messenger-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* --- 3. Remote Help Feature --- */
    .remote-help {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      margin-bottom: 80px;
    }

    /* Место для большой 3D иллюстрации (AnyDesk/TeamViewer) */
    .illustration-placeholder {
      width: 100%;
      height: 400px;
      background: linear-gradient(45deg, #f0f9ff, #e0f2fe);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      font-weight: bold;
      overflow: hidden;
    }

    .feature-list li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .check-icon {
      color: var(--primary);
    }


    /* --- 4. Contact Form Section --- */
    .form-section {
      max-width: 800px;
      margin: 0 auto 80px;
      text-align: center;
    }

    .modern-form {
      background: #fff;
      padding: 40px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      text-align: left;
    }

    .input-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    input,
    textarea {
/*       width: 100%; */
      padding: 14px 18px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      background: #f8fafc;
      font-size: 15px;
      outline: none;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    input:focus,
    textarea:focus {
      border-color: var(--primary);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
    }

    /* Новая загрузка файла */
    .file-drop-area {
      border: 2px dashed var(--border);
      padding: 30px;
      border-radius: var(--radius-md);
      text-align: center;
      cursor: pointer;
      background: #f8fafc;
      transition: all 0.2s ease;
      margin-bottom: 20px;
    }

    .file-drop-area:hover {
      border-color: var(--primary);
      background: #f0f9ff;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      border: none;
      padding: 16px 40px;
      border-radius: var(--radius-md);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
      width: 100%;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px -10px rgba(14, 165, 233, 0.5);
    }

    /* --- 5. Info Blocks (Bottom) --- */
    .info-blocks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .info-card {
      padding: 40px;
      border-radius: var(--radius-lg);
    }

    .info-card.blue {
      background: #f0f9ff;
    }

    .info-card.purple {
      background: #f5f3ff;
    }

    .info-card h3 {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .info-card ul {
      padding-left: 20px;
      color: var(--text-muted);
    }

    .info-card li {
      margin-bottom: 10px;
    }

    /* Адаптив */
    @media (max-width: 768px) {
      .hero-header h1 {
        font-size: 32px;
      }

      .contacts-bar {
        flex-direction: column;
        text-align: center;
      }

      .remote-help {
        grid-template-columns: 1fr;
      }

      .illustration-placeholder {
        height: 250px;
        order: -1;
      }

      .input-row {
        grid-template-columns: 1fr;
      }

      .info-blocks {
        grid-template-columns: 1fr;
      }
    }
	  
	  .rights-row label{
		 display: flex;
		  align-items: center;gap: 10px;
	  }

/* .bigsection.first {
    border-radius: 20px;
    background: rgba(22, 143, 254, 0.13);
    background: url(/wp-content/uploads/2023/10/warning-1.svg) no-repeat rgba(22, 143, 254, 0.13);
    background-position-x: 95%;
}.site-content.col-lg-10.col-12.col-md-9 {
    left: 35px;
}

.bigsection {
    border-radius: 20px;
    padding: 51px 59px 50px;
    margin-bottom: 35px;
}

.bigsection .title h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-style: normal;font-family: Arial, sans-serif;
    font-weight: 500;
    line-height: 30px; /* 125% 
}*/

/*
.text p {
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% 
}*/
/*
.first .text {
    max-width: 883px;
}

.first .title {
    max-width: 569px;
}

.bigsection.second {
    border-radius: 20px;
    background: #F9F2FF;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-left: 50%;
    background: url(/wp-content/uploads/2023/10/Без-имени-15554-1.svg) no-repeat #F9F2FF;
    padding: 97px 59px 91px 50%;
    background-size: 564px !important;
    background-position-x: 28px;
}

.second .title {
    max-width: 606px;
    text-align: right;
    margin-right: 0px;
}

.second .text {
    max-width: 606px;
}

.bigsection.third {
    border-radius: 20px;
    background: #168ffe21;
    background: url(/wp-content/uploads/2023/10/3-ракета-1.png) no-repeat #168ffe21;
    background-position-x: 102%;
}

.third .title {
    max-width: 606px;
}

.third .text {
    max-width: 698px;
}

.third .text p:last-child {
    max-width: 671px;
}

.bigsection.fourth {
    border-radius: 20px;
    background: #F7F7F7;
    background: url(/wp-content/uploads/2023/10/image-8-7.png) no-repeat #F7F7F7;
    background-position-x: 97%;
    padding-top: 62px;
    background-size: 482px;
    background-position-y: bottom;
}

.fourth .text {
    max-width: 582px;
}

.fourth .text p a {
    display: block;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #4db5ff;
    font-weight: 600;
    font-family: Verdana;
    font-family: lato,Arial,Helvetica,sans-serif;
    margin-left: 0;
    padding-top: 5px;
    display: block;
}

.fourth .text p:first-child {
    margin-bottom: 15px;
}

.fourth .text p a img {
    margin-right: 10px;
}

.fourth .text p a:last-child {
    margin-bottom: 0px;
}

.bigsection.fifth {
    display: flex;
    justify-content: space-between;
    border-radius: 0;
    padding: 0;
}

.minisection.blue {
    border-radius: 20px;
    background: #E5FFFF;
    border-radius: 20px;
    padding: 51px 59px 50px;
    width: calc(50% - 20px);
}

.minisection.red {
    border-radius: 20px;
    padding: 51px 59px 50px;
    width: calc(50% - 20px);
    border-radius: 20px;
    background: #F9F2FF;
}

.minisection.blue .text {
    max-width: 326px;
}

.minisection.blue .title {
    max-width: 290px;
}

.minisection.red .title {
    max-width: 318px;
}

.minisection.red .text {
    max-width: 327px;
}

.minisection.blue {
    background: url(https://softcomputers.org/wp-content/uploads/2023/10/communication-1.svg) no-repeat #E5FFFF;
    background-position-x: 100%;
    background-position-y: bottom;
    background-size: 202px !important;
}

.minisection.red {
    background: url(https://softcomputers.org/wp-content/uploads/2023/10/quick-response-1.svg) no-repeat #F9F2FF;
    background-position-x: right;
    background-position-y: bottom;
    background-size: inherit;
}

@media screen and (min-width:1440px) and (max-width:1550px){
.aboutpage {
    max-width: 91%;
}

}

@media screen and (min-width:1201px) and (max-width:1600px){
.bigsection {
    padding: 30px 38% 30px 20px  !important;
    background-position-y: bottom !important;
    background-size: 300px !important;
}

.bigsection.first {
    background-size: 47vw !important;
    background-position-x: 44vw;
    padding-right: 36% !important;
    background-position-y: center !important;
    padding: 30px 26% 30px 20px !important;
}
div#custom_html-5, .wd-widget {
    width: 100%;
}

aside.sidebar-container .widget-area {
    max-width: 300px;
}
.bigsection.second {
    background-size: 42vw !important;
    padding: 30px 20px 4vw 50% !important;
    background-position-x: -8vw !important;
    display: flex;
    flex-wrap: wrap;
    background-position-y: top !important;
    }

.bigsection.third {
    background-position-y: bottom !important;
    background-size: contain !important;
    background-position-x: 138% !important;
}

.bigsection.fourth {
    background-position-y: bottom !important;
    background-size: contain !important;
    background-position-x: 463px !important;
}

.bigsection.fifth {
    padding: 0 !important;
}

.minisection {
    padding: 30px 4% 100px 20px !important;
    background-position-y: bottom !important;
    background-size: 198px !important;
    background-position-x: 22vw !important;
}
.minisection.blue {
    background-size: 184px !important;
    background-position-x: right !important;
}
/*new*/
/*
    .first .title {
    max-width: 57%;
    z-index: 2;
    position: relative;
}

.first .text {
    max-width: 78%;
    position: relative;
    z-index: 2;
}

.bigsection.first {
    background: rgba(235, 239, 254, 1);
    position: relative;
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding: 50px 50px !important;
    background: url(https://softcomputers.org/wp-content/uploads/2023/10/warning-1.svg) no-repeat rgba(22, 143, 254, 0.13);
    background-size: 17vh !important;
    background-position-x: 93%;
}

.bigsection.first::after {
    content: '';
    background: url(https://softcomputers.org/wp-content/uploads/2023/10/84163e9be0d64d087aacfdfa99a20a2f.png) no-repeat center center;
    width: 70%;
    height: 114%;
    right: -16%;
    position: absolute;
    display: block;
    padding: 10px;
    top: -17px;
    background-size: contain;
    z-index: 0;
    -webkit-transform: rotate(342deg);
    -moz-transform: rotate(342deg);
    -ms-transform: rotate(342deg);
    -o-transform: rotate(342deg);
    transform: rotate(342deg);
    overflow: hidden;
    display: none;
}

.bigsection.second {
    position: relative;
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding: 50px 50px 50px 45%  !important;
    background: #F7F7F7;
    background: url(https://softcomputers.org/wp-content/uploads/2023/10/Без-имени-15554-1.svg) no-repeat #F9F2FF;
}

.bigsection.second .text {}

.second .title {
    z-index: 2;
    position: relative;
}

.bigsection.second .text {
    z-index: 2;
    position: relative;
}

.bigsection.second::after {
    content: '';
    background: url(https://softcomputers.org/wp-content/uploads/2023/10/807037620330133a1716ce1e668f3f03-1.png) no-repeat center center;
    width: 74%;
    height: 181%;
    left: -21%;
    position: absolute;
    display: block;
    padding: 10px;
    top: -86px;
    background-size: contain;
    z-index: 0;
    overflow: hidden;
    display: none;
}

.bigsection.third {
    background: #168ffe21;
    padding: 50px 43% 50px 50px !important;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.bigsection.third::after {
    content: '';
    background: url(https://softcomputers.org/wp-content/uploads/2023/10/6bb374bc000224ccf8f727944d4cb3a8-1.png) no-repeat center center;
    width: 74%;
    height: 115%;
    right: -16%;
    position: absolute;
    display: block;
    padding: 10px;
    top: -9%;
    background-size: contain;
    z-index: 0;
    overflow: hidden;
}

.bigsection.fourth {
    padding: 50px 42% 50px 50px !important;
    z-index: 1;
    position: relative;
    overflow: hidden;
    background: #F7F7F7;
}


.bigsection.fourth::after {
    content: '';
    background: url(https://softcomputers.org/wp-content/uploads/2023/10/adf3bc90f6560c5ce169c52298b25559-1.png) no-repeat center center;
    width: 100%;
    height: 105%;
    right: -27%;
    position: absolute;
    display: block;
    padding: 10px;
    top: 1%;
    background-size: contain;
    z-index: 0;
    overflow: hidden;
}
.minisection.blue .text {
    max-width: 70%;
}


/*new*//*
}
@media screen and (min-width:1440px) and (max-width:1600px){
.site-content.col-lg-10.col-12.col-md-9 {
    left:0;
    max-width: 79.333333%;
}.bigsection.second {
    background-size: 34vw !important;
    padding: 65px 42px 4vw 50% !important;
    background-position-x: 2vw !important;
    display: flex;
    flex-wrap: wrap;
    background-position-y: top !important;
}.site-content.col-lg-10.col-12.col-md-9 {
    left: 0;padding: 0;
}
}
@media screen and (min-width:1351px) and (max-width:1439px){
.site-content.col-lg-10.col-12.col-md-9 {
    left: 0;padding: 0;
}
}

@media screen and (min-width:1201px) and (max-width:1350px){
.site-content.col-lg-10.col-12.col-md-9 {
	left: 0;
    width: calc(100% - 300px);
    flex: initial;
}
}
@media screen and (min-width:1025px) and (max-width:1200px){
.bigsection {
    padding: 30px 38% 30px 20px  !important;
    background-position-y: bottom !important;
    background-size: 300px !important;
}
div#custom_html-5, .woodmart-widget {
    max-width: 220px;
    width: 100% !important;
}
.bigsection.first {
    background-size: 17vw !important;
    background-position-x: 49vw;
    padding-right: 36% !important;
    background-position-y: top !important;
    padding: 30px 30% 30px 20px !important;
}

.bigsection.second {
    background-size: 562px !important;
    padding: 30px 20px 4vw 50% !important;
    background-position-x: -200px !important;
    display: flex;
    flex-wrap: wrap;
    background-position-y: top !important;
    }

.bigsection.third {
    background-position-y: bottom !important;
    background-size: contain !important;
    background-position-x: 384px !important;
}

.bigsection.fourth {
    background-position-y: bottom !important;
    background-size: contain !important;
    background-position-x: 417px !important;
}

.bigsection.fifth {
    padding: 0 !important;
}

.minisection {
    padding: 30px 4% 100px 20px !important;
    background-position-y: bottom !important;
    background-size: 198px !important;
    background-position-x: 18vw !important;
}.site-content.col-lg-10.col-12.col-md-9 {
	left: 0;
    padding: 0;
    flex: initial;
    width: calc(100% - 300px);
}.minisection.blue .text {
    max-width: 100%;
}
.minisection.blue {
    background-size: 105px !important;
    background-position-x: right !important;
}

.minisection.red {
    background-size: 131px !important;
    background-position-x: right !important;
}

.bigsection.fourth {
    padding: 30px 44% 30px 20px !important;
}
}
@media screen and (min-width:769px) and (max-width:1024px){

.bigsection {
    padding: 30px 20px 22vw !important;
    background-position-y: bottom !important;
    background-size: 300px !important;
}

.bigsection.first {
  background-size: 27vw !important;
  background-position-x: right;
  padding-right: 36% !important;
  background-position-y: center !important;
  padding: 30px 40% 30px 20px !important;
}

.bigsection.second {
    background-size: 504px !important;
    padding: 30px 20px 4vw 50% !important;
    background-position-x: -211px !important;
    display: flex;
    flex-wrap: wrap;
    background-position-y: bottom !important;
}

.minisection {
    width: 100% !important;
    background-position-y: bottom !important;
    background-size: 264px !important;
    margin-bottom: 35px;
    padding: 30px 20px 308px !important;
}

.bigsection.fifth {
    display: flex;
    flex-wrap: wrap;
    padding: 0 !important;
}.bigsection.third {
    padding: 30px 20px 10vw !important;
    background-position-x: right !important;
}

.bigsection.fourth {
    padding: 30px 20px 20vw !important;
    background-position-x: right !important;
}

.minisection.blue {
    padding: 30px 20px 13vw !important;
}

.minisection.red {
    padding: 30px 20px 9vw !important;
}

.minisection.blue .title, .minisection.blue .text {
    max-width: 58%;
}

.minisection.red .title, .minisection.red .text {
    max-width: 55%;
}

.third .text p:last-child {
    max-width: 59%;
}

.second .title {
    max-width: 100%;
}

.second .text {
    max-width: 100%;
}.site-content.col-lg-10.col-12.col-md-9 {
    left: 0px;
}
}


@media screen and (min-width:320px) and (max-width:768px){

.bigsection {
    padding: 30px 20px 90vw !important;
    background-position-y: bottom !important;
    background-size: 300px !important;
}

.bigsection.first {
    background-size: contain !important;
    background-position-x: 63%;
}

.bigsection.second {
    background-size: contain !important;
    padding: 30px 20px 73vw !important;
}

.minisection {
    width: 100% !important;
    background-position-y: bottom !important;
    background-size: 264px !important;
    margin-bottom: 35px;
    padding: 30px 20px 308px !important;
}

.bigsection.fifth {
    display: flex;
    flex-wrap: wrap;
    padding: 0 !important;
}
    

.bigsection.third {
    background-size: contain !important;
    padding: 30px 20px 88vw !important;
}

.bigsection.fourth {
    background-size: contain !important;
    padding: 30px 20px 78vw !important;
}

.minisection.blue {
    background-size: contain !important;
    padding: 30px 20px 107vw !important;
}

.minisection.red {
    background-size: contain !important;
    padding: 30px 20px 97vw !important;
}

.minisection.blue .title, .minisection.blue .text {
    max-width: 100%;
}

.minisection.red .title, .minisection.red .text {
    max-width: 100%;
}.site-content.col-lg-10.col-12.col-md-9 {
    left: 0px;

}
}


.minisection.red {
    background-position-x: right !important;
    background-size: 243px ;
}






@media screen and (min-width:1701px){
  
	.row.content-layout-wrapper.align-items-start {
		display: flex;
		justify-content: space-between;
	}
	aside.sidebar-container.col-lg-2.col-md-3.col-12.order-last.order-md-first.sidebar-left.area-sidebar-full-screen-menu {
		margin-top: 0px;
		flex: initial;
		width: 300px;
	}div#custom_html-5, .wd-widget {
    width: 100%;
}

aside.sidebar-container .widget-area {
    max-width: 300px;
}
	
	span.menu-opener.color-scheme-light {
		width: 270px !important;
	}
	
	aside.sidebar-container .widget-area {
		margin-top: 330px!important;
	}  .whb-flex-row.whb-top-bar-inner {
		display: none;
	}.site-content.col-lg-10.col-12.col-md-9 {
		left: 0;
		padding: 0;
		flex: initial;
		width: calc(100% - 300px);
		max-width: initial;
	}
	}@media screen and (min-width:1201px) and (max-width:1700px){
	  
	.row.content-layout-wrapper.align-items-start {
		display: flex;
		justify-content: space-between;
	}
	aside.sidebar-container.col-lg-2.col-md-3.col-12.order-last.order-md-first.sidebar-left.area-sidebar-full-screen-menu {
		margin-top: 0px;
		flex: initial;
		width: 300px;
	}
	div#custom_html-5, .wd-widget {
    width: 100%;
}

aside.sidebar-container .widget-area {
    max-width: 300px;
}
	span.menu-opener.color-scheme-light {
		width: 270px !important;
	}
	
	aside.sidebar-container .widget-area {
		margin-top: 330px !important;
		width: 270px;
	}  .whb-flex-row.whb-top-bar-inner {
		display: none;
	}.site-content.col-lg-10.col-12.col-md-9 {
		left: 0;
		padding: 0;
		flex: initial;
		width: calc(100% - 300px);
		max-width: initial;
	}div#rpwe_widget-4, div#rpwe_widget-6 {
		max-width: 220px;
	}div#custom_html-5, .woodmart-widget {
		max-width: 220px;
		width: 100% !important;
	}
	}@media screen and (min-width:1025px) and (max-width:1200px){
	  
	aside.sidebar-container.col-lg-2.col-md-3.col-12.order-last.order-md-first.sidebar-left.area-sidebar-full-screen-menu {
		margin-top: 0px;
	}
	
	span.menu-opener.color-scheme-light {
		width: 270px !important;
	}
	
	aside.sidebar-container .widget-area {
		margin-top: 330px!important;
	}  .whb-flex-row.whb-top-bar-inner {
		display: none;
	}
	}@media screen and (min-width:769px) and (max-width:1024px){
		aside.sidebar-container.col-lg-2.col-md-3.col-12.order-last.order-md-first.sidebar-left.area-sidebar-full-screen-menu {
		padding: 0;
	}
	
	.row.content-layout-wrapper.align-items-start {
		display: flex;
		justify-content: space-between;
	}.minisection.red {
		margin-bottom: 0 !important;
	}
	}
	
	
	 */