/* Reset a základné nastavenia */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --dark-blue: #091a2b;
    --gold: #dfa63b;
    --white: #ffffff;
    --gray-text: #a0aab5;
}

body {
    background-color: #111;
    color: var(--white);
}

/* Hlavný kontajner */
.hero-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Horná navigácia */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: var(--dark-blue);
    height: 90px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-right: 15px;
    border: 2px solid var(--gold);
    padding: 5px 10px;
    border-radius: 5px;
}

.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.1;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--gray-text);
    letter-spacing: 1px;
}

.bait-text {
    background-color: var(--gold);
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    padding: 0 40px;
    letter-spacing: 1px;
}

/* Hero Content s pozadím */
.hero-content {
    flex: 1;
    /* Nahraď 'garaze-bg.jpg' svojou reálnou fotkou, stiahnutou z predlohy */
    background: linear-gradient(to top, rgba(9, 26, 43, 0.9) 15%, rgba(0,0,0,0.3) 50%), 
                url('https://images.unsplash.com/photo-1616422285623-13ff0162193c?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding-left: 5%;
    padding-bottom: 40px;
}

/* Textový tieň a štýl hlavného nápisu */
.hero-text-shadow {
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
}

.hero-content h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 10px;
    color: var(--white);
}

/* Spodný panel s benefitmi */
.benefits-panel {
    background-color: var(--dark-blue);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 3px solid var(--gold);
    padding: 30px 5%;
    gap: 20px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card:last-child {
    border-right: none;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.benefit-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.benefit-sub {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 600;
    margin-top: -3px;
}

.benefit-note {
    font-size: 0.75rem;
    color: var(--gray-text);
    margin-top: 10px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Špecifické štýly pre štvrtú kartu (Detaily) */
.details-card {
    align-items: flex-start;
    text-align: left;
    padding-left: 20px;
}

.details-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.margin-right {
    margin-right: 15px;
    margin-bottom: 0;
}

.details-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.details-list {
    list-style: none;
}

.details-list li {
    font-size: 0.75rem;
    color: var(--gray-text);
    margin-bottom: 5px;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responzivita pre menšie obrazovky (Tablety a mobily) */
@media (max-width: 992px) {
    .benefits-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .benefit-card {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .top-nav {
        height: auto;
        flex-direction: column;
    }
    .logo-area {
        padding: 15px;
    }
    .bait-text {
        padding: 10px;
        justify-content: center;
        font-size: 1.1rem;
    }
    .hero-content h2 { font-size: 2.5rem; }
    .hero-content h3 { font-size: 2.2rem; }
    .benefits-panel {
        grid-template-columns: 1fr;
    }
    .details-card {
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
}
/* --- ŠTÝLY PRE SEKCIU 2 --- */

:root {
    --dark-blue: #091a2b;
    --gold: #dfa63b;
    --white: #ffffff;
    --gray-text: #4a5568; /* Tmavší šedá pro text na bílém pozadí */
    --light-bg: #fafafa;
    --card-tint: #fcf8f2; /* Jemný krémový nádech pro kartu inflace */
}

.investment-details-section {
    background-color: var(--white);
    color: #1a202c;
    padding: 60px 5%;
}

.section-block {
    margin-bottom: 60px;
}

.section-block:last-child {
    margin-bottom: 0;
}

/* Nadpisy blokov s číslom */
.block-title {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.number-badge {
    background-color: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 3px;
}

.block-title h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: 0.5px;
}

/* Mriežka pre 3 pilierov */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-item {
    display: flex;
    flex-direction: column;
}

.pillar-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pillar-icon-box {
    background-color: var(--dark-blue);
    color: var(--gold);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 6px;
    margin-right: 15px;
    flex-shrink: 0;
}

.pillar-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.pillar-text {
    font-size: 0.88rem;
    color: var(--gray-text);
    line-height: 1.6;
    text-align: justify;
}

/* Rozloženie pre Ekonomiku (Tabuľka + Karta) */
.economy-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Tabuľka prehľadu */
.table-container {
    width: 100%;
}

.investment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.investment-table th {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: left;
    padding: 14px 20px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.investment-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
}

.investment-table tbody tr:not(.highlight-row) td {
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.investment-table .text-right {
    text-align: right;
}

.investment-table .bold {
    font-weight: 700;
}

.investment-table .light-text {
    font-weight: 400;
    color: #718096;
    font-size: 0.85rem;
}

/* Zvýraznený spodný riadok s výnosom */
.investment-table .highlight-row {
    background-color: var(--gold);
}

.investment-table .highlight-row td {
    color: var(--white);
    border: none;
    font-size: 1.05rem;
    padding: 16px 20px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* Karta Ochrana pred infláciou */
.inflation-card {
    background-color: var(--card-tint);
    border-radius: 8px;
    padding: 35px;
    border: 1px solid #faebd7;
}

.inflation-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.inflation-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-right: 15px;
}

.inflation-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    letter-spacing: 0.5px;
}

.inflation-card p {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.inflation-card p:last-child {
    margin-bottom: 0;
}

/* --- RESPONDZIVITA PRE SEKCIU 2 --- */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .economy-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .investment-details-section {
        padding: 40px 20px;
    }
    .block-title h2 {
        font-size: 1.3rem;
    }
    .investment-table td {
        padding: 12px 12px;
        font-size: 0.85rem;
    }
    .investment-table .highlight-row td {
        font-size: 0.95rem;
    }
    .inflation-card {
        padding: 20px;
    }
}
/* --- ŠTÝLY PRE SEKCIU 3 --- */

.tech-parameters-section {
    background-color: #ffffff;
    color: #1a202c;
    padding: 60px 5%;
}

/* Layout rozdelenia na 3 stĺpce */
.tech-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.8fr;
    gap: 30px;
    align-items: stretch;
}

/* 1. Ľavý stĺpec: Parametre */
.params-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.param-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.param-icon-circle {
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.param-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.param-info p {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.4;
}

/* 2. Stredný stĺpec: Fotka */
.tech-image-container {
    width: 100%;
    height: 100%;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* 3. Pravý stĺpec: Tmavý investorský panel */
.investor-sidebar {
    background-color: var(--dark-blue);
    color: var(--white);
    border-radius: 8px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.header-shield {
    color: var(--gold);
    font-size: 1.6rem;
}

.sidebar-header h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Riadky v paneli */
.sidebar-rows {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between; /* Rovnomerne roztiahne riadky */
    gap: 12px;
}

.sidebar-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-row:last-child {
    border-bottom: none;
}

.sidebar-row i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.sidebar-row span {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* --- RESPONDZIVITA PRE SEKCIU 3 --- */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: 1.2fr 1fr; /* Skryjeme alebo presunieme 3. stĺpec */
    }
    .investor-sidebar {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .tech-image-container {
        height: 300px;
    }
    .investor-sidebar {
        grid-column: span 1;
    }
}
/* --- ŠTÝLY PRE DOPLNKOVÉ SLUŽBY & LOKALITA (OBRÁZOK image_73d79f.png) --- */

.services-location-section {
    background-color: #ffffff;
    padding: 40px 5%;
    color: #1a202c;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Ľavá strana - Služby */
.services-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.services-title i {
    color: var(--gold);
    font-size: 1.8rem;
}

.services-title h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.services-title .sub-title {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 5px;
}

.services-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 25px;
}

.services-list-container h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.checkmark-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkmark-list li {
    font-size: 0.88rem;
    font-weight: 500;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkmark-list li i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Svetlý krémový box */
.target-audience-box {
    background-color: #fdfaf6;
    border: 1px solid #f3e8d7;
    border-radius: 6px;
    padding: 25px 20px;
}

.target-audience-box h3 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dark-blue);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.target-item:last-child {
    margin-bottom: 0;
}

.target-item i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.target-item p {
    font-size: 0.82rem;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.3;
}

/* Pravá strana - Lokalita */
.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #1e529a; /* Modré pozadie pre nadpis lokality */
    padding: 12px 20px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.number-badge-blue {
    background-color: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.location-header h2 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.location-image-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-footer-text {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 25px 20px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.location-footer-text p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}


/* --- ŠTÝLY PRE SPODNÝ FOOTER --- */

.main-footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 40px 5%;
    border-top: 4px solid var(--gold);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1.1fr 0.7fr;
    gap: 30px;
    align-items: center;
}

/* 1. Motto */
.motto-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-shield {
    color: var(--gold);
    font-size: 2.2rem;
    margin-top: 2px;
}

.motto-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.footer-motto p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #cbd5e1;
}

/* 2. Cenovka box */
.footer-price-badge {
    background-color: var(--gold);
    color: var(--dark-blue);
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.price-main {
    font-size: 2.1rem;
    font-weight: 800;
}

.price-vat {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: -2px;
    margin-bottom: 10px;
}

.price-sub {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2a1e05;
}

/* 3. Kontaktné riadky */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-row i {
    color: var(--gold);
    font-size: 1.4rem;
    width: 25px;
    text-align: center;
}

.contact-row span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.4;
}

/* 4. QR kód */
.footer-qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-wrapper {
    background-color: var(--white);
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.qr-wrapper img {
    display: block;
    width: 100px;
    height: 100px;
}

.footer-qr-code p {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--white);
}

/* --- RESPONDZIVITA PRE POSLEDNÚ SEKCIU --- */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-contacts {
        padding-left: 0;
    }
}

@media (max-width: 650px) {
    .services-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .motto-header {
        justify-content: center;
    }
    .contact-row {
        justify-content: center;
    }
}