/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0f7fa;
    background-color: #1a1a40;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a40 0%, #2a2a2a 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(247, 37, 133, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #e0f7fa;
    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: linear-gradient(90deg, #f72585, #4361ee);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #4cc9f0;
}

.btn-cta {
    background: linear-gradient(135deg, #f72585 0%, #4361ee 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 37, 133, 0.4);
}

.btn-cta::after {
    display: none;
}

/* 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: linear-gradient(90deg, #f72585, #4361ee);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding-top: 90px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #1a1a40 0%, #2a2a2a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(247, 37, 133, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(67, 97, 238, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f72585 0%, #4361ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0f7fa;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #f72585 0%, #4361ee 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(247, 37, 133, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #4cc9f0;
    padding: 15px 35px;
    border: 2px solid #4cc9f0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4cc9f0;
    color: #1a1a40;
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f72585 0%, #4361ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #e0f7fa;
    opacity: 0.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: #2a2a2a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    background: linear-gradient(135deg, #1a1a40 0%, rgba(76, 201, 240, 0.1) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(76, 201, 240, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 201, 240, 0.2);
}

.about-card h3 {
    font-size: 1.5rem;
    color: #4cc9f0;
    margin-bottom: 15px;
}

.about-card p {
    color: #e0f7fa;
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: #1a1a40;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(135deg, #2a2a2a 0%, rgba(181, 23, 158, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(181, 23, 158, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(181, 23, 158, 0.3);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #4cc9f0;
    margin-bottom: 15px;
}

.service-content p {
    color: #e0f7fa;
    opacity: 0.9;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content ul li {
    color: #e0f7fa;
    opacity: 0.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4cc9f0;
    font-weight: bold;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f72585 0%, #4361ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid rgba(247, 37, 133, 0.3);
}

/* ===== ADVANTAGES SECTION ===== */
.advantages {
    padding: 100px 0;
    background: #2a2a2a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-card {
    background: linear-gradient(135deg, #1a1a40 0%, rgba(76, 201, 240, 0.1) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(76, 201, 240, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 201, 240, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.advantage-card h3 {
    font-size: 1.4rem;
    color: #4cc9f0;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #e0f7fa;
    opacity: 0.9;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: #1a1a40;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #2a2a2a 0%, rgba(181, 23, 158, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(181, 23, 158, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 201, 240, 0.2);
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text p {
    font-size: 1.2rem;
    color: #e0f7fa;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #4cc9f0;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #e0f7fa;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 100px 0;
    background: #2a2a2a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a40 0%, rgba(76, 201, 240, 0.1) 100%);
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid rgba(76, 201, 240, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(76, 201, 240, 0.1);
}

.faq-question span:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4cc9f0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #4cc9f0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #e0f7fa;
    opacity: 0.9;
}

.faq-toggle:checked + .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 200px;
}

/* ===== ORDER FORM SECTION ===== */
.order-form {
    padding: 100px 0;
    background: #1a1a40;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.audit-form {
    background: linear-gradient(135deg, #2a2a2a 0%, rgba(181, 23, 158, 0.1) 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(181, 23, 158, 0.3);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #4cc9f0;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(76, 201, 240, 0.3);
    border-radius: 10px;
    background: rgba(26, 26, 64, 0.8);
    color: #e0f7fa;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4cc9f0;
    box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.1);
}

.form-checkboxes {
    margin: 30px 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #4cc9f0;
}

.checkbox-group label {
    color: #e0f7fa;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.checkbox-group label a {
    color: #4cc9f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkbox-group label a:hover {
    color: #b5179e;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #f72585 0%, #4361ee 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(247, 37, 133, 0.5);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: #2a2a2a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a40 0%, rgba(76, 201, 240, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(76, 201, 240, 0.3);
    backdrop-filter: blur(10px);
}

.contact-card h3 {
    color: #4cc9f0;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-item strong {
    color: #4cc9f0;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #e0f7fa;
    opacity: 0.9;
    margin: 0;
}

.contact-item a {
    color: #4cc9f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #b5179e;
}

.contact-hours {
    background: linear-gradient(135deg, #1a1a40 0%, rgba(181, 23, 158, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(181, 23, 158, 0.3);
    backdrop-filter: blur(10px);
}

.contact-hours h3 {
    color: #4cc9f0;
    margin-bottom: 20px;
}

.contact-hours ul {
    list-style: none;
}

.contact-hours li {
    color: #e0f7fa;
    opacity: 0.9;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.contact-hours li::before {
    content: '⏰';
    position: absolute;
    left: 0;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(76, 201, 240, 0.3);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #1a1a40 0%, #2a2a2a 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(76, 201, 240, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #4cc9f0;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #4cc9f0;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-section p {
    color: #e0f7fa;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e0f7fa;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4cc9f0;
    opacity: 1;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: #4cc9f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #b5179e;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(76, 201, 240, 0.2);
}

.footer-bottom p {
    color: #e0f7fa;
    opacity: 0.7;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, #2a2a2a 0%, rgba(181, 23, 158, 0.2) 100%);
    border: 1px solid rgba(181, 23, 158, 0.3);
    border-radius: 20px;
    padding: 25px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content h3 {
    color: #4cc9f0;
    margin-bottom: 15px;
}

.cookie-content p {
    color: #e0f7fa;
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept {
    background: linear-gradient(135deg, #f72585 0%, #4361ee 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
}

.btn-decline {
    background: transparent;
    color: #4cc9f0;
    padding: 10px 20px;
    border: 2px solid #4cc9f0;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-decline:hover {
    background: #4cc9f0;
    color: #1a1a40;
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a40 0%, #2a2a2a 100%);
}

.thank-you-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-text {
    text-align: center;
}

.thank-you-icon {
    text-align: center;
    margin-bottom: 30px;
}

.thank-you-text h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #f72585 0%, #4361ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.thank-you-subtitle {
    font-size: 1.3rem;
    color: #e0f7fa;
    opacity: 0.9;
    margin-bottom: 40px;
}

.thank-you-info {
    background: linear-gradient(135deg, #2a2a2a 0%, rgba(76, 201, 240, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(76, 201, 240, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.thank-you-info h3 {
    color: #4cc9f0;
    margin-bottom: 20px;
}

.thank-you-info ul {
    list-style: none;
}

.thank-you-info li {
    color: #e0f7fa;
    opacity: 0.9;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.thank-you-contact {
    background: linear-gradient(135deg, #2a2a2a 0%, rgba(181, 23, 158, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(181, 23, 158, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.thank-you-contact h3 {
    color: #4cc9f0;
    margin-bottom: 15px;
}

.thank-you-contact p {
    color: #e0f7fa;
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-quick {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f72585 0%, #4361ee 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 37, 133, 0.4);
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.our-team {
    padding: 80px 0;
    background: #2a2a2a;
}

.team-intro {
    background: linear-gradient(135deg, #1a1a40 0%, rgba(76, 201, 240, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(76, 201, 240, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 50px;
    text-align: center;
}

.team-intro h3 {
    color: #4cc9f0;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.team-intro p {
    color: #e0f7fa;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, #1a1a40 0%, rgba(181, 23, 158, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(181, 23, 158, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(181, 23, 158, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h4 {
    color: #4cc9f0;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #e0f7fa;
    opacity: 0.9;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a1a40 0%, #2a2a2a 100%);
        flex-direction: column;
        padding: 30px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-menu-toggle:checked ~ .nav-links {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .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(6px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thank-you-content {
        text-align: center;
    }
    
    .thank-you-text h1 {
        font-size: 2.2rem;
    }
    
    .cookie-popup {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .contact-quick {
        flex-direction: column;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-card,
    .service-card,
    .advantage-card,
    .contact-card {
        padding: 25px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .audit-form {
        padding: 30px;
    }
    
    .thank-you-text h1 {
        font-size: 1.8rem;
    }
    
    .thank-you-subtitle {
        font-size: 1rem;
    }
    
    .team-intro h3 {
        font-size: 1.5rem;
    }
    
    .team-intro p {
        font-size: 1rem;
    }
} 