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

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-blue: #00d4ff;
    --accent-green: #00ff88;
    --accent-orange: #ff6b00;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b00 0%, #00d4ff 100%);
}

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

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    background: var(--bg-darker);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    z-index: 1000;
    transition: width 0.3s;
}

.sidebar:hover {
    width: 220px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar:hover .logo-text {
    opacity: 1;
}

.nav-links {
    list-style: none;
    width: 100%;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.1);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-blue);
}

.nav-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.nav-label {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar:hover .nav-label {
    opacity: 1;
}

.sidebar-footer {
    padding: 0 20px;
    width: 100%;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar:hover .status-indicator {
    opacity: 1;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.main-content {
    margin-left: 80px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 50%);
    animation: bgShift 20s infinite alternate;
}

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

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

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

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    padding: 16px 35px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--bg-dark);
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary {
    padding: 16px 35px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
}

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

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
    animation: scrollMove 2s infinite;
}

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

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 60px;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-blue);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.tech-section {
    background: var(--bg-darker);
}

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

.tech-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

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

.tech-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.tech-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.tech-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-blue);
}

.solutions-section {
    background: var(--bg-dark);
}

.solutions-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
}

.solution-main {
    position: relative;
}

.solution-content {
    display: none;
    animation: fadeIn 0.5s;
}

.solution-content.active {
    display: block;
}

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

.solution-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.solution-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.solution-list {
    list-style: none;
    margin-bottom: 40px;
}

.solution-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.check-icon {
    color: var(--accent-green);
    font-weight: 900;
    font-size: 18px;
}

.solution-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solution-tab {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    color: var(--text-secondary);
}

.solution-tab.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-blue);
}

.tab-number {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.tab-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.innovation-section {
    background: var(--bg-darker);
}

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

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

.innovation-visual {
    margin-bottom: 30px;
}

.circle-progress {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.circle-progress svg {
    transform: rotate(-90deg);
}

.circle-progress circle {
    fill: none;
    stroke-width: 8;
}

.circle-progress circle:first-child {
    stroke: rgba(255, 255, 255, 0.1);
}

.circle-progress .progress-circle {
    stroke: url(#gradient);
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.innovation-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.innovation-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.performance-section {
    background: var(--bg-dark);
}

.dashboard-preview {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.time-label {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.time-value {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--accent-blue);
}

.status-online {
    color: var(--accent-green);
    font-size: 14px;
    font-weight: 600;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-trend {
    font-size: 13px;
    font-weight: 700;
}

.metric-trend.up {
    color: var(--accent-green);
}

.metric-trend.down {
    color: var(--accent-blue);
}

.metric-value {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.metric-unit {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.metric-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 1s ease;
}

.contact-section {
    background: var(--bg-darker);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    padding-right: 40px;
}

.contact-details {
    margin-top: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.form-field label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
}

.btn-submit {
    padding: 18px 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-arrow {
    font-size: 20px;
    font-weight: 900;
}

.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 60px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 13px;
}

.footer-social span {
    color: var(--text-secondary);
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 80px;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 25px 60px;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.cookie-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-wrapper p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 14px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-accept {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.cookie-reject:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    max-width: 500px;
    text-align: center;
    animation: modalSlide 0.3s;
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 900;
    color: var(--bg-dark);
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.image-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 50px 30px;
    color: var(--text-secondary);
    text-align: center;
    border-left: 4px solid var(--accent-blue);
    font-style: italic;
    border-radius: 8px;
    margin-top: 30px;
    line-height: 1.8;
}

.legal-page {
    padding: 180px 60px 100px 140px;
    max-width: 1200px;
}

.legal-page h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page .last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 50px;
    font-size: 14px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--accent-blue);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.legal-page li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-page li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 900;
}

.legal-page strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .sidebar {
        width: 70px;
    }
    
    .sidebar:hover {
        width: 200px;
    }
    
    .main-content {
        margin-left: 70px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .section-container {
        padding: 80px 40px;
    }
    
    .tech-grid,
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-layout {
        grid-template-columns: 1fr;
    }
    
    .solution-tabs {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .solution-tab {
        min-width: 150px;
    }
    
    .dashboard-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 60px;
        padding: 20px 0;
    }
    
    .main-content {
        margin-left: 60px;
    }
    
    .hero-section {
        padding: 0 30px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-container {
        padding: 60px 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 30px 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-banner {
        left: 60px;
        padding: 20px 30px;
    }
    
    .cookie-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-page {
        padding: 140px 30px 60px 90px;
    }
    
    .legal-page h1 {
        font-size: 36px;
    }
}