/* ===== AUDIT CLARTÉ - STYLES CSS ===== */

/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #E5E5E5;
    background: linear-gradient(135deg, #1C1C1E 0%, #2C2C2E 100%);
    overflow-x: hidden;
}

/* Variables CSS pour les couleurs */
:root {
    --primary-color: #4B0082;
    --accent-color: #FEE440;
    --background-dark: #1C1C1E;
    --background-light: #2C2C2E;
    --text-light: #E5E5E5;
    --text-white: #FFFFFF;
    --teal-color: #00CFC1;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-radius: 20px;
}

/* Conteneurs */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ET NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(254, 228, 64, 0.2);
}

.navbar {
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-text {
    margin-left: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--teal-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* ===== BOUTONS ===== */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--teal-color));
    color: var(--text-white);
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(45deg, var(--primary-color), var(--teal-color));
    color: var(--text-white);
    padding: 15px 40px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ===== SECTIONS GÉNÉRALES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--teal-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    position: relative;
}

.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"><defs><radialGradient id="a"><stop offset="0%" stop-color="%23FEE440" stop-opacity="0.1"/><stop offset="100%" stop-color="%23FEE440" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="300" fill="url(%23a)"/><circle cx="800" cy="700" r="400" fill="url(%23a)"/></svg>');
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-white);
}

.hero-accent {
    background: linear-gradient(45deg, var(--primary-color), var(--teal-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 228, 64, 0.2);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    padding: 80px 0;
    background: var(--background-dark);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 207, 193, 0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 207, 193, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.advantage-card h3 {
    color: var(--teal-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 0, 130, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 5px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-color);
    font-weight: bold;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 20px;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 80px 0;
    background: var(--background-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 228, 64, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(254, 228, 64, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), var(--teal-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.step-content h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 207, 193, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 207, 193, 0.2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.testimonial-author strong {
    color: var(--teal-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== ORDER FORM SECTION ===== */
.order-form {
    padding: 80px 0;
    background: var(--background-dark);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.audit-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(254, 228, 64, 0.3);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(254, 228, 64, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(254, 228, 64, 0.3);
    transform: translateY(-2px);
}

.form-group select option {
    background: var(--background-dark);
    color: var(--text-white);
}

.checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--teal-color);
}

.checkbox-label a {
    color: var(--teal-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 0, 130, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(75, 0, 130, 0.2);
}

.contact-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card a {
    color: var(--teal-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
    padding: 120px 0 80px;
    background: var(--background-dark);
    min-height: 100vh;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(254, 228, 64, 0.3);
}

.success-icon {
    margin-bottom: 30px;
    animation: zoomIn 0.8s ease-out;
}

.checkmark-svg {
    animation: rotate 2s linear infinite;
}

.circle-animation {
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    animation: drawCircle 1s ease-out forwards;
}

.checkmark-animation {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.8s ease-out 0.5s forwards;
}

.thank-you-title {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.main-message {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h3 {
    color: var(--teal-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-reminder {
    background: rgba(0, 207, 193, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 207, 193, 0.3);
}

.contact-reminder a {
    color: var(--teal-color);
    text-decoration: none;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-section {
    margin-top: 80px;
    text-align: center;
}

.team-intro {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 0, 130, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.2);
}

.member-image {
    margin-bottom: 20px;
}

.member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.member-info h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.member-role {
    color: var(--teal-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.member-desc {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 120px 0 80px;
    background: var(--background-light);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.last-updated {
    color: var(--text-light);
    font-size: 1.1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 228, 64, 0.2);
}

.intro-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(0, 207, 193, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 207, 193, 0.3);
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    color: var(--teal-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.section h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.section ul {
    margin-left: 20px;
}

.section li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.important-notice {
    background: rgba(254, 228, 64, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(254, 228, 64, 0.3);
    margin: 20px 0;
}

.cookie-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(75, 0, 130, 0.2);
}

.cookie-management {
    margin: 20px 0;
}

.contact-section {
    margin-top: 50px;
    padding: 30px;
    background: rgba(75, 0, 130, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(75, 0, 130, 0.3);
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info a {
    color: var(--teal-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    margin-top: 50px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--background-dark);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(254, 228, 64, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--teal-color);
}

.footer-logo {
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(254, 228, 64, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content {
    color: var(--text-light);
}

.footer-disclaimer {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(254, 228, 64, 0.3);
    padding: 20px;
    z-index: 2000;
    transition: all 0.5s ease;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.cookie-content p {
    color: var(--text-light);
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept {
    background: var(--teal-color);
    color: var(--background-dark);
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-decline {
    background: transparent;
    color: var(--text-light);
    padding: 10px 20px;
    border: 1px solid var(--text-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    background: var(--text-light);
    color: var(--background-dark);
}

.btn-more {
    color: var(--accent-color);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: var(--accent-color);
    color: var(--background-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(28, 28, 30, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-toggle:checked ~ .nav-links {
        transform: translateY(0);
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .audit-form {
        padding: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content {
        padding: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-content {
        padding: 30px;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
} 