/* Импорт современных шрифтов */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Современная темная тема с неоновыми акцентами */
:root {
    --module: 24px;
    --module-half: 12px;
    --module-quarter: 6px;
    --module-double: 48px;
    --module-triple: 72px;
    --module-quad: 96px;
    
    /* Темная палитра */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1a1a1a;
    --color-bg-card: #1e1e1e;
    --color-bg-hover: #2a2a2a;
    
    /* Неоновые акценты */
    --color-accent-cyan: #00ffff;
    --color-accent-green: #00ff88;
    --color-accent-purple: #8b5cf6;
    --color-accent-orange: #ff6b35;
    --color-accent-red: #ff3366;
    
    /* Текст */
    --color-text-primary: #ffffff;
    --color-text-secondary: #b3b3b3;
    --color-text-muted: #666666;
    --color-text-accent: #00ffff;
    
    /* Границы */
    --color-border: #333333;
    --color-border-accent: #00ffff;
    --color-border-hover: #555555;
    
    /* Шрифты */
    --font-family-primary: 'Orbitron', 'Courier New', monospace;
    --font-family-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-family-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 40px;
    --font-size-5xl: 48px;
    --font-size-6xl: 64px;
    
    --line-height-tight: 1.1;
    --line-height-base: 1.5;
    --line-height-loose: 1.75;
    
    --max-width: 1400px;
    --grid-columns: 12;
    --grid-gap: var(--module);
    
    /* Анимации */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Тени */
    --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
    --shadow-glow-green: 0 0 20px rgba(0, 255, 136, 0.3);
    --shadow-glow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.7);
}

/* Основные стили */
body {
    font-family: var(--font-family-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    font-weight: 400;
    overflow-x: hidden;
}

/* Анимированный фон */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Модульная сетка контейнер */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--module);
}

/* Современная типографика */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    font-weight: 600;
    line-height: var(--line-height-tight);
    margin-bottom: var(--module);
    color: var(--color-text-primary);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

h1 {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-accent-cyan);
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    color: var(--color-accent-green);
}

p {
    margin-bottom: var(--module);
    line-height: var(--line-height-base);
    color: var(--color-text-secondary);
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(0, 255, 255, 0.3); }
    100% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 30px rgba(139, 92, 246, 0.3); }
}

/* Модульная сетка */
.grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
    margin-bottom: var(--module-double);
}

.grid-1 { grid-column: span 1; }
.grid-2 { grid-column: span 2; }
.grid-3 { grid-column: span 3; }
.grid-4 { grid-column: span 4; }
.grid-5 { grid-column: span 5; }
.grid-6 { grid-column: span 6; }
.grid-7 { grid-column: span 7; }
.grid-8 { grid-column: span 8; }
.grid-9 { grid-column: span 9; }
.grid-10 { grid-column: span 10; }
.grid-11 { grid-column: span 11; }
.grid-12 { grid-column: span 12; }

/* Современный хедер с неоновыми эффектами */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-accent);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-glow);
}

.header .container {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
    align-items: center;
    padding-top: var(--module);
    padding-bottom: var(--module);
}

.logo {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: var(--module-half);
}

.logo-img {
    height: var(--module-double);
    width: auto;
    filter: drop-shadow(0 0 10px var(--color-accent-cyan));
    transition: var(--transition-base);
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px var(--color-accent-cyan));
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-accent-cyan);
    text-shadow: 0 0 10px var(--color-accent-cyan);
    letter-spacing: 2px;
}

.nav {
    grid-column: span 9;
    display: flex;
    justify-content: flex-end;
    gap: var(--module-double);
}

.nav-link {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--module-half) var(--module);
    border: 1px solid transparent;
    border-radius: 4px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: var(--transition-base);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-cyan);
    border-color: var(--color-accent-cyan);
    box-shadow: var(--shadow-glow);
    text-shadow: 0 0 10px var(--color-accent-cyan);
}

/* Hero секция с киберпанк дизайном */
.hero {
    padding: var(--module-quad) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
    animation: heroPattern 10s ease-in-out infinite;
}

@keyframes heroPattern {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero .container {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    grid-column: span 10;
    font-size: var(--font-size-6xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--module);
    text-align: center;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-purple));
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
}

.hero-subtitle {
    grid-column: span 10;
    font-size: var(--font-size-xl);
    color: var(--color-text-accent);
    margin-bottom: var(--module-double);
    text-align: center;
    font-family: var(--font-family-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-description {
    grid-column: span 8;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-loose);
    color: var(--color-text-secondary);
    margin: 0 auto var(--module-double);
    text-align: center;
    max-width: 800px;
}

.cta-button {
    grid-column: span 4;
    display: inline-block;
    padding: var(--module) var(--module-double);
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-purple));
    color: var(--color-bg-primary);
    text-decoration: none;
    font-family: var(--font-family-mono);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--color-accent-cyan);
    border-radius: 8px;
    transition: var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    margin: 0 auto;
    display: block;
    max-width: 300px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-base);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), 0 10px 30px rgba(0, 255, 255, 0.4);
    color: var(--color-text-primary);
}

/* Секции с киберпанк стилем */
.services,
.features,
.content {
    padding: var(--module-quad) 0;
    position: relative;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--module-triple);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-purple));
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
}

/* Сетка услуг в киберпанк стиле */
.services .container {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
}

.services .section-title {
    grid-column: span 12;
}

.services-grid {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--module-double);
}

.service-card {
    padding: var(--module-double);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-purple));
    transform: scaleX(0);
    transition: var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--color-accent-cyan);
    box-shadow: var(--shadow-glow), var(--shadow-hover);
    transform: translateY(-5px);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--module-half);
    color: var(--color-accent-green);
    font-family: var(--font-family-primary);
}

.service-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-text-secondary);
    margin-bottom: var(--module);
}

.service-link {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent-cyan);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--color-accent-cyan);
    transition: var(--transition-base);
    display: inline-block;
    position: relative;
}

.service-link::after {
    content: ' →';
    transition: var(--transition-base);
}

.service-link:hover {
    color: var(--color-accent-purple);
    border-color: var(--color-accent-purple);
    text-shadow: 0 0 10px var(--color-accent-purple);
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Фичи в киберпанк стиле */
.features .container {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
}

.features .section-title {
    grid-column: span 12;
}

.features-list {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--module-double);
}

.feature {
    padding: var(--module-double);
    border-left: 3px solid var(--color-accent-cyan);
    background: var(--color-bg-card);
    border-radius: 0 8px 8px 0;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent-cyan), var(--color-accent-purple));
    transform: scaleY(0);
    transition: var(--transition-base);
}

.feature:hover::before {
    transform: scaleY(1);
}

.feature:hover {
    background: var(--color-bg-hover);
    box-shadow: var(--shadow-glow);
    transform: translateX(10px);
}

.feature-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--module-half);
    color: var(--color-accent-green);
    font-family: var(--font-family-primary);
}

.feature-description {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-text-secondary);
}

/* Контент в киберпанк стиле */
.content .container {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
}

.content-section {
    grid-column: span 10;
    margin: 0 auto var(--module-quad);
    background: var(--color-bg-card);
    padding: var(--module-double);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-purple));
}

.content-section h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--module-double);
    color: var(--color-accent-cyan);
    font-family: var(--font-family-primary);
}

.content-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--module);
    color: var(--color-accent-green);
    font-family: var(--font-family-primary);
}

.content-section p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-text-secondary);
    margin-bottom: var(--module);
}

.content-section ul {
    margin-bottom: var(--module);
    padding-left: var(--module);
}

.content-section li {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-text-secondary);
    margin-bottom: var(--module-half);
    position: relative;
}

.content-section li::before {
    content: '▶';
    color: var(--color-accent-cyan);
    font-size: var(--font-size-sm);
    position: absolute;
    left: -20px;
    top: 0;
}

.content-section li strong {
    color: var(--color-accent-green);
    font-weight: 600;
}

.steps-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--module-double);
    counter-reset: step-counter;
}

.steps-list li {
    padding: var(--module) 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    padding-left: var(--module-triple);
    margin-bottom: var(--module);
    background: var(--color-bg-secondary);
    border-radius: 8px;
    padding: var(--module);
    border: 1px solid var(--color-border);
}

.steps-list li::before {
    content: counter(step-counter, decimal-leading-zero);
    counter-increment: step-counter;
    position: absolute;
    left: var(--module);
    top: var(--module);
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-accent-cyan);
    background: var(--color-bg-primary);
    padding: var(--module-quarter) var(--module-half);
    border-radius: 4px;
    border: 1px solid var(--color-accent-cyan);
    box-shadow: var(--shadow-glow);
}

.highlight-box {
    background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
    padding: var(--module-double);
    border-left: 4px solid var(--color-accent-cyan);
    margin: var(--module-double) 0;
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-purple));
}

.highlight-box h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--module);
    color: var(--color-accent-green);
    font-family: var(--font-family-primary);
}

.highlight-box p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    color: var(--color-text-secondary);
    margin-bottom: var(--module);
}

/* Футер в киберпанк стиле */
.footer {
    background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-primary));
    border-top: 1px solid var(--color-accent-cyan);
    padding: var(--module-quad) 0 var(--module-double);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-purple), var(--color-accent-green));
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
    position: relative;
    z-index: 2;
}

.footer-content {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(var(--grid-columns), 1fr);
    gap: var(--grid-gap);
    align-items: start;
    margin-bottom: var(--module-double);
}

.footer-logo {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: var(--module-half);
}

.footer-logo-img {
    height: var(--module-double);
    width: auto;
    filter: drop-shadow(0 0 10px var(--color-accent-cyan));
}

.footer-nav {
    grid-column: span 9;
    display: flex;
    justify-content: flex-end;
    gap: var(--module-double);
    flex-wrap: wrap;
}

.footer-link {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--module-half) var(--module);
    border: 1px solid transparent;
    border-radius: 4px;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--color-accent-cyan);
    border-color: var(--color-accent-cyan);
    box-shadow: var(--shadow-glow);
    text-shadow: 0 0 10px var(--color-accent-cyan);
}

/* Партнерские ссылки в подвале */
.footer-links {
    grid-column: span 12;
    margin-bottom: var(--module-double);
    padding-top: var(--module);
    border-top: 1px solid var(--color-border);
}

.footer-links h3 {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-accent-green);
    margin-bottom: var(--module);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--module);
}

.footer-external-link {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-base);
    padding: var(--module-half) 0;
    border-bottom: 1px solid transparent;
    text-align: center;
}

.footer-external-link:hover {
    color: var(--color-accent-purple);
    border-bottom-color: var(--color-accent-purple);
    text-shadow: 0 0 10px var(--color-accent-purple);
}

.footer-bottom {
    grid-column: span 12;
    text-align: center;
    padding-top: var(--module);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
}

/* Формы в киберпанк стиле */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-bg-card);
    padding: var(--module-double);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.form-group {
    margin-bottom: var(--module);
}

.form-group label {
    display: block;
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent-green);
    margin-bottom: var(--module-half);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--module);
    border: 1px solid var(--color-border);
    background: var(--color-bg-secondary);
    font-family: var(--font-family-sans);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    transition: var(--transition-base);
    border-radius: 6px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: var(--shadow-glow);
    background: var(--color-bg-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Адаптивность для киберпанк дизайна */
@media (max-width: 768px) {
    :root {
        --grid-columns: 6;
        --module: 16px;
        --module-half: 8px;
        --module-double: 32px;
        --module-triple: 48px;
        --module-quad: 64px;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .nav {
        gap: var(--module);
        flex-wrap: wrap;
    }
    
    .footer-nav {
        gap: var(--module);
        flex-wrap: wrap;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-section {
        grid-column: span 12;
        padding: var(--module);
    }
}

@media (max-width: 480px) {
    :root {
        --grid-columns: 4;
        --module: 12px;
        --module-half: 6px;
        --module-double: 24px;
        --module-triple: 36px;
        --module-quad: 48px;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .nav {
        flex-direction: column;
        gap: var(--module-half);
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: var(--module-half);
        align-items: center;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        grid-column: span 4;
        justify-content: center;
    }
    
    .nav {
        grid-column: span 4;
    }
    
    .footer-logo {
        grid-column: span 4;
        justify-content: center;
    }
    
    .footer-nav {
        grid-column: span 4;
    }
} 