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

:root {
    --bg-primary: #151A24;
    --bg-secondary: #1F2633;
    --accent-lime: #B6FF3B;
    --accent-cyan: #3EDBF0;
    --text-primary: #E6EAF0;
    --text-secondary: #A8B0C2;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(182, 255, 59, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(182, 255, 59, 0.6), 0 0 30px rgba(62, 219, 240, 0.4);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

.slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s both;
}

.slide-up-delay-3 {
    animation: slideUp 0.8s ease-out 0.6s both;
}

/* Header */
.header {
    background: rgba(31, 38, 51, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(182, 255, 59, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-lime);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(182, 255, 59, 0.5);
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-lime), var(--accent-cyan));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-lime);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--accent-lime);
    transition: all 0.3s ease;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(182, 255, 59, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(182, 255, 59, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(182, 255, 59, 0.5);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-lime);
}

.title-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-lime), var(--accent-cyan));
    margin: 0 auto;
    border-radius: 2px;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(31, 38, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(182, 255, 59, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 0 20px rgba(182, 255, 59, 0.3);
    transform: translateY(-5px);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid rgba(182, 255, 59, 0.3);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content h3 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.card-content p {
    color: var(--text-secondary);
}

/* Analytics Section */
.analytics-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.analytics-item h3 {
    color: var(--accent-lime);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.analytics-item p {
    color: var(--text-secondary);
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: var(--text-secondary);
}

/* Trends Section */
.trends-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trend-item h3 {
    color: var(--accent-lime);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.trend-item p {
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-align: left;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-lime);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1rem;
}

.faq-answer p {
    padding: 1rem 0;
    color: var(--text-secondary);
}

/* Order Form Section */
.order-form-section {
    background: var(--bg-secondary);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(31, 38, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(182, 255, 59, 0.3);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.form-wrapper:hover {
    border-color: var(--accent-lime);
    box-shadow: 0 6px 30px rgba(182, 255, 59, 0.2);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--accent-lime);
    font-weight: 500;
}

.form-input,
.form-select {
    background: rgba(21, 26, 36, 0.8);
    border: 2px solid rgba(182, 255, 59, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-lime);
    box-shadow: 0 0 15px rgba(182, 255, 59, 0.4);
}

.form-select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-lime);
}

.checkbox-label a {
    color: var(--accent-cyan);
    text-decoration: none;
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    color: var(--bg-primary);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(182, 255, 59, 0.5);
    animation: glow 2s infinite;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--accent-lime);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-lime);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(182, 255, 59, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-lime);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(182, 255, 59, 0.1);
    color: var(--text-secondary);
}

/* Cookie Popup - Small Banner */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: rgba(31, 38, 51, 0.98);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-lime);
    border-radius: 10px;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateX(500px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-popup.show {
    transform: translateX(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content h3 {
    color: var(--accent-lime);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-info {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-accept {
    background: var(--accent-lime);
    color: var(--bg-primary);
}

.btn-accept:hover {
    background: var(--accent-cyan);
    transform: scale(1.05);
}

.btn-info {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.btn-info:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

/* Policy Pages Styles */
.policy-page {
    padding: 3rem 0;
    min-height: 80vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(31, 38, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(182, 255, 59, 0.2);
    border-radius: 15px;
    padding: 3rem;
}

.policy-content h1 {
    color: var(--accent-lime);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.policy-content h2 {
    color: var(--accent-cyan);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: var(--accent-lime);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
    color: var(--text-secondary);
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.policy-content a:hover {
    color: var(--accent-lime);
    text-decoration: underline;
}

.contact-info-box {
    background: rgba(21, 26, 36, 0.8);
    border: 1px solid rgba(182, 255, 59, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-info-box h3 {
    color: var(--accent-lime);
    margin-bottom: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

/* Simple Content Page Styles */
.simple-content-page {
    padding: 5rem 0;
    min-height: 80vh;
}

.simple-content-block {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(31, 38, 51, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(182, 255, 59, 0.2);
    border-radius: 15px;
    padding: 3rem;
}

.simple-content-block h1 {
    color: var(--accent-lime);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.simple-content-block p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Thanks Page Styles */
.thanks-block {
    text-align: center;
}

.thanks-block h1 {
    font-size: 2.8rem;
}

.thanks-block p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.thanks-cta {
    margin-top: 2.5rem;
}

.thanks-cta .btn-accept {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(31, 38, 51, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid rgba(182, 255, 59, 0.2);
    }

    .mobile-menu-checkbox:checked ~ .nav-menu {
        max-height: 500px;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(182, 255, 59, 0.1);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }

    .cards-grid,
    .analytics-content,
    .trends-content {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .form-input,
    .form-select {
        transform: rotate(0deg);
    }

    .btn-submit {
        transform: rotate(0deg);
    }

    .cookie-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: 100%;
    }

    .cookie-content {
        text-align: center;
    }

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

    .policy-content,
    .simple-content-block {
        padding: 2rem 1.5rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .policy-content h1,
    .simple-content-block h1 {
        font-size: 1.8rem;
    }

    .thanks-block h1 {
        font-size: 2rem;
    }
}

