/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'K2D', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 50%, #A855F7 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(75, 40, 150, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cookie-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background: #ffffff;
    color: #6B46C1;
}

.btn-refuse,
.btn-settings {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff !important;
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Header */
.header {
    background: rgba(107, 70, 193, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

.logo-icon {
    font-size: 24px;
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.nav-list a:hover {
    opacity: 0.8;
}

.contact-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #ffffff;
    color: #6B46C1;
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
    border-radius: 32px;
background: #380C48;
padding: 30px 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-btn {
    background: #ffffff;
    color: #6B46C1;
    border: none;
    padding: 18px 32px;
    border-radius: 10px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.hero-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-family: 'K2D', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: #8B5CF6;
    color: #ffffff;
    border: none;
    padding: 18px 24px;
    border-radius: 10px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-submit:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

/* Offers Section */
.offers {
    padding: 80px 0;
    background: rgba(107, 70, 193, 0.1);
}

.offers h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offers > p {
    text-align: center;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(107, 70, 193, 0.4) 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 35px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.3;
}

.pricing-header ul {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-header li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    opacity: 0.95;
    line-height: 1.5;
}

.pricing-header li:before {
    content: "•";
    color: #ffffff;
    position: absolute;
    left: 0;
    font-size: 20px;
    top: -2px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.pricing-btn {
    background: #ffffff;
    color: #6B46C1;
    border: none;
    padding: 16px 28px;
    border-radius: 15px;
    font-family: 'K2D', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: none;
}

.pricing-card:nth-child(2) .pricing-btn,
.pricing-card:nth-child(3) .pricing-btn {
    background: rgba(107, 70, 193, 0.8);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card:nth-child(2) .pricing-btn:hover,
.pricing-card:nth-child(4) .pricing-btn:hover {
    background: rgba(107, 70, 193, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

/* AI Investment Section */
.ai-investment {
    padding: 80px 0;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.ai-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.ai-text p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.7;
}

.ai-text ul {
    list-style: none;
    margin: 30px 0;
}

.ai-text li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    opacity: 0.9;
    line-height: 1.6;
}

.ai-text li:before {
    content: "•";
    color: #8B5CF6;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.ai-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Capitalize Section */
.capitalize {
    padding: 80px 0;
    background: rgba(107, 70, 193, 0.1);
}

.capitalize-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.capitalize-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.capitalize-text p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.7;
}

.capitalize-text ul {
    list-style: none;
    margin: 30px 0;
}

.capitalize-text li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    opacity: 0.9;
    line-height: 1.6;
}

.capitalize-text li:before {
    content: "•";
    color: #8B5CF6;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.capitalize-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Excellence Section */
.excellence {
    padding: 80px 0;
    text-align: center;
}

.excellence h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.excellence p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
}

.contact-info strong {
    color: #ffffff;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(107, 70, 193, 0.2);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.7;
}

/* Thank You Page Styles */
.thank-hero {
    padding: 120px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.thank-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.thank-content ol {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
    padding-left: 20px;
}

.thank-content li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 40px auto;
    text-align: left;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form {
        order: -1;
    }
    
    .capitalize-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(107, 70, 193, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 0 0 20px 20px;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-content .contact-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .offers h2,
    .ai-text h2,
    .capitalize-text h2,
    .excellence h2,
    .thank-content h1 {
        font-size: 28px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav ul {
        justify-content: center;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .offers,
    .ai-investment,
    .capitalize,
    .excellence {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .ai-image img,
    .capitalize-image img {
        height: 250px;
    }
    
    .contact-form,
    .contact-info,
    .contact-details {
        padding: 20px;
    }
}
              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                