/* =====================================================
   DOMAIN - Finanzielle Bildung
   CSS Styles - Mobile First
   ===================================================== */

/* CSS Variables */
:root {
    --bg-primary: #1E1F24;
    --bg-secondary: #16171B;
    --accent-cyan: #1FFFD5;
    --accent-amber: #FFB703;
    --accent-lavender: #7C83FD;
    --text-light: #E6E6E6;
    --text-white: #FFFFFF;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

html, body {
    max-width: 100vw;
}

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

section,
.container,
.header,
.footer {
    overflow-x: hidden;
}

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

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-amber);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* =====================================================
   ANIMATIONS (disabled for static layout)
   ===================================================== */

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--accent-amber);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(31, 255, 213, 0.3);
}

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

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

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

.btn-cta:hover {
    background: var(--text-white);
    color: var(--bg-primary);
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 31, 36, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(124, 131, 253, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 1px;
}

.logo:hover {
    color: var(--accent-amber);
}

.nav-links {
    display: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--accent-cyan);
}

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

/* Mobile Menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-icon span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(30, 31, 36, 0.98);
    padding: 30px 20px;
    transform: translateY(-150%);
    transition: var(--transition);
    border-bottom: 2px solid var(--accent-lavender);
}

.menu-toggle:checked ~ .mobile-menu {
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-menu ul li a {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px;
}

.mobile-menu ul li a:hover {
    color: var(--accent-cyan);
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 120px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 31, 36, 0.92) 0%,
        rgba(30, 31, 36, 0.85) 50%,
        rgba(124, 131, 253, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .btn {
    /* static */
}

/* =====================================================
   SECTIONS GENERAL
   ===================================================== */

.section {
    padding: 80px 0;
}

.section-alt {
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        rgba(124, 131, 253, 0.08) 50%,
        var(--bg-primary) 100%
    );
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-lavender));
    border-radius: 2px;
}

.section-title p {
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */

.about-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.about-section-title h2 {
    color: var(--accent-cyan);
    position: relative;
    display: inline-block;
}

.about-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-lavender));
    border-radius: 2px;
}

.about-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    order: 2;
}

.about-image img {
    width: 100%;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    order: 1;
}

/* =====================================================
   CARDS SECTION (3 Types)
   ===================================================== */

.cards-grid {
    display: grid;
    gap: 30px;
}

.card {
    background: rgba(124, 131, 253, 0.08);
    border: 1px solid rgba(124, 131, 253, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(124, 131, 253, 0.2);
    border-color: var(--accent-lavender);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), rgba(255, 183, 3, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-amber);
    transition: var(--transition);
}

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

.card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
}

.card p {
    opacity: 0.8;
    margin-bottom: 0;
}

/* =====================================================
   INFO SECTION (Icons)
   ===================================================== */

.info-grid {
    display: grid;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border-left: 3px solid var(--accent-cyan);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(124, 131, 253, 0.1);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(31, 255, 213, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.info-content p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

/* =====================================================
   ADVANTAGES SECTION
   ===================================================== */

.advantages-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.advantages-section-title h2 {
    position: relative;
    display: inline-block;
}

.advantages-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-lavender));
    border-radius: 2px;
}

.advantages-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.advantages-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    order: 2;
}

.advantages-image img {
    width: 100%;
    transition: var(--transition);
}

.advantages-image:hover img {
    transform: scale(1.03);
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    order: 1;
}

.advantage-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 183, 3, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.advantage-item:hover {
    background: rgba(255, 183, 3, 0.1);
}

.advantage-check {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--accent-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: bold;
}

.advantage-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.advantage-item p {
    margin-bottom: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq-section {
    background: rgba(124, 131, 253, 0.05);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(124, 131, 253, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-lavender);
}

.faq-item details {
    padding: 0;
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: var(--transition);
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: var(--transition);
}

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

.faq-item details[open] summary {
    background: rgba(124, 131, 253, 0.1);
}

.faq-answer {
    padding: 0 25px 20px;
    opacity: 0.85;
    line-height: 1.8;
}

/* =====================================================
   CONTACT FORM SECTION
   ===================================================== */

.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    gap: 50px;
    align-items: center;
}

.contact-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-image img {
    width: 100%;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--accent-lavender);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(124, 131, 253, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(124, 131, 253, 0.3);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(31, 255, 213, 0.15);
}

.form-group input::placeholder {
    color: rgba(230, 230, 230, 0.5);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237C83FD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    accent-color: var(--accent-lavender);
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--accent-lavender);
    text-decoration: underline;
}

.checkbox-group label a:hover {
    color: var(--accent-cyan);
}

.contact-form .btn {
    margin-top: 10px;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-lavender));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--bg-primary);
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--bg-primary);
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(124, 131, 253, 0.2);
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-cyan);
}

.footer-col p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
    opacity: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =====================================================
   POLICY PAGES
   ===================================================== */

.policy-page {
    padding: 120px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
}

.policy-page h1 {
    color: var(--accent-cyan);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(124, 131, 253, 0.3);
}

.policy-page h2 {
    color: var(--accent-amber);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.policy-page h3 {
    color: var(--text-white);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-page p,
.policy-page li {
    line-height: 1.9;
    margin-bottom: 15px;
}

.policy-page ul,
.policy-page ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.policy-page ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.policy-page ol li {
    list-style: decimal;
    margin-bottom: 10px;
}

.policy-page a {
    color: var(--accent-lavender);
}

.company-info {
    background: rgba(124, 131, 253, 0.1);
    border-left: 4px solid var(--accent-lavender);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
}

.company-info p {
    margin-bottom: 8px;
}

.company-info p:last-child {
    margin-bottom: 0;
}

.policy-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    color: var(--accent-cyan);
    font-weight: 500;
}

.policy-page .back-link:hover {
    color: var(--accent-amber);
}

/* =====================================================
   THANKS PAGE
   ===================================================== */

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 60px;
}

.thanks-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--accent-lavender);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 25px 80px rgba(124, 131, 253, 0.15);
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.thanks-content p:last-of-type {
    margin-bottom: 35px;
}

/* =====================================================
   CONTENT PAGE (Additional Pages)
   ===================================================== */

.content-page {
    padding: 120px 20px 60px;
    min-height: 100vh;
}

.content-page .container {
    max-width: 900px;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
}

.content-header h1 {
    background: linear-gradient(135deg, var(--text-white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-body h2 {
    color: var(--accent-amber);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-body h3 {
    color: var(--accent-cyan);
    margin-top: 30px;
}

.content-body ul {
    padding-left: 25px;
    margin: 20px 0;
}

.content-body ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.content-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-amber);
    font-weight: bold;
}

.content-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(124, 131, 253, 0.1);
    border-radius: 20px;
}

.content-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* =====================================================
   COOKIE POPUP
   ===================================================== */

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 23, 27, 0.98);
    border-top: 2px solid var(--accent-lavender);
    padding: 25px 20px;
    z-index: 9999;
    animation: slideUp 0.5s ease;
    display: none;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-lavender);
}

.btn-cookie {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie:hover {
    background: var(--accent-amber);
}

/* =====================================================
   MEDIA QUERIES
   ===================================================== */

/* Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 100px 0;
    }

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

    /* About: картинка слева (order 1), текст справа (order 2) */
    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    /* Advantages: текст слева (order 1), картинка справа (order 2) */
    .advantages-list {
        order: 1;
    }

    .advantages-image {
        order: 2;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .contact-form-wrapper {
        padding: 50px 40px;
    }

    .thanks-content {
        padding: 60px 50px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .nav-links {
        display: flex;
    }

    .menu-icon,
    .mobile-menu,
    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 0;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .about-grid {
        gap: 60px;
    }

    .advantages-grid {
        gap: 60px;
    }

    .contact-grid {
        gap: 60px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 120px 0;
    }
}

