
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
}

.nav {
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}


.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #1a5490;
}

.dropdown-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a5490, #2980b9);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.dropdown-link div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dropdown-title {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.dropdown-desc {
    font-size: 0.85rem;
    color: #666;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.access-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.access-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cta-nav-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.cta-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}


.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #0ea5e9 100%);
    color: white;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    opacity: 0.9;
}

.feature-item i {
    color: #fbbf24;
    font-size: 16px;
}


.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.platform-dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    width: 500px;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.dashboard-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 16px 20px;
    color: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-header {
    width: 30px;
    height: 20px;
    background: white;
    border-radius: 4px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #fbbf24;
    border-radius: 50%;
}

.dashboard-body {
    display: flex;
    height: calc(100% - 68px);
    color: #333;
}

.sidebar {
    width: 200px;
    background: #f8fafc;
    padding: 20px 0;
    border-right: 1px solid #e2e8f0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.menu-item:hover {
    background: #e2e8f0;
}

.menu-item.active {
    background: #dbeafe;
    color: #1e40af;
    border-right: 3px solid #3b82f6;
}

.badge {
    background: #f97316;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

.badge.new {
    background: #ef4444;
    animation: pulse 2s infinite;
}

.main-content {
    flex: 1;
    padding: 20px;
    background: white;
}

.welcome-section {
    margin-bottom: 24px;
}

.welcome-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.welcome-section p {
    color: #6b7280;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    background: #f8fafc;
}

.stat-card.primary {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.stat-card.success {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.stat-card.warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.stat-card.info {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-card.primary .stat-icon {
    background: #3b82f6;
}

.stat-card.success .stat-icon {
    background: #22c55e;
}

.stat-card.warning .stat-icon {
    background: #f59e0b;
}

.stat-card.info .stat-icon {
    background: #06b6d4;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 12px;
    color: #ffffff;
}

.activity-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 6px;
}

.activity-icon {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.activity-text {
    flex: 1;
}

.activity-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.activity-text small {
    font-size: 12px;
    color: #6b7280;
}


.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: #3b82f6;
}

.card-1 {
    top: 20px;
    right: -80px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 100px;
    left: -100px;
    animation-delay: 2s;
}

.card-3 {
    top: 50%;
    right: -120px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}


.benefits-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1e293b;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}


.platforms-section {
    padding: 100px 0;
    background: white;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.platform-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.platform-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.platform-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.platform-header {
    margin-bottom: 24px;
}

.platform-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.platform-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.platform-header p {
    color: #64748b;
    font-size: 16px;
}

.platform-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #475569;
}

.platform-features i {
    color: #22c55e;
    font-size: 12px;
    flex-shrink: 0;
}

.platform-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    border: 2px solid #3b82f6;
    background: transparent;
    color: #3b82f6;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    background: #3b82f6;
    color: white;
}

.platform-btn.primary {
    background: #3b82f6;
    color: white;
}

.platform-btn.primary:hover {
    background: #1e40af;
}


.features-showcase {
    padding: 100px 0;
    background: #f8fafc;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-showcase-item:last-child {
    margin-bottom: 0;
}

.feature-showcase-item.reverse {
    direction: rtl;
}

.feature-showcase-item.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
    line-height: 1.2;
}

.feature-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #475569;
}

.feature-list i {
    color: #22c55e;
    font-size: 14px;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.feature-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}

.mockup-header {
    background: #f1f5f9;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.member-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
}

.member-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 50%;
}

.member-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.member-info span {
    font-size: 12px;
    color: #64748b;
}

.member-badges {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.member-badges .badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
}

.badge.active {
    background: #dcfce7;
    color: #166534;
}

.badge.formation {
    background: #dbeafe;
    color: #1e40af;
}

.badge.chef {
    background: #fef3c7;
    color: #92400e;
}

.calendar-view {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
}

.calendar-event {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-left: 4px solid #3b82f6;
    background: white;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 12px;
}

.calendar-event.formation {
    border-left-color: #3b82f6;
}

.calendar-event.sport {
    border-left-color: #22c55e;
}

.event-time {
    font-weight: 600;
    color: #1e293b;
}

.event-title {
    flex: 1;
    font-weight: 500;
}

.event-participants {
    color: #64748b;
    font-size: 11px;
}

.message-thread {
    max-height: 200px;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.message.received {
    justify-content: flex-start;
}

.message.sent {
    justify-content: flex-end;
}

.message-avatar {
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.message-content {
    max-width: 70%;
}

.message-author {
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-bottom: 2px;
}

.message-content p {
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin: 0 0 4px 0;
}

.message.sent .message-content p {
    background: #3b82f6;
    color: white;
}

.message-time {
    font-size: 10px;
    color: #94a3b8;
}


.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button.large {
    font-size: 18px;
    padding: 16px 32px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-item i {
    color: #fbbf24;
}


.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section.main {
    padding-right: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    height: 30px;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.contact-info i {
    color: #3b82f6;
    width: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.footer-bottom a {
    color: #3b82f6;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-accept {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: #1e40af;
}


@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-showcase-item.reverse {
        direction: ltr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 60px auto 0;
    }
    
    .platform-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .hero-image {
        transform: scale(0.7);
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .platform-dashboard {
        width: 100%;
        max-width: 400px;
    }
    
    .dashboard-body {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        max-height: 150px;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-content h3 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

