body {
    margin: 0;
    font-family: Arial;
    background: #f5f5f5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: white;

    border:2px solid #ff9900;

    border-top:none;

    border-radius:35px 35px 0 0;
}

.logo {
    font-size: 26px;
    font-weight: bold;
}

.logo span {
    color: orange;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
}

.btn{
    background:#ff9900;
    color:white;
    text-decoration:none;

    padding:12px 24px;

    border:none;
    border-radius:10px;

    font-size:13px;
    font-weight:700;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    transition:0.3s;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(255,153,0,.35);
}

.btn-outline {
    border: 2px solid orange;
    padding: 10px 20px;
    background: none;
    color: orange;
}

.hero {
    position: relative;
    height: 650px;
    background: url('../img/truck.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.2));
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    max-width: 500px;
}



.buttons {
    display: flex;
    gap: 15px;
}
.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #111; /* темнее */
}

.hero-content span {
    color: #ff8c00; /* яркий оранжевый */
}

.subtitle {
    font-size: 20px;
    margin-top: 15px;
    font-weight: 500;
    color: #222; /* насыщеннее */
}

.hero-content {
    position: relative;
    max-width: 500px;
    text-shadow: 0 2px 8px rgba(255,255,255,0.5);
}
/* FEATURES */
.features {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 50px 80px;
    text-align: center;

position:relative;
    margin-top:-60px;
    z-index:10;

    border-radius:25px;
    width:90%;
    margin-left:auto;
    margin-right:auto;
}

.feature {
    width: 150px;
}

.feature i {
    font-size: 26px;
    color: orange;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature p {
    font-size: 11px;
    color: #777;
}

.icon {
    font-size: 30px;
    color: orange;
    margin-bottom: 10px;
}

/* WORKS */
.works h2 {
    margin-bottom: 30px;
}

.cards {
    display: flex;
    gap: 25px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 32%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    display: block;
}

.card-info {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    font-size: 14px;
}

.card-info span {
    color: gray;
    font-size: 12px;
}

.views {
    color: gray;
    font-size: 12px;
}

.center {
    text-align: center;
    margin-top: 30px;
}

/* HOW */
.how {
    background: #fff;
    padding: 50px;
    text-align: center;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* расстояние между элементами */
    margin-top: 40px;
}

.step {
    text-align: center;
    min-width: 120px;
}

.circle {
    width: 80px;
    height: 80px;
    border: 2px solid orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background: white;
}

.circle i {
    font-size: 22px;
    color: orange;
}

.line {
    width: 80px; /* длиннее линия */
    height: 2px;
    background: #ccc;
}

/* REVIEWS */
.reviews {
    padding: 80px 60px;
    background: #f5f5f5;
    text-align: center;
}

.reviews-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.review {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: left;
}

.quote {
    font-size: 30px;
    color: orange;
}

.review p {
    font-size: 14px;
    margin: 10px 0;
}

.review span {
    font-size: 12px;
    color: gray;
}

.review h3 {
    margin-top: 15px;
    font-size: 14px;
}

.arrow {
    font-size: 30px;
    color: orange;
    cursor: pointer;
}
.mockup {
    display: flex;
    padding: 60px;
    background: #f5f5f5;
    align-items: center;
    gap: 40px;
}

.mockup-left img {
    width: 350px; /* было 500 → уменьшаем */
    border-radius: 15px;
}

.mockup-right {
    width: 50%;
}

.mockup-right h2 {
    margin-bottom: 20px;
}

.form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form input {
    width: 48%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-btn{
    background:linear-gradient(135deg,#ff9f00,#ffbf3f);
    border:none;
    border-radius:18px;
    padding:18px 35px;
    font-weight:700;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(255,159,0,.3);
}

.form-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(255,159,0,.45);
}
/* FOOTER */
.footer {
    background: #0d0d0d;
    color: white;
    padding: 60px 80px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    width: 180px;
}

.footer-col h2 span {
    color: orange;
}

.footer-col h3 {
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-col p {
    font-size: 13px;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #777;
}
.gallery {
    padding: 50px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.audience {
    padding: 80px 40px;
    background: #f9f9f9;
}

.audience-title {
    text-align: center;
    margin-bottom: 40px;
}

.audience-title span {
    color: orange;
}

.audience-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.audience-card.orange {
    border-top: 5px solid orange;
}

.audience-card.blue {
    border-top: 5px solid #2b6cb0;
}

.audience-item {
    background: #f5f5f5;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
}

.audience-item h4 {
    margin: 0;
    font-size: 14px;
}

.audience-item p {
    font-size: 12px;
    color: #555;
}

.works {
    position: relative;
    text-align: center;
    padding: 100px 20px;

    background: url('../img/bg.jpg') center/cover no-repeat;
    color: white;
border-radius:50px;
    overflow:hidden;

box-shadow:
        0 0 20px rgba(255,153,0,.25),
        0 0 40px rgba(255,153,0,.12);

 border:1px solid rgba(255,153,0,.4);

    box-shadow:
        0 0 20px rgba(255,153,0,.2);
}

.works-text {
    max-width: 600px;
    margin: 20px auto;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.big-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: orange;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.big-btn:hover {
    background: #e67600;
    transform: scale(1.05);
}

.works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}
.works * {
    position: relative;
    z-index: 2;
}

.works h2 {
    font-size: 40px;
    font-weight: 800;
}

.audience-card {
    width: 40%;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.audience-card:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.audience-item {
    background: #f5f5f5;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;

    transition: 0.3s;
}

.audience-item:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.audience-card .btn {
    transition: 0.3s;
}

.audience-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,140,0,0.4);
}

.features {
    display: flex;
    justify-content: space-around;
    background: #fff;
    padding: 40px;
    text-align: center;

    opacity: 0;
    transform: translateY(50px);
    animation: showFeatures 1s ease forwards;
}

@keyframes showFeatures {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature {
    width: 180px;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}
.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }
.feature:nth-child(5) { animation-delay: 0.5s; }
.feature:nth-child(6) { animation-delay: 0.6s; }

.step {
    border: 2px solid orange;
    border-radius: 50%;
    padding: 20px;
    width: 120px;
    text-align: center;

    opacity: 0;
    transform: translateY(40px);
    animation: stepShow 0.8s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.3s; }
.step:nth-child(3) { animation-delay: 0.5s; }
.step:nth-child(4) { animation-delay: 0.7s; }
.step:nth-child(5) { animation-delay: 0.9s; }

@keyframes stepShow {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step {
    position: relative;
}

.steps {
    position: relative;
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

.step:hover {
    background: orange;
    color: white;
    transform: scale(1.1);
}
.step:hover img {
    transform: scale(1.2);
}

.why-us {
    padding: 100px 60px;
    background: #111;
    color: white;
    text-align: center;
}

.why-us h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.why-card {
    background: #1b1b1b;
    padding: 35px;
    border-radius: 15px;
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-10px);
    border: 1px solid orange;
}

.why-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

html{
    scroll-behavior:smooth;
}

.form-group{
    display:flex;
    align-items:center;
    background:white;
    border:2px solid #eee;
    border-radius:10px;
    padding:10px 15px;
    margin-bottom:15px;
    transition:.3s;
}

.form-group span{
    font-size:20px;
    margin-right:10px;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    font-size:18px;
    color:#222;
}

.form-group{
    background:#fff;
    border-radius:20px;
    border:2px solid #ececec;
    padding:18px 20px;
    margin-bottom:18px;
    transition:0.3s;
}

.form-group:hover{
    border-color:#ff9f00;
    box-shadow:0 0 20px rgba(255,159,0,0.15);
}

.form-group:focus-within{
    border-color:#ff9f00;
    box-shadow:0 0 25px rgba(255,159,0,0.25);
}

.success-message{
    display:none;
    margin-top:15px;
    color:#28a745;
    font-weight:bold;
    font-size:18px;
}

.hero-content{
    animation: slideLeft 1s ease;
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes zoomHero{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.btn{
    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(255,152,0,.35);
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

.form-group i{
    color: orange;
    font-size: 20px;
    width: 25px;
    margin-right: 12px;
}

.faq-section{
    padding:100px 10%;
    background:#f7f7f7;
}

.faq-section h2{
    text-align:center;
    font-size:52px;
    margin-bottom:60px;
    font-weight:800;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.faq-item:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(255,165,0,0.15);
}

.faq-question{
    width:100%;
    border:none;
    background:white;
    padding:28px 35px;
    font-size:24px;
    font-weight:700;
    text-align:left;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    color:orange;
    font-size:36px;
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    padding:0 35px;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 35px 30px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:50px;
    height:50px;
    background:#ff9900;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    transition:0.3s;
}

.social-icons a:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(255,153,0,0.4);
}

footer{
    background:#050505;
    border-top:2px solid #ff9900;
    border-radius:40px 40px 0 0;
    padding:70px 50px;
}

.footer-btn{
    background:#ff9900;
    color:white;
    padding:16px 35px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s;
}

.footer-btn:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(255,153,0,.5);
}

.mockup-image img{
    width:100%;
    border-radius:30px;
    transition:0.4s ease;
    box-shadow:0 15px 40px rgba(255,153,0,0.15);
}

.mockup-image img:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(255,153,0,0.35);
}

.mockup-form{
    background:#ffffff;
    padding:40px;
    border-radius:30px;
    box-shadow:0 15px 50px rgba(0,0,0,0.08);
}

.input-group{
    background:#fff;
    border:2px solid #f1f1f1;
    border-radius:20px;
    padding:18px 20px;
    margin-bottom:20px;
    transition:0.3s;
}

.input-group:hover{
    border-color:#ff9900;
}

.input-group:focus-within{
    border-color:#ff9900;
    box-shadow:0 0 20px rgba(255,153,0,0.25);
}

.input-group i{
    color:#ff9900;
    font-size:22px;
    margin-right:12px;
}

.input-group input,
.input-group textarea{
    border:none;
    outline:none;
    width:100%;
    background:transparent;
    font-size:17px;
}

.mockup-btn{
    background:#ff9900;
    color:white;
    border:none;
    padding:18px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(255,153,0,0.25);
}

.mockup-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,153,0,0.45);
}

.mockup-form h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

.mockup-form h2 span{
    color:#ff9900;
}

/* Блок формы */

.mockup-right{
    background:#fff;
    padding:40px;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

/* Фото */

.mockup-left img{
    border-radius:30px;
    transition:.4s;
    box-shadow:0 15px 35px rgba(255,159,0,.25);
}

.mockup-left img:hover{
    transform:scale(1.03);
    box-shadow:0 25px 50px rgba(255,159,0,.35);
}

@media(max-width:992px){

.why-drivingad h2{
    font-size:42px;
}

}

.why-drivingad{
    background:#050505;
    padding:100px 8%;
}

.why-drivingad h2{
    text-align:center;
    color:white;
    font-size:64px;
    font-weight:800;
    margin-bottom:70px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:#111;
    border-radius:28px;
    padding:50px 35px;
    text-align:center;
    border:1px solid rgba(255,170,0,0.15);
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(255,170,0,0.12);
    border-color:rgba(255,170,0,0.35);
}

.feature-card i{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:#171717;
    color:#ffb000;
    font-size:38px;
    margin-bottom:25px;

    box-shadow:
    0 0 15px rgba(255,170,0,0.12);
}

.feature-card h3{
    color:white;
    font-size:34px;
    font-weight:700;
    line-height:1.3;
}

@media(max-width:992px){

.features-grid{
    grid-template-columns:1fr;
}

.why-drivingad h2{
    font-size:42px;
}

.feature-card h3{
    font-size:26px;
}

}

.why-drivingad{
    background:#000;
    border-radius:80px;
    margin:80px 0;
    padding:120px 60px;
    position:relative;
    overflow:hidden;

    box-shadow:
        0 0 30px rgba(255,170,0,.08),
        0 0 60px rgba(255,170,0,.04);
}

.why-drivingad::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);

    width:220px;
    height:4px;

    background:#ffb000;
    border-radius:20px;

    box-shadow:
        0 0 20px #ffb000,
        0 0 40px rgba(255,176,0,.5);
}

.why-drivingad::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);

    width:220px;
    height:4px;

    background:#ffb000;
    border-radius:20px;

    box-shadow:
        0 0 20px #ffb000,
        0 0 40px rgba(255,176,0,.5);
}

.hero{
    position:relative;
    height:620px;

    background:
url("../img/premium-bg.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
    overflow:hidden;

    display:flex;
    align-items:center;

    padding:0 60px;
}

.hero-content{
    max-width:360px;
    position:relative;
    z-index:3;
}

.hero-content h1{
    font-size: 48px;
    line-height: 1;
    color: #2f2f33;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
    font-weight: 800;
}

.hero-content .orange{
    color: #f7a400;
}

.hero-content p{

    color: #4d4d4d;
    font-size: 18px;
    margin-top: 10px;
}

.hero-buttons{
    margin-top:25px;
    display:flex;
    gap:12px;
}

.hero-btn{
    background:#ff9900;
    color:white;
    text-decoration:none;

    padding:12px 28px;

    border-radius:8px;

    font-size:12px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(247,164,0,.4);
}

.hero-truck{
    position:absolute;
    right:320px;
    top:10px;
    width:42%;
    max-width:none;
    z-index:2;
}

.hero-truck img{
    width: 160%;
    height: auto;
    display: block;

    filter: drop-shadow(0 25px 50px rgba(0,0,0,.45));
animation: truckEnter 4s ease-out forwards;
}

@keyframes truckEnter{
    0%{
        opacity: 0;
        transform:
        translate(500px,200px)
        scale(.85);
    }

    100%{
        opacity: 1;
        transform:
        translate(0,0)
        scale(1);
    }
}
@keyframes truckEnter {
    from {
        transform: translateX(500px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.hero-title{
    font-size:48px;
    line-height:1;
    font-weight:800;
    color:white;
    max-width:420px;
}

.hero-title span {
    color: #ff9900;

    text-shadow:
        0 0 10px rgba(255,153,0,.7),
        0 0 25px rgba(255,153,0,.5);
}

.hero-btn-outline{
    background:transparent;
    border:1px solid #ff9900;
    color:#ff9900;
}

.step-modal{
    display:none;

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.7);

    justify-content:center;
    align-items:center;

    z-index:9999;
}

.step-modal-content{
    width:900px;
    max-width:90%;

    padding:50px 60px;

    border-radius:35px;

    background:
    linear-gradient(
        135deg,
        #fffdf9 0%,
        #ffffff 45%,
        #fff8ee 100%
    );

    position:relative;

    text-align:center;

    box-shadow:
        0 25px 80px rgba(0,0,0,.25),
        0 0 40px rgba(255,153,0,.15);

    animation:popup .35s ease;
}
.step-modal-content::before{
    content:"";

    position:absolute;
    inset:0;

    border-radius:35px;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,153,0,.12),
        transparent 35%
    );

    pointer-events:none;
}
#modalTitle{
    font-size:56px;
    font-weight:800;

    color:#ff9900;

    margin-bottom:25px;

    text-shadow:
        0 0 15px rgba(255,153,0,.15);
}
#modalText{
    font-size:22px;
    line-height:2;

    color:#444;

    white-space:pre-line;
}
.close-modal{
    position:absolute;

    top:20px;
    right:30px;

    font-size:42px;

    color:#ff9900;

    cursor:pointer;

    transition:.3s;
}

.close-modal:hover{
    transform:rotate(90deg);
}
@keyframes popup{

    from{
        opacity:0;
        transform:scale(.92);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}
.step-modal-content{
    position:relative;

    width:900px;
    max-width:90%;

    padding:60px;

    background:linear-gradient(
        135deg,
        #ffffff,
        #fff9f0
    );

    border-radius:40px;

    overflow:hidden;

    box-shadow:
    0 25px 80px rgba(0,0,0,.25),
    0 0 40px rgba(255,153,0,.20);

    text-align:center;
}
.step-modal-content::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:120px;
    height:100%;

    background:linear-gradient(
        to bottom,
        #ff9900,
        #ffb733
    );

    border-radius:40px 0 0 40px;

    pointer-events:none;
}

#modalTitle{
    font-size:72px;
    font-weight:800;

    color:#ff9900;

    margin-bottom:30px;

    position:relative;
    z-index:2;
}

#modalText{
    font-size:24px;
    line-height:2;

    color:#444;

    position:relative;
    z-index:2;

    white-space:pre-line;
}

.close-modal{
    position:absolute;

    top:25px;
    right:35px;

    font-size:42px;

    color:#ff9900;

    cursor:pointer;

    z-index:5;
}

.close-modal:hover{
    transform:rotate(90deg);
}

@keyframes popup{
    from{
        opacity:0;
        transform:scale(.92);
    }

    to{
        opacity:1;
        transform:scale(1);
    }
}

.modal-note{
    margin-top:40px;

    padding:20px;

    border:2px solid #ffd28a;

    border-radius:20px;

    background:#fff8ee;

    color:#ff9900;

    font-size:20px;

    font-weight:600;
}
.contact-icons{
    margin-left:12px;
}

.contact-icons i{
    color:#8a8a8a;
    font-size:16px;

    margin-left:8px;

    cursor:default;
}

.feature-card{
    cursor:pointer;
}

.feature-card:hover{
    transform:translateY(-10px);
}
.step-modal-content h2{
    font-size:42px;
    line-height:1.2;
    color:#ff9900;
    margin-bottom:30px;
}

.step-modal-content p{
    font-size:19px;
    line-height:1.8;
    color:#444;
    max-width:900px;
    margin:auto;
}

.lang-switcher{
    display:flex;
    gap:10px;
}

.lang-switcher button{
    padding:8px 15px;
    border:none;
    background:#ff9900;
    color:white;
    border-radius:20px;
    cursor:pointer;
    font-weight:600;
}

.lang-switcher button:hover{
    background:#ffb733;
}

.language-menu{
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
}

.lang-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#ffffff;
    color:#ff9800;
    font-size:24px;
    cursor:pointer;
    border:2px solid #ff9800;
    box-shadow:0 8px 25px rgba(255,165,0,.2);
    transition:.3s;
}

.lang-btn:hover{
    background:#ff9800;
    color:white;
    transform:translateY(-2px);
}

.lang-dropdown{
    display:none;
    position:absolute;
    top:55px;
    left:0;
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    overflow:hidden;
    min-width:180px;
    z-index:9999;
}

.lang-dropdown button{
    width:100%;
    padding:14px;
    border:none;
    background:white;
    text-align:left;
    cursor:pointer;
    font-size:16px;
}

.lang-dropdown button:hover{
    background:#f5f5f5;
}

.lang-dropdown.active{
    display:block;
}