/* * 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;
    /* Vanguard Shield: Disable global selection */
    user-select: none; 
}

/* Allow selection only for critical business data */
.allow-copy {
    user-select: text;
}

/* 2. TYPOGRAPHY */
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); }

/* 3. VANGUARD COMPONENTS */

/* Glass Navigation */
.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%;
}

/* Hero Section */
.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 - Based on Marketing Catalog [cite: 114, 119, 123] */
#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);
}

/* Buttons */
.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);
}

/* 4. UTILITIES */
.grid-map-viz {
    background: rgba(255,255,255,0.05); /* Zastąpiony placeholder [cite: 24, 26] */
    border: 1px solid var(--glass-border);
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .vanguard-hero { text-align: center; align-items: center; }
}

.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; }

/* Honeypot Shield Styles */
.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; }

@media (max-width: 600px) { .vanguard-form .input-group { grid-template-columns: 1fr; } }

/* --- High-Influence UX Adjustments --- */
button, .cta-primary, .faq-question, .tier {
    min-height: 44px;
    min-width: 44px;
}

.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 Architecture System --- */

.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: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.btn-feedback {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.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);
}

.faq-bottom-cta {
    text-align: center;
    padding: 5rem 5%;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.hidden-by-search {
    display: none !important;
}

/* --- V4.1 UI TWEAKS --- */
/* Topbar Repositioning & Logo Visibility */
.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));
}

/* FAQ Feedback Row Minimization & Spacing */
.faq-feedback {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 0.8rem 0 0 0; /* Wyzerowano lewy padding i zmniejszono dolny dla dopasowania w kontenerze */
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.8rem; /* Zmniejszone litery */
    line-height: 1.2;
}
.btn-feedback {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.25rem 0.8rem; /* Mniejsze przyciski */
    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);
}

/* Checkbox & Form Footer Alignment Fix */
.checkbox-container {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    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;
}

/* --- V5.0 STYLE CONSOLIDATION & HERO FIX --- */

/* Generic Padding for Sections */
.padding-5 { padding: 5rem 5%; }
.text-center { text-align: center; }

/* Subpage Hero Section Fix */
.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 Page Specifics */
.analiza-section {
    max-width: 1000px;
    margin: 0 auto;
}
.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);
}
.analiza-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.analiza-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}
.analiza-cta-box .cta-primary {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

/* Footer Cleanup - Mobile-First (Default: Centered) */
.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; /* Default for mobile */
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    align-items: center; /* Center items on mobile */
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center logo on mobile */
}
.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; /* Improved tap target height */
}
.footer-links li {
    min-height: 44px; /* Ensure accessible tap target */
    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;
}

/* Desktop Overrides for Footer */
@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;
    }
}

/* --- INDEX.HTML SPECIFIC STYLES --- */
.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;
}

/* --- PRICE-LIST.HTML / CENNIK.HTML SPECIFIC STYLES --- */
.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-pricing-grid #pricing-grid {
    margin-top: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}
.section-pricing-grid .tier p.tier-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
}
.section-pricing-grid .tier a.text-decoration-none {
    text-decoration: none;
}
.section-pricing-grid .tier button.cta-primary {
    width: 100%;
    margin-bottom: 1rem;
}

.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-subpage {
    background: var(--bg-deep-black);
}
.section-faq-subpage h2 {
    text-align: center;
    margin-bottom: 3rem;
}
.section-faq-subpage .faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.section-faq-subpage .text-center {
    margin-top: 3rem;
}
.section-faq-subpage .text-center a {
    color: var(--accent-ice-blue);
    font-weight: 600;
}

/* --- FAQ.HTML / PL/FAQ.HTML SPECIFIC STYLES --- */
.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);
}
.faq-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}
.faq-hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.faq-container-main {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}
.faq-bottom-cta-container {
    margin-top: 3rem;
}
.faq-bottom-cta-link {
    color: var(--accent-ice-blue);
    font-weight: 600;
}

/* --- ANALYSIS.HTML / ANALIZA.HTML SPECIFIC STYLES --- */
.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');
    padding-bottom: 50px;
}
.hero-subpage-analysis p {
    margin: 0 auto;
    max-width: 800px;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

.analiza-section-content {
    max-width: 1000px;
    margin: 0 auto;
}
.h2-margin-bottom-2rem {
    margin-bottom: 2rem;
}
.p-font-size-1-1rem {
    font-size: 1.1rem;
}
.p-margin-bottom-3rem {
    margin-bottom: 3rem;
}
.p-color-rgba-255-255-255-0-7 {
    color: rgba(255, 255, 255, 0.7);
}
.analiza-tool-container {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-bottom: 4rem;
}
.free-tool-style {
    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);
}
.h3-analiza-cta {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.p-analiza-cta {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.p-color-rgba-255-255-255-0-8 {
    color: rgba(255, 255, 255, 0.8);
}
.cta-primary-analiza {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

.done-for-you-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);
}

.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;
}

@media (max-width: 768px) {
    .heatmap-grid {
        grid-template-columns: 1fr;
    }
    .heatmap-column {
        min-height: 200px;
    }
}

/* Activation Fee Section */
.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);
}

/* Technological Table Styles */
.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);
}

@media (max-width: 768px) {
    .tech-table-container {
        padding: 1rem;
    }
    .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;
    }
}

/* Top menu links */
.nav-link {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
}

/* Lang switch */
.lang-switch {
    margin-left: auto;
}
.lang-switch .lang-active {
    color: white;
}
.lang-switch .lang-inactive {
    color: var(--accent-ice-blue);
    text-decoration: none;
}

/* Footer links */
.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
}
.footer-copyright-link {
    color: white;
    text-decoration: none;
}

/* Global elements that need to be cleaned */
.brand {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
}
.brand-logo {
    height: 35px;
    display: block;
    margin-top: 5px;
}
.nav-links-desktop {
    display: flex;
    align-items: center;
}

.text-decoration-none {
    text-decoration: none;
}
.width-100 {
    width: 100%;
}
.margin-bottom-1rem {
    margin-bottom: 1rem;
}
.margin-bottom-2-5rem {
    margin-bottom: 2.5rem;
}
.margin-bottom-1-5rem {
    margin-bottom: 1.5rem;
}
.margin-top-1rem {
    margin-top: 1rem;
}
.padding-left-5 {
    padding-left: 5%;
}
.padding-top-5rem {
    padding-top: 5rem;
}
.margin-top-2rem {
    margin-top: 2rem;
}
.margin-top-3rem {
    margin-top: 3rem;
}
.max-width-1200px {
    max-width: 1200px;
}
.margin-auto {
    margin: auto;
}
.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);
}
.overflow-x-auto {
    overflow-x: auto;
}
.border-collapse {
    border-collapse: collapse;
}
.text-align-left {
    text-align: left;
}
.border-bottom-2px-glass {
    border-bottom: 2px solid var(--glass-border);
}
.padding-1rem {
    padding: 1rem;
}
.border-bottom-1px-dashed-glass {
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.grid-auto-fit-minmax-200px-1fr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gap-2rem {
    gap: 2rem;
}
.font-size-3rem {
    font-size: 3rem;
}
.margin-bottom-1rem {
    margin-bottom: 1rem;
}
.bg-deep-black-variant {
    background: var(--bg-deep-black);
}
.padding-60px-5 {
    padding: 60px 5%;
}
.max-width-900px {
    max-width: 900px;
}
.font-weight-600 {
    font-weight: 600;
}