 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: #333;
     overflow-x: hidden;
 }

 .nav {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     padding: 1rem 5%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     z-index: 1000;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .main-icon {
     width: 2.3%;
     height: auto;
     display: block;
 }

 .logo {
     font-size: 1.8rem;
     font-weight: bold;
     background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(247, 147, 30, 0.85) 50%, rgba(253, 184, 19, 0.9) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-right: 875px;
 }

 .nav-links {
     display: flex;
     gap: 2rem;
     list-style: none;
 }

 .nav-links a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     transition: color 0.3s;
 }

 .nav-links a:hover {
     color: #667eea;
 }

 .menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }

 .menu-toggle span {
     width: 25px;
     height: 3px;
     background: #333;
     margin: 3px 0;
     transition: 0.3s;
 }

 .hero {
     margin-top: 80px;
     min-height: 70vh;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
 }

 .hero-video {
     position: absolute;
     top: 50%;
     left: 50%;
     min-width: 100%;
     min-height: 100%;
     width: auto;
     height: auto;
     transform: translate(-50%, -50%);
     object-fit: cover;
     opacity: 0.3;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(247, 147, 30, 0.85) 50%, rgba(253, 184, 19, 0.9) 100%);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 3;
     text-align: center;
     color: white;
     padding: 0 5%;
     max-width: 1200px;
 }

 .hero-content {
     position: relative;
     z-index: 1;
 }

 .hero h1 {
     font-size: 3.5rem;
     margin-bottom: 1rem;
     animation: fadeInUp 1s ease;
 }

 .hero p {
     font-size: 1.3rem;
     margin-bottom: 2rem;
     opacity: 0.95;
     animation: fadeInUp 1s ease 0.2s backwards;
 }

 .cta-buttons {
     display: flex;
     gap: 1rem;
     justify-content: center;
     flex-wrap: wrap;
     animation: fadeInUp 1s ease 0.4s backwards;
 }

 .btn {
     padding: 1rem 2.5rem;
     border: none;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
     display: inline-block;
 }

 .btn-primary {
     background: white;
     color: rgb(246, 161, 3);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .btn-secondary {
     background: transparent;
     color: white;
     border: 2px solid white;
 }

 .btn-secondary:hover {
     background: white;
     color: rgb(246, 161, 3);
     transform: translateY(-3px);
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .features {
     padding: 5rem 5%;
     background: #f8f9fa;
 }

 .section-title {
     text-align: center;
     font-size: clamp(2rem, 5vw, 3rem);
     margin-bottom: 2rem;
     color: #1a1a1a;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .feature-card {
     background: white;
     padding: 2rem;
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s;
     cursor: pointer;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .feature-icon {
     width: 30%;
     height: auto;
 }

 .feature-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: rgb(246, 161, 3);
 }

 .how-it-works {
     padding: 5rem 5%;
     background: white;
 }

 .steps {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
     max-width: 1200px;
     margin: 0 auto;
     gap: 2rem;
 }

 .step {
     flex: 1;
     min-width: 250px;
     text-align: center;
     padding: 2rem;
 }

 .step-number {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(247, 147, 30, 0.85) 50%, rgba(253, 184, 19, 0.9) 100%);
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     font-weight: bold;
     margin: 0 auto 1rem;
 }

 .step h3 {
     margin-bottom: 1rem;
     color: #333;
 }

 .team {
     padding: 5rem 5%;
     background: #f8f9fa;
 }

 .team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
     max-width: 1000px;
     margin: 0 auto;
 }

 .team-member {
     text-align: center;
     padding: 1.5rem;
     background: white;
     border-radius: 15px;
     transition: all 0.3s;
 }

 .team-member:hover {
     transform: scale(1.05);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .member-avatar {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(247, 147, 30, 0.85) 50%, rgba(253, 184, 19, 0.9) 100%);
     margin: 0 auto 1rem;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     color: white;
 }

 .linkedin {
     width: 10%;
     height: auto;
 }

 .contact {
     padding: 5rem;
     background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(247, 147, 30, 0.85) 50%, rgba(253, 184, 19, 0.9) 100%);
     color: white;
     text-align: center;
 }

 .contact-form {
     max-width: 600px;
     margin: 2rem auto 0;
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .contact-form input,
 .contact-form textarea {
     padding: 1rem;
     border: none;
     border-radius: 10px;
     font-size: 1rem;
     font-family: inherit;
 }

 .contact-form textarea {
     resize: vertical;
     min-height: 150px;
 }

 .footer {
     background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
     color: white;
     padding: 5rem 5% 2rem;
     position: relative;
     overflow: hidden;
 }

 .footer-content {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     margin-bottom: 3rem;
 }

 .footer-section h3 {
     font-size: 1.3rem;
     margin-bottom: 1.5rem;
     font-weight: 800;
     background: linear-gradient(135deg, #FF6B35 0%, #FDB813 100%);
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .footer-about p {
     line-height: 1.8;
     opacity: 0.85;
     margin-bottom: 1.5rem;
 }

 .footer-contact {
     list-style: none;
 }

 .footer-contact li {
     margin-bottom: 0.8rem;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 0.8rem;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
 }

 .footer-links a:hover {
     color: #FDB813;
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     justify-content: center;
     flex-wrap: wrap;
     gap: 1.5rem;
 }

 .footer-bottom p {
     opacity: 0.7;
     margin: 0;
     font-size: 0.9rem;
 }

 @media (max-width: 768px) {
     .footer-content {
         grid-template-columns: 1fr;
         gap: 2.5rem;
     }
 }

 @media (max-width: 768px) {
     .menu-toggle {
         display: flex;
     }

     .nav-links {
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background: rgba(255, 255, 255, 0.98);
         backdrop-filter: blur(20px);
         flex-direction: column;
         padding: 2rem;
         box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
         display: none;
         gap: 1.5rem;
     }

     .nav-links.active {
         display: flex;
     }

     .features-grid,
     .steps,
     .team-grid {
         grid-template-columns: 1fr;
     }
 }

 @keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateX(-50%) translateY(0);
     }

     40% {
         transform: translateX(-50%) translateY(-20px);
     }

     60% {
         transform: translateX(-50%) translateY(-10px);
     }
 }