/* TienPro.sk - Modern 2024/2025 Design */

:root {
    --primary-color: #0096A0;
    --primary-dark: #007A82;
    --primary-light: #00B4C0;
    --secondary-color: #FFEA00;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #F8F9FA;
    --bg-dark: #111827;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(0, 150, 160, 0.3);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-family: 'Jaldi', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

/* CTA Button in Navigation */
.nav-menu a.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
}

.nav-menu a.nav-cta::after {
    display: none;
}

.nav-menu a.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 160, 0.3);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ============================================
   MODERN HERO SECTION 2024/2025
   ============================================ */

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 120px;
    min-height: 100vh;
    align-content: center;
}

/* Hero Content */
.hero-content-modern {
    max-width: 650px;
}

/* Glassmorphism Card - Modern */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Wide Two-Column Glass Card */
.hero-glass-card-wide {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 50px 60px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
}

.hero-left-col {
    max-width: 500px;
}

.hero-right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-card-inline {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    min-width: 200px;
    transition: var(--transition);
}

.trust-card-inline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Hero Title - Modern */
.hero-title-modern {
    font-family: 'Inter', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.text-accent {
    color: var(--primary-light);
}

/* Hero Text */
.hero-text-modern {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

/* CTA Buttons Group */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 150, 160, 0.4);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 150, 160, 0.5);
}

.cta-primary i {
    transition: var(--transition);
}

.cta-primary:hover i {
    transform: translateX(4px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Trust Icons Styles */

.trust-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 20px;
    color: var(--white);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
}

.scroll-indicator span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

/* Legacy CTA Button (for other sections) */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 150, 160, 0.3);
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 150, 160, 0.4);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 30px auto 0;
}

/* Why Section */
.why-section {
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Products Section */
.products-section {
    background: var(--white);
}

.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.category-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.product-badge.premium {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.product-content {
    padding: 30px;
}

.product-title,
.product-card h2,
.product-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-title a,
.product-card h2 a,
.product-card h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover,
.product-card h2 a:hover,
.product-card h4 a:hover {
    color: var(--primary-color);
}

.product-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    font-size: 15px;
    color: var(--text-light);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--primary-color);
    font-size: 16px;
}

.product-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.product-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Banner Section */
.banner-section {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.banner-section a {
    display: inline-block;
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.banner-section a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.banner-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-button-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.cta-button-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.cta-button-large i {
    margin-right: 10px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-column i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.category-description {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Category Hero */
.category-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.category-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.category-lead {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Product Detail Page */
.product-detail {
    background: var(--white);
}

.product-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 22px;
    color: var(--text-light);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Product Gallery */
.product-images {
    position: sticky;
    top: 100px;
    align-self: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
    align-self: start;
}

.main-image,
.gallery-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.main-image img,
.gallery-main img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.image-gallery,
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.thumb {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.thumb img,
.gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    border-radius: 8px;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.6;
}

.gallery-thumb:hover {
    opacity: 1;
    border-color: var(--primary-color);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-info h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-tagline {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 30px;
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.highlight-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.highlight-item > i {
    color: var(--primary-color);
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 3px;
}

.highlight-item > div {
    flex: 1;
}

.highlight-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.highlight-item span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.highlight-icon i {
    color: var(--white);
    font-size: 24px;
}

.highlight-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.product-cta {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Product Description Section */
.product-description-section {
    margin-bottom: 80px;
}

.product-description-section > h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
}

.description-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.description-block.reverse {
    direction: rtl;
}

.description-block.reverse > * {
    direction: ltr;
}

.description-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.description-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.description-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.description-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Alternative description layouts */
.description-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.description-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.description-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.description-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.description-item h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.description-item p {
    padding: 0 25px 25px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.info-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-section h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.info-section p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Color variants alternative layout */
.color-variants-section {
    background: var(--bg-light);
    padding: 60px;
    border-radius: var(--border-radius);
    margin-bottom: 80px;
}

.color-variants-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.color-category {
    margin-bottom: 50px;
}

.color-category:last-child {
    margin-bottom: 0;
}

.color-category h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.color-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.color-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid #ddd;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Colors Section */
.colors-section {
    background: var(--bg-light);
    padding: 60px;
    border-radius: var(--border-radius);
    margin-bottom: 80px;
}

.colors-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.color-category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.color-item {
    text-align: center;
}

.color-swatch {
    width: 100%;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.color-swatch:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.color-name {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
}

/* Specs Section */
.specifications-section,
.specs-section {
    margin-bottom: 80px;
}

.specifications-section h2,
.specs-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

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

.spec-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.spec-icon i {
    font-size: 28px;
    color: var(--white);
}

.spec-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.spec-item p {
    font-size: 15px;
    color: var(--text-light);
}

/* Installation Section */
.installation-section {
    background: var(--bg-light);
    padding: 60px;
    border-radius: var(--border-radius);
    margin-bottom: 80px;
}

.installation-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

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

.installation-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.installation-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.installation-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.video-section {
    margin-top: 50px;
    text-align: center;
}

.video-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.video-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-link {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.video-link i {
    margin-right: 8px;
}

/* Variants Section */
.variants-section,
.width-options-section,
.collections-section {
    margin-bottom: 80px;
}

.variants-section h2,
.width-options-section h2,
.collections-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.variant-cards,
.width-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.variant-card,
.width-option-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.variant-card:hover,
.width-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.variant-image,
.width-image {
    height: 250px;
    overflow: hidden;
}

.variant-image img,
.width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.variant-card h3,
.width-option-card h3 {
    padding: 25px 30px 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.variant-card p,
.width-description {
    padding: 0 30px 20px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.variant-features,
.width-features {
    list-style: none;
    padding: 0 30px 30px;
}

.variant-features li,
.width-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.variant-features i,
.width-features i {
    color: var(--primary-color);
    font-size: 14px;
}

.collection-block {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.collection-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.collection-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.product-cta-bottom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 60px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white);
}

.product-cta-bottom h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.product-cta-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex !important;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu.active li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-menu.active a {
        display: block;
        padding: 12px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu.active a:hover {
        background: var(--primary-color);
        color: white;
        transform: translateX(5px);
    }

    /* Modern Hero Responsive */
    .hero-modern {
        min-height: 100vh;
    }

    .hero-container {
        padding-top: 40px;
        padding-bottom: 100px;
    }

    .hero-glass-card-wide {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 32px 24px;
        max-width: 100%;
    }

    .hero-left-col {
        max-width: 100%;
    }

    .hero-right-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .trust-card-inline {
        min-width: auto;
        padding: 12px 16px;
        flex: 1;
        min-width: 140px;
    }

    .hero-glass-card {
        padding: 32px 24px;
        border-radius: var(--border-radius);
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-title-modern {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .hero-text-modern {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .trust-floating {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }

    .trust-card {
        min-width: auto;
        padding: 12px 16px;
        flex: 1;
        min-width: 140px;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
    }

    .trust-icon i {
        font-size: 16px;
    }

    .trust-value {
        font-size: 16px;
    }

    .trust-label {
        font-size: 11px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Legacy hero styles */
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-text {
        font-size: 18px;
    }

    .glassmorphism-card {
        padding: 40px 30px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card {
        max-width: 100%;
    }

    .product-image {
        height: 220px;
    }

    .product-content {
        padding: 25px;
    }

    .category-title {
        font-size: 26px;
    }

    .trust-items {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 18px;
    }

    .cta-button,
    .cta-button-large {
        padding: 16px 35px;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .product-button {
        font-size: 16px;
        padding: 16px 25px;
    }

    /* Product Detail Responsive */
    .category-hero h1 {
        font-size: 32px;
    }

    .category-lead {
        font-size: 16px;
    }

    .product-header h1 {
        font-size: 32px;
    }

    .product-subtitle {
        font-size: 18px;
    }

    .product-detail-grid,
    .product-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-images,
    .product-gallery {
        position: static;
    }

    .main-image,
    .gallery-main {
        max-height: 350px;
    }

    .main-image img,
    .gallery-main img {
        max-height: 350px;
    }

    .image-gallery,
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .description-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .description-block.reverse {
        direction: ltr;
    }

    .description-content h3 {
        font-size: 24px;
    }

    .colors-section,
    .installation-section {
        padding: 40px 25px;
    }

    .colors-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }

    .color-swatch {
        height: 60px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .installation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .variant-cards,
    .width-options-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-links {
        flex-direction: column;
    }

    .product-cta-bottom {
        padding: 50px 30px;
    }

    .product-cta-bottom h2 {
        font-size: 28px;
    }

    .product-cta-bottom p {
        font-size: 16px;
    }

    .collection-block {
        padding: 25px;
    }

    .product-description-section > h2,
    .specifications-section h2,
    .specs-section h2,
    .installation-section h2,
    .variants-section h2,
    .width-options-section h2,
    .collections-section h2,
    .color-variants-section h2 {
        font-size: 28px;
    }

    .description-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .description-item img {
        height: 180px;
    }

    .additional-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-section {
        padding: 25px;
    }

    .color-variants-section {
        padding: 40px 25px;
    }

    .color-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .color-box {
        width: 40px;
        height: 40px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .product-detail-grid,
    .product-main {
        gap: 40px;
    }

    .main-image,
    .gallery-main {
        max-height: 450px;
    }

    .main-image img,
    .gallery-main img {
        max-height: 450px;
    }

    .product-highlights {
        gap: 20px;
    }

    .colors-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .description-block {
        gap: 40px;
    }

    .installation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .variant-cards,
    .width-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .description-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .additional-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .color-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.product-card,
.highlight-item,
.spec-item,
.installation-step {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Print styles */
@media print {
    .top-bar,
    .navbar,
    .mobile-toggle,
    .footer,
    .cta-section,
    .product-cta,
    .product-cta-bottom,
    .breadcrumb {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .product-main {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   DEEP SHADOW UPGRADE 2026 - MODERN UI
   ========================================= */

:root {
    --primary-color: #0096A0;
    --primary-dark: #007A82;
    --accent-color: #FF6B35;
    --text-dark: #111827;
    --bg-light: #F3F4F6;
    --white: #ffffff;
    --shadow-modern: 0 10px 40px -10px rgba(0,150,160,0.15);
    --radius-modern: 16px;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #FAFAFA;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.product-card, .feature-card, .variant-card {
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-modern) !important;
    border-radius: var(--radius-modern) !important;
    background: var(--white);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.product-card:hover, .feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px -12px rgba(0,150,160,0.25) !important;
}

.cta-button, .cta-button-large, .product-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before, .cta-button-large::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), #FF8F5E);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cta-button:hover::before, .cta-button-large:hover::before {
    opacity: 1;
}

.price-badge {
    display: inline-block;
    background: #E0F2F1;
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .nav-menu.active a {
        padding: 16px 20px;
        font-size: 18px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .product-detail-grid {
        gap: 30px;
    }
    
    .hero-title-modern {
        font-size: 36px;
    }
}

/* =========================================
   TIENPRO.SK - NEW COMPONENTS 2025
   Quick Contact, FAQ, Sticky CTA
   ========================================= */

/* Sticky Phone CTA (Mobile) */
.sticky-phone-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,150,160,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    gap: 8px;
}

.sticky-phone-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0,150,160,0.5);
}

.sticky-phone-cta i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .sticky-phone-cta {
        display: flex;
    }
}

/* Top Bar Enhancements */
.top-bar .phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .phone strong {
    font-size: 1.1em;
}

.top-bar .phone-label {
    opacity: 0.8;
    font-size: 0.9em;
}

.email-link {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    opacity: 0.9;
}

.email-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .email-link, .phone-label {
        display: none;
    }
}

/* Quick Contact Section */
.quick-contact-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f4 100%);
    padding: 60px 0;
    position: relative;
}

.quick-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.quick-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quick-contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.quick-contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.quick-contact-info a:hover {
    text-decoration: underline;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: #444;
}

.contact-benefits i {
    color: var(--primary-color);
    font-size: 1.2em;
}

/* Quick Contact Form */
.quick-contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius-modern);
    box-shadow: var(--shadow-modern);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,150,160,0.1);
}

.form-group select {
    cursor: pointer;
    background: white url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") no-repeat right 12px center/16px;
    appearance: none;
    padding-right: 40px;
}

.form-submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,150,160,0.3);
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-privacy i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .quick-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0,150,160,0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
}

/* Category CTA Button */
.category-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline i {
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(4px);
}

/* CTA Buttons Group */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 2px solid white;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Hero Phone CTA Enhancement */
.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-phone span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-phone small {
    font-size: 0.75em;
    opacity: 0.8;
}

.cta-phone strong {
    font-size: 1.1em;
}

/* Footer Enhancements */
.footer address {
    font-style: normal;
}

.footer address a {
    color: inherit;
    text-decoration: none;
}

.footer address a:hover {
    color: var(--primary-color);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.rating-badge {
    background: #fbbf24;
    color: #78350f;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-nav {
    margin-top: 10px;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: white;
}

/* Navigation Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #f3f4f6;
    color: var(--primary-color);
}

/* Mobile Navigation Fixes */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9fafb;
        border-radius: 0;
    }

    .has-dropdown > a i {
        display: none;
    }
}

/* Logo Enhancement */
.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo-accent {
    color: var(--primary-color);
}

/* Trust Cards Enhancement */
.trust-card-inline .trust-value i {
    color: #fbbf24;
    font-size: 0.8em;
}

/* Hamburger Animation */
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--text-dark);
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* =========================================
   GUIDES SECTION - Pillar Pages Links
   ========================================= */

.guides-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.guide-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,150,160,0.15);
    border-color: var(--primary-color);
}

.guide-card.guide-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.guide-card.guide-featured h3,
.guide-card.guide-featured p {
    color: white;
}

.guide-card.guide-featured .guide-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.guide-card.guide-featured .guide-link {
    color: rgba(255,255,255,0.9);
}

.guide-card.guide-blog {
    background: #1f2937;
    color: white;
}

.guide-card.guide-blog h3,
.guide-card.guide-blog p {
    color: white;
}

.guide-card.guide-blog .guide-icon {
    background: rgba(255,255,255,0.1);
    color: white;
}

.guide-card.guide-blog .guide-link {
    color: rgba(255,255,255,0.8);
}

.guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #e8f5f4;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.guide-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.guide-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.guide-link i {
    transition: transform 0.3s ease;
}

.guide-card:hover .guide-link i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-card.guide-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .guide-card.guide-featured {
        grid-column: span 1;
    }
}


/* =========================================
   HUB PAGE STYLES
   ========================================= */

.breadcrumb-bar {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: '/';
    margin: 0 10px;
    color: #9ca3af;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hub-content {
    padding: 60px 0;
}

.hub-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.hub-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hub-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,150,160,0.15);
    border-color: var(--primary-color);
}

.hub-card-large {
    grid-column: span 3;
    flex-direction: row;
    gap: 40px;
    background: linear-gradient(135deg, #f0fffe, #e8f5f4);
}

.hub-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 16px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.hub-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 15px 0 10px;
    color: var(--text-dark);
}

.hub-card-large h2 {
    margin-top: 0;
    font-size: 1.6rem;
}

.hub-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.hub-card-topics {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.hub-card-topics li {
    font-size: 0.9rem;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.hub-card-topics li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.75rem;
}

.hub-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-top: auto;
}

.hub-card-link i {
    transition: transform 0.3s ease;
}

.hub-card:hover .hub-card-link i {
    transform: translateX(5px);
}

.hub-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.hub-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.hub-products-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hub-product-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f3f4f6;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.hub-product-link:hover {
    background: var(--primary-color);
    color: white;
}

.hub-product-link i {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hub-card-large {
        grid-column: span 2;
        flex-direction: column;
    }

    .hub-card-topics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }

    .hub-card-large {
        grid-column: span 1;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }
}


/* =========================================
   ARTICLE / PILLAR PAGE STYLES
   ========================================= */

.article-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 50px 0 60px;
}

.article-header-content {
    max-width: 800px;
}

.article-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.article-excerpt {
    font-size: 1.15rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 25px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Table of Contents */
.toc-wrapper {
    background: #f8f9fa;
    padding: 25px 0;
    border-bottom: 1px solid #e5e7eb;
}

.toc {
    max-width: 600px;
}

.toc h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.toc ol {
    columns: 2;
    column-gap: 30px;
    padding-left: 20px;
    margin: 0;
}

.toc li {
    margin-bottom: 8px;
    break-inside: avoid;
}

.toc a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.toc a:hover {
    text-decoration: underline;
}

/* Article Content */
.article-content {
    padding: 60px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 50px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    color: var(--text-dark);
}

.article-body h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-body li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.article-body a:hover {
    text-decoration: underline;
}

/* Comparison Tables */
.comparison-table {
    overflow-x: auto;
    margin: 25px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #f9fafb;
}

/* Product Highlight Box */
.product-highlight {
    background: #f0fffe;
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.product-highlight.premium {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left-color: #f59e0b;
}

.product-highlight p:first-child {
    margin-top: 0;
}

.product-highlight ul {
    margin: 15px 0 0;
}

/* Article CTA Box */
.article-cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0;
}

.article-cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.article-cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.article-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Related Links */
.related-links {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.related-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.related-link:hover {
    background: #e8f5f4;
    color: var(--primary-color);
}

.related-link i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* FAQ in Article */
.faq-section-article {
    margin-top: 50px;
}

.faq-section-article h2 {
    border-top: none;
    padding-top: 0;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.7rem;
    }

    .toc ol {
        columns: 1;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   UNIFIED SUBPAGE STYLES - 2026 UPDATE
   ============================================ */

/* Hero sekcia pre podstranky */
.page-hero {
    background: linear-gradient(135deg, #0a2540 0%, #0096A0 50%, #00B4C0 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.page-hero .badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-hero .badge i {
    color: #FFEA00;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Produktove karty */
.products-grid, .category-products {
    padding: 4rem 0;
}

.products-grid h2, .category-products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.product-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Content sekcie */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #0096A0;
    border-radius: 2px;
}

.content-section ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0096A0;
    font-weight: bold;
}

/* Feature boxy */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-box i {
    font-size: 3rem;
    color: #0096A0;
    margin-bottom: 1rem;
}

/* CTA sekcia */
.cta-section {
    background: linear-gradient(135deg, #0096A0 0%, #007A82 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section .btn-primary {
    display: inline-block;
    background: white;
    color: #0096A0;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Related links */
.related-links, .related-content {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f5 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    border-left: 4px solid #0096A0;
}

.related-links ul, .related-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.related-links a, .related-content a {
    color: #0096A0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-links a:hover, .related-content a:hover {
    color: #007A82;
    transform: translateX(5px);
}

/* Product list */
.product-list {
    list-style: none;
    padding: 0;
}

.product-list li {
    padding: 1rem;
    background: white;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.product-list li:hover {
    border-left-color: #0096A0;
    transform: translateX(5px);
}

.product-list a {
    color: #0096A0;
    font-weight: 600;
    text-decoration: none;
}

/* Pillar grid */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: #0096A0;
    transform: translateY(-5px);
}

.pillar-card h3 {
    color: #0096A0;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Local hero */
.hero-local {
    background: linear-gradient(135deg, #0a2540 0%, #0096A0 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

/* Footer unified */
.footer {
    background: #0a1628;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #0096A0;
}

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
}

.footer-col a:hover {
    color: #0096A0;
}

.footer-bottom {
    border-top: 1px solid #1e3a5f;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero { padding: 3rem 0; }
    .page-hero h1 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .pillar-grid { grid-template-columns: 1fr; }
}
