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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-card: #1a1a1a;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --accent-primary: #00d4ff;
    --accent-secondary: #ff0080;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(0, 212, 255, 0.5);
    --shadow-color: rgba(0, 212, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, height 0.3s ease;
    height: 90px;
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    height: 70px;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    transition: padding 0.3s ease;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: 36px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(-15deg) scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
     color: var(--text-secondary);
     text-decoration: none;
     font-size: 0.95rem;
     padding: 0.5rem 0;
     position: relative;
     transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
    text-shadow: 0 0 8px var(--shadow-color);
}

.nav-links a:hover::after, .nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-btn:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* Menu Mobile */
.mobile-toggle {
    display: none;
    z-index: 101;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

.mobile-menu.active .mobile-toggle span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.mobile-menu.active .mobile-toggle span:nth-child(2) {
    opacity: 0;
}
.mobile-menu.active .mobile-toggle span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    text-align: center;
    list-style: none;
}

.mobile-nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

.mobile-menu .nav-right-mobile {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0 20px;
}

.mobile-menu .login-btn {
    font-size: 1.2rem;
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 45%;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.hero-graphic {
    width: 100%;
    height: auto;
    min-height: 500px;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic img {
    max-width: 100%;
    max-height: 60vh;
    height: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-primary img, .btn-secondary img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.btn-primary:hover img:first-child {
    transform: rotate(-10deg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px) scale(1.03);
}

.btn-secondary:hover img {
    transform: translateY(2px);
}

/* Features Section */
#features {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x) var(--y), rgba(0, 212, 255, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    margin-bottom: 0.5rem;
    height: 48px;
    width: 48px;
    font-size: 2.5rem; /* For emojis */
    line-height: 48px; /* To center emoji vertically */
    text-align: center; /* To center emoji horizontally */
    display: inline-block;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing {
    padding: 6rem 0;
    position: relative;
}

.pricing h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-section {
    margin-top: 4rem;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    color: var(--text-secondary);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background-color: var(--text-secondary);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--accent-primary);
}

input:checked + .slider:before {
    background-color: white;
    transform: translateX(26px);
}

.toggle-label.active {
    color: var(--accent-primary);
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-grid.server-plans {
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    justify-content: center;
    max-width: 800px;
}

.pricing-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.pricing-card-header {
    text-align: left;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.plan-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    min-height: 1.5rem;
}

.price-placeholder {
    height: auto;
    margin-bottom: 2rem;
    position: relative;
    text-align: left;
}

.plan-price {
     font-size: 3rem;
     font-weight: 700;
     color: var(--text-primary);
}

.price-monthly, .price-yearly {
    position: relative;
    width: auto;
    left: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: none;
}

.price-monthly.active, .price-yearly.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.plan-price sup {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

.plan-btn {
    width: 100%;
    margin-top: auto;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 212, 255, 0.2);
}

.plan-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.pricing-card:not(.featured) .plan-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.pricing-card:not(.featured) .plan-btn:hover {
    border-color: var(--border-hover);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: none;
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: 0 0 60px var(--shadow-color);
}

.pricing-card.featured::before {
    content: "Le plus populaire";
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card.featured:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 0 60px var(--shadow-color), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.support-badge {
    display: none;
}

.footer {
    background: var(--bg-secondary);
    padding: 5rem 0 3rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 1px;
     background: linear-gradient(to right, transparent, var(--accent-primary), transparent);
     opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.footer-section {
    min-width: auto;
}

.footer-section .logo {
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 4rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Generic Page Styles */
.generic-page {
    padding-top: 140px;
    padding-bottom: 6rem;
    min-height: 80vh;
}

.generic-page h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.generic-page .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.page-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--shadow-color);
}

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

/* Legal Page */
.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
}

.legal-content p, .legal-content ul {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 20px;
}

/* Command Page */
.command-category {
    margin-bottom: 3rem;
}

.command-category h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--accent-primary);
}

.command-item {
    margin-bottom: 1.5rem;
}

.command-name {
    font-family: 'Courier New', Courier, monospace;
    background: var(--bg-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: var(--accent-primary);
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.command-description {
    color: var(--text-secondary);
    padding-left: 1rem;
}

/* FAQ / Help Page */
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
    color: var(--text-secondary);
}
.faq-answer a {
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    margin-top: 1rem;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

/* Status Page */
.status-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.status-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.status-item-name {
    font-size: 1.2rem;
    font-weight: 600;
}
.status-indicator {
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}
.status-operational {
    border-color: #2ecc71;
    color: #2ecc71;
}
.status-operational .status-indicator {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}
.status-degraded {
    border-color: #f39c12;
    color: #f39c12;
}
.status-degraded .status-indicator {
    background-color: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}
.status-outage {
    border-color: #e74c3c;
    color: #e74c3c;
}
.status-outage .status-indicator {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}
/* Contact Page Additions */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
    background: transparent;
    border: none;
    padding: 0;
}

.contact-option {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.contact-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-option p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.contact-option .btn-primary,
.contact-option .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-graphic img {
        max-height: 40vh;
    }

    .hero-text {
        order: 2;
        text-align: center;
    }

    .hero-graphic {
        order: 1;
        height: 50vh;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        margin: 0 auto 2.5rem auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    .nav-links, .nav-right > .login-btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        color: var(--text-secondary);
        margin-bottom: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-graphic {
        display: block;
        height: 35vh;
        min-height: 250px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .features, .pricing {
        padding: 4rem 0;
    }

    .features h2, .pricing h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card:hover {
         transform: translateY(-5px);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .logo img {
        height: 32px;
        width: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
     .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .features h2, .pricing h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
         order: -1;
    }
    
    .logo img {
        height: 32px;
        width: 32px;
    }
}