/* ===== CSS RESET & CUSTOM PROPERTIES ===== */
:root {
    --color-primary: #226886;
    --color-secondary: #287a9e;
    --color-accent: #f39a00;
    --color-accent-hover: #e08900;
    --color-white: #ffffff;
    --color-light-grey: #d6d6d6;
    --color-text: #222222;
    --color-error: #ff4444;

    --font-family: 'Roboto', Arial, Helvetica, sans-serif;
    --container-max: 1200px;
    --container-padding: 20px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-white);
    background-color: var(--color-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-accent-hover);
}

ul, ol {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.section-title--white {
    color: var(--color-white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-white);
    margin-top: -40px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    border: none;
    border-radius: 30px;
    font-family: var(--font-family);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 18px 60px;
    font-size: 18px;
    letter-spacing: 1px;
}

.btn--primary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 154, 0, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.webp .hero__bg {
    background-image: url('../images/hero-bg.webp');
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    opacity: 0.95;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px var(--container-padding) 40px;
    max-width: 800px;
}

.hero__logo {
    margin: 0 auto 30px;
    max-width: 300px;
    width: 100%;
    height: auto;
}

.hero__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero__subtitle {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 40px;
}

/* ===== AUDIENCE SECTION ===== */
.audience {
    background-color: var(--color-primary);
    padding: 80px 0;
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.audience__card {
    text-align: center;
}

.audience__icon {
    margin-bottom: 15px;
}

.audience__icon img {
    margin: 0 auto;
    width: 48px;
    height: 48px;
}

.audience__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.audience__desc {
    font-size: 15px;
    color: var(--color-white);
    line-height: 1.5;
}

/* ===== ABOUT / VIDEO SECTION ===== */
.about {
    background-color: var(--color-primary);
    padding: 80px 0;
}

.video-container {
    max-width: 83%;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== TESTIMONIALS / CAROUSEL ===== */
.testimonials {
    background-color: var(--color-primary);
    padding: 80px 0;
}

.carousel {
    position: relative;
    max-width: 75%;
    margin: 0 auto;
}

.carousel__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.carousel__slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel__slide img {
    max-height: 600px;
    width: auto;
    max-width: 100%;
    border-radius: 12px;
    margin: 0 auto;
}

.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(232, 232, 232, 1);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s;
}

.carousel__arrow:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.carousel__arrow--prev {
    left: -52px;
}

.carousel__arrow--next {
    right: -52px;
}

/* ===== VIDEO GALLERY ===== */
.gallery {
    background-color: var(--color-primary);
    padding: 80px 0;
}

.gallery + .gallery {
    padding-top: 0;
}

.gallery__carousel {
    position: relative;
    max-width: 75%;
    margin: 0 auto;
}

.gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(232, 232, 232, 1);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s;
}

.gallery__arrow:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.gallery__arrow--prev {
    left: -52px;
}

.gallery__arrow--next {
    right: -52px;
}

.gallery__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery__track::-webkit-scrollbar {
    display: none;
}

.gallery__pair {
    flex: 0 0 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    scroll-snap-align: center;
    padding: 10px 0;
}

.gallery__item {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery__item img {
    height: 620px;
    width: 349px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.gallery__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: all 0.2s;
}

.gallery__play::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
}

.gallery__item:hover .gallery__play {
    background: rgba(243, 154, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.15);
}

/* ===== COURSE PROGRAM ===== */
.program {
    background-color: var(--color-primary);
    padding: 80px 0;
}

.program__list {
    max-width: 800px;
    margin: 0 auto;
    counter-reset: program-counter;
}

.program__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    counter-increment: program-counter;
}

.program__item::before {
    content: counter(program-counter);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.program__desc {
    font-size: 16px;
    color: var(--color-light-grey);
    line-height: 1.5;
}

/* ===== STATS SECTION ===== */
.stats {
    background-color: var(--color-primary);
    padding: 80px 0 150px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats__card {
    text-align: center;
}

.stats__number {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.stats__label {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.stats__desc {
    font-size: 16px;
    color: var(--color-white);
    line-height: 1.5;
}

/* ===== FAQ ACCORDION ===== */
.faq {
    background-color: var(--color-secondary);
    padding: 80px 0;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    list-style: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--color-white);
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
    content: '-';
}

.faq__answer {
    padding: 0 0 25px;
    font-size: 18px;
    color: var(--color-light-grey);
    line-height: 1.6;
}

/* ===== PRICING / PAYMENT WIDGET ===== */
.pricing {
    background-color: var(--color-primary);
    padding: 80px 0;
    scroll-margin-top: 40px;
}

.pricing__widget {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing__header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing__title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pricing__subtitle {
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.6;
}

.pricing__currency-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.pricing__currency-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-style: italic;
}

.pricing__currency-btn {
    padding: 12px 35px;
    border: 2px solid var(--color-secondary);
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pricing__currency-btn:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    transform: translateY(-2px);
}

.pricing__currency-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(243, 154, 0, 0.3);
}

.pricing__tariffs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Tariff Cards */
.tariff-card {
    border: 3px solid var(--color-secondary);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s ease;
    background: var(--color-secondary);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}

.tariff-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(243, 154, 0, 0.15);
}

.tariff-card.recommended {
    border-color: var(--color-accent);
    border-width: 4px;
}

.tariff-card__badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f39a00 0%, #e08900 100%);
    color: var(--color-white);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(243, 154, 0, 0.4);
    white-space: nowrap;
}

.tariff-card__name {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--color-white);
}

.tariff-card__original-price {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.tariff-card__original-price .currency {
    font-size: 14px;
}

.tariff-card__discount {
    display: inline-block;
    align-self: flex-start;
    background: var(--color-error);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.tariff-card__price {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 15px;
    line-height: 1;
}

.tariff-card__price .currency {
    font-size: 22px;
    font-weight: 700;
}

.tariff-card__features {
    list-style: none;
    margin: 25px 0 20px;
    padding: 0;
    flex-grow: 1;
}

.tariff-card__features li {
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
}

.tariff-card__features li::before {
    content: "\2713";
    color: var(--color-accent);
    font-weight: bold;
    margin-right: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.tariff-card__btn {
    background: linear-gradient(135deg, #f39a00 0%, #e08900 100%);
    color: var(--color-white);
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    font-family: inherit;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(243, 154, 0, 0.3);
    text-align: center;
    text-decoration: none;
    display: block;
    line-height: 1.2;
}

.tariff-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 154, 0, 0.4);
    color: var(--color-white);
}

.gallery__item.playing {
    cursor: default;
    pointer-events: none;
}

.gallery__video {
    border-radius: 16px;
    border: none;
    display: block;
    max-width: 100%;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* ===== MODALS ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-secondary);
    z-index: 999999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.show {
    display: block;
}

.modal-content {
    max-width: 550px;
    margin: 0 auto;
    padding: 45px 40px;
    position: relative;
}

.modal-close {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    font-size: 32px;
    color: var(--color-white);
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    font-weight: 300;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-tariff-info {
    font-size: 19px;
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1.4;
}

#gcModalOverlay {
    background: var(--color-white);
}

#gcModalOverlay.show {
    display: block;
}

.gc-modal-content {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.gc-modal-content .modal-close {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    color: var(--color-white);
}

.gc-modal-content .modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
}

.gc-widget-iframe {
    width: 100%;
    height: 100vh;
    border: none;
    display: block;
}

.modal-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label .required {
    color: var(--color-accent);
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
    color: var(--color-text);
    background: var(--color-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-input.error {
    border-color: var(--color-error);
}

.form-error {
    color: var(--color-error);
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.checkbox-group {
    margin-bottom: 25px;
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-white);
}

.checkbox-input {
    margin-right: 12px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--color-accent);
}

.checkbox-text a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.2s;
}

.checkbox-text a:hover {
    color: var(--color-accent-hover);
}

.btn--purchase {
    background: linear-gradient(135deg, #f39a00 0%, #e08900 100%);
    color: var(--color-white);
    padding: 20px 70px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(243, 154, 0, 0.4);
    width: 100%;
}

.btn--purchase:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(243, 154, 0, 0.5);
}

.btn--purchase:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.form-loading {
    display: none;
    margin-top: 20px;
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.form-loading.show {
    display: block;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 960px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .section-subtitle {
        margin-top: -20px;
    }

    .hero__subtitle {
        font-size: 22px;
    }

    .audience__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .video-container {
        max-width: 100%;
    }

    .carousel {
        max-width: 85%;
    }

    .carousel__arrow--prev {
        left: -48px;
    }

    .carousel__arrow--next {
        right: -48px;
    }

    .gallery__carousel {
        max-width: 85%;
    }

    .gallery__arrow--prev {
        left: -48px;
    }

    .gallery__arrow--next {
        right: -48px;
    }

    .gallery__item img {
        height: 520px;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .stats {
        padding-bottom: 80px;
    }

    .pricing__tariffs {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-top: -15px;
    }

    .hero__logo {
        max-width: 200px;
    }

    .hero__title {
        font-size: 26px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .btn--primary {
        padding: 15px 40px;
        font-size: 16px;
    }

    .audience {
        padding: 50px 0;
    }

    .audience__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about, .testimonials, .gallery, .program, .faq {
        padding: 50px 0;
    }

    .video-wrapper {
        border-radius: 16px;
    }

    .carousel {
        max-width: 90%;
    }

    .carousel__arrow {
        width: 36px;
        height: 36px;
    }

    .carousel__arrow--prev {
        left: -40px;
    }

    .carousel__arrow--next {
        right: -40px;
    }

    .carousel__slide img {
        max-height: 400px;
    }

    .gallery__carousel {
        max-width: 100%;
    }

    .gallery__arrow {
        display: none;
    }

    .gallery__track {
        gap: 12px;
        scroll-snap-type: x mandatory;
        padding: 0 16px 20px;
        overflow-x: auto;
    }

    .gallery__pair {
        display: contents;
    }

    .gallery__item {
        flex: 0 0 calc(100vw - 44px);
        scroll-snap-align: start;
    }

    .gallery__item img {
        width: 100%;
        height: auto;
        aspect-ratio: 9 / 16;
    }

    .gallery__play {
        width: 70px;
        height: 70px;
    }

    .gallery__play::after {
        border-width: 12px 0 12px 20px;
    }

    .program__item::before {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .program__title {
        font-size: 18px;
    }

    .program__desc {
        font-size: 14px;
    }

    .stats__number {
        font-size: 36px;
    }

    .stats__label {
        font-size: 16px;
    }

    .stats__desc {
        font-size: 14px;
    }

    .faq__question {
        font-size: 17px;
        padding: 20px 0;
    }

    .faq__answer {
        font-size: 16px;
    }

    .pricing {
        padding: 50px 0;
    }

    .pricing__title {
        font-size: 24px;
    }

    .pricing__subtitle {
        font-size: 16px;
    }

    .pricing__currency-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .tariff-card {
        padding: 30px 20px;
    }

    .tariff-card__price {
        font-size: 34px;
    }

    .tariff-card__btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .modal-content {
        padding: 35px 20px;
    }

    .modal-header h3 {
        font-size: 22px;
    }

    .modal-tariff-info {
        font-size: 15px;
    }

    .btn--purchase {
        padding: 16px 50px;
        font-size: 17px;
    }

}

/* Small mobile */
@media (max-width: 480px) {
    .hero__content {
        padding-top: 40px;
    }

    .hero__logo {
        max-width: 160px;
    }

    .hero__title {
        font-size: 22px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .carousel__arrow--prev {
        left: -32px;
    }

    .carousel__arrow--next {
        right: -32px;
    }

    .carousel__arrow {
        width: 30px;
        height: 30px;
    }

    .carousel__arrow svg {
        width: 18px;
        height: 18px;
    }

    .stats__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
