/* ===========================
   VARIABLES & RESET
   =========================== */

:root {
    --primary: #00d9ff;
    --primary-dark: #00b8d4;
    --secondary: #1e3a5f;
    --dark: #0a1628;
    --darker: #050b14;
    --light: #f0f4f8;
    --accent: #00ff88;
    --accent-dark: #00cc6a;
    --gradient-1: linear-gradient(135deg, #00d9ff 0%, #00ff88 100%);
    --gradient-2: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: float 20s infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float 15s infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(240, 244, 248, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
}

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

.code-window {
    background: rgba(10, 22, 40, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.window-header {
    background: rgba(30, 58, 95, 0.5);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.window-body {
    padding: 24px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.window-body code {
    color: var(--light);
}

.keyword { color: #ff79c6; }
.variable { color: #50fa7b; }
.property { color: #8be9fd; }
.string { color: #f1fa8c; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(240, 244, 248, 0.5);
    font-size: 0.9rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin: 10px auto 0;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '↓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(240, 244, 248, 0.7);
    margin-bottom: 60px;
}

.features {
    background: rgba(255, 255, 255, 0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(30, 58, 95, 0.3);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
    background: rgba(30, 58, 95, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.8;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.tech-item {
    background: rgba(30, 58, 95, 0.3);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.tech-item:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: scale(1.05);
    border-color: var(--primary);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.tech-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.tech-item p {
    color: rgba(240, 244, 248, 0.6);
    font-size: 0.9rem;
}

.cta-section {
    background: var(--gradient-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(240, 244, 248, 0.8);
    margin-bottom: 40px;
}

.page-hero {
    background: var(--gradient-2);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(240, 244, 248, 0.8);
    position: relative;
    z-index: 1;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.lead {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-text p {
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.stat-card {
    background: rgba(30, 58, 95, 0.3);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(240, 244, 248, 0.7);
    font-size: 1rem;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-section {
    background: rgba(30, 58, 95, 0.2);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-section h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-section p {
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.feature-list li {
    color: rgba(240, 244, 248, 0.85);
    padding: 8px 0;
}

.philosophy-grid,
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.philosophy-item,
.infra-item {
    background: rgba(10, 22, 40, 0.5);
    padding: 24px;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.philosophy-item strong,
.infra-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.philosophy-item p,
.infra-item p {
    color: rgba(240, 244, 248, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.service-detail {
    background: rgba(30, 58, 95, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    transition: all 0.3s ease;
}

.service-detail:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.service-icon-large {
    font-size: 4rem;
    background: rgba(0, 217, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
}

.service-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-tagline {
    color: rgba(240, 244, 248, 0.7);
    font-size: 1.1rem;
}

.service-description {
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.service-features {
    margin-bottom: 32px;
}

.service-features h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.service-features li {
    color: rgba(240, 244, 248, 0.85);
    padding: 8px 0;
    line-height: 1.6;
}

.why-choose {
    background: rgba(255, 255, 255, 0.03);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 32px;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.6;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-intro p {
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(30, 58, 95, 0.3);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    text-align: center;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.info-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.info-card p {
    color: rgba(240, 244, 248, 0.8);
}

.contact-form-wrapper {
    background: rgba(30, 58, 95, 0.2);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    background: rgba(10, 22, 40, 0.7);
}

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

.form-message {
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff4444;
    color: #ff4444;
    display: block;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--dark);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loader {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.contact-faq {
    margin-top: 80px;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.faq-item {
    background: rgba(30, 58, 95, 0.2);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.faq-item h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.faq-item p {
    color: rgba(240, 244, 248, 0.8);
    line-height: 1.7;
}

.footer {
    background: var(--dark);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(240, 244, 248, 0.7);
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(240, 244, 248, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.footer-bottom p {
    color: rgba(240, 244, 248, 0.5);
    margin-bottom: 8px;
}

.powered-by {
    font-size: 0.9rem;
}

.cookie-settings-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-settings-link:hover {
    color: var(--accent);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--primary);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.cookie-text p {
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.6;
    margin-bottom: 8px;
}

.cookie-policy-link {
    color: var(--accent);
    text-decoration: underline;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: var(--primary);
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-btn {
    white-space: nowrap;
    min-width: 120px;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--secondary);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 48px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cookie-modal-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 32px;
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.modal-section h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.modal-section p {
    color: rgba(240, 244, 248, 0.85);
    line-height: 1.8;
    margin-bottom: 12px;
}

.cookie-type {
    background: rgba(10, 22, 40, 0.5);
    padding: 24px;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.cookie-type p {
    margin-bottom: 8px;
}

.cookie-note {
    background: rgba(0, 217, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.rights-list {
    list-style: none;
    padding-left: 0;
}

.rights-list li {
    color: rgba(240, 244, 248, 0.85);
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.rights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.warning-text {
    color: #ffbd2e;
    font-weight: 500;
    padding: 12px;
    background: rgba(255, 189, 46, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 189, 46, 0.3);
}

#closeModalBtn {
    margin-top: 24px;
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-modal-content {
        padding: 32px 24px;
    }
    
    .modal-close {
        top: 16px;
        right: 16px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}