/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Skolkovo Colors */
    --skolkovo-green: #A3C940;
    --skolkovo-dark: #1A1A1A;
    --skolkovo-gray: #2D2D2D;
    --skolkovo-light-gray: #F5F5F5;
    --primary-color: #A3C940;
    --text-dark: #1A1A1A;
    --text-gray: #6B6B6B;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1A;
    --accent-orange: #FF6B35;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
    flex-wrap: wrap;
}

.logo i {
    font-size: 2rem;
    color: var(--skolkovo-green);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.skolkovo-badge {
    background: var(--skolkovo-green);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skolkovo-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 201, 64, 0.3);
}

.license-badge {
    background: rgba(163, 201, 64, 0.15);
    color: var(--text-dark);
    border: 1px solid rgba(163, 201, 64, 0.3);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.license-badge i {
    color: var(--skolkovo-green);
    font-size: 0.85rem;
}

.license-badge:hover {
    background: rgba(163, 201, 64, 0.25);
    border-color: rgba(163, 201, 64, 0.5);
}

/* Buttons - Skolkovo Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--skolkovo-green);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(163, 201, 64, 0.25);
}

.btn-primary:hover {
    background: #8FB82E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 201, 64, 0.4);
}

.btn-header {
    background: var(--bg-white);
    color: var(--skolkovo-green);
    border: 2px solid var(--skolkovo-green);
}

.btn-header:hover {
    background: var(--skolkovo-green);
    color: var(--bg-dark);
    border-color: var(--skolkovo-green);
}

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

/* Hero Section - Skolkovo Style */
.hero {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    color: var(--text-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: 
        linear-gradient(90deg, rgba(163, 201, 64, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(163, 201, 64, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.hero-shape {
    position: absolute;
    background: var(--skolkovo-green);
    opacity: 0.03;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    animation: float 18s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 15%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(163, 201, 64, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(163, 201, 64, 0.5);
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    animation: fadeInUp 0.6s ease-out;
}

/* Hero Title Large - "10 за 10" */
.hero-title-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 24px;
    animation: fadeInScale 0.8s ease-out 0.2s both;
}

.number-10 {
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    color: var(--skolkovo-green);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.05em;
    position: relative;
    animation: glowPulse 3s ease-in-out infinite;
}

.za {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: lowercase;
    font-style: italic;
}

.hero-title-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(163, 201, 64, 0.5),
            0 0 40px rgba(163, 201, 64, 0.3),
            0 0 60px rgba(163, 201, 64, 0.2);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(163, 201, 64, 0.7),
            0 0 60px rgba(163, 201, 64, 0.5),
            0 0 90px rgba(163, 201, 64, 0.3);
    }
}

/* Hero Explanation */
.hero-explanation {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.8;
    color: var(--text-dark);
}

.hero-subtitle strong {
    color: var(--skolkovo-green);
    font-weight: 700;
}

.hero-price-comparison {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(163, 201, 64, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(163, 201, 64, 0.3);
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-price-comparison:hover {
    background: rgba(163, 201, 64, 0.22);
    border-color: rgba(163, 201, 64, 0.5);
    transform: translateY(-2px);
}

.small-old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1rem;
    color: var(--text-gray);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.small-new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--skolkovo-green);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Hero Skolkovo Badge */
.hero-skolkovo-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(163, 201, 64, 0.15);
    border: 2px solid rgba(163, 201, 64, 0.4);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-skolkovo-badge:hover {
    background: rgba(163, 201, 64, 0.25);
    border-color: rgba(163, 201, 64, 0.6);
    transform: translateX(5px);
}

.skolkovo-logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.skolkovo-logo-img {
    width: 80px;
    height: 80px;
    display: block;
}

.skolkovo-text {
    text-align: left;
}

.skolkovo-text strong {
    font-size: 1.2rem;
    display: block;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Hero Info Block */
.hero-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(163, 201, 64, 0.12);
    border: 2px solid rgba(163, 201, 64, 0.4);
    border-left: 4px solid var(--skolkovo-green);
    backdrop-filter: blur(10px);
    padding: 24px 28px;
    border-radius: 12px;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-info:hover {
    background: rgba(163, 201, 64, 0.18);
    border-color: rgba(163, 201, 64, 0.6);
    transform: translateX(3px);
}

.hero-info i {
    font-size: 2rem;
    color: var(--skolkovo-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text {
    text-align: left;
}

.info-text strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 107, 53, 0);
    }
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(163, 201, 64, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(163, 201, 64, 0.2);
    padding: 14px 20px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hero-feature:hover {
    background: rgba(163, 201, 64, 0.2);
    border-color: rgba(163, 201, 64, 0.5);
    transform: translateY(-3px);
}

.hero-feature i {
    font-size: 1.3rem;
    color: var(--skolkovo-green);
}

.hero-note {
    margin-top: 24px;
    color: var(--text-gray);
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

/* Price Section - Skolkovo Style */
.price-section {
    padding: 100px 0;
    background: var(--skolkovo-light-gray);
    position: relative;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(163, 201, 64, 0.5), transparent);
}

.price-card-large {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(163, 201, 64, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--skolkovo-green);
    color: var(--bg-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.price-card-large h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.old-price, .new-price {
    text-align: center;
}

.old-price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-gray);
    text-decoration: line-through;
    display: block;
}

.old-price-label, .new-price-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.discount-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.discount-arrow i {
    font-size: 2rem;
    color: var(--skolkovo-green);
}

.discount-arrow span {
    background: var(--skolkovo-green);
    color: var(--bg-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.new-price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--skolkovo-green);
    display: block;
    letter-spacing: -0.02em;
}

.price-includes {
    background: var(--skolkovo-light-gray);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.price-includes h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.price-includes ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 16px;
}

.price-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    padding: 12px;
    background: var(--bg-white);
    border-radius: 8px;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.price-includes li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-includes li i {
    color: var(--skolkovo-green);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.price-note {
    margin-top: 24px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Footer - Skolkovo Style */
.footer {
    background: var(--skolkovo-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--skolkovo-green), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column-wide {
    max-width: 400px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-company-info {
    background: rgba(163, 201, 64, 0.1);
    border-left: 3px solid var(--skolkovo-green);
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.footer-company-info p {
    margin: 6px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-company-info strong {
    color: var(--skolkovo-green);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--skolkovo-green);
}

.footer-skolkovo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(163, 201, 64, 0.15);
    border: 1px solid rgba(163, 201, 64, 0.3);
    color: var(--skolkovo-green);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-column li:hover {
    color: var(--skolkovo-green);
    transform: translateX(3px);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--skolkovo-green);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(163, 201, 64, 0.1);
    border: 1px solid rgba(163, 201, 64, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--skolkovo-green);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--skolkovo-green);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(163, 201, 64, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(163, 201, 64, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column-wide {
        max-width: 100%;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .hero-title-large {
        gap: 15px;
    }

    .number-10 {
        font-size: 6rem;
    }

    .za {
        font-size: 3rem;
    }

    .hero-title-subtitle {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-skolkovo-badge {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .skolkovo-logo-container {
        padding: 3px;
    }

    .skolkovo-logo-img {
        width: 64px;
        height: 64px;
    }

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

    .hero-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
        border-left-width: 2px;
    }

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

    .info-text strong {
        font-size: 1rem;
    }

    .price-card-large {
        padding: 40px 24px;
    }

    .price-comparison {
        flex-direction: column;
        gap: 24px;
    }

    .discount-arrow i {
        transform: rotate(90deg);
    }

    .old-price-value {
        font-size: 1.3rem;
    }

    .new-price-value {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        flex-direction: column;
    }

    .license-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .hero-title-large {
        gap: 10px;
    }

    .number-10 {
        font-size: 5rem;
    }

    .za {
        font-size: 2.5rem;
    }

    .hero-title-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .price-card-large h2 {
        font-size: 1.8rem;
    }
}

/* ===== Enhanced Mobile Responsiveness ===== */

/* Tablets and Small Laptops */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header improvements */
    .header {
        padding: 16px 0;
    }
    
    .header-content {
        gap: 16px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .skolkovo-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    /* Hero section improvements */
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .hero-explanation {
        padding: 20px;
    }
    
    .hero-price-comparison {
        flex-direction: column;
        gap: 12px;
    }
    
    .small-old-price,
    .small-new-price {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .btn-header {
        width: auto;
        min-width: 200px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header mobile */
    .header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .skolkovo-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        white-space: nowrap;
    }
    
    /* Hero mobile */
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .hero-explanation {
        padding: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .hero-price-comparison {
        padding: 16px 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .small-old-price {
        font-size: 0.8rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .small-new-price {
        font-size: 0.85rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .hero-skolkovo-badge {
        padding: 20px 16px;
        gap: 16px;
    }
    
    .skolkovo-text strong {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .hero-info {
        padding: 20px 16px;
        gap: 12px;
    }
    
    .hero-info i {
        font-size: 1.5rem;
    }
    
    .info-text strong {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .info-text p {
        font-size: 0.85rem;
    }
    
    /* Buttons mobile */
    .btn {
        font-size: 0.9rem;
        padding: 12px 16px;
        width: 100%;
    }
    
    .btn-header {
        width: 100%;
        min-width: auto;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* Features mobile */
    .hero-features li {
        font-size: 0.9rem;
    }
    
    .hero-features i {
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .number-10 {
        font-size: 3.5rem;
    }
    
    .za {
        font-size: 1.8rem;
    }
    
    .hero-title-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }
    
    .hero-explanation {
        padding: 10px 8px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-price-comparison {
        padding: 12px 10px;
    }
    
    .small-old-price {
        font-size: 0.75rem;
    }
    
    .small-new-price {
        font-size: 0.8rem;
    }
    
    .skolkovo-logo-img {
        width: 56px;
        height: 56px;
    }
    
    .skolkovo-text strong {
        font-size: 0.85rem;
    }
    
    .info-text strong {
        font-size: 0.85rem;
    }
}

/* Fix for price-includes section on mobile */
@media (max-width: 768px) {
    .price-includes {
        padding: 24px 16px;
    }
    
    .price-includes ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .price-includes li {
        font-size: 0.9rem;
        padding: 10px;
        gap: 10px;
    }
    
    .price-includes li i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .price-includes {
        padding: 20px 12px;
    }
    
    .price-includes h3 {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    
    .price-includes li {
        font-size: 0.85rem;
        padding: 10px 8px;
        gap: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .price-includes li i {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .price-includes {
        padding: 16px 10px;
    }
    
    .price-includes h3 {
        font-size: 1.1rem;
    }
    
    .price-includes li {
        font-size: 0.8rem;
        padding: 8px 6px;
    }
}
