:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #000;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.secondary-btn:hover {
    background-color: var(--text-light);
    color: var(--white);
}

.view-btn {
    background-color: var(--secondary-color);
}

.download-btn {
    background-color: var(--success-color);
}

.download-btn:hover {
    background-color: #219653;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}
.banner {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ban__text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ban__dow {
    font-size: 1rem;
    margin: 0 0 15px 0;
    opacity: 0.9;
    font-weight: 400;
}

.ban__but {
    background-color: white;
    color: #3498db;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.ban__but:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

.ban__but:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .banner {
        padding: 12px 15px;
    }
    
    .ban__text {
        font-size: 1.3rem;
    }
    
    .ban__dow {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .ban__but {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner {
        flex-direction: column;
        padding: 20px 15px;
        position: static;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        justify-content: center;
        z-index: 1001;
    }
    
    .ban__text {
        font-size: 1.2rem;
        margin-bottom: 5px;
        position: static;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        justify-content: center;
        z-index: 1001;
    }
    
    .ban__dow {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .ban__but {
        width: 90%;
        max-width: 200px;
        padding: 10px;
    }
}

@media (max-width: 320px) {
    .banner {
        position: static;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        justify-content: center;
        z-index: 1001;
    }
   
    .ban__text {
        font-size: 1.4rem;
    }
    
    .ban__dow {
        font-size: 1rem;
        margin: 10px 0 20px;
    }
    
    .ban__but {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

.header {
    top: 0;
    left: 0;
    width: 100%;
   padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.nav-list a.active,
.nav-list a:hover {
    color: var(--accent-color);
}

.nav-list a.active:after,
.nav-list a:hover:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1002;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    transition: all 0.3s ease;
}
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg/1.jpg') no-repeat center center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
}

.page-hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg/2.jpg') no-repeat center center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

.hero-content,
.page-hero .container {
    width: 100%;
}

.hero h1,
.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p,
.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid,
.service-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item,
.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover,
.feature-card:hover {
    transform: translateY(-10px);
}

.feature-item i,
.feature-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 20px;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial span {
    font-weight: 500;
    color: var(--accent-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
    margin: 0 10px;
}

.accordion-item,
.faq-item,
.specs-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-header,
.faq-question,
.specs-header {
    width: 100%;
    padding: 20px;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover,
.faq-question:hover,
.specs-header:hover {
    background-color: var(--light-color);
}

.accordion-header i,
.faq-question i,
.specs-header i {
    transition: var(--transition);
}

.accordion-header.active i,
.faq-question.active i,
.specs-header.active i {
    transform: rotate(180deg);
}

.accordion-content,
.faq-answer,
.specs-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background-color: var(--white);
    transition: max-height 0.3s ease;
}

.accordion-content p,
.faq-answer p,
.specs-content p {
    padding: 20px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--light-color);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    margin: 5px;
}

.tab-btn.active {
    background-color: var(--accent-color);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-categories {
  padding: 80px 0;
  background-color: #f9fbfd;
}

.product-categories h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 700;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 25px;
  background: #e9ecef;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #5d6d7e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  color: white;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.tab-btn:hover:not(.active) {
  background: #d6dadd;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.product-card:hover .image-placeholder {
  transform: scale(1.05);
}

.product-card:nth-child(1) .image-placeholder {
  background-image: url('images/placeholder/1.jpg');
  background-color: #e0e5ec;
}

.product-card:nth-child(2) .image-placeholder {
  background-image: url('images/placeholder/2.jpg');
  background-color: #e0e5ec;
}

.product-card:nth-child(3) .image-placeholder {
  background-image: url('images/placeholder/3.jpg');
  background-color: #e0e5ec;
}

#access .product-card:nth-child(1) .image-placeholder {
  background-image: url('images/placeholder/4.jpg');
}

#access .product-card:nth-child(2) .image-placeholder {
  background-image: url('images/placeholder/5.jpg');
}

#access .product-card:nth-child(3) .image-placeholder {
  background-image: url('images/placeholder/6.jpg');
}

#personal .product-card:nth-child(1) .image-placeholder {
  background-image: url('images/placeholder/7.jpg');
}

#personal .product-card:nth-child(2) .image-placeholder {
  background-image: url('images/placeholder/8.jpg');
}

#personal .product-card:nth-child(3) .image-placeholder {
  background-image: url('images/placeholder/9.jpg');
}

.product-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 20px 20px 10px;
  font-weight: 600;
}

.product-card p {
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0 20px 20px;
  min-height: 60px;
}

.view-btn {
  display: block;
  margin: 0 20px 20px;
  padding: 10px 20px;
  background: #3498db;
  color: white;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.view-btn:hover {
  background: #2980b9;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .product-categories {
    padding: 60px 0;
  }
  
  .product-categories h2 {
    font-size: 2rem;
  }
  
  .category-tabs {
    gap: 10px;
  }
  
  .tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .product-image {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .category-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 320px) {
  .product-categories {
    padding: 50px 0;
  }
  
  .product-categories h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .tab-btn {
    width: 100%;
    text-align: center;
  }
  
  .product-image {
    height: 160px;
  }
  
  .product-card p {
    font-size: 0.95rem;
    min-height: auto;
  }
  
  .view-btn {
    margin: 0 15px 15px;
    padding: 8px 15px;
  }
}
.contact-form-section {
    padding: 60px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.contact-info {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.info-item {
    margin-bottom: 30px;
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.app-promo {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.app-promo .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.app-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.app-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-top: 40px;
}
.app-image .image-placeholder
{
    background-image: url(images/app/app.jpg);
}
.expert-team {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
  padding: 100px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-block;
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
}

.highlight {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-description {
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.member-photo {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .member-photo img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .photo-overlay {
  opacity: 1;
}

.member-info {
  padding: 25px;
}

.member-info h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 700;
}

.position {
  display: block;
  color: #3498db;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.bio {
  color: #5d6d7e;
  line-height: 1.7;
  margin-bottom: 20px;
}

.expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-tag {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.team-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-cta p {
  color: #5d6d7e;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .expert-team {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .member-photo {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-description {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .expert-team {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .member-info {
    padding: 20px;
  }
  
  .bio {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 12px 25px;
  }
}
 .thank-you-section {
            text-align: center;
            padding: 100px 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .thank-you-icon {
            font-size: 5rem;
            color: #2ecc71;
            margin-bottom: 30px;
            animation: bounce 1s ease infinite alternate;
        }
        
        @keyframes bounce {
            to { transform: translateY(-15px); }
        }
        
        .thank-you-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .thank-you-text {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background: #3498db;
            color: white;
        }
        
        .btn-primary:hover {
            background: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .btn-outline {
            border: 2px solid #3498db;
            color: #3498db;
        }
        
        .btn-outline:hover {
            background: #3498db;
            color: white;
        }
        
        @media (max-width: 768px) {
            .thank-you-section {
                padding: 60px 20px;
            }
            
            .thank-you-title {
                font-size: 2rem;
            }
            
            .thank-you-text {
                font-size: 1rem;
            }
        }
.comprehensive-security {
  background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.comprehensive-security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(23, 190, 187, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(100, 255, 218, 0.15) 0%, transparent 25%);
  z-index: 0;
  animation: float 12s infinite ease-in-out alternate;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
  100% { transform: translate(20px, 20px); }
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comprehensive-security h2 {
  font-size: 2.8rem;
  color: #64ffda;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  letter-spacing: 1px;
}

.comprehensive-security h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #64ffda, #1a7f72);
  transform: scaleX(0);
  transform-origin: left;
  animation: titleUnderline 2s 0.5s forwards;
}

@keyframes titleUnderline {
  to { transform: scaleX(1); }
}

.security-content {
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  margin-bottom: 60px;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transform: translateY(50px);
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

@keyframes fadeUp {
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

.security-content p {
  color: #ccd6f6;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.security-content h3 {
  color: #64ffda;
  font-size: 1.6rem;
  margin: 40px 0 20px;
  position: relative;
  padding-left: 20px;
}

.security-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  height: 60%;
  width: 4px;
  background: #64ffda;
  border-radius: 2px;
}

.security-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  perspective: 1000px;
}

.stat-item {
  background: rgba(100, 255, 218, 0.05);
  border: 1px solid rgba(100, 255, 218, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.5s ease;
  transform-style: preserve-3d;
  transform: rotateY(20deg) translateZ(0);
  opacity: 0;
  animation: statAppear 0.8s forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 1s; }
.stat-item:nth-child(3) { animation-delay: 1.2s; }

@keyframes statAppear {
  to { 
    transform: rotateY(0) translateZ(0);
    opacity: 1;
  }
}

.stat-item:hover {
  background: rgba(100, 255, 218, 0.1);
  transform: translateY(-10px) rotateY(0) translateZ(20px);
  box-shadow: 0 15px 30px rgba(100, 255, 218, 0.1);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #64ffda;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #64ffda, #1a7f72);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-desc {
  color: #8892b0;
  font-size: 1rem;
  font-weight: 500;
}

.comprehensive-security::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
  animation: glow 8s infinite alternate;
  z-index: 1;
}

@keyframes glow {
  0% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(50px, 50px); opacity: 0.5; }
  100% { transform: translate(-50px, -50px); opacity: 0.3; }
}

@media (max-width: 992px) {
  .comprehensive-security h2 {
    font-size: 2.4rem;
  }
  
  .security-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .comprehensive-security {
    padding: 80px 0;
  }
  
  .comprehensive-security h2 {
    font-size: 2rem;
  }
  
  .security-content h3 {
    font-size: 1.4rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .security-stats {
    grid-template-columns: 1fr;
  }
  
  .security-content {
    padding: 25px 20px;
  }
}

@media (max-width: 320px) {
  .comprehensive-security h2 {
    font-size: 1.8rem;
  }
  
  .security-content p {
    font-size: 1rem;
  }
  
  .stat-item {
    padding: 25px 20px;
  }
}
.advanced-services {
  background: linear-gradient(to bottom, #f9fbfd 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: #7f8c8d;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.service-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}
.security-architecture {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fbfd 0%, #eef2f6 100%);
    position: relative;
    overflow: hidden;
}

.security-architecture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(46, 204, 113, 0.05) 0%, transparent 20%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.architecture-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.architecture-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.highlight-text {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-description {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.8;
}

.architecture-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.defense-layer {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.defense-layer:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.layer-visual {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hexagon {
    width: 80px;
    height: 80px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon i {
    font-size: 2rem;
    color: #3498db;
}

.layer-number {
    position: absolute;
    bottom: -15px;
    width: 40px;
    height: 40px;
    background: aqua;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #f8f9fa;
}

.layer-content {
    padding: 40px 30px;
}

.layer-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.layer-description p {
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.layer-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.layer-description li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #5d6d7e;
    line-height: 1.6;
}

.layer-description li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2ecc71;
}

.layer-description strong {
    color: #2c3e50;
    font-weight: 600;
}

.architecture-cta {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.cta-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-content p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 250px;
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52,152,219,0.3);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-visual {
    flex: 1;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.animated-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#3498db 1px, transparent 1px);
    background-size: 15px 15px;
    z-index: 1;
    animation: moveDots 60s linear infinite;
}

@keyframes moveDots {
    0% { background-position: 0 0; }
    100% { background-position: 500px 500px; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .architecture-cta {
        flex-direction: column;
    }
    
    .cta-visual {
        order: -1;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .security-architecture {
        padding: 60px 0;
    }
    
    .architecture-intro h2 {
        font-size: 2rem;
    }
    
    .layer-content {
        padding: 30px 25px;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-tag {
        font-size: 0.8rem;
    }
    
    .architecture-intro h2 {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .layer-content h3 {
        font-size: 1.3rem;
    }
    
    .layer-description p,
    .layer-description li {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .architecture-intro h2 {
        font-size: 1.6rem;
    }
    
    .layer-visual {
        height: 150px;
    }
    
    .hexagon {
        width: 60px;
        height: 60px;
    }
    
    .hexagon i {
        font-size: 1.5rem;
    }
    
    .layer-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .layer-content {
        padding: 25px 20px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7) 100%);
}

.service-content {
  padding: 30px;
  position: relative;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  position: absolute;
  top: -35px;
  right: 30px;
  box-shadow: 0 10px 25px rgba(52,152,219,0.3);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(15deg) scale(1.1);
}

.service-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-description p {
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-description ul {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
}

.service-description li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #5d6d7e;
}

.service-description li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #3498db;
  border-radius: 50%;
}

.service-btn {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(52,152,219,0.3);
}

.services-cta {
  display: flex;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.cta-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.cta-content p {
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-btn {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 250px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(52,152,219,0.3);
  color: white;
}

.cta-image {
  flex: 1;
  min-height: 400px;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .services-cta {
    flex-direction: column;
  }
  
  .cta-image {
    min-height: 300px;
    order: -1;
  }
}

@media (max-width: 992px) {
  .services-header h2 {
    font-size: 2.4rem;
  }
  
  .service-content {
    padding: 25px;
  }
  
  .cta-content {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .advanced-services {
    padding: 80px 0;
  }
  
  .services-header h2 {
    font-size: 2rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    top: -30px;
  }
  
  .service-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-image {
    height: 200px;
  }
  
  .cta-content {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 320px) {
  .services-header h2 {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .service-description p {
    font-size: 0.95rem;
  }
  
  .service-btn {
    padding: 10px 20px;
  }
}
.security-showcase {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.showcase-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
}

.accent-text {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-description {
  color: #7f8c8d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.solution-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.solution-media {
  position: relative;
  height: 250px;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.solution-card:hover .solution-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.tech-badge {
  position: absolute;
  bottom: -25px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(52,152,219,0.3);
  z-index: 2;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.solution-content {
  padding: 40px 30px 30px;
}

.solution-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.solution-description p {
  color: #5d6d7e;
  line-height: 1.8;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #5d6d7e;
}

.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #3498db;
  border-radius: 50%;
}

.solution-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  background: rgba(52, 152, 219, 0.08);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #7f8c8d;
}
.achievements-section {
  background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(23, 190, 187, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(100, 255, 218, 0.1) 0%, transparent 25%);
  animation: float 15s infinite ease-in-out alternate;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  display: inline-block;
  background: rgba(100, 255, 218, 0.2);
  color: #64ffda;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.highlight {
  background: linear-gradient(90deg, #64ffda, #1a7f72);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-description {
  color: #8892b0;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.counter-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: transform 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-10px);
  background: rgba(100, 255, 218, 0.05);
}

.counter-icon {
  width: 70px;
  height: 70px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #64ffda;
  font-size: 1.8rem;
}

.counter-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 15px;
}

.count {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  background: linear-gradient(90deg, #64ffda, #1a7f72);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.counter-suffix {
  font-size: 1.5rem;
  color: #64ffda;
  margin-left: 5px;
  line-height: 1;
  font-weight: 500;
}

.counter-card h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 600;
}

.counter-card p {
  color: #8892b0;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .achievements-section {
    padding: 80px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .count {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .counters-grid {
    grid-template-columns: 1fr;
  }
  
  .counter-card {
    padding: 30px 25px;
  }
}

@media (max-width: 320px) {
  .achievements-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .count {
    font-size: 2.5rem;
  }
  
  .counter-card h3 {
    font-size: 1.2rem;
  }
}
.showcase-cta {
  display: flex;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.cta-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.cta-content p {
  color: #5d6d7e;
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 250px;
}

.cta-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52,152,219,0.3);
}

.cta-button:hover i {
  transform: translateX(5px);
}

.cta-visual {
  flex: 1;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.animated-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#3498db 1px, transparent 1px);
  background-size: 15px 15px;
  z-index: 1;
  animation: moveDots 60s linear infinite;
}

@keyframes moveDots {
  0% { background-position: 0 0; }
  100% { background-position: 500px 500px; }
}

@media (max-width: 1024px) {
  .showcase-cta {
    flex-direction: column;
  }
  
  .cta-visual {
    order: -1;
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .security-showcase {
    padding: 80px 0;
  }
  
  .showcase-header h2 {
    font-size: 2rem;
  }
  
  .solution-media {
    height: 220px;
  }
  
  .solution-content {
    padding: 30px 25px;
  }
  
  .cta-content {
    padding: 40px 30px;
  }
}

@media (max-width: 576px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-stats {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
  }
}

@media (max-width: 320px) {
  .security-showcase {
    padding: 60px 0;
  }
  
  .showcase-header h2 {
    font-size: 1.8rem;
  }
  
  .section-tag {
    font-size: 0.8rem;
  }
  
  .solution-content {
    padding: 25px 20px;
  }
  
  .features-list li {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
.security-benefits {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.security-benefits::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52,152,219,0.03) 0%, transparent 70%);
  z-index: 0;
  animation: pulse 15s infinite alternate;
}

@keyframes pulse {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px -5px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(10deg) scale(1.1);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 600;
}

.benefit-card p {
  color: #7f8c8d;
  line-height: 1.7;
  font-size: 1.05rem;
}

.achievements {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.achievement-item {
  text-align: center;
  padding: 20px;
  min-width: 220px;
  transition: transform 0.3s ease;
}

.achievement-item:hover {
  transform: scale(1.05);
}

.achievement-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 10px;
  line-height: 1;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievement-text {
  font-size: 1rem;
  color: #7f8c8d;
  font-weight: 500;
}

@media (max-width: 992px) {
  .security-benefits {
    padding: 80px 0;
  }
  
  .benefit-card {
    padding: 30px 25px;
  }
  
  .achievement-item {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
  }
  
  .achievements {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }
  
  .achievement-item {
    margin-bottom: 30px;
    width: 100%;
  }
  
  .achievement-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .security-benefits {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .achievement-number {
    font-size: 2.5rem;
  }
}
.future-security {
  background: linear-gradient(to bottom, #ffffff 0%, #f9fbfd 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.future-security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 2;
}

.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.future-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: 700;
}

.highlight {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 3px;
}

.future-features {
  margin-bottom: 40px;
}

.feature {
  display: flex;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(52,152,219,0.1) 0%, rgba(46,204,113,0.1) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  color: #3498db;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.feature-text p {
  color: #7f8c8d;
  line-height: 1.7;
}

.future-stats {
  display: flex;
  gap: 30px;
}

.stat {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  min-width: 150px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #3498db;
  line-height: 1;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: #7f8c8d;
  font-weight: 500;
}

.future-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.future-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.floating-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.future-image:hover .floating-image {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.future-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.overlay-content i {
  font-size: 1.2rem;
}

.future-description {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.future-description p {
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.tech-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.badge {
  background: rgba(52,152,219,0.1);
  color: #3498db;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.badge:hover {
  background: #3498db;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .future-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .future-image {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .future-content h2 {
    font-size: 2.4rem;
    text-align: center;
  }
  
  .future-features {
    max-width: 600px;
    margin: 0 auto 40px;
  }
  
  .future-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .future-security {
    padding: 80px 0;
  }
  
  .future-content h2 {
    font-size: 2rem;
  }
  
  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .future-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat {
    width: 100%;
    max-width: 200px;
  }
}
.evolution-timeline {
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-intro h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.highlight {
  background: linear-gradient(90deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: #7f8c8d;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.timeline-wrapper {
  position: relative;
  padding: 40px 0;
}

.timeline-bar {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #3498db, #2ecc71);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 4px;
}

.timeline-items {
  position: relative;
  z-index: 2;
}

.timeline-item {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
  width: 50%;
  position: relative;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  justify-content: flex-end;
}

.timeline-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 30px;
  width: calc(100% - 60px);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.timeline-year {
  position: absolute;
  top: -20px;
  left: 20px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.timeline-content p {
  color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.tech-list li {
  background: rgba(52,152,219,0.1);
  color: #3498db;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.timeline-footer {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: center;
  color: #7f8c8d;
  line-height: 1.8;
  font-size: 1.1rem;
  padding: 0 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid #3498db;
  border-radius: 50%;
  top: 40px;
  z-index: 3;
}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

@media (max-width: 992px) {
  .timeline-card {
    padding: 25px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 768px) {
  .timeline-bar {
    left: 20px;
    transform: none;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 40px;
  }
  
  .timeline-item::before {
    left: 10px !important;
    right: auto !important;
  }
  
  .section-intro h2 {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .evolution-timeline {
    padding: 60px 0;
  }
  
  .section-intro {
    margin-bottom: 40px;
  }
  
  .timeline-content h3 {
    font-size: 1.3rem;
  }
  
  .timeline-content p {
    font-size: 0.95rem;
  }
  
  .timeline-footer {
    font-size: 1rem;
    margin-top: 40px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
  
  .section-intro h2 {
    font-size: 1.8rem;
  }
  
  .timeline-card {
    padding: 20px 15px;
    width: calc(100% - 30px);
  }
  
  .timeline-year {
    left: 15px;
    font-size: 0.8rem;
  }
  
  .tech-list li {
    padding: 4px 12px;
    font-size: 0.8rem;
  }
  
  .timeline-footer {
    padding: 0;
  }
}
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--light-color);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-color);
}

@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 58px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        margin: 20px 0;
    }

    .burger {
        display: block;

    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero p,
    .page-hero p {
        font-size: 1rem;
    }

    .app-content {
        padding-right: 0;
        text-align: center;
    }

    .thank-you-actions {
        flex-direction: column;
        gap: 10px;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
    }

    .category-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .form-container,
    .contact-info {
        padding: 30px 20px;
    }
}