/* ========================================
   АКВАФОР DWM-101S Морион — Modern Dark Theme
   ======================================== */

:root {
    --bg-primary: #0a1628;
    --bg-secondary: #0d1c32;
    --bg-card: #111f38;
    --bg-card-hover: #162744;
    
    --accent-primary: #00d4ff;
    --accent-secondary: #00a8cc;
    --accent-glow: rgba(0, 212, 255, 0.3);
    
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
    
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d1c32 50%, #0a1628 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    --gradient-card: linear-gradient(145deg, #111f38 0%, #0d1c32 100%);
    
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.2);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.section__label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section__title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.section__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn--primary {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

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

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn--large {
    padding: 16px 32px;
    font-size: 16px;
}

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

.btn__arrow {
    transition: transform var(--transition-base);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header__logo-icon {
    font-size: 24px;
}

.header__logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}

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

.header__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.header__cta {
    display: none;
}

.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 2000;
    padding: 100px 40px 40px;
    flex-direction: column;
    gap: 24px;
}

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

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    font-size: 28px;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-menu__link {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -100px;
    left: -100px;
    animation: pulse 8s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero__subtitle {
    font-size: 20px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero__text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.hero__stat-unit {
    font-size: 14px;
    font-weight: 500;
}

.hero__stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
}

.hero__image-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero__img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.hero__decor {
    position: absolute;
    color: var(--accent-primary);
    opacity: 0.5;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero__decor--1 {
    top: 20%;
    right: 10%;
    font-size: 32px;
    animation-delay: 0s;
}

.hero__decor--2 {
    top: 40%;
    right: 5%;
    font-size: 24px;
    animation-delay: 1s;
}

.hero__decor--3 {
    bottom: 20%;
    left: 45%;
    font-size: 28px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Intro Section */
.intro {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.intro__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.intro__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.intro__feature-num {
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.intro__feature-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.intro__image {
    display: flex;
    justify-content: center;
}

.intro__image-wrapper {
    position: relative;
    padding: 40px;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.intro__img {
    max-width: 100%;
    height: auto;
}

/* Purpose Section */
.purpose {
    padding: 100px 0;
    background: var(--bg-primary);
}

.purpose__header {
    text-align: center;
    margin-bottom: 40px;
}

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

.purpose__text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.purpose__icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent-primary);
    transition: all var(--transition-base);
}

.purpose__icon svg {
    width: 36px;
    height: 36px;
}

.purpose__icon-item:hover .purpose__icon {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.purpose__icon-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features__header {
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-card {
    padding: 32px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.feature-card__icon svg {
    width: 28px;
    height: 28px;
}

.feature-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-primary);
}

.how-it-works__header {
    text-align: center;
    margin-bottom: 50px;
}

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

.how-it-works__image {
    display: flex;
    justify-content: center;
}

.how-it-works__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step__number {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.step__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* For Whom Section */
.for-whom {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.for-whom__header {
    text-align: center;
    margin-bottom: 50px;
}

.for-whom__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.for-whom__card {
    text-align: center;
    padding: 24px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.for-whom__card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.for-whom__card-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.for-whom__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.for-whom__card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Economy Section */
.economy {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.economy__text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 20px;
}

.economy__image {
    display: flex;
    justify-content: center;
}

.economy__image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Specs Section */
.specs {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.specs__header {
    text-align: center;
    margin-bottom: 50px;
}

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

.specs__image {
    display: flex;
    justify-content: center;
}

.specs__image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.specs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-card {
    padding: 24px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.spec-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
}

.spec-card__value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.spec-card__unit {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin: 4px 0;
}

.spec-card__label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Protection Section */
.protection {
    padding: 100px 0;
    background: var(--bg-primary);
}

.protection__header {
    text-align: center;
    margin-bottom: 50px;
}

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

.protection__item {
    text-align: center;
    padding: 32px 24px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.protection__item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.protection__icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.protection__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Order Section */
.order {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.order__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.order__title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.order__price {
    margin-bottom: 32px;
}

.order__price-old {
    display: block;
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.order__price-current {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.order__price-discount {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-top: 12px;
}

.order__benefits {
    list-style: none;
}

.order__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

.order__benefit-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.order__form-wrapper {
    padding: 40px;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.order__form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

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

.form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.form__input {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    transition: all var(--transition-base);
}

.form__input:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.order__success {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.order__success.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.order__success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--bg-primary);
    margin: 0 auto 24px;
}

.order__success-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.order__success-text {
    font-size: 16px;
    color: var(--text-secondary);
}

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

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

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer__logo-icon {
    font-size: 24px;
}

.footer__logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.footer__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
}

.footer__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer__menu {
    list-style: none;
}

.footer__menu li {
    margin-bottom: 12px;
}

.footer__link {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

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

.footer__contact-item {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .section__title {
        font-size: 36px;
    }
    
    .hero__title {
        font-size: 44px;
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .purpose__icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .for-whom__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .protection__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    
    .header__menu-btn {
        display: flex;
    }
    
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__content {
        max-width: 100%;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__decor {
        display: none;
    }
    
    .intro__inner {
        grid-template-columns: 1fr;
    }
    
    .intro__image {
        order: -1;
    }
    
    .section__title {
        font-size: 28px;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works__content {
        grid-template-columns: 1fr;
    }
    
    .how-it-works__image {
        order: -1;
    }
    
    .economy__inner {
        grid-template-columns: 1fr;
    }
    
    .economy__image {
        order: -1;
    }
    
    .specs__inner {
        grid-template-columns: 1fr;
    }
    
    .specs__image {
        order: -1;
    }
    
    .specs__grid {
        grid-template-columns: 1fr;
    }
    
    .order__inner {
        grid-template-columns: 1fr;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .section__title {
        font-size: 24px;
    }
    
    .purpose__icons {
        grid-template-columns: 1fr;
    }
    
    .for-whom__grid {
        grid-template-columns: 1fr;
    }
    
    .protection__grid {
        grid-template-columns: 1fr;
    }
    
    .order__form-wrapper {
        padding: 24px;
    }
    
    .order__title {
        font-size: 24px;
    }
    
    .order__price-current {
        font-size: 36px;
    }
}

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

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