* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    opacity: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    position: relative;
    background-size: contain;      
    background-position: center;  
    background-repeat: no-repeat;  
    padding: 12px;
    border-radius: 50%;
    display: flex;     
    align-items: center;
    justify-content: center;
    width: 60px;    
    height: 60px;     
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.logo-icon i {
    color: white;
    font-size: 32px;
}
.logo-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #10b981;
    display: flex;     
    align-items: center;
    justify-content: center;
    width: 30px;    
    height: 30px;     
    border-radius: 50%;
}
.logo-badge i {
    color: white;
    font-size: 16px;
}
.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
}
.logo-text p {
    font-size: 14px;
    color: #6b7280;
}
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #10b981;
}
.nav-phone {
    background: #10b981;
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}
.nav-phone:hover {
    background: #059669;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 24px;
    color: #374151;
}
.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #059669;
}
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.mobile-nav-link:hover {
    color: #10b981;
}
.mobile-nav-phone {
    background: #10b981;
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition: background-color 0.3s;
}

.mobile-nav-phone:hover {
    background: #059669;
}
.hero {
  position: relative;
  padding-top: 80px;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero {
  position: relative;
  padding-top: 80px;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-text {
  position: relative;
  z-index: 2;
  background: rgba(5, 1, 24, 0.7);
  padding: 20px;
  border-radius: 12px;
}
.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide:first-child {
    opacity: 1;
  }
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 10s ease-in-out;
}
.slide.active {
  opacity: 1;
  transform: scale(1.1);
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 80px 0;
}
.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}
.hero-title-accent {
    color: #34d399;
    display: block;
}
.hero-description {
    font-size: 20px;
    margin-bottom: 32px;
    color: white;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.btn-primary {
    background: #10b981;
    color: white;
}
.btn-primary:hover {
    background: #059669;
    transform: scale(1.05);
}
.btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}
.btn-secondary:hover {
    background: white;
    color: #111827;
}
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}
.hero-card:hover {
    transform: rotate(0deg);
}
.hero-card:nth-child(1) {
    transform: rotate(2deg);
}
.hero-card:nth-child(2) {
    transform: rotate(-2deg);
    margin-top: 32px;
}
.hero-card:nth-child(3) {
    transform: rotate(1deg);
}
.hero-card:nth-child(4) {
    transform: rotate(-1deg);
    margin-top: 32px;
}
.hero-card i {
    font-size: 48px;
    color: #34d399;
    margin-bottom: 16px;
}
.hero-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.hero-card p {
    color: #d1d5db;
    font-size: 14px;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}
.services {
    padding: 80px 0;
    background: #f9fafb;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.service-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}
.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-icon {
    color: #10b981;
    margin-bottom: 16px;
}
.service-icon i {
    font-size: 32px;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}
.service-card p {
    color: #6b7280;
}
.process {
    padding: 80px 0;
    background: white;
}
.process-timeline {
    position: relative;
}
.process-desktop {
    display: block;
}
.process-line {
    height: 2px;
    background: linear-gradient(90deg, #059669, #10b981);
    border-radius: 1px;
    margin-bottom: 2rem;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.process-step {
    text-align: center;
    position: relative;
}
.process-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s;
}
.process-step:hover .process-number {
    transform: scale(1.1);
}
.process-icon {
    position: absolute;
    top: -0.5rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}
.process-step:hover .process-icon {
    opacity: 1;
}
.process-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}
.process-description {
    font-size: 0.875rem;
    color: #6b7280;
}
.process-cta {
    margin-top: 3rem;
    text-align: center;
}
.process-mobile {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}
.process-mobile-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.process-mobile-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.process-mobile-number:hover{
    transform: scale(1.1);
}
.process-mobile-content {
    flex: 1;
    padding-bottom: 2rem;
}
.process-mobile-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.process-mobile-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}
.process-mobile-title + i {
    color: #059669;
}
.process-mobile-description {
    color: #6b7280;
}
.stats {
    padding: 80px 0;
    background: #111827;
    color: white;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item {
    transition: transform 0.3s;
}
.stat-item:hover {
    transform: scale(1.05);
}
.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #34d399;
    margin-bottom: 8px;
}
.stat-label {
    color: #d1d5db;
}
.about {
    padding: 80px 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
}
.about-text p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 24px;
}

.advantages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.advantage {
    display: flex;
    align-items: center;
    gap: 12px;
}
.advantage i {
    color: #10b981;
    font-size: 24px;
}
.advantage span {
    color: #374151;
}
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-card {
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}
.about-card:hover {
    transform: scale(1.05);
}
.about-card:nth-child(1) {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}
.about-card:nth-child(2) {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    margin-top: 32px;
}
.about-card i {
    font-size: 48px;
    margin-bottom: 16px;
}
.about-card:nth-child(1) i {
    color: #059669;
}
.about-card:nth-child(2) i {
    color: #6b7280;
}
.about-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}
.about-card p {
    color: #6b7280;
}
.testimonials {
    padding: 80px 0;
    background: #f9fafb;
}
.testimonials h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #111827;
    margin-bottom: 64px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.testimonial-rating {
    display: flex;
    margin-bottom: 16px;
}
.testimonial-rating i {
    color: #fbbf24;
    font-size: 20px;
}
.testimonial-card p {
    color: #6b7280;
    margin-bottom: 16px;
    font-style: italic;
}
.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}
.author-name {
    font-weight: 600;
    color: #111827;
}
.author-company {
    font-size: 14px;
    color: #6b7280;
}
.contact {
    padding: 80px 0;
    background: linear-gradient(90deg, #111827, #000);
    color: white;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 24px;
}
.contact-info p {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact-item i {
    color: #34d399;
    font-size: 24px;
}
.contact-label {
    font-weight: 600;
}
.contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-item a:hover {
    color: white;
}
.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
}
.success-message {
    text-align: center;
    padding: 196.4px 0;
}
.success-message i {
    font-size: 64px;
    color: #34d399;
    margin-bottom: 16px;
}
.success-message h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}
.success-message p {
    color: #d1d5db;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-weight: 500;
    font-size: 14px;
}
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #34d399;
    box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.2);
}
.form-group textarea {
    resize: none;
}
.footer {
    background: #111827;
    color: white;
    padding: 48px 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-logo .logo-icon2 {
    position: relative;
    background: linear-gradient(135deg, #059669, #10b981);
    background-size: contain;      
    background-position: center;  
    background-repeat: no-repeat;  
    border-radius: 50%;
    display: flex;     
    align-items: center;
    justify-content: center;
    width: 45px;    
    height: 45px;     
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    padding: 8px;
}
.footer-logo .logo-icon2 i {
    font-size: 24px;
}
.footer-logo .logo-badge2 {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #10b981;
    display: flex;     
    align-items: center;
    justify-content: center;
    width: 23px;    
    height: 23px;     
    border-radius: 50%;

}
.footer-logo .logo-badge2 i {
    font-size: 12px;
}
.footer-logo h3 {
    font-size: 20px;
    font-weight: bold;
}
.footer-logo p {
    font-size: 12px;
    color: #9ca3af;
}
.footer-description {
    color: #9ca3af;
    margin-bottom: 16px;
}
.footer-copyright {
    font-size: 12px;
    color: #6b7280;
}
.footer-services h4,
.footer-contacts h4 {
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-services ul,
.footer-contacts ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-services a,
.footer-contacts a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-services a:hover,
.footer-contacts a:hover {
    color: white;
}
.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #9ca3af;
}
.footer-contacts i {
    font-size: 16px;
}
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0;
    }
    .hero-title {
        font-size: 36px;
    }
    .hero-cards {
        grid-template-columns: 1fr;
    }
    .hero-card:nth-child(2),
    .hero-card:nth-child(4) {
        margin-top: 0;
    }
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .timeline-line {
        display: none;
    }
    .timeline-step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
    }
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 16px;
        margin: 0;
        flex-shrink: 0;
    }
    .step-icon {
        display: none;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-cards {
        grid-template-columns: 1fr;
    }
    .process-desktop {
        display: none;
    }
    .process-mobile {
        display: flex;
    }
    .about-card:nth-child(2) {
        margin-top: 0;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .container {
        padding: 0 16px;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-description {
        font-size: 18px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .section-header p {
        font-size: 18px;
    }
}