:root {
    --primary: #10c7d1;
    --primary-dim: rgba(0, 242, 255, 0.1);
    --secondary: #7000ff;
    --secondary-dim: rgba(112, 0, 255, 0.15);
    --bg: #030304;
    --card-bg: rgba(20, 20, 25, 0.6);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #8b8b93;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --status-green: #00ffa3;
    --status-glow: rgba(0, 255, 163, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

.blobs {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: -100px;
    left: -100px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.btn {
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: 0.7s var(--ease);
}

.btn:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.btn-tg {
    background: linear-gradient(135deg, #00f2ff 0%, #0077ff 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.btn-vk {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border-color: var(--border);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
}

header.scrolled {
    background: rgba(3, 3, 4, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1002;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: 0.3s;
}

nav a:hover {
    color: #fff;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1002;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0077ff 100%);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.4s var(--ease);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 242, 255, 0.4);
    filter: brightness(1.1);
}

.hero {
    padding: 160px 0 100px;
    text-align: center;
}

.hero-badge {
    background: var(--secondary-dim);
    color: #c794ff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(112, 0, 255, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 25px;
    background: linear-gradient(180deg, #fff 30%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.trial-banner {
    margin-top: -40px;
    z-index: 10;
    position: relative;
}

.trial-content {
    background: linear-gradient(90deg, var(--primary-dim), rgba(0, 0, 0, 0.8));
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: 0.4s var(--ease);
}

.feature-card i {
    font-size: 2rem;
    margin-bottom: 25px;
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.status-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.status-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.indicator-group {
    position: relative;
    width: 12px;
    height: 12px;
}

.status-dot {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--status-green);
    border-radius: 50%;
    z-index: 2;
}

.status-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--status-green);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
    opacity: 0.6;
}

.status-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.status-text .highlight {
    color: var(--status-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-label {
    margin-left: auto;
    font-size: 0.7rem;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Сетка */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-val {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-unit {
    font-size: 1.2rem;
    color: var(--primary);
    margin-left: 5px;
}

.stat-info p {
    margin: 5px 0 15px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #00ffa3);
    box-shadow: 0 0 10px var(--primary);
    animation: barLoad 2s ease-out forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 50px;
    text-align: center;
    transition: transform 0.1s linear, box-shadow 0.3s var(--ease);
    backface-visibility: hidden;
}

.price-card.featured {
    border-color: var(--primary);
    background: rgba(0, 242, 255, 0.03);
    position: relative;
}

.price-card.featured::before {
    content: 'РЕКОМЕНДУЕМ';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 20px 0;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.price-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #ccc;
}

.price-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.price-value span {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 0;
}

.price-features i {
    color: var(--primary);
    width: 18px;
}

.price-features i.fa-bolt {
    color: #ffaa00;
}

#setup {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    color: var(--primary);
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.ref-card {
    background: linear-gradient(90deg, var(--primary-dim), rgba(0, 0, 0, 0.8));
    border: 1px solid var(--primary);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: center;
}

.ref-icon {
    font-size: 4rem;
    color: #ffaa00;
    text-align: center;
}

.ref-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}


.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 15px;
    transition: 0.4s var(--ease);
}

.faq-question {
    padding: 25px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    gap: 15px;
}

.faq-question i {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.faq-answer {
    display: none;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 10px 25px;
    color: var(--text-muted);
}

.faq-answer-active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer-active .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer-active .faq-answer {
    display: block;
}

.main-footer {
    position: relative;
    background: #050505;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Размытые пятна на фоне */
.footer-blur-1 {
    position: absolute;
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.primary-text {
    color: var(--primary);
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 350px;
    margin-bottom: 25px;
}

/* Социальные кнопки */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}

/* Ссылки */
.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-nav-col h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
}

.footer-nav-col ul li {
    margin-bottom: 12px;
}

.footer-nav-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-col ul li a:hover {
    color: var(--primary);
}

/* Нижняя панель */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright,
.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a:hover {
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1002;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 242, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0);
    }
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes barLoad {
    from {
        width: 0;
    }
}

@media (min-width: 993px) {
    .feature-card:hover {
        border-color: var(--primary-dim);
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.05);
        transform: translateY(-5px);
    }

    .faq-item:hover {
        border-color: var(--primary-dim);
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.05);
        transform: translateY(-5px);
    }
}


@media (max-width: 992px) {
    header {
        padding: 15px 0;
    }

    header .btn-tg {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .logo {
        font-size: 1.2rem;
        order: 1;
    }

    nav {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(3, 3, 4, 0.98);
        backdrop-filter: blur(20px);
        padding-top: 100px;
        transition: 0.5s var(--ease);
    }

    nav.active {
        top: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    nav a {
        font-size: 1.5rem;
    }

    .nav-auth {
        order: 2;
    }

    .menu-toggle {
        order: 3;
    }

    .nav-auth .nav-link {
        display: none;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary) 0%, #0077ff 100%);
        padding: 10px 24px;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.4s var(--ease);
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(0, 242, 255, 0.2);
    }

    .btn-primary i {
        font-size: 0.8rem;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 242, 255, 0.4);
        filter: brightness(1.1);
    }

    .hero {
        padding: 80px 0 0px
    }

    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero h1 span {
        display: block;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .status-glass-card {
        padding: 25px;
    }

    .stat-box {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .stat-icon {
        margin-bottom: 0;
    }

    .stat-info p {
        margin-bottom: 5px;
    }

    .stat-progress-bar {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 20px;
    }

    .feature-card i {
        font-size: 1.8rem;
        margin-bottom: 20px;
        filter: drop-shadow(0 0 8px var(--primary-dim));
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .features-grid,
    .pricing-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .price-card {
        padding: 40px 25px;
    }

    .price-card.featured {
        order: -1;
        transform: scale(1.02);
        border-width: 2px;
        box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
    }

    .price-value {
        font-size: 3.2rem;
        margin: 15px 0;
    }

    .price-features {
        margin-bottom: 30px;
    }

    .price-features li {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    #setup {
        padding: 60px 0px;
        margin: 0 10px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        position: relative;
    }

    .steps-grid::before {
        content: '';
        position: absolute;
        left: 45px;
        top: 50px;
        bottom: 50px;
        width: 2px;
        background: linear-gradient(to bottom, var(--primary), var(--secondary));
        opacity: 0.2;
        z-index: 0;
    }

    .step-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        align-items: flex-start;
        gap: 20px;
        z-index: 1;
    }

    .step-num {
        flex-shrink: 0;
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 1rem;
        background: var(--bg);
        border-color: var(--primary);
    }

    .step-card h4 {
        margin-bottom: 5px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    #faq {
        padding: 60px 0;
    }

    .faq-grid {
        padding: 0 10px;
    }

    .faq-item {
        border-radius: 14px;
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
        line-height: 1.3;
    }

    .faq-answer {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto 25px auto;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .trial-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .ref-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }

    .ref-stats {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .footer-nav-group {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .step-card {
        padding: 15px;
        gap: 15px;
    }

    .step-num {
        width: 40px;
        height: 40px;
    }

    .steps-grid::before {
        left: 35px;
    }

    .step-card h4 {
        font-size: 1.1rem;
    }

}

@media (max-width: 440px) {
    .logo {
        order: 1;
    }

    .nav-auth {
        order: 2;
    }

    .menu-toggle {
        order: 3;
    }
}

@media (max-width: 400px) {
    .scroll-reveal.active {
        flex-direction: column;
    }
}