:root {
    --primary-color: #00d2ff;
    --secondary-color: #ffffff;
    --bg-color: #0d1117;
    --card-bg: #161b22;
    --text-color: #ffffff;
    --text-muted: #8b949e;
    --accent-color: #ff4757;
    --border-radius: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
}

.btn--primary {
    background: linear-gradient(90deg, #00d2ff 0%, #007bff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.5);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn--outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn--outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn--small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn--large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

.text-gradient {
    background: linear-gradient(90deg, #00d2ff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

/* Header */
.header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.logo__icon {
    font-size: 24px;
}

.logo__highlight {
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

.nav__link {
    color: var(--text-muted);
    font-weight: 500;
}

.nav__link:hover {
    color: #fff;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    padding: 20px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav__link {
    display: block;
    padding: 15px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.mobile-nav__link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.live-stats {
    display: flex;
    gap: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero__visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__flag-wrapper {
    position: relative;
    width: 400px;
    height: 250px;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
}

.hero__flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0.5));
}

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    overflow: hidden;
}

.locations-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.locations-grid {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.loc-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    color: #ccc;
    transition: all 0.3s ease;
    cursor: default;
}

.loc-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.loc-pill--active {
    background: rgba(0, 210, 255, 0.15);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

.loc-flag {
    font-size: 1.2rem;
}

.locations-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 300px;
}

/* Synthetized Globe */
.globe-3d {
    width: 200px;
    height: 200px;
    position: relative;
    perspective: 1000px;
}

.globe-sphere {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 210, 255, 0.8), rgba(0, 100, 255, 0.4) 40%, rgba(13, 17, 23, 1) 80%);
    box-shadow:
        inset -10px -10px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 210, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: globeFloat 6s ease-in-out infinite;
}

/* Pseudo-continents (abstract shapes on the globe) */
.globe-sphere::before,
.globe-sphere::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(1px);
}

.globe-sphere::before {
    width: 60%;
    height: 40%;
    top: 20%;
    left: 20%;
    transform: rotate(-15deg);
}

.globe-sphere::after {
    width: 40%;
    height: 60%;
    top: 30%;
    right: 15%;
    transform: rotate(20deg);
}

.globe-outer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(0, 210, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 210, 255, 0.05);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.globe-outer-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes globeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 992px) {
    .locations-wrapper {
        flex-direction: column-reverse;
    }

    .locations-grid {
        justify-content: center;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
}

.benefit-desc {
    color: var(--text-muted);
}

/* Instructions Section - Blocks Style */
.instructions {
    padding: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    position: relative;
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.step-icon {
    font-size: 30px;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-connector {
    display: none;
}

/* Promo Section */
.promo {
    padding: 80px 0;
}

.promo__card {
    background: linear-gradient(90deg, #1f2736 0%, #161b22 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.promo__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.promo__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
    gap: 30px;
}

.promo__text-content {
    flex: 1;
}

.promo__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.promo__text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.promo__btn {
    white-space: nowrap;
}

.promo__decoration {
    font-size: 10rem;
    position: absolute;
    right: -20px;
    bottom: -40px;
    opacity: 0.1;
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 1;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.price-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.price-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.price-card--popular {
    background: linear-gradient(145deg, #1f2736, #161b22);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.price-card--popular:hover {
    transform: scale(1.07);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-card__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.price-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-card__total {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price-card__save {
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-card__features {
    text-align: left;
    margin-bottom: 30px;
}

.price-card__features li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* Security Test */
.security-check {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.test-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.test-step {
    display: none;
}

.test-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

.test-question {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.test-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn--option {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 30px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn--option:hover {
    background: var(--primary-color);
    color: #000;
}

.test-result {
    display: none;
}

.danger-text {
    color: #ff4757;
    font-weight: 800;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #ff4757;
    border-radius: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Platforms */
.platforms {
    padding: 80px 0;
}

.platforms__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    padding: 20px 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 150px;
    transition: 0.3s;
}

.platform-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.platform-name {
    font-weight: 600;
}

/* SEO Content */
.seo-content {
    padding: 80px 0;
}

.neon-frame {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3), inset 0 0 15px rgba(0, 210, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    background: rgba(13, 17, 23, 0.8);
    position: relative;
    overflow: hidden;
}

.neon-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.seo-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
}

.seo-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.seo-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq__list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq__item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.faq__item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* Guarantee & Robot */
.guarantee__box.neon-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(13, 17, 23, 0.9));
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    gap: 30px;
    overflow: hidden;
}

.robot-wrapper {
    position: relative;
    width: 80px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot {
    position: relative;
    animation: bounce 2s infinite ease-in-out;
}

.robot__head {
    width: 40px;
    height: 30px;
    background: #fff;
    border-radius: 10px 10px 5px 5px;
    position: relative;
    margin-bottom: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.robot__eye {
    width: 6px;
    height: 6px;
    background: #00d2ff;
    border-radius: 50%;
    animation: blink 3s infinite;
}

.robot__body {
    width: 50px;
    height: 40px;
    background: #ccc;
    border-radius: 5px 5px 15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot__shield {
    font-size: 20px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes blink {

    0%,
    90%,
    100% {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(0.1);
    }
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--primary-color);
}

.footer__copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {

    .header__btn,
    .nav {
        display: none !important;
    }

    .burger-menu {
        display: flex;
    }

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

    .hero__visual {
        display: none;
    }

    .hero__subtitle {
        margin: 0 auto 40px;
    }

    .hero__actions {
        justify-content: center;
    }

    .live-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .steps-container,
    .pricing__grid,
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-wrapper {
        flex-direction: column-reverse;
    }

    .locations-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .header__btn,
    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    /* ... */

    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        padding: 20px;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-nav__link {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .steps-container,
    .pricing__grid,
    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .promo__content {
        flex-direction: column;
        text-align: center;
    }

    .promo__decoration {
        display: none;
    }
}