/* * HELIOS ARCHITECT v4.0 - UI CORE
 * System: SYNNOA LOCAL 2026
 * Style: Dark Glassmorphism & High-Performance UI
 */

:root {
    /* Color Palette */
    --bg-deep-black: #121212;
    --primary-midnight: #007BFF;
    --accent-ice-blue: #39FF14;
    --accent-purple: #8a2be2;
    
    /* Glassmorphism Specs */
    --glass-bg: rgba(0, 123, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
    
    /* Typography */
    --font-header: 'Aeonik', 'Clash Display', sans-serif;
    --font-body: 'Inter', 'Manrope', sans-serif;
    
    /* Spacing & Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. RESET & BASE HARDENING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-deep-black);
    color: #ffffff;
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.allow-copy {
    user-select: text;
}

h1, h2, h3 {
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    word-spacing: 0.15em;
}

h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 1.5rem; }

.text-accent-ice-blue { color: var(--accent-ice-blue); }

.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.vanguard-hero {
    padding: 160px 5% 100px;
    background: radial-gradient(circle at top right, rgba(25, 25, 112, 0.3), transparent);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vanguard-hero p {
    max-width: 600px;
    font-size: 1.2rem;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.8);
}

#pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
    padding: 50px 5%;
}

.tier {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 3rem 2rem;
    border-radius: 4px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.tier:hover {
    border-color: var(--accent-ice-blue);
    transform: translateY(-10px);
}

.tier::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-ice-blue), transparent);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--accent-ice-blue);
}

.cta-primary {
    background: transparent;
    border: 1px solid var(--accent-ice-blue);
    color: var(--accent-ice-blue);
    padding: 1rem 2.5rem;
    font-family: var(--font-header);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.cta-primary:hover {
    background: var(--accent-ice-blue);
    color: var(--bg-deep-black);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
}

.grid-map-viz {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
}

.faq-container { padding: 100px 5%; max-width: 900px; margin: 0 auto; }

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-family: var(--font-header);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after { content: '+'; color: var(--accent-ice-blue); font-size: 1.5rem; }
.faq-item.active .faq-question::after { content: '−'; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding-bottom: 1.5rem;
}

.form-container { max-width: 800px; margin: 0 auto; padding: 3rem; }
.glass-card { background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); border-radius: 8px; }

.vanguard-form .input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.vanguard-form input, .vanguard-form select, .vanguard-form textarea {
    width: 100%; padding: 1rem; background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border); color: white; font-family: var(--font-body);
}

.vanguard-form input:focus, .vanguard-form select:focus { border-color: var(--accent-ice-blue); outline: none; }
.vanguard-form textarea { min-height: 120px; margin-bottom: 1.5rem; }

.hp-field { display: none !important; visibility: hidden; }

.checkbox-container { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); cursor: pointer; display: flex; align-items: flex-start; gap: 10px; }
.checkbox-container input[type="checkbox"] { margin-top: 4px; }

#form-status { margin-top: 1rem; text-align: center; font-weight: 600; }
.status-success { color: var(--accent-ice-blue); }
.status-error { color: #ff4d4d; }

button, .cta-primary, .faq-question, .tier {
    min-height: 44px;
    min-width: 44px;
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.wa-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.wa-popover {
    position: relative;
    background: rgba(25, 25, 112, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.2rem;
    width: 260px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    animation: fadeInPopover 0.5s ease-out;
}

.wa-popover::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: rgba(25, 25, 112, 0.8) transparent transparent transparent;
    display: block;
    width: 0;
}

.wa-popover-close {
    position: absolute;
    top: 2.5px;
    right: 5px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}

.wa-popover-close:hover {
    color: white;
}

.wa-popover p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    line-height: 1.4;
    font-family: var(--font-body);
}

.wa-popover-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid #00d2ff;
    color: #00d2ff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.wa-popover-btn:hover {
    background: rgba(0, 210, 255, 0.15);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
    color: #fff;
}

@keyframes fadeInPopover {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-floating-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.wa-floating-btn:hover {
    transform: scale(1.1);
}

.wa-floating-btn svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.faq-hero {
    position: relative;
    padding: 180px 5% 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), var(--bg-deep-black));
    z-index: 1;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.faq-search-box {
    margin: 2rem auto 1rem;
    position: relative;
    max-width: 600px;
}

.faq-search-box input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition-fast);
}

.faq-search-box input:focus {
    border-color: var(--accent-ice-blue);
    outline: none;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.5);
}

.faq-topics-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 5%;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 80px;
    z-index: 900;
}

.topic-chip {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topic-chip:hover, .topic-chip.active {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--accent-ice-blue);
    color: var(--accent-ice-blue);
}

.faq-feedback {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 0.8rem 0 0 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    line-height: 1.2;
}

.btn-feedback {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.25rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.75rem;
}

.btn-feedback:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-feedback.active {
    background: var(--accent-ice-blue);
    color: var(--bg-deep-black);
    border-color: var(--accent-ice-blue);
}

.hidden { display: none !important; }
.hidden-by-search { display: none !important; }

.glass-nav .nav-links {
    margin-left: auto;
    margin-right: 2rem;
}

.glass-nav .lang-switch { margin-left: 0; }

.brand img {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
    transition: var(--transition-fast);
}

.brand img:hover {
    filter: drop-shadow(0 0 18px rgba(0, 210, 255, 0.6));
}

.checkbox-container {
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
}

.checkbox-container input[type="checkbox"] { margin-top: 0; }

.form-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.form-footer button { align-self: flex-start; }

.padding-5 { padding: 5rem 5%; }
.text-center { text-align: center; }

.hero-subpage {
    position: relative;
    padding: 160px 5% 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-subpage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero-subpage > * {
    position: relative;
    z-index: 2;
}

.hero-subpage p {
    margin: 1rem auto 0;
    max-width: 800px;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

.analiza-tool-container {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-bottom: 4rem;
}

#free-tool {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analiza-cta-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 12px;
    border: 1px dashed var(--accent-ice-blue);
}

.footer {
    background: var(--bg-deep-black);
    padding: 4rem 5%;
    border-top: 1px solid var(--glass-border);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.footer-heading {
    color: var(--accent-ice-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.5;
}

.footer-links li {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    padding: 0.5rem 0;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.hero-index {
    background-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%), url('../pic/hero.webp');
    background-size: cover;
    background-position: center;
    align-items: flex-start;
    text-align: left;
}

.hero-content-index { padding-left: 5%; }
.hero-content-index h1 { line-height: 1.1; margin-bottom: 1.5rem; }
.hero-content-index p {
    margin-top: 0;
    font-size: 1.2rem;
    max-width: 500px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}
.hero-content-index .cta-primary { margin-top: 1rem; }

.section-pricing h2 { padding-left: 5%; padding-top: 5rem; }
.section-faq-index .text-center { margin-top: 2rem; }
.section-faq-index .text-accent-ice-blue { color: var(--accent-ice-blue); }
.section-contact-form { padding-bottom: 8rem; }
.section-contact-form p { margin-bottom: 2.5rem; }
.section-contact-form input[type="url"] { width: 100%; margin-bottom: 1.5rem; }
.section-contact-form .checkbox-container a { color: var(--accent-ice-blue); }
.section-contact-form .form-footer .cta-primary { margin-top: 1rem; }

.hero-subpage-pricing {
    background-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%), url('../pic/hero.webp');
    padding-bottom: 50px;
}
.hero-subpage-pricing h1 { color: var(--accent-ice-blue); }
.hero-subpage-pricing p {
    margin: 0 auto;
    max-width: 600px;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

.section-features-table {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.section-features-table h2 { text-align: center; margin-bottom: 3rem; }
.section-features-table > div { max-width: 1000px; margin: 0 auto; overflow-x: auto; }
.section-features-table table { width: 100%; border-collapse: collapse; text-align: left; }
.section-features-table table thead tr { border-bottom: 2px solid var(--glass-border); }
.section-features-table table th { padding: 1rem; color: var(--accent-ice-blue); text-align: center; }
.section-features-table table th:first-child { text-align: left; }
.section-features-table table tbody tr { border-bottom: 1px dashed rgba(255,255,255,0.1); }
.section-features-table table td { padding: 1rem; text-align: center; }
.section-features-table table td:first-child, .section-features-table table th:first-child { text-align: left; }

.section-trust-signals > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.section-trust-signals > div > div > div { font-size: 3rem; margin-bottom: 1rem; }

.section-faq-hero {
    background-image: url('../pic/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.done-for-you-image, .before-after-image {
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.section-heatmap {
    position: relative;
    padding: 8rem 5%;
    background-image: linear-gradient(rgba(18, 18, 18, 0.69), rgba(18,18,18,0.69)), url('../pic/heatmapa.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.heatmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.heatmap-column {
    padding: 2rem;
    border: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.heatmap-column h3 {
    font-size: 1.5rem;
    color: var(--accent-ice-blue);
    margin-bottom: 1rem;
}

.heatmap-column p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    align-self: flex-end;
    text-align: right;
    font-weight: 600;
}

.section-activation-fee {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--glass-border);
}
.section-activation-fee h2 { text-align: center; }
.section-activation-fee p {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}
.activation-fee-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
}
.activation-fee-list li {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}
.activation-fee-list li strong { color: var(--accent-ice-blue); }

.tech-table-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    padding: 2rem;
    overflow-x: auto;
}

.tech-table { width: 100%; border-collapse: collapse; }
.tech-table th {
    text-transform: uppercase;
    font-family: var(--font-header);
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 1.5rem 1rem;
    text-align: left;
    color: var(--accent-ice-blue);
    border-bottom: 2px solid var(--glass-border);
}
.tech-table td {
    padding: 1.5rem 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.tech-table tr:last-child td { border-bottom: none; }
.tech-table td strong { color: var(--accent-ice-blue); }

.nav-link {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
}

.lang-switch .lang-active { color: white; }
.lang-switch .lang-inactive {
    color: var(--accent-ice-blue);
    text-decoration: none;
}

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
}
.footer-copyright-link {
    color: white;
    text-decoration: none;
}

.brand-logo {
    height: 35px;
    display: block;
    margin-top: 5px;
}
.nav-links-desktop {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .footer { text-align: left; }
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        align-items: start;
    }
    .footer-brand { align-items: flex-start; }
    .footer-links li { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .vanguard-hero { text-align: center; align-items: center; }
    .vanguard-form .input-group { grid-template-columns: 1fr; }
    .heatmap-grid { grid-template-columns: 1fr; }
    .heatmap-column { min-height: 200px; }
    .tech-table thead { display: none; }
    .tech-table, .tech-table tbody, .tech-table tr, .tech-table td {
        display: block;
        width: 100%;
    }
    .tech-table tr {
        margin-bottom: 2rem;
        border: 1px solid var(--glass-border);
        border-radius: 8px;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.02);
    }
    .tech-table td {
        padding: 0.75rem 0;
        border: none;
        text-align: left;
    }
    .tech-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: bold;
        color: var(--accent-ice-blue);
        font-size: 0.7rem;
        text-transform: uppercase;
        margin-bottom: 0.3rem;
    }
}

/* --- RESPONSIVE FIXES (V4.2) --- */
@media (max-width: 900px) {
    .glass-nav {
        height: auto;
        flex-wrap: wrap;
        padding: 1rem 5%;
    }
    .glass-nav .brand { flex: 1; }
    .glass-nav .lang-switch { margin-left: auto; }
    .glass-nav .nav-links {
        width: 100%;
        justify-content: center;
        margin: 1rem 0 0 0;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .nav-link {
        margin: 0.5rem;
        font-size: 0.85rem;
    }
    .done-for-you-image, .before-after-image {
        width: 100%;
        height: auto;
    }
    .section-features-table > div {
        margin: 0 -5%;
        padding: 0 5%;
    }
    .section-features-table th:first-child,
    .section-features-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--bg-deep-black);
        z-index: 2;
        border-right: 1px dashed rgba(255,255,255,0.1);
    }
    .analiza-tool-container {
        padding: 0;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    #free-tool {
        min-height: 650px;
        width: 100%;
        min-width: 100%;
        overflow: visible;
        display: block;
    }
    #free-tool iframe, #free-tool > div {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 650px !important;
        border: none !important;
    }
    .faq-topics-menu {
        padding: 1rem 2%;
        gap: 0.5rem;
        top: 0;
    }
    .topic-chip {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* --- COOKIE BANNER (V4.2) --- */
.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: auto;
    max-width: 380px;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-ice-blue);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.cookie-container p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
}
.cookie-container a { color: var(--accent-ice-blue); }
.cookie-btn {
    background: transparent;
    border: 1px solid var(--accent-ice-blue);
    color: var(--accent-ice-blue);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-fast);
    width: 100%;
}
.cookie-btn:hover {
    background: var(--accent-ice-blue);
    color: var(--bg-deep-black);
}
@media (max-width: 768px) {
    .cookie-container {
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        text-align: center;
        padding: 1.5rem 5%;
    }
}

/* --- VANGUARD SHIELD (SECURITY) --- */
body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
input, textarea, select { -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; user-select: auto; }
.allow-copy { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }
img { pointer-events: none; }

/* --- SMART NAV (AUTOHIDE) --- */
.glass-nav {
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.glass-nav.nav-hidden {
    transform: translateY(-100%);
}


/* --- ABOUT US PAGE --- */
.hero-subpage-about {
    background-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%), url('../pic/hero.webp');
}
.about-us-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.about-us-visuals {
    position: sticky;
    top: 120px;
}
.founder-photo {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
}
.certificates-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.certificates-container img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}
.certificates-container img:hover {
    transform: scale(1.05);
}
.cert-large {
    grid-column: 1 / -1;
}
.about-us-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}
.about-us-why h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-ice-blue);
}
.about-us-why ul {
    list-style: none;
    padding-left: 0;
}
.about-us-why ul li {
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-ice-blue);
    background: rgba(255, 255, 255, 0.03);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.about-us-ceo-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-us-ceo-section h3 {
    color: var(--accent-ice-blue);
    margin-bottom: 1.5rem;
}
.about-us-ceo-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}
.about-us-ceo-section ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    display: inline-block;
    max-width: 700px;
}
.about-us-ceo-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}
.about-us-ceo-section ul li::before {
    content: '•';
    color: var(--accent-ice-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.about-us-cta-btn {
    white-space: normal;
    height: auto;
    padding: 1.2rem 1.5rem;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: auto;
}

.hero-subpage-analysis {
    background-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%), url('../pic/hero.webp');
}

/* --- PRICING PAGE --- */
.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1;
    margin: 1.5rem 0;
    color: var(--accent-ice-blue);
}
.price-container .price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}
.price-container .currency,
.price-container .period {
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
}
.billing-cycle-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 5%;
    flex-wrap: wrap;
}
.billing-cycle-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}
.billing-cycle-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}
.billing-cycle-toggle .billing-label {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}
.billing-cycle-toggle .billing-label.active {
    background: var(--accent-ice-blue);
    color: var(--bg-deep-black);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.billing-toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.billing-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.billing-toggle-input:checked ~ .billing-toggle-switch {
    background-color: rgba(57, 255, 20, 0.5);
}

.billing-toggle-input:checked ~ .billing-toggle-switch::after {
    transform: translateX(24px);
    background-color: var(--accent-ice-blue);
}

.discount-badge {
    background: rgba(57, 255, 20, 0.15);
    color: var(--accent-ice-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* RESPONSIVE TOGGLE FIXES */
@media (max-width: 600px) {
    .billing-cycle-toggle-container {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    .billing-cycle-toggle {
        gap: 0.3rem;
        padding: 0.4rem;
    }
    .billing-cycle-toggle .billing-label {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    .billing-toggle-switch {
        width: 44px;
        height: 22px;
    }
    .billing-toggle-switch::after {
        width: 16px;
        height: 16px;
        top: 3px;
        left: 3px;
    }
    .billing-toggle-input:checked ~ .billing-toggle-switch::after {
        transform: translateX(22px);
    }
    .discount-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
        margin-left: 0.2rem;
    }
}

/* --- STRZAŁKA POWROTNA DO STRONY GŁÓWNEJ --- */
.back-to-home-container {
    position: absolute;
    top: 30px; /* Od góry */
    left: 50%; /* Centruj na środku */
    transform: translateX(-50%); /* Koryguj o połowę szerokości */
    width: 100%;
    max-width: 420px;
    padding: 0 2rem;
    box-sizing: border-box;
}

.back-to-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.back-to-home-link:hover {
    color: var(--accent-ice-blue);
}

.back-to-home-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

@media (max-width: 480px) {
    .back-to-home-container {
        top: 20px; /* Mniejszy odstęp na mobile */
        text-align: center;
    }
    .back-to-home-link {
        font-size: 0.85rem;
    }
}

/* --- HELPER UTILITY CLASSES --- */
.width-100 { width: 100%; max-width: 100%; height: auto; }
.margin-bottom-1rem { margin-bottom: 1rem; }
.margin-bottom-1-5rem { margin-bottom: 1.5rem; }
.margin-bottom-2rem { margin-bottom: 2rem; }
.margin-bottom-2-5rem { margin-bottom: 2.5rem; }
.margin-bottom-3rem { margin-bottom: 3rem; }
.margin-top-1rem { margin-top: 1rem; }
.margin-top-2rem { margin-top: 2rem; }
.margin-auto { margin: 0 auto; }
.max-width-1000px { max-width: 1000px; }
.max-width-1200px { max-width: 1200px; }
.line-height-1-8 { line-height: 1.8; }
.text-align-left { text-align: left; }
.color-rgba-255-255-255-0-8 { color: rgba(255,255,255,0.8); }
.color-rgba-255-255-255-0-7 { color: rgba(255,255,255,0.7); }
.bg-glass-002 { background: rgba(255,255,255,0.02); }
.border-top-glass { border-top: 1px solid var(--glass-border); }
.border-bottom-glass { border-bottom: 1px solid var(--glass-border); }
.grid-auto-fit-minmax-200px-1fr { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.gap-2rem { gap: 2rem; }
.font-size-1-1rem { font-size: 1.1rem; }
.text-decoration-none { text-decoration: none; }
.padding-left-5 { padding-left: 5%; }
.padding-top-2rem { padding-top: 2rem; }

@media (max-width: 900px) {
    .about-us-grid {
        grid-template-columns: 1fr;
    }
    .about-us-visuals {
        position: static;
        order: -1;
        margin-bottom: 3rem;
    }
    .founder-photo {
        max-width: 300px;
        margin: 0 auto 2rem;
        display: block;
    }
    .about-us-ceo-section ul {
        display: block;
    }
    .about-us-cta-btn {
        width: 100%;
        font-size: 0.9rem;
    }
}

/*
---
--- PANEL KLIENTA I LOGOWANIE (V5.0)
---
*/

/* --- STRONA LOGOWANIA --- */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--bg-deep-black) radial-gradient(circle at top right, rgba(25, 25, 112, 0.3), transparent);
}

.login-container {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 2rem;
}

.login-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.login-box h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.login-subtext {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.login-box .input-group {
    text-align: left;
    margin-bottom: 1.2rem;
}

.login-box .input-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.login-box input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    font-family: var(--font-body);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.login-box input:focus {
    border-color: var(--accent-ice-blue);
    outline: none;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.login-options {
    text-align: right;
    margin: -0.5rem 0 1.5rem 0;
}

.forgot-password {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
.forgot-password:hover {
    color: var(--accent-ice-blue);
}

.login-box .cta-button {
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent-ice-blue);
    color: var(--accent-ice-blue);
    padding: 0.9rem;
    font-family: var(--font-header);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    border-radius: 4px;
}
.login-box .cta-button:hover {
    background: var(--accent-ice-blue);
    color: var(--bg-deep-black);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.login-error-message {
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-top: 1rem;
    min-height: 1.2em;
}

.login-footer {
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}
.login-footer .language-selector {
    margin-bottom: 1rem;
}
.login-footer .language-selector a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 600;
}
.login-footer .language-selector a.active {
    color: var(--accent-ice-blue);
}
.login-footer .separator {
    margin: 0 0.5rem;
}
.login-footer p {
    margin-bottom: 0.5rem;
}
.login-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}
.login-footer a:hover {
    color: white;
}

/* --- PANEL GŁÓWNY --- */
.panel-body {
    display: flex;
    min-height: 100vh;
}

.panel-container {
    display: flex;
    width: 100%;
}

/* Nawigacja lewa */
.panel-nav {
    width: 22%;
    min-width: 250px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 1.5rem;
}

.nav-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}
.panel-logo {
    max-width: 120px;
    margin-bottom: 0.8rem;
}
.nav-header p {
    font-family: var(--font-header);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.nav-menu {
    flex-grow: 1;
    overflow-y: auto;
    margin-top: 1.5rem;
}

.nav-section-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 1.8rem 0 0.8rem 0;
    padding: 0 0.5rem;
}

.nav-menu ul {
    list-style: none;
}

.nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    font-weight: 500;
}
.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}
.nav-link.active {
    background: var(--glass-bg);
    color: var(--accent-ice-blue);
    font-weight: 600;
    box-shadow: inset 0 0 10px rgba(0, 123, 255, 0.2);
}

.nav-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
}
.logout-link {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}
.logout-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}
.nav-footer .language-selector {
    text-align: center;
}
.nav-footer .language-selector a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}
.nav-footer .language-selector a.active {
    color: var(--accent-ice-blue);
}
.nav-footer .separator {
    margin: 0 0.5rem;
}

/* Prawa sekcja contentu */
.panel-content {
    flex-grow: 1;
    padding: 2.5rem 3.5rem;
    overflow-y: auto;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-ice-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 4rem auto;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- KARTY DANYCH W PANELU --- */
.data-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.data-card h2 {
    font-size: 1.5rem;
    color: var(--accent-ice-blue);
    margin: 0 0 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

/* --- RESPONSIVE DLA PANELU --- */
@media (max-width: 1024px) {
    .panel-container {
        flex-direction: column;
    }
    .panel-nav {
        width: 100%;
        height: auto;
        position: static;
        flex-direction: row;
        align-items: center;
        padding: 0.5rem 1rem;
    }
    .nav-header {
        border: none;
        padding: 0.5rem;
    }
    .nav-header p {
        display: none;
    }
    .nav-menu {
        display: flex;
        flex-grow: 1;
        overflow-x: auto;
        margin: 0;
    }
    .nav-menu ul {
        display: flex;
        gap: 0.5rem;
    }
    .nav-section-title {
        display: none;
    }
    .nav-link {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
    .nav-footer {
        border: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .logout-link {
        margin: 0;
        padding: 0.6rem;
    }
    .panel-content {
        padding: 1.5rem;
    }
}

/* --- Checkout Page --- */
.checkout-page {
    padding: 5rem 2rem;
}
.checkout-container {
    max-width: 700px;
    margin: 0 auto;
}
.checkout-step {
    margin-bottom: 3rem;
}
.checkout-step h2 {
    color: var(--accent-ice-blue);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-neon-green);
}
.tab-container {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}
.tab-link {
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}
.tab-link.active {
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-neon-green);
}
.checkout-form .form-group {
    margin-bottom: 1rem;
}
.checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.payment-method {
    padding: 1rem 1.5rem;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg-01);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.payment-method.active {
    border-color: var(--accent-neon-green);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}
.payment-method:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}
.legal-checkboxes {
    margin: 2rem 0;
}
.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.form-group-checkbox input[type='checkbox'] {
    width: 20px;
    height: 20px;
}
.form-group-checkbox label a {
    color: var(--accent-ice-blue);
    text-decoration: underline;
}
.eu-only-notice, .subscription-notice {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    text-align: center;
}
#company-details {
    margin-top: 1.5rem;
    padding: 1rem;
    border: 1px dashed var(--glass-border);
    border-radius: 8px;
}
#company-details h4 {
    margin-bottom: 0.5rem;
}
/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background: var(--bg-deep-black);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}
.modal-content h2 {
    color: var(--accent-ice-blue);
    margin-bottom: 1rem;
}
.modal-content ul {
    list-style: none;
    margin: 1.5rem 0;
}
.modal-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.modal-content li strong {
    color: var(--text-primary);
}
.input-error {
    border: 1px solid #ff4d4d !important;
}

.form-options {
    text-align: right;
    margin-top: 0.5rem;
}
.password-wrapper {
    position: relative;
}
.password-toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
}
.password-feedback {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-align: left;
    min-height: 1.2em;
}
.password-feedback.weak {
    color: #ff4d4d;
}
.password-feedback.medium {
    color: #ffcc00;
}
.password-feedback.strong {
    color: var(--accent-ice-blue);
}
.error-message {
    color: #ff4d4d;
    background-color: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.5);
    padding: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}
.google-profiles-list {
    list-style: none;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}
.google-profiles-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.google-profiles-list li:last-child {
    border-bottom: none;
}
.google-profiles-list a {
    color: var(--accent-ice-blue);
    text-decoration: none;
}
/* --- LEGAL CONTENT STYLING (V5.1) --- */
.legal-content, .markdown-body {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1, .markdown-body h1 {
    font-size: 2.5rem;
    color: var(--accent-ice-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2, .markdown-body h2 {
    color: var(--accent-ice-blue);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.legal-content h3, .markdown-body h3 {
    color: var(--accent-ice-blue);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-content p, .markdown-body p, 
.legal-content li, .markdown-body li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-content ul, .markdown-body ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
    list-style-type: square;
}

.legal-content ul li::marker, .markdown-body ul li::marker {
    color: var(--accent-ice-blue);
}

.legal-content strong, .markdown-body strong {
    color: white;
    font-weight: 700;
}

.legal-content a, .markdown-body a {
    color: var(--accent-ice-blue);
    text-decoration: underline;
}

.mono-highlight {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: white;
}

.doc-vault-header select:focus {
    border-color: var(--accent-ice-blue) !important;
    outline: none;
}

/* --- PANEL COMPONENTS: SUBSCRIPTIONS --- */
.subscriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.subscription-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.sub-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.sub-header h3 {
    font-size: 1.5rem;
    color: var(--accent-ice-blue);
    margin: 0;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-active {
    background: rgba(57, 255, 20, 0.1);
    color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.status-suspended {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.status-canceling {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.suspended-card {
    filter: grayscale(0.5);
    opacity: 0.8;
    border-style: dashed;
}

.sub-details {
    flex-grow: 1;
}

.sub-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.sub-row strong {
    color: white;
}

.sub-divider {
    border: 0;
    border-top: 1px solid var(--glass-border);
    margin: 1.2rem 0;
}

.total-row {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
}

.sub-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.component-header {
    margin-bottom: 3rem;
}

.component-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.component-header p {
    color: rgba(255, 255, 255, 0.6);
}

 / *   - - -   V A N G U A R D   A D M I N   U T I L S   ( V 5 . 2 )   - - -   * / 
 . s t a t u s - b a d g e   { 
         p a d d i n g :   2 p x   8 p x ; 
         b o r d e r - r a d i u s :   4 p x ; 
         f o n t - s i z e :   0 . 7 5 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         d i s p l a y :   i n l i n e - b l o c k ; 
 } 
 . s t a t u s - a c t i v e   {   b a c k g r o u n d :   r g b a ( 5 7 ,   2 5 5 ,   2 0 ,   0 . 2 ) ;   c o l o r :   # 3 9 F F 1 4 ;   b o r d e r :   1 p x   s o l i d   r g b a ( 5 7 ,   2 5 5 ,   2 0 ,   0 . 3 ) ;   } 
 . s t a t u s - p e n d i n g   {   b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 0 4 ,   0 ,   0 . 2 ) ;   c o l o r :   # f f c c 0 0 ;   b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 0 4 ,   0 ,   0 . 3 ) ;   } 
 . s t a t u s - c a n c e l e d   {   b a c k g r o u n d :   r g b a ( 2 5 5 ,   7 7 ,   7 7 ,   0 . 2 ) ;   c o l o r :   # f f 4 d 4 d ;   b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   7 7 ,   7 7 ,   0 . 3 ) ;   } 
 . s t a t u s - s u s p e n d e d   {   b a c k g r o u n d :   r g b a ( 1 3 8 ,   4 3 ,   2 2 6 ,   0 . 2 ) ;   c o l o r :   # 8 a 2 b e 2 ;   b o r d e r :   1 p x   s o l i d   r g b a ( 1 3 8 ,   4 3 ,   2 2 6 ,   0 . 3 ) ;   } 
 . s t a t u s - p a s t - d u e   {   b a c k g r o u n d :   r g b a ( 2 5 5 ,   1 0 2 ,   0 ,   0 . 2 ) ;   c o l o r :   # f f 6 6 0 0 ;   b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   1 0 2 ,   0 ,   0 . 3 ) ;   } 
 
 . c o u n t r y - c o d e   { 
         f o n t - w e i g h t :   b o l d ; 
         c o l o r :   v a r ( - - a c c e n t - p u r p l e ) ; 
         m a r g i n - r i g h t :   5 p x ; 
         f o n t - s i z e :   0 . 8 r e m ; 
 } 
  
 