 /* Hero */
 .hero {
     padding: 80px 0;
     background: #F9F9F9;
 }

 .hero__container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 60px;
     flex-wrap: wrap;
 }

 .hero__content {
     max-width: 600px;
 }

 .hero__title {
     font-size: 48px;
     font-weight: 700;
     line-height: 1.2;
     color: #25282D;
     margin-bottom: 20px;
 }

 .hero__subtitle {
     color: #6F7074;
     line-height: 1.6;
     margin-bottom: 30px;
 }

 .hero__buttons {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .hero__stats {
     display: flex;
     gap: 40px;
     flex-wrap: wrap;
 }

 .hero__stat {
     text-align: center;
 }

 .hero__stat-num {
     display: block;
     font-size: 36px;
     font-weight: 700;
     color: var(--orange);
     margin-bottom: 5px;
 }

 .hero__stat-label {
     color: #8A8A8A;
 }

 /* Sections */
 .sections {
     padding: 90px 0;
 }

 .sections__title {
     text-align: center;
     margin-bottom: 50px;
 }

 .sections__grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .section-card {
     background: #fff;
     box-shadow: 0px 36px 80px 0px rgba(204, 204, 204, 0.15);
     border-radius: 20px;
     padding: 40px 30px;
     text-decoration: none;
     transition: transform 0.3s, box-shadow 0.3s;
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .section-card:hover {
     transform: translateY(-5px);
     box-shadow: 0px 36px 80px 0px rgba(204, 204, 204, 0.3);
 }

 .section-card__icon {
     width: 60px;
     height: 60px;
     background: #F9F9F9;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .section-card__icon img {
     width: 30px;
     height: auto;
 }

 .section-card__title {
     color: #25282D;
 }

 .section-card__desc {
     color: #6F7074;
     line-height: 1.5;
 }

 /* Advantages */
 .advantages {
     padding: 90px 0;
     background: #F9F9F9;
 }

 .advantages__title {
     text-align: center;
     margin-bottom: 50px;
 }

 .advantages__list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
 }

 .advantage {
     text-align: center;
 }

 .advantage__icon {
     font-size: 40px;
     margin-bottom: 15px;
 }

 .advantage__title {
     margin-bottom: 10px;
     color: #25282D;
 }

 .advantage p {
     color: #6F7074;
     line-height: 1.5;
 }