:root {
    --primary: #00D2FF;
    --secondary: #1A2238;
    --accent: #FF4081;
    --text-dark: #2D3436;
    --text-light: #F9F9F9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

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

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

ul {
    list-style: none;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background: var(--secondary);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-desc {
    margin-top: 20px;
    opacity: 0.7;
}

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Mobile Menu */
.burger {
    display: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .nav-menu {
        display: none;
    }
    .burger {
        display: block;
    }
}
/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 90% 10%, rgba(0, 210, 255, 0.05) 0%, rgba(255, 255, 255, 1) 50%);
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--secondary);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-accent {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.btn-accent:hover {
    background: #00b8e6;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary);
}

.stat-item span {
    font-size: 0.9rem;
    color: #b2bec3;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-height: 450px;
}

/* Mobile Hero */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-content {
        order: 2;
    }
    .hero-visual {
        order: 1;
        min-height: 300px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}
/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-subtitle {
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 40px;
    border-radius: 24px;
    background: #f8f9fa;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: default;
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

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

.feature-card p {
    color: #636e72;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
}
/* Career Orbit Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
}

.career-orbit {
    position: relative;
    width: 300px;
    height: 300px;
}

.orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.5);
    z-index: 5;
}

.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(0, 210, 255, 0.3);
    border-radius: 50%;
}

.ring-1 { width: 200px; height: 200px; animation: spin 20s linear infinite; }
.ring-2 { width: 350px; height: 350px; animation: spin 30s linear reverse infinite; }

.orbit-dot {
    position: absolute;
    width: 15px; height: 15px;
    background: var(--secondary);
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.dot-1 { top: 10%; left: 50%; animation: orbit1 15s linear infinite; }
.dot-2 { bottom: 20%; right: 10%; animation: orbit2 20s linear infinite; }

@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Strategy Section */
.strategy {
    padding: 100px 0;
    background: #f4f7f6; /* Чередование фона: серый/белый */
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.timeline-item {
    flex: 1;
    position: relative;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.timeline-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 210, 255, 0.1);
    position: absolute;
    top: 10px; right: 20px;
}

.timeline-content h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

@media (max-width: 992px) {
    .timeline { flex-direction: column; }
}
/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 210, 255, 0.15);
}

.blog-img {
    position: relative;
    height: 220px;
    background: #e9ecef; /* Цвет плейсхолдера */
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-body {
    padding: 30px;
}

.blog-date {
    font-size: 0.85rem;
    color: #a0a0a0;
    display: block;
    margin-bottom: 10px;
}

.blog-body h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-body p {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.blog-more {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-more i {
    transition: transform 0.3s ease;
}

.blog-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f4f7f6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 0;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #636e72;
    line-height: 1.7;
}

/* Состояние при открытии */
.faq-item.active {
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--white);
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
}
/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-info .section-title {
    text-align: left;
    font-size: 3rem;
}

.contact-badge {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary);
    font-weight: 600;
}

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(26, 34, 56, 0.1);
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-captcha {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--secondary);
}

.form-captcha input {
    width: 80px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-checkbox {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #636e72;
}

.btn-block {
    width: 100%;
    border: none;
    font-size: 1.1rem;
}

.form-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .contact-info { text-align: center; }
    .contact-info .section-title { text-align: center; font-size: 2.2rem; }
    .contact-form-box { padding: 30px; }
}
/* Мобильное меню */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

.mobile-overlay.active {
    transform: translateX(0);
}

.mobile-menu {
    text-align: center;
}

.mobile-menu li {
    margin: 25px 0;
}

.mobile-menu a {
    font-size: 1.8rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Бургер-иконка анимация */
.burger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.burger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--secondary);
    margin: 7px 0;
    transition: var(--transition);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.6s ease;
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}

.cookie-content p { font-size: 0.9rem; color: #636e72; margin: 0; }
.cookie-content a { color: var(--primary); text-decoration: underline; }

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; gap: 15px; }
}

/* Глубинная подгрузка (Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Legal & Static Pages Styles */
.legal-page {
    padding-top: 140px; /* Отступ под фиксированный хедер */
    padding-bottom: 100px;
    background: #fdfdfd;
}

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

.pages h1 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.8;
}

/* Сетка карточек контактов */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    transition: var(--transition);
    text-align: left;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.08);
    transform: translateY(-5px);
}

.contact-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.contact-card h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-card p {
    color: #b2bec3;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    word-break: break-all;
}

.contact-address {
    font-style: normal;
    line-height: 1.6;
    color: var(--secondary);
    font-weight: 500;
}

.contact-extra {
    background: #f4f7f6;
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    font-size: 1rem;
    color: #636e72;
}

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

/* Адаптив для страниц */
@media (max-width: 768px) {
    .pages h1 { font-size: 1.6rem; }
    .legal-page { padding-top: 100px; }
    .contact-card { padding: 30px; }
}
/* Legal Content Elements */
.legal-content h2 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 40px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.legal-block {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
}

.legal-block.accent {
    background: rgba(0, 210, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.2);
}

/* Grid of Cookies */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.legal-card {
    padding: 25px;
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: var(--transition);
}

.legal-card i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.legal-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Styled Lists */
.styled-list {
    padding-left: 20px;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    list-style: none;
}

.styled-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Contact Info Block */
.contact-info-block {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--secondary);
    color: white;
    padding: 30px;
    border-radius: 20px;
}

.contact-item a {
    color: var(--primary);
    font-weight: 600;
}
/* Disclaimer Specific Styles */
.legal-header {
    margin-bottom: 50px;
}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 166, 0, 0.1);
    color: #e67e22;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.info-border {
    border-left: 4px solid var(--primary);
    background: #f8f9fa;
}

.legal-block h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    color: var(--secondary);
}

.risk-alert {
    display: flex;
    gap: 20px;
    background: #fff5f5;
    border: 1px solid #feb2b2;
    padding: 30px;
    border-radius: 16px;
    margin: 40px 0;
    align-items: flex-start;
}

.alert-icon {
    font-size: 2rem;
    color: #f56565;
}

.risk-alert h3 {
    margin-bottom: 10px;
    color: #c53030;
}

.agreement-box {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 16px;
    font-size: 0.95rem;
    text-align: center;
}

.agreement-box strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .risk-alert { flex-direction: column; text-align: center; }
    .alert-icon { margin: 0 auto; }
}
/* Privacy Policy Specifics */
.terminology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.term-box {
    padding: 20px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
}

.term-box strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.data-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.data-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(0, 210, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.data-text strong {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary);
}

.data-text p {
    font-size: 0.9rem;
    color: #718096;
}

.policy-contact-card {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: var(--secondary);
    border-radius: 50px;
    margin-top: 20px;
}

.policy-contact-card i { color: var(--primary); }

.policy-mail {
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    .data-grid { grid-template-columns: 1fr; }
}
/* Privacy Page Specifics */
.policy-hero-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, var(--secondary) 0%, #2a3552 100%);
    color: white;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
}

.hero-card-icon {
    font-size: 3rem;
    color: var(--primary);
}

.policy-notice-box {
    background: #fff9db;
    border-left: 5px solid #fcc419;
    padding: 20px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: #856404;
}

.storage-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.storage-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.storage-card i {
    color: var(--primary);
    font-size: 1.5rem;
}

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

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.accent-blue {
    background: rgba(0, 210, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    margin: 40px 0;
}

.rights-block-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    border: 2px dashed #eee;
    border-radius: 24px;
}

.rights-block-footer h2 { margin-bottom: 15px; }

@media (max-width: 768px) {
    .policy-hero-card { flex-direction: column; text-align: center; }
    .storage-info-grid { grid-template-columns: 1fr; }
}
/* Refund Policy Specifics */
.refund-accent {
    background: linear-gradient(135deg, #1A2238 0%, #2a3552 100%);
}

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

.refund-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    transition: var(--transition);
}

.refund-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.refund-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.steps-mini-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.step-mini-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 12px;
}

.step-num {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0.5;
}

.warning-alert-box {
    background: #fff5f5;
    border: 1px dashed #feb2b2;
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
}

.warning-alert-box h3 {
    color: #c53030;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accent-grey {
    background: #f1f3f5;
    padding: 30px;
    border-radius: 20px;
}
/* Terms Page Specifics */
.terms-accent {
    background: linear-gradient(135deg, #1A2238 0%, #00D2FF 150%);
}

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

.rule-item {
    background: #fdf2f2;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #fee2e2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.rule-item i {
    color: #ef4444;
    font-size: 1.2rem;
}

.rule-item p {
    font-size: 0.85rem;
    color: #991b1b;
    margin: 0;
}

.property-block-modern {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    align-items: center;
}

.property-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
}

.warning-block-simple {
    background: #fffbeb;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #f59e0b;
}

.warning-block-simple h2 {
    color: #92400e;
    margin-top: 0;
}

@media (max-width: 768px) {
    .property-block-modern { flex-direction: column; text-align: center; }
}