

/* Start:/local/templates/cisenergy_template/css/styles.css?175103458415994*/
:root {
    --primary-50: #f9f0f3;
    --primary-100: #f2dce3;
    --primary-200: #e5b3c3;
    --primary-300: #d989a3;
    --primary-400: #cd6083;
    --primary-500: #C91653;
    --primary-600: #a61244;
    --primary-700: #830e35;
    --primary-800: #681B3D;
    --primary-900: #400a1a;
    
    --gray-50: #f8f7f9;
    --gray-100: #E0DDE4;
    --gray-200: #c5c1cd;
    --gray-300: #a9a3b5;
    --gray-400: #8e879e;
    --gray-500: #736c87;
    --gray-600: #595368;
    --gray-700: #403a4a;
    --gray-800: #28232d;
    --gray-900: #141515;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .logo {
    position: relative;
    width: 300px;
  }

  .logo svg{
    position: absolute;
    width: 300px;
    height: fit-content;
    top: -20px;
  }

  .navbar .logo .logo-color{
    display: none;
  }

  .navbar.scrolled .logo .logo-white{
    display: none;
  }

  .navbar.changed .logo .logo-white{
    display: none;
  }

  .navbar.scrolled .logo .logo-color{
    display: inherit;
  }

  .navbar.changed .logo .logo-color{
    display: inherit;
  }

  /* :not(.navbar.scrolled) .logo svg .logo-color {
    display: none;
  }
  :not(.navbar.changed) .logo svg .logo-color {
    display: none;
  } */

  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s;
    padding: 1rem 0;
  }
  
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .navbar.changed {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    height: 50px;
    top: 25px;
  }
  
  .scrolled .logo {
    background: linear-gradient(to right, var(--primary-600), var(--primary-900));
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .changed .logo {
    background: linear-gradient(to right, var(--primary-600), var(--primary-900));
    -webkit-background-clip: text;
    color: transparent;
  }

  .nav-links {
    display: none;
  }
  
  .nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
  }
  
  .scrolled .nav-link {
    color: var(--gray-800);
  }

  .changed .nav-link {
    color: var(--gray-800);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-500), var(--primary-800));
    transition: width 0.3s;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .phone-button {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    min-width: max-content;
  }
  
  .scrolled .phone-button {
    color: var(--primary-600);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, var(--primary-500), var(--primary-800)) border-box;
    border: 2px solid transparent;
  }

  .changed .phone-button {
    color: var(--primary-600);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, var(--primary-500), var(--primary-800)) border-box;
    border: 2px solid transparent;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #C91653, #681B3D, #C91653, #141515);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.9;
  }
  
  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#681B3D 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
  }
  
  .hero-content {
    position: relative;
    max-width: 48rem;
    animation: slideIn 0.6s ease-out forwards;
  }
  
  .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.875rem;
    color: var(--primary-100);
    font-weight: 300;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  
  .btn-primary {
    background: white;
    color: var(--primary-900);
  }
  
  .btn-primary:hover {
    background: var(--primary-50);
    transform: scale(1.05);
  }
  
  .btn-glass {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .chevron-down {
    margin-left: 0.5rem;
    transition: transform 0.3s;
  }
  
  .btn-glass:hover .chevron-down {
    transform: translateY(4px);
  }
  
  /* Stats Section */
  .stats {
    padding: 4rem 0;
    background: var(--gray-50);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .stat-card h3 {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--primary-600);
    margin-bottom: 0.5rem;
  }
  
  .stat-card p {
    color: var(--gray-600);
  }
  
  /* Services Section */
  .services {
    padding: 6rem 0;
    background: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-500), var(--primary-800));
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 32rem;
    margin: 0 auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  /* Solutions Section */
  .solutions {
    padding: 6rem 0;
    background: var(--gray-50);
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }
  
  .solution-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  
  .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-900);
    margin-bottom: 2rem;
  }
  
  /* Contact Section */
  .contact {
    padding: 6rem 0;
    background: white;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
  }
  
  .contact-info h3,
  .contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-900);
    margin-bottom: 2rem;
  }
  
  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    transition: background-color 0.3s;
  }
  
  .contact-item:hover {
    background: var(--primary-50);
  }
  
  .contact-item svg {
    color: var(--primary-600);
    margin-right: 1rem;
  }
  
  .contact-item .label {
    font-weight: 600;
  }
  
  .contact-item a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-item a:hover {
    color: var(--primary-700);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, var(--primary-500), var(--primary-800)) border-box;
    border: 1px solid transparent;
    transition: all 0.3s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px var(--primary-200);
  }
  
  /* Animations */
  @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    
    .hero-buttons {
      flex-direction: row;
    }
    
    .hero h1 {
      font-size: 4.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  /*test*/
  .advantages { padding: 6rem 0; background-color: #fff; }
  .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
  
  .industries-list, .solutions-list { display: flex; flex-direction: column; gap: 1rem; }
  
  .contact-form, .contact-info { padding: 2rem; }
  
  .map { padding: 6rem 0; background-color: #f8f7f9; }
  .map-container { overflow: hidden; border-radius: 1rem; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
  
  .scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: float 3s ease-in-out infinite; }
  
  .bg-gray-50 { background-color: #f8f7f9; }
  .bg-primary-100 { background-color: #f2dce3; }
  .bg-white { background-color: #ffffff; }
  
  .border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
  .border-gray-100 { border-color: #E0DDE4; }
  
  .flex { display: flex; }
  .items-center { align-items: center; }
  .font-semibold { font-weight: 600; }
  
  .hover\\:bg-primary-50:hover { background-color: #f9f0f3; }
  
  .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
  
  .rounded-xl { border-radius: 0.75rem; }
  .rounded-2xl { border-radius: 1rem; }
  .rounded-lg { border-radius: 0.5rem; }
  
  .p-3 { padding: 0.75rem; }
  .p-4 { padding: 1rem; }
  .p-8 { padding: 2rem; }
  
  .mb-4 { margin-bottom: 1rem; }
  .mb-6 { margin-bottom: 1.5rem; }
  .ml-4 { margin-left: 1rem; }
  .mr-4 { margin-right: 1rem; }
  
  .space-y-3 > * + * { margin-top: 0.75rem; }
  
  
  .bg-primary-50 { background-color: #f9f0f3; }
  .border-gray-100 { border-color: #E0DDE4; }
  .max-w-4xl { max-width: 56rem; }
  .text-center { text-align: center; }
  
  .text-gray-600 { color: #736c87; }
  .text-gray-700 { color: #403a4a; }
  .text-primary-100 { color: #f2dce3; }
  .text-primary-600 { color: #a61244; }
  .text-primary-900 { color: #400a1a; }
  
  .text-lg { font-size: 1.125rem; }
  .text-xl { font-size: 1.25rem; }
  
  .w-fit { width: fit-content; }
  
  .navbar a {
    text-decoration: none;
  }
  
  
  
  /* Utility layout */
  .grid { display: grid; }
  .flex { display: flex; }
  .flex-col { flex-direction: column; }
  .gap-4 { gap: 1rem; }
  .gap-8 { gap: 2rem; }
  .gap-12 { gap: 3rem; }
  .block { display: block; }
  .hidden { display: none; }
  
  /* Typography */
  .font-light { font-weight: 300; }
  .font-medium { font-weight: 500; }
  .font-semibold { font-weight: 600; }
  .font-bold { font-weight: 700; }
  .text-lg { font-size: 1.125rem; }
  .text-xl { font-size: 1.25rem; }
  .text-primary-600 { color: #a61244; }
  .text-primary-900 { color: #400a1a; }
  .text-primary-100 { color: #f2dce3; }
  .text-gray-600 { color: #736c87; }
  .text-gray-700 { color: #403a4a; }
  .text-center { text-align: center; }
  
  /* Backgrounds */
  .bg-white { background-color: #ffffff; }
  .bg-gray-50 { background-color: #f8f7f9; }
  .bg-primary-100 { background-color: #f2dce3; }
  .bg-primary-50 { background-color: #f9f0f3; }
  .bg-white\/10 { background-color: rgba(255,255,255,0.1); }
  
  /* Borders */
  .border { border-width: 1px; border-style: solid; }
  .border-gray-100 { border-color: #E0DDE4; }
  
  /* Radius and shadow */
  .rounded-xl { border-radius: 0.75rem; }
  .rounded-2xl { border-radius: 1rem; }
  .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
  
  /* Sizing */
  .w-fit { width: fit-content; }
  .h-5 { height: 1.25rem; }
  .h-6 { height: 1.5rem; }
  .h-8 { height: 2rem; }
  
  /* Positioning */
  .absolute { position: absolute; }
  .bottom-10 { bottom: 2.5rem; }
  .-translate-x-1\/2 { transform: translateX(-50%); }
  
  /* Effects */
  .hover\\:bg-primary-50:hover { background-color: #f9f0f3; }
  .hover\\:bg-white\/20:hover { background-color: rgba(255,255,255,0.2); }
  
  /* Gradients and animation placeholders */
  .bg-gradient-to-r { background-image: linear-gradient(to right, var(--primary-600), var(--primary-900)); }
  .from-primary-600 { --tw-gradient-from: #a61244; }
  .animate-gradient {
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
  }
  .gradient-text {
    background: linear-gradient(to right, #a61244, #681B3D);
    -webkit-background-clip: text;
    color: transparent;
  }
  .backdrop-blur-md {
    backdrop-filter: blur(12px);
  }
  /* Обновление: адаптивная ширина */
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section-header p {
    max-width: none;
  }
  
  /* Вспомогательный класс на будущее */
  .full-width {
    max-width: none !important;
    width: 100% !important;
  }
  .lucide {
    display: inline-block;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  /* Specific icon (optional placeholder if needed) */
  .lucide-zap::before {
    content: '';
    /* можно оставить пустым или использовать в JS */
  }
  
  /* Size utility */
  .w-8 { width: 2rem; }
  .h-8 { height: 2rem; }
/* End */


/* Start:/local/templates/cisenergy_template/styles.css?174361896915299*/
:root {
    --primary-50: #f9f0f3;
    --primary-100: #f2dce3;
    --primary-200: #e5b3c3;
    --primary-300: #d989a3;
    --primary-400: #cd6083;
    --primary-500: #C91653;
    --primary-600: #a61244;
    --primary-700: #830e35;
    --primary-800: #681B3D;
    --primary-900: #400a1a;
    
    --gray-50: #f8f7f9;
    --gray-100: #E0DDE4;
    --gray-200: #c5c1cd;
    --gray-300: #a9a3b5;
    --gray-400: #8e879e;
    --gray-500: #736c87;
    --gray-600: #595368;
    --gray-700: #403a4a;
    --gray-800: #28232d;
    --gray-900: #141515;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s;
    padding: 1rem 0;
  }
  
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .navbar.changed {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
  }
  
  .scrolled .logo {
    background: linear-gradient(to right, var(--primary-600), var(--primary-900));
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .changed .logo {
    background: linear-gradient(to right, var(--primary-600), var(--primary-900));
    -webkit-background-clip: text;
    color: transparent;
  }

  .nav-links {
    display: none;
  }
  
  .nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
  }
  
  .scrolled .nav-link {
    color: var(--gray-800);
  }

  .changed .nav-link {
    color: var(--gray-800);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-500), var(--primary-800));
    transition: width 0.3s;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .phone-button {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .scrolled .phone-button {
    color: var(--primary-600);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, var(--primary-500), var(--primary-800)) border-box;
    border: 2px solid transparent;
  }

  .changed .phone-button {
    color: var(--primary-600);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, var(--primary-500), var(--primary-800)) border-box;
    border: 2px solid transparent;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #C91653, #681B3D, #C91653, #141515);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.9;
  }
  
  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#681B3D 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
  }
  
  .hero-content {
    position: relative;
    max-width: 48rem;
    animation: slideIn 0.6s ease-out forwards;
  }
  
  .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.875rem;
    color: var(--primary-100);
    font-weight: 300;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  
  .btn-primary {
    background: white;
    color: var(--primary-900);
  }
  
  .btn-primary:hover {
    background: var(--primary-50);
    transform: scale(1.05);
  }
  
  .btn-glass {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .chevron-down {
    margin-left: 0.5rem;
    transition: transform 0.3s;
  }
  
  .btn-glass:hover .chevron-down {
    transform: translateY(4px);
  }
  
  /* Stats Section */
  .stats {
    padding: 4rem 0;
    background: var(--gray-50);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .stat-card h3 {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--primary-600);
    margin-bottom: 0.5rem;
  }
  
  .stat-card p {
    color: var(--gray-600);
  }
  
  /* Services Section */
  .services {
    padding: 6rem 0;
    background: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-500), var(--primary-800));
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 32rem;
    margin: 0 auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  /* Solutions Section */
  .solutions {
    padding: 6rem 0;
    background: var(--gray-50);
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }
  
  .solution-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  
  .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-900);
    margin-bottom: 2rem;
  }
  
  /* Contact Section */
  .contact {
    padding: 6rem 0;
    background: white;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
  }
  
  .contact-info h3,
  .contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-900);
    margin-bottom: 2rem;
  }
  
  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    transition: background-color 0.3s;
  }
  
  .contact-item:hover {
    background: var(--primary-50);
  }
  
  .contact-item svg {
    color: var(--primary-600);
    margin-right: 1rem;
  }
  
  .contact-item .label {
    font-weight: 600;
  }
  
  .contact-item a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-item a:hover {
    color: var(--primary-700);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, var(--primary-500), var(--primary-800)) border-box;
    border: 1px solid transparent;
    transition: all 0.3s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px var(--primary-200);
  }
  
  /* Animations */
  @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    
    .hero-buttons {
      flex-direction: row;
    }
    
    .hero h1 {
      font-size: 4.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  /*test*/
  .advantages { padding: 6rem 0; background-color: #fff; }
  .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
  
  .industries-list, .solutions-list { display: flex; flex-direction: column; gap: 1rem; }
  
  .contact-form, .contact-info { padding: 2rem; }
  
  .map { padding: 6rem 0; background-color: #f8f7f9; }
  .map-container { overflow: hidden; border-radius: 1rem; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
  
  .scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: float 3s ease-in-out infinite; }
  
  .bg-gray-50 { background-color: #f8f7f9; }
  .bg-primary-100 { background-color: #f2dce3; }
  .bg-white { background-color: #ffffff; }
  
  .border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
  .border-gray-100 { border-color: #E0DDE4; }
  
  .flex { display: flex; }
  .items-center { align-items: center; }
  .font-semibold { font-weight: 600; }
  
  .hover\\:bg-primary-50:hover { background-color: #f9f0f3; }
  
  .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
  
  .rounded-xl { border-radius: 0.75rem; }
  .rounded-2xl { border-radius: 1rem; }
  .rounded-lg { border-radius: 0.5rem; }
  
  .p-3 { padding: 0.75rem; }
  .p-4 { padding: 1rem; }
  .p-8 { padding: 2rem; }
  
  .mb-4 { margin-bottom: 1rem; }
  .mb-6 { margin-bottom: 1.5rem; }
  .ml-4 { margin-left: 1rem; }
  .mr-4 { margin-right: 1rem; }
  
  .space-y-3 > * + * { margin-top: 0.75rem; }
  
  
  .bg-primary-50 { background-color: #f9f0f3; }
  .border-gray-100 { border-color: #E0DDE4; }
  .max-w-4xl { max-width: 56rem; }
  .text-center { text-align: center; }
  
  .text-gray-600 { color: #736c87; }
  .text-gray-700 { color: #403a4a; }
  .text-primary-100 { color: #f2dce3; }
  .text-primary-600 { color: #a61244; }
  .text-primary-900 { color: #400a1a; }
  
  .text-lg { font-size: 1.125rem; }
  .text-xl { font-size: 1.25rem; }
  
  .w-fit { width: fit-content; }
  
  .navbar a {
    text-decoration: none;
  }
  
  
  
  /* Utility layout */
  .grid { display: grid; }
  .flex { display: flex; }
  .flex-col { flex-direction: column; }
  .gap-4 { gap: 1rem; }
  .gap-8 { gap: 2rem; }
  .gap-12 { gap: 3rem; }
  .block { display: block; }
  .hidden { display: none; }
  
  /* Typography */
  .font-light { font-weight: 300; }
  .font-medium { font-weight: 500; }
  .font-semibold { font-weight: 600; }
  .font-bold { font-weight: 700; }
  .text-lg { font-size: 1.125rem; }
  .text-xl { font-size: 1.25rem; }
  .text-primary-600 { color: #a61244; }
  .text-primary-900 { color: #400a1a; }
  .text-primary-100 { color: #f2dce3; }
  .text-gray-600 { color: #736c87; }
  .text-gray-700 { color: #403a4a; }
  .text-center { text-align: center; }
  
  /* Backgrounds */
  .bg-white { background-color: #ffffff; }
  .bg-gray-50 { background-color: #f8f7f9; }
  .bg-primary-100 { background-color: #f2dce3; }
  .bg-primary-50 { background-color: #f9f0f3; }
  .bg-white\/10 { background-color: rgba(255,255,255,0.1); }
  
  /* Borders */
  .border { border-width: 1px; border-style: solid; }
  .border-gray-100 { border-color: #E0DDE4; }
  
  /* Radius and shadow */
  .rounded-xl { border-radius: 0.75rem; }
  .rounded-2xl { border-radius: 1rem; }
  .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
  
  /* Sizing */
  .w-fit { width: fit-content; }
  .h-5 { height: 1.25rem; }
  .h-6 { height: 1.5rem; }
  .h-8 { height: 2rem; }
  
  /* Positioning */
  .absolute { position: absolute; }
  .bottom-10 { bottom: 2.5rem; }
  .-translate-x-1\/2 { transform: translateX(-50%); }
  
  /* Effects */
  .hover\\:bg-primary-50:hover { background-color: #f9f0f3; }
  .hover\\:bg-white\/20:hover { background-color: rgba(255,255,255,0.2); }
  
  /* Gradients and animation placeholders */
  .bg-gradient-to-r { background-image: linear-gradient(to right, var(--primary-600), var(--primary-900)); }
  .from-primary-600 { --tw-gradient-from: #a61244; }
  .animate-gradient {
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
  }
  .gradient-text {
    background: linear-gradient(to right, #a61244, #681B3D);
    -webkit-background-clip: text;
    color: transparent;
  }
  .backdrop-blur-md {
    backdrop-filter: blur(12px);
  }
  /* Обновление: адаптивная ширина */
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section-header p {
    max-width: none;
  }
  
  /* Вспомогательный класс на будущее */
  .full-width {
    max-width: none !important;
    width: 100% !important;
  }
  .lucide {
    display: inline-block;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  /* Specific icon (optional placeholder if needed) */
  .lucide-zap::before {
    content: '';
    /* можно оставить пустым или использовать в JS */
  }
  
  /* Size utility */
  .w-8 { width: 2rem; }
  .h-8 { height: 2rem; }
/* End */


/* Start:/local/templates/cisenergy_template/template_styles.css?174361086514635*/
:root {
    --primary-50: #f9f0f3;
    --primary-100: #f2dce3;
    --primary-200: #e5b3c3;
    --primary-300: #d989a3;
    --primary-400: #cd6083;
    --primary-500: #C91653;
    --primary-600: #a61244;
    --primary-700: #830e35;
    --primary-800: #681B3D;
    --primary-900: #400a1a;
    
    --gray-50: #f8f7f9;
    --gray-100: #E0DDE4;
    --gray-200: #c5c1cd;
    --gray-300: #a9a3b5;
    --gray-400: #8e879e;
    --gray-500: #736c87;
    --gray-600: #595368;
    --gray-700: #403a4a;
    --gray-800: #28232d;
    --gray-900: #141515;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s;
    padding: 1rem 0;
  }
  
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
  }
  
  .scrolled .logo {
    background: linear-gradient(to right, var(--primary-600), var(--primary-900));
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    position: relative;
  }
  
  .scrolled .nav-link {
    color: var(--gray-800);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-500), var(--primary-800));
    transition: width 0.3s;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .phone-button {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .scrolled .phone-button {
    color: var(--primary-600);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, var(--primary-500), var(--primary-800)) border-box;
    border: 2px solid transparent;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #C91653, #681B3D, #C91653, #141515);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.9;
  }
  
  .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#681B3D 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
  }
  
  .hero-content {
    position: relative;
    max-width: 48rem;
    animation: slideIn 0.6s ease-out forwards;
  }
  
  .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1.875rem;
    color: var(--primary-100);
    font-weight: 300;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  
  .btn-primary {
    background: white;
    color: var(--primary-900);
  }
  
  .btn-primary:hover {
    background: var(--primary-50);
    transform: scale(1.05);
  }
  
  .btn-glass {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }
  
  .btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .chevron-down {
    margin-left: 0.5rem;
    transition: transform 0.3s;
  }
  
  .btn-glass:hover .chevron-down {
    transform: translateY(4px);
  }
  
  /* Stats Section */
  .stats {
    padding: 4rem 0;
    background: var(--gray-50);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .stat-card h3 {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--primary-600);
    margin-bottom: 0.5rem;
  }
  
  .stat-card p {
    color: var(--gray-600);
  }
  
  /* Services Section */
  .services {
    padding: 6rem 0;
    background: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-500), var(--primary-800));
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 32rem;
    margin: 0 auto;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  /* Solutions Section */
  .solutions {
    padding: 6rem 0;
    background: var(--gray-50);
  }
  
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
  }
  
  .solution-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  
  .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-900);
    margin-bottom: 2rem;
  }
  
  /* Contact Section */
  .contact {
    padding: 6rem 0;
    background: white;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
  }
  
  .contact-info h3,
  .contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-900);
    margin-bottom: 2rem;
  }
  
  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    transition: background-color 0.3s;
  }
  
  .contact-item:hover {
    background: var(--primary-50);
  }
  
  .contact-item svg {
    color: var(--primary-600);
    margin-right: 1rem;
  }
  
  .contact-item .label {
    font-weight: 600;
  }
  
  .contact-item a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .contact-item a:hover {
    color: var(--primary-700);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(to right, var(--primary-500), var(--primary-800)) border-box;
    border: 1px solid transparent;
    transition: all 0.3s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px var(--primary-200);
  }
  
  /* Animations */
  @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .nav-links {
      display: flex;
      gap: 2rem;
    }
    
    .hero-buttons {
      flex-direction: row;
    }
    
    .hero h1 {
      font-size: 4.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  /*test*/
  .advantages { padding: 6rem 0; background-color: #fff; }
  .advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
  
  .industries-list, .solutions-list { display: flex; flex-direction: column; gap: 1rem; }
  
  .contact-form, .contact-info { padding: 2rem; }
  
  .map { padding: 6rem 0; background-color: #f8f7f9; }
  .map-container { overflow: hidden; border-radius: 1rem; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
  
  .scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: float 3s ease-in-out infinite; }
  
  .bg-gray-50 { background-color: #f8f7f9; }
  .bg-primary-100 { background-color: #f2dce3; }
  .bg-white { background-color: #ffffff; }
  
  .border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
  .border-gray-100 { border-color: #E0DDE4; }
  
  .flex { display: flex; }
  .items-center { align-items: center; }
  .font-semibold { font-weight: 600; }
  
  .hover\\:bg-primary-50:hover { background-color: #f9f0f3; }
  
  .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
  
  .rounded-xl { border-radius: 0.75rem; }
  .rounded-2xl { border-radius: 1rem; }
  .rounded-lg { border-radius: 0.5rem; }
  
  .p-3 { padding: 0.75rem; }
  .p-4 { padding: 1rem; }
  .p-8 { padding: 2rem; }
  
  .mb-4 { margin-bottom: 1rem; }
  .mb-6 { margin-bottom: 1.5rem; }
  .ml-4 { margin-left: 1rem; }
  .mr-4 { margin-right: 1rem; }
  
  .space-y-3 > * + * { margin-top: 0.75rem; }
  
  
  .bg-primary-50 { background-color: #f9f0f3; }
  .border-gray-100 { border-color: #E0DDE4; }
  .max-w-4xl { max-width: 56rem; }
  .text-center { text-align: center; }
  
  .text-gray-600 { color: #736c87; }
  .text-gray-700 { color: #403a4a; }
  .text-primary-100 { color: #f2dce3; }
  .text-primary-600 { color: #a61244; }
  .text-primary-900 { color: #400a1a; }
  
  .text-lg { font-size: 1.125rem; }
  .text-xl { font-size: 1.25rem; }
  
  .w-fit { width: fit-content; }
  
  
  
  
  
  /* Utility layout */
  .grid { display: grid; }
  .flex { display: flex; }
  .flex-col { flex-direction: column; }
  .gap-4 { gap: 1rem; }
  .gap-8 { gap: 2rem; }
  .gap-12 { gap: 3rem; }
  .block { display: block; }
  .hidden { display: none; }
  
  /* Typography */
  .font-light { font-weight: 300; }
  .font-medium { font-weight: 500; }
  .font-semibold { font-weight: 600; }
  .font-bold { font-weight: 700; }
  .text-lg { font-size: 1.125rem; }
  .text-xl { font-size: 1.25rem; }
  .text-primary-600 { color: #a61244; }
  .text-primary-900 { color: #400a1a; }
  .text-primary-100 { color: #f2dce3; }
  .text-gray-600 { color: #736c87; }
  .text-gray-700 { color: #403a4a; }
  .text-center { text-align: center; }
  
  /* Backgrounds */
  .bg-white { background-color: #ffffff; }
  .bg-gray-50 { background-color: #f8f7f9; }
  .bg-primary-100 { background-color: #f2dce3; }
  .bg-primary-50 { background-color: #f9f0f3; }
  .bg-white\/10 { background-color: rgba(255,255,255,0.1); }
  
  /* Borders */
  .border { border-width: 1px; border-style: solid; }
  .border-gray-100 { border-color: #E0DDE4; }
  
  /* Radius and shadow */
  .rounded-xl { border-radius: 0.75rem; }
  .rounded-2xl { border-radius: 1rem; }
  .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
  
  /* Sizing */
  .w-fit { width: fit-content; }
  .h-5 { height: 1.25rem; }
  .h-6 { height: 1.5rem; }
  .h-8 { height: 2rem; }
  
  /* Positioning */
  .absolute { position: absolute; }
  .bottom-10 { bottom: 2.5rem; }
  .-translate-x-1\/2 { transform: translateX(-50%); }
  
  /* Effects */
  .hover\\:bg-primary-50:hover { background-color: #f9f0f3; }
  .hover\\:bg-white\/20:hover { background-color: rgba(255,255,255,0.2); }
  
  /* Gradients and animation placeholders */
  .bg-gradient-to-r { background-image: linear-gradient(to right, var(--primary-600), var(--primary-900)); }
  .from-primary-600 { --tw-gradient-from: #a61244; }
  .animate-gradient {
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
  }
  .gradient-text {
    background: linear-gradient(to right, #a61244, #681B3D);
    -webkit-background-clip: text;
    color: transparent;
  }
  .backdrop-blur-md {
    backdrop-filter: blur(12px);
  }
  /* Обновление: адаптивная ширина */
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section-header p {
    max-width: none;
  }
  
  /* Вспомогательный класс на будущее */
  .full-width {
    max-width: none !important;
    width: 100% !important;
  }
  .lucide {
    display: inline-block;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  /* Specific icon (optional placeholder if needed) */
  .lucide-zap::before {
    content: '';
    /* можно оставить пустым или использовать в JS */
  }
  
  /* Size utility */
  .w-8 { width: 2rem; }
  .h-8 { height: 2rem; }
/* End */
/* /local/templates/cisenergy_template/css/styles.css?175103458415994 */
/* /local/templates/cisenergy_template/styles.css?174361896915299 */
/* /local/templates/cisenergy_template/template_styles.css?174361086514635 */
