/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #1a1a2e;
}

.btn-primary:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.8rem 2rem rgba(79, 172, 254, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4facfe;
    border: 0.2rem solid #4facfe;
}

.btn-secondary:hover {
    background: #4facfe;
    color: #1a1a2e;
}

.btn-full {
    width: 100%;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(1rem);
    padding: 2rem;
    z-index: 1000;
    border-top: 0.1rem solid rgba(79, 172, 254, 0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 1.4rem;
    color: #ffffff;
}

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

.cookie-btn {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 0.6rem;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4facfe;
    color: #1a1a2e;
}

.cookie-btn.reject {
    background: transparent;
    color: #ffffff;
    border: 0.1rem solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
    transform: translateY(-0.1rem);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(1rem);
    z-index: 999;
    padding: 1rem 0;
    border-bottom: 0.1rem solid rgba(79, 172, 254, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #4facfe;
    text-decoration: none;
}

.nav-menu {
    display: none;
    gap: 3rem;
}

/* Mobile menu styles */
@media (max-width: 48rem) {
    .nav-menu {
        position: fixed;
        top: 7rem;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(1.5rem);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 998;
        border-bottom: 0.1rem solid rgba(79, 172, 254, 0.2);
    }

    .nav-menu.show {
        display: flex;
        transform: translateX(0);
    }

    .nav-menu a {
        padding: 1.5rem 0;
        font-size: 1.6rem;
        border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4facfe;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Section */
.trust-section {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.trust-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5rem;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 25rem;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.6rem;
    border: 0.1rem solid rgba(79, 172, 254, 0.1);
}

.trust-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
}

.trust-icon img {
    width: 3rem;
    height: 3rem;
    filter: brightness(0) invert(1);
}

.trust-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4facfe;
}

.trust-item p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5rem;
}

.testimonials-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 30rem;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 1.6rem;
    border-left: 0.4rem solid #4facfe;
    position: relative;
}

.testimonial-content p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #4facfe;
}

/* Services */
.services {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5rem;
}

.services-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 30rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 1.6rem;
    border: 0.1rem solid rgba(79, 172, 254, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(79, 172, 254, 0.1);
}

.service-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 1.2rem;
}

.service-icon img {
    width: 3rem;
    height: 3rem;
    filter: brightness(0) invert(1);
}

.service-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4facfe;
}

.service-item p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.service-price {
    border-top: 0.1rem solid rgba(79, 172, 254, 0.2);
    padding-top: 2rem;
}

.service-price strong {
    display: block;
    font-size: 1.8rem;
    color: #4facfe;
    margin-bottom: 0.5rem;
}

.service-price span {
    font-size: 1.3rem;
    color: #4facfe;
    opacity: 0.8;
    cursor: pointer;
}

/* FAQ */
.faq {
    padding: 8rem 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5rem;
}

.faq-list {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 0.1rem solid rgba(79, 172, 254, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.6rem;
    font-weight: 600;
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: #4facfe;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 20rem;
    padding: 0 2.5rem 2rem;
}

.faq-answer p {
    font-size: 1.4rem;
    opacity: 0.9;
    line-height: 1.6;
}

.faq-contact {
    text-align: center;
    margin-top: 4rem;
}

.faq-contact p {
    font-size: 1.5rem;
}

.faq-contact a {
    color: #4facfe;
    text-decoration: none;
}

/* Contact */
.contact {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5rem;
}

.contact-form {
    max-width: 60rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 1.6rem;
    border: 0.1rem solid rgba(79, 172, 254, 0.1);
}

.form-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 2.5rem;
    flex: 1;
    min-width: 25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 0.1rem solid rgba(79, 172, 254, 0.3);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.4rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 0 0.3rem rgba(79, 172, 254, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    min-height: 12rem;
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 1.4rem;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #4facfe;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label span a {
    color: #4facfe;
    text-decoration: none;
}

.checkbox-label span a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 6rem 0 2rem;
    border-top: 0.1rem solid rgba(79, 172, 254, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section {
    flex: 1;
    min-width: 25rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #4facfe;
}

.footer-section p,
.footer-section li {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4facfe;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 0.1rem solid rgba(79, 172, 254, 0.3);
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.4rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #4facfe;
    color: #1a1a2e;
    border: none;
    border-radius: 0.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #00f2fe;
}

.footer-bottom {
    border-top: 0.1rem solid rgba(79, 172, 254, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 48rem) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 30rem;
    }

    .trust-grid {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        min-width: auto;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (min-width: 48.1rem) {
    .nav-menu {
        display: flex !important;
        position: static;
        background: none;
        backdrop-filter: none;
        flex-direction: row;
        padding: 0;
        transform: none;
        border-bottom: none;
    }

    .nav-menu a {
        padding: 0;
        font-size: 1.4rem;
        border-bottom: none;
    }

    .nav-toggle {
        display: none;
    }
}

@media (min-width: 76.8rem) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.8rem;
    }

    .trust-section h2,
    .testimonials h2,
    .services h2,
    .faq h2,
    .contact h2 {
        font-size: 3.6rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.trust-item,
.testimonial-item,
.service-item,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.trust-item:nth-child(2) {
    animation-delay: 0.1s;
}

.trust-item:nth-child(3) {
    animation-delay: 0.2s;
}

.testimonial-item:nth-child(2) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.1s;
}

.service-item:nth-child(3) {
    animation-delay: 0.2s;
}

/* Success Page Styles */
.success-hero {
    padding: 12rem 0 8rem;
    text-align: center;
}

.success-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon::after {
    content: '✓';
    font-size: 4rem;
    color: #1a1a2e;
    font-weight: bold;
}

.success-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #4facfe;
}

.success-content p {
    font-size: 1.6rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.success-next {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 1.6rem;
    border: 0.1rem solid rgba(79, 172, 254, 0.1);
    margin-top: 4rem;
}

.success-next h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #4facfe;
}

.success-next ul {
    list-style: none;
    text-align: left;
    max-width: 50rem;
    margin: 0 auto;
}

.success-next li {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.success-next li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}
/*.nav-toggle{*/
/*    display: none;*/
/*}*/