:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --bg-light: #f9fafb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --white: #ffffff;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

/* --- Header --- */
.header {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo__icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    position: relative;
}

.logo__icon::after {
    content: '/>';
    color: white;
    font-family: 'JetBrains Mono';
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-weight: 500;
    color: var(--text-muted);
}

.nav__link:hover {
    color: var(--primary);
}

/* --- Footer --- */
.footer {
    background: #111827;
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer__title {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
}

.footer__description {
    color: #9ca3af;
    margin-top: 20px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: #9ca3af;
}

.footer__links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer__info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.footer__info svg {
    width: 18px;
    color: var(--primary);
}

.footer__bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

@media (max-width: 992px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .nav, .header__cta { display: none; }
    .burger { display: block; }
}
/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--bg-light);
    overflow: hidden;
}

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

.hero__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero__circle--1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -50px;
}

.hero__circle--2 {
    width: 300px;
    height: 300px;
    background: #818cf8;
    bottom: 50px;
    left: -50px;
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn--outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: var(--text-main);
    gap: 10px;
}

.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item__num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-item__label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Hero Image & Floating Cards --- */
.image-wrapper {
    position: relative;
}

.hero__img-main {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
}

.floating-card svg {
    color: var(--primary);
}

.floating-card--1 {
    top: 10%;
    left: -20px;
}

.floating-card--2 {
    bottom: 15%;
    right: -10px;
    animation-delay: 2s;
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__stats {
        justify-content: center;
    }
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}
/* --- Courses Section --- */
.courses {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.courses__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
}

.course-card__icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.course-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.course-card__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.course-card__list {
    margin-bottom: 30px;
}

.course-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-main);
}

.course-card__list svg {
    width: 18px;
    color: #10b981; /* Success Green */
}

.course-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-card__link svg {
    width: 18px;
    transition: var(--transition);
}

.course-card__link:hover svg {
    transform: translateX(5px);
}
/* --- Method Section --- */
.method {
    padding: 100px 0;
    background: var(--bg-light);
}

.method__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
}

.step-card {
    position: relative;
    padding-top: 40px;
}

.step-card__number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    transition: var(--transition);
}

.step-card:hover .step-card__number {
    opacity: 0.3;
    transform: translateY(-5px);
}

.step-card__content {
    position: relative;
    z-index: 1;
}

.step-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.step-card__text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary);
    padding: 40px 60px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.cta-banner h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-banner p {
    opacity: 0.9;
}

.btn--white {
    background: var(--white);
    color: var(--primary);
}

.btn--white:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }
}
/* --- Career Section --- */
.career {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.career__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.career__features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.career-feature {
    display: flex;
    gap: 20px;
}

.career-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.career-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.career-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Career Visual & Card */
.career__visual {
    position: relative;
}

.career-card-main {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}

.career-card-main__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info__img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e5e7eb; /* img/placeholder.png replacement */
}

.user-info strong {
    display: block;
    font-size: 1rem;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.salary-tag {
    background: #ecfdf5;
    color: #059669;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
}

.career-card-main__body {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.6;
}

.career-card-main__footer {
    display: flex;
    gap: 10px;
}

.tag {
    font-size: 0.75rem;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.blob-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -40%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    z-index: 1;
}

@media (max-width: 992px) {
    .career__wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
/* --- Reviews Section --- */
.reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.review-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star--filled {
    width: 18px;
    color: #f59e0b; /* Amber star */
    fill: #f59e0b;
}

.review-card__text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    background: #e5e7eb;
    border-radius: 50%;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--text-main);
}

.author-pos {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Trust Logos */
.reviews__trust {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 50px;
}

.reviews__trust span {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 30px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.6;
}

.trust-logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: #9ca3af;
    letter-spacing: -0.5px;
}
/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact__info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item__icon {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Form Styles */
.contact__form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input {
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px;
}

/* Checkbox Custom */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
}

/* Status Messages */
.form-status {
    padding: 14px;
    border-radius: 10px;
    display: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-status.success {
    display: block;
    background: #ecfdf5;
    color: #059669;
}

.form-status.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
}

@media (max-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
}
/* --- Mobile Menu --- */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        z-index: 999;
        transition: var(--transition);
        padding: 40px 20px;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav.active {
        left: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav__link {
        font-size: 1.2rem;
    }

    .burger.active span {
        background: transparent;
    }

    .burger.active span::before {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active span::after {
        transform: rotate(-45deg) translate(7px, -8px);
    }
}

.burger span, .burger span::before, .burger span::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
    position: absolute;
}

.burger span::before { content: ''; top: -8px; }
.burger span::after { content: ''; bottom: -8px; }
.burger span { top: 50%; transform: translateY(-50%); }

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 1001;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
}

.cookie-popup.active {
    transform: translateY(-120px);
}

.cookie-popup__content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-popup__icon { color: var(--primary); }
.cookie-popup__text { font-size: 0.9rem; color: var(--text-muted); flex-grow: 1; }
.cookie-popup__text a { color: var(--primary); font-weight: 600; }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }

@media (min-width: 768px) {
    .cookie-popup { left: 30px; right: auto; }
}

/* --- Legal Pages Styles --- */
.pages {
    padding: 140px 0 100px;
    min-height: 80vh;
}

.pages h1 { font-size: 1.6rem; margin-bottom: 30px; color: var(--text-main); }
.pages h2 { font-size: 1.5rem; margin: 30px 0 15px; }
.pages p { margin-bottom: 15px; color: var(--text-muted); }
.pages ul { margin-bottom: 20px; padding-left: 20px; list-style: disc; color: var(--text-muted); }
/* --- Анимация появления при скролле (вспомогательный класс) --- */
.animate-up, .animate-fade, .animate-fade-right {
    opacity: 0;
    transition: var(--transition);
}

.animate-visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* --- Mobile Menu Fix --- */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%; /* Полностью скрыто за экраном */
        width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 999;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        display: flex; /* Чтобы работало выравнивание */
        align-items: center;
        justify-content: center;
        visibility: hidden; /* Чтобы нельзя было кликнуть по скрытому меню */
    }

    .nav.active {
        left: 0;
        visibility: visible;
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .nav__link {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-main);
    }

    /* Бургер должен быть поверх меню */
    .burger {
        display: block;
        z-index: 1001; 
    }

    /* Анимация крестика для бургера */
    .burger.active span {
        background: transparent;
    }

    .burger.active span::before {
        transform: translateY(8px) rotate(45deg);
    }

    .burger.active span::after {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Базовые стили бургера (убедитесь, что они есть) */
.burger {
    width: 30px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span, .burger span::before, .burger span::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.burger span { top: 11px; }
.burger span::before { top: -8px; }
.burger span::after { bottom: -8px; }
/* --- Legal Pages Styles --- */
.legal-page {
    background-color: var(--white);
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.legal-content {
    max-width: 850px;
    margin-top: 40px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 40px 0 20px;
    color: var(--text-main);
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.legal-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.legal-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.contact-info-block {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    margin-top: 60px;
}

.contact-data {
    list-style: none;
    padding: 0;
}

.contact-data li {
    margin-bottom: 12px;
}

.contact-data a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-data a:hover {
    text-decoration: underline;
}/* --- Disclaimer Specific Styles --- */
.legal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.warning-icon {
    width: 48px;
    height: 48px;
    color: #f59e0b; /* Amber/Warning color */
}

.legal-block {
    margin-bottom: 25px;
    line-height: 1.7;
}

.risk-warning-box {
    background: rgba(245, 158, 11, 0.05);
    border-left: 4px solid #f59e0b;
    padding: 25px;
    border-radius: 0 16px 16px 0;
}

.agreement-box {
    background: rgba(79, 70, 229, 0.05);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 0 16px 16px 0;
    margin-top: 40px;
}

.legal-block strong {
    color: var(--text-main);
    display: inline-block;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .legal-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
/* --- Personal Data Policy Styles --- */
.policy-section {
    margin-top: 40px;
}

.terminology-list {
    list-style: none;
    padding: 0;
}

.terminology-list li {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    transition: var(--transition);
}

.data-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.data-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.data-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
}

.data-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.policy-mail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.policy-mail svg {
    width: 20px;
}
/* --- Privacy Policy Specific --- */
.policy-hero-card {
    background: linear-gradient(135deg, var(--primary), #818cf8);
    color: var(--white);
    padding: 35px;
    border-radius: 24px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.policy-notice {
    background: #fefce8;
    border: 1px solid #fef08a;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: #854d0e;
}

.storage-info {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.storage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.storage-item__icon {
    color: var(--primary);
}

.data-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.data-box {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
}

.data-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.data-box ul {
    list-style: none;
    padding: 0;
}

.data-box li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 20px;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    color: var(--white);
}

@media (max-width: 640px) {
    .storage-info { flex-direction: column; gap: 15px; }
}
/* --- Refund Policy Specific --- */
.refund-accent {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
}

.refund-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0 50px;
}

.refund-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.refund-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.refund-card__icon {
    color: var(--primary);
    margin-bottom: 20px;
}

.refund-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.refund-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Steps Styling */
.steps-mini {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-main);
}

.step-text a {
    color: var(--primary);
    font-weight: 600;
}

.warning-block {
    background: #fff1f2;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #fecdd3;
    margin-top: 50px;
}

.warning-block h2 {
    color: #9f1239;
    margin-top: 0;
}
/* --- Terms & Conditions Specific --- */
.terms-accent {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.legal-section {
    margin-top: 40px;
}

.property-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 16px;
    margin: 20px 0;
}

.property-block__icon {
    color: var(--primary);
    flex-shrink: 0;
}

.warning-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: 16px;
    color: #9a3412;
}

.warning-box svg {
    color: #ea580c;
    flex-shrink: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .property-block, .warning-box {
        flex-direction: column;
        gap: 15px;
    }
}
/* --- Detailed Contact Page Styles --- */
.contact-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card-simple {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.contact-card-simple:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-card-simple__icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.contact-card-simple__icon svg {
    width: 24px;
    height: 24px;
}

.contact-card-simple__info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.contact-card-simple__info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-card-simple__info a, 
.contact-card-simple__info address {
    font-style: normal;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    word-break: break-all;
}

.contact-notice-box {
    margin-top: 60px;
    padding: 25px;
    background: rgba(79, 70, 229, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-notice-box svg {
    color: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .contact-card-simple {
        flex-direction: column;
    }
}