/* ========================================
   DATA SERVICE - Main Stylesheet
   Dark theme with orange accents
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Colors - Black & Orange theme */
    --bg-primary: #050508;
    --bg-secondary: #0a0a10;
    --bg-card: #0f0f18;
    --bg-card-hover: #14141f;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    --accent-primary: #ff6b00;
    --accent-secondary: #ff9500;
    --accent-gradient: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
    --accent-glow: 0 0 40px rgba(255, 107, 0, 0.3);
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(255, 107, 0, 0.3);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* ========================================
   BACKGROUND EFFECTS
   ======================================== */

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.bg-gradient-orb--orange {
    background: var(--accent-primary);
    top: -200px;
    right: -200px;
}

.bg-gradient-orb--yellow {
    background: var(--accent-secondary);
    bottom: -200px;
    left: -200px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.logo__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.logo__icon img {
    width: 100%;
    height: 100%;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav__link:hover,
.nav__link--active {
    color: var(--text-primary);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-fast);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn--primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--accent-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(255, 107, 0, 0.4);
}

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

.btn--secondary:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--accent-primary);
}

.btn--large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

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

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero__title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero__visual {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease 0.4s both;
}

.hero__visual img {
    width: 100%;
    max-width: 550px;
    margin-left: auto;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    overflow: hidden;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat__value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header__label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.features__grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

.features__grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-medium);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-primary);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   SHOWCASE SECTION
   ======================================== */

.showcase {
    background: var(--bg-secondary);
    overflow: hidden;
}

.showcase__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.showcase__item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.showcase__item--reverse {
    direction: rtl;
}

.showcase__item--reverse > * {
    direction: ltr;
}

.showcase__content {
    max-width: 500px;
}

.showcase__label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.showcase__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.showcase__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.showcase__list {
    color: var(--text-secondary);
    margin-top: 20px;
}

.showcase__list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.showcase__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.showcase__visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.showcase__visual img {
    width: 100%;
    height: auto;
}

/* ========================================
   HISTORY / ABOUT SECTION
   ======================================== */

.history {
    background: var(--bg-primary);
    position: relative;
}

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

.history__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.history__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 2;
}

.history__text p {
    margin-bottom: 24px;
}

.history__text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
}

.pricing-card--featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.pricing-card--featured::before {
    content: 'Популярный';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card:hover {
    border-color: var(--border-accent);
}

.pricing-card__duration {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.pricing-card__features {
    margin: 32px 0;
    text-align: left;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card__feature:last-child {
    border-bottom: none;
}

.pricing-card__feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-primary);
    flex-shrink: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta {
    text-align: center;
    background: var(--bg-secondary);
    overflow: hidden;
}

.cta__inner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.cta__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 107, 0, 0.1), transparent 50%);
    pointer-events: none;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.cta__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact__info p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-medium);
}

.contact__method:hover {
    border-color: var(--border-accent);
}

.contact__method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.contact__method-text {
    font-weight: 500;
}

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

.contact__form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.8;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

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

.footer__link {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer__link:hover {
    color: var(--accent-primary);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer__copy {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__social {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer__social:hover {
    border-color: var(--accent-primary);
    background: rgba(255, 107, 0, 0.1);
}

.footer__social svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
}

.footer__social:hover svg {
    fill: var(--accent-primary);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Глобальная защита от горизонтального скролла */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Все изображения и медиа не должны выходить за пределы */
img, video, iframe, svg {
    max-width: 100%;
}

/* Все блоки не должны выходить за пределы контейнера */
.section, .container, .hero, .stats, .showcase, .cta, .footer {
    max-width: 100vw;
}

/* Word-wrap для длинных слов */
h1, h2, h3, h4, h5, h6, p, a, span, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__visual {
        order: -1;
    }
    
    .hero__visual img {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features__grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features__grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase__item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase__item--reverse {
        direction: ltr;
    }
    
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card--featured {
        transform: none;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Уменьшаем декоративные элементы */
    .bg-gradient-orb {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Исправляем inline padding для секций с padding-top: 160px */
    .section[style*="padding-top: 160px"] {
        padding-top: 120px !important;
    }
    
    /* Навигация */
    .header {
        padding: 12px 0;
    }
    
    .nav__list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
        gap: 0;
        z-index: 1000;
    }
    
    .nav__list--open {
        display: flex;
    }
    
    .nav__list li {
        width: 100%;
    }
    
    .nav__link {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav__list li:last-child .nav__link {
        border-bottom: none;
    }
    
    .nav__link::after {
        display: none;
    }
    
    .nav .btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .logo__icon {
        width: 36px;
        height: 36px;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    /* Stats */
    .stats {
        padding: 40px 0;
    }
    
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat__value {
        font-size: 2rem;
    }
    
    /* Features */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features__grid--4col {
        grid-template-columns: 1fr;
    }
    
    .features__grid--3col {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-card__title {
        font-size: 1.1rem;
    }
    
    /* Showcase */
    .showcase__item {
        padding: 40px 0;
        gap: 30px;
    }
    
    .showcase__title {
        font-size: 1.5rem;
    }
    
    .showcase__text {
        font-size: 1rem;
    }
    
    .showcase__content {
        max-width: 100%;
    }
    
    /* Pricing */
    .pricing__grid {
        max-width: 100%;
        gap: 16px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-card__price {
        font-size: 2.5rem;
    }
    
    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact__form {
        padding: 24px;
    }
    
    .contact__method {
        padding: 16px;
    }
    
    /* CTA */
    .cta__inner {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .cta__title {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header__title {
        font-size: 1.75rem;
    }
    
    .section-header__description {
        font-size: 1rem;
    }
    
    /* Декоративные элементы - скрываем или уменьшаем */
    .bg-gradient-orb {
        width: 300px;
        height: 300px;
        opacity: 0.1;
    }
    
    .bg-gradient-orb--orange {
        top: -150px;
        right: -150px;
    }
    
    .bg-gradient-orb--yellow {
        bottom: -150px;
        left: -150px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn--large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    /* Исправляем inline padding для секций */
    .section[style*="padding-top: 160px"] {
        padding-top: 100px !important;
    }
    
    /* Hero */
    .hero {
        padding-top: 100px;
    }
    
    .hero__title {
        font-size: 1.75rem;
    }
    
    .hero__badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero__visual img {
        max-width: 280px;
    }
    
    /* Stats */
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat__value {
        font-size: 1.5rem;
    }
    
    .stat__label {
        font-size: 0.85rem;
    }
    
    /* Features */
    .feature-card {
        padding: 20px;
    }
    
    .feature-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .feature-card__icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-card__title {
        font-size: 1rem;
    }
    
    .feature-card__text {
        font-size: 0.9rem;
    }
    
    /* Pricing */
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-card__price {
        font-size: 2rem;
    }
    
    .pricing-card__duration {
        font-size: 1rem;
    }
    
    .pricing-card__feature {
        font-size: 0.85rem;
        padding: 10px 0;
        gap: 8px;
    }
    
    .pricing-card__feature svg {
        width: 16px;
        height: 16px;
    }
    
    /* Section headers */
    .section-header__title {
        font-size: 1.5rem;
    }
    
    /* Contact */
    .contact__form {
        padding: 20px;
    }
    
    .contact__method {
        padding: 12px;
        gap: 12px;
    }
    
    .contact__method-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact__method-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact__method-text {
        font-size: 0.9rem;
    }
    
    .contact__method-label {
        font-size: 0.75rem;
    }
    
    .form__input,
    .form__textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    /* CTA */
    .cta__inner {
        padding: 30px 16px;
        border-radius: 16px;
    }
    
    .cta__title {
        font-size: 1.25rem;
    }
    
    .cta__text {
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer__brand p {
        font-size: 0.9rem;
    }
    
    .footer__title {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .footer__link {
        font-size: 0.85rem;
    }
    
    .footer__copy {
        font-size: 0.75rem;
    }
    
    /* Logo */
    .logo {
        font-size: 1.1rem;
        gap: 6px;
    }
    
    .logo__icon {
        width: 32px;
        height: 32px;
    }
    
    /* Header */
    .header {
        padding: 10px 0;
    }
    
    /* Декоративные элементы - ещё меньше */
    .bg-gradient-orb {
        width: 200px;
        height: 200px;
        opacity: 0.08;
    }
    
    .bg-gradient-orb--orange {
        top: -100px;
        right: -100px;
    }
    
    .bg-gradient-orb--yellow {
        bottom: -100px;
        left: -100px;
    }
    
    /* Showcase */
    .showcase__title {
        font-size: 1.25rem;
    }
    
    .showcase__text {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .showcase__label {
        font-size: 0.75rem;
    }
    
    .showcase__visual {
        border-radius: 16px;
    }
}
