:root {
    --primary-blue: #007bff;
    --dark-blue: #2c3e50;
    --light-gray: #f8f9fa;
    --text-color: #333;
    --white: #fff;
    --orange: #ff8c00;
    --whatsapp-green: #25D366;
    --telegram-blue: #26A5E4;
}

@font-face {
  font-family: 'gothic';
  src: url('/fonts/Gothic60-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.gothic {
  font-family: 'gothic', sans-serif;
}

@font-face {
  font-family: 'montserrat';
  src: url('/fonts/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.montserrat {
  font-family: 'montserrat', sans-serif;
}

.dark-list {
  list-style: none; 
  list-style-position: inside;  
}

.dark-list li {
  padding-left: 15px; 
  position: relative; 
  color: #f0f0f0;    
}

.dark-list li::before {
  content: "•"; 
  color: #ff8c00; 
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
}

a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.primary-button {
    background-color: var(--orange);
    color: var(--white);
    border: none;
}

.primary-button:hover {
    background-color: #e67e00;
    text-decoration: none;
}

.header {
    background-color: var(--dark-blue);
    color: var(--orange);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative; 
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
    margin-right: 10px;
}

/* Основная навигация */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav a {
    color: var(--white);
    margin-left: 25px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--orange);
    text-decoration: none;
}

/* Кнопка бургер-меню */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 90;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 23px;
    height: 3px;
    background-color: var(--white);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu-toggle-icon {
    position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.menu-toggle-icon::before {
    top: -7px;
}

.menu-toggle-icon::after {
    top: 7px;
}

/* Анимация гамбургера при открытии, чтоб красиво было */
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-7px) rotate(-45deg);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.contact-info span {
    white-space: nowrap;
}

.currency-rate {
    font-weight: 600;
    color: var(--orange);
}

/* тут картинка грузовика */
.hero-section {
    background-image: url('/img/pkq4hWNb.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1500px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 750;
    margin-bottom: 3px;
    line-height: 1.2;
}

.promo-text-box {
    background-color: rgba(0, 0, 0, 0.0);
    padding: 55px;
    border-radius: 18px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: 1px;
    margin-right: 9px;
}

.promo-text-box p {
    font-size: 32px;
    line-height: 1.5;
    color: #f0f0f0;
    text-align: left;
}

/* штука со всякими реквизитами и контактами */
.vat-refund-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.vat-refund-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.vat-text {
    max-width: 700px;
    text-align: left;
}

.vat-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.vat-text p {
    font-size: 18px;
    line-height: 1.6;
}

.vat-icon {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
}

.features-section {
    padding: 80px 0px;
    background-color: var(--light-gray);
}

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

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #e67e00;
}

.card-icon img {
    filter: invert(55%) sepia(95%) saturate(3000%) hue-rotate(6deg) brightness(100%) contrast(100%);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    color: #555;
}

.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding-top: 60px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--orange);
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-block p {
    font-size: 15px;
    margin-bottom: 8px;
}

.copyright {
    background-color: #22303e;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.telegram-fixed-button {
    position: fixed;
    bottom: 90px;   
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--telegram-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;   
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.telegram-fixed-button:hover {
    transform: scale(1.05);
    background-color: #1A8BC0; 
}

.telegram-fixed-button img {
    width: 35px;
    height: 35px;
}

/* кнопка ватсапа */
.whatsapp-fixed-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-fixed-button:hover {
    transform: scale(1.05);
    background-color: #1DA851;
}

.whatsapp-fixed-button img {
    width: 35px;
    height: 35px;
}

/* АДАПТИВНОСТЬ */

/* Планшеты и меньше (меньше 992px) */
@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo {
        margin-bottom: 0;
        margin-right: 0;
    }

    /* На планшетах меню всё ещё видно, но компактнее */
    .main-nav a {
        margin-left: 15px;
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .promo-text-box p {
        font-size: 16px;
    }

    .vat-refund-content {
        flex-direction: column;
        gap: 30px;
    }

    .vat-text {
        text-align: center;
    }

    .vat-text h2 {
        font-size: 30px;
    }

    .vat-icon {
        font-size: 90px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-section {
        height: 500px;
    }
    
    .faq-item.active .faq-answer-panel {
        max-height: 1000px;
    }
}

/* Мобильные устройства (768px) */
@media (max-width: 768px) {

    .logo {
        font-size: 16px;
    }

    .menu-toggle {
        display: block; /* кнопка-бургер */
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-blue);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        z-index: 99;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        margin: 10px 0;
        font-size: 18px;
        text-align: center;
        width: 100%;
    }

    .contact-info {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .promo-text-box {
        padding: 20px;
        max-width: 90%;
    }

    .promo-text-box p {
        font-size: 15px;
    }

    .vat-refund-section {
        padding: 50px 0;
    }

    .vat-text h2 {
        font-size: 28px;
    }

    .vat-text p {
        font-size: 16px;
    }

    .features-section {
        padding: 50px 0;
    }
}

/* Маленькие мобильные (480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 14px;
    }

    .hero-section {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .promo-text-box {
        padding: 15px;
    }

    .promo-text-box p {
        font-size: 14px;
    }

    .button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .vat-text h2 {
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .whatsapp-fixed-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-fixed-button img {
        width: 30px;
        height: 30px;
    }

    .telegram-fixed-button {
        width: 50px;
        height: 50px;
        bottom: 72px;
        right: 15px;
    }

    .telegram-fixed-button img {
        width: 30px;
        height: 30px;
    }
    
    .faq-item.active .faq-answer-panel {
        max-height: 800px;
    }
}

.faq-section {
    background: #f5f7fa; 
    padding: 50px 0px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 32px;
}

.faq-container h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.faq-container .subtitle {
    text-align: center;
    color: #636e72;
    margin-bottom: 36px;
    font-size: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
    border-color: var(--orange);
    box-shadow: 0 8px 28px rgba(108, 92, 231, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    background: #fafaff;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d3436;
    text-align: left;
    gap: 16px;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--orange);
    background: rgba(108, 92, 231, 0.02);
}

.faq-item.active .faq-question {
    color: var(--orange);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    position: relative;
}

.faq-item.active .faq-icon {
    background: var(--orange);
    transform: rotate(180deg);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #636e72;
    border-radius: 2px;
    transition: all 0.35s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: #ffffff;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-panel {
    max-height: 1000px;
}

.faq-answer {
    padding: 0 24px 22px 24px;
    color: #4a5568;
    font-size: 0.975rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    color: var(--orange);
}

@media (max-width: 768px) {
    .faq-container {
        padding: 28px 18px;
        border-radius: 18px;
    }
    .faq-container h2 {
        font-size: 1.6rem;
    }
    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 18px 18px 18px;
        font-size: 0.9rem;
    }
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    .faq-icon::before {
        width: 12px;
    }
    .faq-icon::after {
        height: 12px;
    }
    .faq-item.active .faq-answer-panel {
        max-height: 1000px;
    }
}

.faq-question:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: -2px;
    border-radius: 12px;
}