* {
  margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  line-height: 1.7;
	 color: #2a2a2a;
    background     :   #ffffff;
   overflow-x: hidden;
}

img

{


	 max-width: 100%;
  height: auto;
    display: block;}

a {
       text-decoration: none;
	color: inherit;
  transition: all 0.3s ease;
}

.container-main {
    padding: 0 25px;
    margin: 0 auto;
   max-width: 1240px;
}

.main-header   {
  background: #fff;
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
       position: sticky;
    top: 0;
   z-index: 999;
}

.header-container {
  max-width   :   1240px;
   margin: 0 auto;
	padding  :0 25px;
                    display  :   flex;
    justify-content    :  space-between;
  align-items: center;
  height: 82px; 

}

.site-logo  
  {
   height: 48px;
    width  :     auto;
}

.main-navigation		{
   display: block;
}

.nav-list {
  list-style: none;
  gap: 38px;
  display: flex;
}

.nav-list li a {
   color: #1a2e5a;
   font-size: 15px;
    font-weight :   500;
  position: relative;
}

.nav-list li a:hover {
  color: #3b7dff;
}

.nav-list li a::after {
  content: '';
    position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b7dff;
    transition: width 0.3s;
}

.nav-list li a:hover::after 
 {
               width: 100%; 

}



.mobile-toggle  {
  display: none;
    cursor: pointer;
  z-index: 1001;
  background: #3b7dff;
    border-radius: 30%;
}

.burger-icon {
   width: 28px;
  height: 28px;
}@media (max-width: 968px) {
    .main-navigation {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 82px);
        background: #fff;
        box-shadow: -4px 0 12px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
        padding: 35px 0;
        z-index: 1000;
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid #eee;
    }

    .nav-list li a {
        display: block;
        padding: 18px 28px;
    }

    .mobile-toggle {
        display: block;
    }
}.hero-banner {
   height: 720px;
    align-items: center;
  position: relative;
   display: flex;
  overflow: hidden; 

}

.hero-background {


   top: 0;
    height: 100%;
	position: absolute;
   width: 100%;
    object-fit: cover;
	 left:     0;

}


.hero-overlay {

		 position: absolute;

					top: 0;

    left: 0;

  width    :       100%;

    height: 100%;

  background: linear-gradient(135deg, rgba(59,125,255,0.85) 0%, rgba(26,46,90,0.9) 100%);
	}

.hero-content {
                    position: relative; 
					z-index: 2; 
     width: 100%;
}

.content-wrapper
	{
       max-width: 1240px;
          margin: 0 auto;
  padding: 0 25px;}

.hero-subtitle {
    color: #fff;
	 font-size: 14px;
  font-weight:700;
    text-transform: uppercase;
    letter-spacing: 2.1px;
   display: inline-block;
  margin-bottom     :      22px;
}


.hero-title {
   color: #fff;
    font-size: 68px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
    max-width: 680px;
} 

.hero-description {
  color: rgba(255,255,255,0.95);
   font-size: 17px;
  line-height     :      1.8;
  max-width: 620px;
  margin-bottom: 38px; 
	
}

.cta-button {
         display: inline-block;
  background: #fff;
  color: #3b7dff;
    padding: 16px 42px;
    font-size: 16px;
    font-weight: 600;
 border-radius: 6px;
    transition:all 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
     box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .hero-banner {
        height: 580px;
    }

    .hero-title {
        font-size: 42px;
    }
}.features-showcase {
  margin-top    :        -65px;
   position: relative;
   z-index: 3;
   padding-bottom: 85px; 
	
}

.feature-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-card {
	position: relative;
   height: 340px;
    overflow:  hidden;
}

.feature-img {
    object-fit: cover;
    width: 100%;
     height: 100%;
}

.feature-overlay {
	position: absolute;
   top: 0;
   left: 0;
       width: 100%;
  height: 100%;
	 opacity: 0.88;
	mix-blend-mode :     screen;


}  

.feature-danger .feature-overlay {
	 background: #ff4757;
}

.feature-success .feature-overlay {
   background: #2ed573;
}

.feature-warning .feature-overlay {

  background:       #ffa502; 
	}

.feature-text {
        bottom: 28px;
	   left :       28px;
	   z-index: 2;
	      position: absolute;
}

.feature-meta {
	 color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing:    1.8px;
    font-weight: 600;
	
}

.feature-text h3 {
   color: #fff;
	font-size: 32px;
  font-weight: 700;
        line-height: 1.3;
   margin-top: 8px; 
	
}@media (max-width: 968px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}.stats-counter {
   padding    :90px 0;
  background: #f8f9fc;
} 

.counter-wrapper {
    max-width: 1080px;
  margin: 0 auto;
}

.counter-box {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     border-radius: 12px;
       padding: 52px 35px;
     display     :       grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 35px;
	}

.stat-item {
	text-align: center;
     }

.stat-icon {
   width: 42px;
  height  :  42px;
	margin: 0 auto 18px;
  filter: brightness(0) invert(1);
}

.counter-number {
  display   :  block;
   font-size: 48px;
	 font-weight: 700;
   color: #fff;
    line-height: 1.2;
	
}

.counter-label {
               display :block;
	font-size  : 14px;
  color: rgba(255,255,255,0.9);
	 margin-top: 8px;

}@media (max-width: 968px) {
    .counter-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px;
    }
}

@media (max-width: 580px) {
    .counter-box {
        grid-template-columns: 1fr;
    }
}.about-section   {
  padding: 95px 0;
         position: relative;
}

.about-section::after {
  content: '';
    position: absolute;
	 top: 0;
	right: 0;
	bottom: 0;
	width :        58%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   z-index: -1;
}

.about-grid {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 0;
    align-items: center;


}

.about-image img {
	width   :  100%;
  height  :     580px;
  object-fit :       cover;
}

.about-content {
      padding: 0 52px;
	}

.section-label {
  color: rgba(255,255,255,0.95);
  font-size: 12px;
    text-transform: uppercase;
  letter-spacing: 2px;
    font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.section-heading {
    color: #fff;
  font-size: 42px;
   font-weight :       700;
  line-height: 1.3;
    margin-bottom: 28px;
}


.about-text {
  color: rgba(255,255,255,0.92);

   font-size: 15px;

    line-height: 1.8;

    margin-bottom: 22px;
}

.primary-link {
    display   :  inline-block;
   background: #3b7dff;
   color: #fff;
   padding: 14px 38px;
  font-size   :     15px;
    font-weight: 600;
   border-radius: 6px;
    margin-top: 12px;
    transition: all 0.3s;
}

.primary-link:hover  {
	background: #2563eb;
  transform: translateY(-2px);
}@media (max-width: 968px) {
    .about-section::after {
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-bottom: 45px;
    }

    .about-content {
        padding: 0 25px 45px;
    }
}.services-section {
    padding: 95px 0;
	background: #fff;
}

.section-intro  
  {
    text-align: center;
    margin-bottom: 68px;
}

.services-title {
   font-size: 52px; 
        font-weight: 700; 
   color: #1a2e5a; 
      margin-bottom: 18px;
}

.services-desc {
      font-size: 17px;
    color: #6b7280;}

.services-grid {
  display    :grid;
  grid-template-columns: repeat(4, 1fr);
     gap     : 32px;
}  

.service-card {


  padding: 38px 28px;
      border-radius: 8px;
    transition   : all 0.3s;
  background: #f8f9fc;

}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 42px rgba(0,0,0,0.12);
}

.service-icon {
  width: 52px;
   height: 52px;
	margin-bottom: 22px;
  filter: invert(41%) sepia(82%) saturate(2851%) hue-rotate(210deg) brightness(102%) contrast(102%);
	}

.service-card h3 {
       font-size: 20px;

	  color: #1a2e5a;

	   font-weight: 700;

	    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
               color: #6b7280;
  line-height: 1.7; 

}@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}.testimonials-area    {
    padding: 90px 0;
   background: #f8f9fc;

}

.testimonials-heading {
    font-size: 52px;
  color: #1a2e5a;
   font-weight: 700;
    text-align: center;
   margin-bottom    :  62px;
}

.testimonials-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap   :        38px;
}

.testimonial-box {
   background   :    #fff;
  padding: 38px;
    border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.testimonial-date {

	          font-size: 11px;
	 color: #9ca3af;
   text-transform: uppercase;
   letter-spacing: 1.2px;
     font-weight: 600;
  margin-bottom: 12px;

	}

.testimonial-title {
    font-size: 22px;
  color: #1a2e5a;
      font-weight: 700;
	margin-bottom: 15px;
}

.rating-stars {
  display: flex;
    gap:    6px;
   margin-bottom: 18px;
}

.star-icon {
	width: 18px;
          height: 18px;
  filter: invert(58%) sepia(86%) saturate(1874%) hue-rotate(318deg) brightness(101%) contrast(101%);
}

.testimonial-content {


    font-size: 14px;
  color: #6b7280;
   line-height: 1.8;
  margin-bottom  :       28px;}



.author-info {
  display: flex;
   align-items: center;
    gap: 18px;
}

.author-avatar img {


    width: 54px;
    height   :   54px;
  border-radius: 50%;
   object-fit: cover;


}

.author-name {
    font-size :        15px;
   color: #3b7dff;
  font-weight: 700;
}

.author-location {
         display: block;
  font-size: 12px;
   color: #9ca3af;
    font-weight: 400;
   margin-top: 4px;
}@media (max-width: 968px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
    }
}.cta-section	{
     padding: 95px 0; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     }

.cta-content {
   text-align: center;
      max-width: 780px;
                  margin: 0 auto;
}

.cta-heading {
  font-size: 48px;

		color: #fff;

	   font-weight: 700;

	    margin-bottom: 22px;

}

.cta-text  
  {


	font-size: 17px;
  color: rgba(255,255,255,0.95);
   line-height: 1.8;
  margin-bottom: 38px;
     }

.cta-btn-large {
  display: inline-block;
  background: #fff;
	color: #667eea;
   padding: 18px 52px;
       font-size: 17px;
    font-weight:700;
   border-radius :  6px;
  transition: all 0.3s;
}

.cta-btn-large:hover  
  {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.site-footer {
   background: #0f172a;
    padding: 75px 0 35px;
}

.footer-grid {
     display: grid;
    grid-template-columns: 1.2fr 1fr;
   gap:       65px;
  margin-bottom :     52px;
	}

.footer-heading     {
    font-size: 22px;
   color: #fff;
					font-weight: 700;
    margin-bottom: 22px;
}

.footer-text {
               font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height     :   1.8;
    margin-bottom: 28px;
}

.footer-contact p {
	font-size: 14px;
  color: rgba(255,255,255,0.72);
        margin-bottom: 12px; 
	
}

.footer-links-section {


  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 42px;}

.footer-subtitle {
   font-size: 16px;
    font-weight     :      700;
    color: #fff;
   margin-bottom: 18px;
}

.footer-list {
    list-style: none;
}

.footer-list li     {
    margin-bottom: 12px;
}  

.footer-list li a {

	    font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;


     } 

.footer-list li a:hover  
  {
  color: #3b7dff;
}

.footer-bottom {

	  border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 32px;
   text-align: center;}

.copyright-text {
   font-size: 13px;
  color: rgba(255,255,255,0.58);
}@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
    }
}.blog-hero {


   position: relative;
  height: 420px;
  display     :  flex;
  align-items: center;
    overflow: hidden;
   margin-bottom: 0;

}

.blog-hero-background {
  top: 0;
  width: 100%;
  position: absolute;
   height: 100%;
  left: 0;
  object-fit: cover;
}


.blog-hero-overlay {
    position: absolute;
      top   :     0;
    left: 0;
    width :  100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59,125,255,0.88) 0%, rgba(26,46,90,0.92) 100%); 

}

.blog-hero-content {
          position: relative;

    z-index: 2;

   width: 100%;
}

.breadcrumb {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
   margin-bottom: 22px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.85);
	 text-decoration: underline;
}

.breadcrumb a:hover {
	  color: #fff;


}

.blog-category {

  color: #fff;
   font-size: 12px;
    font-weight: 700;
	text-transform: uppercase;
				 letter-spacing: 2.1px;
  display : inline-block;
	 margin-bottom: 18px;}

.blog-title {
       color: #fff;
	    font-size: 52px;
	    font-weight: 700;
	     line-height: 1.2;
	  margin-bottom    : 22px;
	                    max-width: 820px;
}

.blog-meta {
  color: rgba(255,255,255,0.88);
    font-size     :  14px;
}

.blog-content-wrapper  
  {
  padding: 85px 0;

    background: #fff;
}

.blog-content {
               max-width: 820px;
  margin: 0 auto;
   padding: 0 25px;
}

.blog-content h2 {
   font-size: 32px;
  font-weight: 700;
   color: #1a2e5a;
       margin   :    48px 0 22px;
      line-height: 1.3;
}

.blog-content h3 {
   font-size: 24px;
  font-weight: 700;
 color: #1a2e5a;
   margin: 38px 0 18px;
   line-height: 1.4;
}

.blog-content p {
   font-size: 16px;
		line-height: 1.85;
    color: #374151;
   margin-bottom: 24px;


}

.blog-content strong {
	    color: #1a2e5a;
    font-weight: 600;


}

.highlight-box {

	  background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border-left: 4px solid #3b7dff;
			padding: 28px 32px;
   margin: 38px 0;
				 border-radius: 6px;
     }

.highlight-box p {
  margin-bottom: 0;
  color: #1e3a8a;
}

.blog-cta {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 48px 42px;
    border-radius: 8px;
  text-align: center;
  margin-top: 62px;
	}

.blog-cta h3 {
  color  :  #fff;
  font-size: 28px;
          font-weight   :  700;
   margin: 0 0 18px;
}  

.blog-cta p {
  color: rgba(255,255,255,0.95);
   font-size: 16px;
	margin-bottom  :     28px;
}

.blog-cta-button {
    display: inline-block;
    -webkit-border-radius    :     6px;
    background: #fff;
  color: #667eea;
               padding: 15px 42px;
    font-size  :   16px;
  font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.blog-cta-button:hover  {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}@media (max-width: 768px) {
    .blog-hero {
        height: 380px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-content h2 {
        font-size: 26px;
    }

    .blog-content h3 {
        font-size: 20px;
    }
}.cookie-alert {
      position: fixed;
   bottom: 0;
   left: 0;
     right: 0;
   background: #1a2e5a;
      padding: 22px 0;
  z-index: 9998;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.15);
  display: none;

}

.cookie-alert.show {
   display :      block;
    animation: slideUp 0.4s ease;
}@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}.cookie-content{
 max-width :1240px;
    margin: 0 auto;
    padding: 0 25px;
   display: flex;
    align-items     :  center;
	justify-content: space-between;
   gap: 32px;
}

.cookie-text h4

{
    color: #fff; 
    font-size: 18px; 
   font-weight: 700; 
   margin-bottom: 8px;
}

.cookie-text p {
  color: rgba(255,255,255,0.9);
    font-size: 14px;
      line-height: 1.6;
    margin: 0;
}

.cookie-actions {
  display: flex;
    gap     :     12px;
  flex-shrink: 0;
}

.cookie-btn {
   padding: 12px 28px;
	border: none;
   border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
   font-size: 14px;
   font-weight: 600;
  cursor: pointer;
      transition: all 0.3s;
   white-space: nowrap;
}

.cookie-btn.accept		{
  color: #fff;
     background: #3b7dff;
}

.cookie-btn.accept:hover

{
	background: #2563eb;
}

.cookie-btn.decline {
	background: transparent;
   color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}


.cookie-btn.decline:hover     {

  border-color  :      #fff;


}@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}.as span     {
    color: #7451aa;
}

.as h3 {
      color     :#111;
     }

.empty-state-section {
   padding: 120px 0 140px;
  background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
  min-height: calc(100vh - 82px);
   display: flex;
                    align-items:center;
}

.empty-state-content {

   text-align: center;
   max-width: 680px;
   margin: 0 auto;
   padding: 0 25px;}

.empty-state-icon {

  width: 120px;
    height: 120px;
  margin: 0 auto 42px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       border-radius: 50%;
	display: flex;
  align-items: center;
    justify-content  :center;
    position: relative;

}

.empty-state-icon::before {
     content: '';
  position: absolute;
    width: 140px;
       height: 140px;
  border: 2px solid rgba(102, 126, 234, 0.2);
	border-radius: 50%;
   animation: pulse 2s ease-in-out infinite;
     }@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}.empty-state-icon svg {
	 width: 58px;
	height: 58px;
  filter: brightness(0) invert(1);


}

.empty-state-title {

	 font-size: 42px;
    font-weight: 700;
    color    :  #1a2e5a;
  margin-bottom: 22px;
   line-height    : 1.3;

}

.empty-state-description {
  font-size: 17px;
                    color: #6b7280;
      line-height: 1.8;
    margin-bottom: 18px;
}

.empty-state-note {
  font-size :    15px; 
	    color  :    #9ca3af; 
	   margin-bottom: 48px;
}

.empty-state-actions   {
    display: flex;
    gap   :      18px;
  justify-content    :  center;
  flex-wrap: wrap;
}

.empty-state-btn-primary {
     display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
  padding: 16px 42px;
  font-size :  16px;
   font-weight: 600;
  border-radius: 6px;
   transition: all 0.3s;
}

.empty-state-btn-primary:hover {
  transform: translateY(-3px); 
	  box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);

}

.empty-state-btn-secondary {
          display: inline-block;
    background: #fff;
  color: #667eea;
   padding: 16px 42px;
   font-size: 16px;
   font-weight: 600;
    border-radius: 6px;
	 border: 2px solid #667eea;
	transition: all 0.3s;

}

.empty-state-btn-secondary:hover {

   background: #667eea;
   color: #fff;


}

.features-preview {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap   : 28px;
   margin-top: 85px;
    max-width :920px;
  margin-left: auto;
    margin-right    :     auto;
}


.feature-preview-item {
  background: #fff;
	 padding: 32px 24px;
    border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	
}

.feature-preview-icon	{
   width: 42px;
    height: 42px;
  margin-bottom: 18px;
  filter: invert(41%) sepia(82%) saturate(2851%) hue-rotate(210deg) brightness(102%) contrast(102%); 

}

.feature-preview-title {
  font-size: 18px;
	 font-weight: 700;
   color     :        #1a2e5a;
  margin-bottom: 10px;
}

.feature-preview-text {
    font-size: 14px;
       color: #6b7280;
      line-height: 1.6;

}@media (max-width: 768px) {
    .empty-state-section {
        padding: 80px 0 100px;
    }

    .empty-state-title {
        font-size: 32px;
    }

    .empty-state-actions {
        flex-direction: column;
    }

    .empty-state-btn-primary,
    .empty-state-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .features-preview {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }
}