/* Variables et Reset */
:root {
    --primary: #3383bb;
    --primary-dark: #1e1e1e;
    --secondary: #4fc3f7;
    --light: #f8f9fa;
    --dark: #121212;
    --text: #333;
    --text-light: #fff;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*
body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}
*/
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--text-light);
    box-shadow: var(--box-shadow);
    padding: 1rem 2rem;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-size: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-light);
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 100vh;
    padding: 0 2rem;

/*    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);*/

	background: url('UnveilDNS22.png') no-repeat center center fixed;
	background-size: cover;
	min-height: 100vh;
	position: relative;
	padding: 50px 20px 20px;
}

.hero-content {
	color: #FFFFFF;
    flex: 1;
    max-width: 1024px;
    padding-right: 2rem;
}

.hero-content h1 {
/*    font-size: 3rem;*/
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
/*    font-size: 1.2rem;*/
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2rem;
/*    font-size: 1.1rem;*/
}

/* Features */
.features {
    padding: 5rem 2rem;
    text-align: center;
}

.features h2 {
/*    font-size: 2.5rem;*/
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.features p {
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
	font-size: 18px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
/*    font-size: 2.5rem;*/
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Technology */
.technology {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--light);
}

.technology h2 {
/*    font-size: 2.5rem;*/
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.technology p {
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.8;
	font-size: 18px;
}

.technology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
    margin: 0 auto 1rem;
}

.technology-diagram {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.technology-diagram img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.technology-description {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Pricing */
.pricing {
    padding: 5rem 2rem;
    text-align: center;
    background: #f4f7fa;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.pricing p {
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

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

.pricing-card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--text-light);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 1.25rem;
/*    font-weight: 600;*/
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    text-align: center;
}

.testimonials h2 {
/*    font-size: 2.5rem;*/
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.testimonials p {
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
}

.testimonial-card h4 {
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
}

.testimonial-card .role {
/*    font-size: 0.9rem;*/
    opacity: 0.7;
    margin-bottom: 1rem;
}

.testimonial-card .quote {
    font-style: italic;
    opacity: 0.9;
}

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
}

.final-cta h2 {
/*    font-size: 2.5rem;*/
    margin-bottom: 1rem;
}

.final-cta p {
/*    font-size: 1.2rem;*/
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-dark);
    color: var(--text-light);
	font-size: 18px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        max-width: 300px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--text-light);
        padding: 1rem;
    }

    .nav-toggle {
        display: block;
    }
}
