:root {
    /* Colors */
    --primary-color: #00B4A8;
    --primary-dark: #00968c;
    --text-primary: #1F2933;
    --text-secondary: #6B7280;
    --bg-main: #FFFFFF;
    --bg-light: #F2FAF9;
    --bg-footer: #111827;
    --text-footer: #D1D5DB;
    --divider: #E5E7EB;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 6rem;
    /* 96px */
    --section-space-mobile: 3.5rem;
    --section-space-desktop: 5rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 6px 18px rgba(15, 23, 42, 0.08);
    --shadow-card-hover: 0 10px 24px rgba(15, 23, 42, 0.12);
}

/* Reset & Global */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: #0f172a;
    color: #fff;
    padding: 0;
    border-radius: 8px;
    z-index: 2000;
}

.skip-link:focus {
    left: 8px;
    top: 8px;
    width: auto;
    height: auto;
    overflow: visible;
    padding: 0.5rem 0.75rem;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(0, 180, 168, 0.5);
    outline-offset: 2px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
    .container {
        width: 85%;
    }
}

.section {
    padding: var(--section-space-mobile) 0;
}

@media (min-width: 992px) {
    .section {
        padding: var(--section-space-desktop) 0;
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 24px 0 24px 24px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(0, 180, 168, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 168, 0.23);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    /* Explicit white to match hero */
    z-index: 1000;
    /* box-shadow removed as requested */
    padding: 1rem 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    /* Add side padding for aesthetics */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 34px;
    width: auto;
}

/* ... existing styles ... */

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

/* Services - Clean Boxes with Icons */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
}

.service-card-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px 24px 24px 0;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(45, 212, 191, 0.2);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50% 50% 50% 0;
    background: rgba(45, 212, 191, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(45, 212, 191, 0.3);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
    transform: rotate(45deg);
    pointer-events: none;
}

.service-card-box:hover .icon-box {
    background: rgba(45, 212, 191, 0.15);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.icon-box i {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.service-card-box h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.service-card-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.tick-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    /* Teal tick */
    flex-shrink: 0;
}

.pricing-card.featured .tick-icon {
    color: white;
    /* White tick on dark card */
    filter: none;
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    display: block;
    padding: 0.75rem;
    color: var(--text-primary);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active i.bi-house-door-fill {
    color: var(--primary-color);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 0.25rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

@media (min-width: 992px) {
    .nav-container {
        padding: 0 4rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        box-shadow: none;
        background: transparent;
        padding: 0;
        gap: 1.5rem;
        /* Reduced from 2rem */
        align-items: center;
        margin-left: auto;
        flex-grow: 0;
    }
}

/* Hero Section */
.hero {
    padding-top: 100px;
    /* Reduced from 140px */
    padding-bottom: 3rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

@media (min-width: 992px) {
    .hero {
        padding-top: 120px;
        /* Reduced from 200px */
        padding-bottom: 4.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-surtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.highlight-strong {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 40%, #0D3C3E 100%);
    /* Darker, stronger gradient as requested */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    /* Bolder */
}

/* Ensure other text in hero remains solid black/dark unless highlighted */

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Services - Dark Highlight */
#sluzby {
    background: transparent;
    padding-top: 2.5rem;
}

@media (min-width: 992px) {
    /* Padding unified in .section class */
}

/* ... existing styles ... */

/* Pricing - Equal Cards */
.pricing-card.featured {
    /* Resetting to match normal card, but keeping the 'featured' HTML for semantic if needed, but styling equal */
    border: none;
    background: #fff;
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
    color: var(--text-primary);
}

.pricing-card.featured h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-card.featured .price {
    color: var(--text-primary);
}

.pricing-card.featured .sub-price {
    color: var(--text-secondary);
}

.pricing-card.featured p {
    color: var(--text-secondary);
}

.pricing-card.featured .features-list li {
    color: var(--text-secondary);
}

.pricing-card.featured .tick-icon {
    filter: none;
    /* Restore original colored tick */
    width: 24px;
    height: 24px;
}

/* Footer Updates */
.footer-col h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #9CA3AF;
    /* Muted label color */
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #D1D5DB;
}

.footer-legal-links a {
    color: #9CA3AF;
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

.social-links a {
    background: var(--primary-color);
    /* Teal circles */
    color: white;
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
}

.contact-list li a {
    color: white;
    font-weight: 500;
}

.service-card.plain {
    background: transparent;
    padding: 0;
    box-shadow: none;
    text-align: center;
}

/* .icon-plain duplicate removed */

.icon-plain img {
    height: 60px;
    width: auto;
}

/* Process */
.process {
    background-color: #ffffff;
    /* Removed mint bg */
}

.process-steps-vertical {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

/* Process - Horizontal Timeline */
.timeline-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.timeline-number {
    width: 70px;
    height: 70px;
    border-radius: 50% 50% 50% 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    z-index: 2;
    position: relative;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    background: rgba(45, 212, 191, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(45, 212, 191, 0.3);
}

.timeline-connector {
    flex: 0 0 auto;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), rgba(45, 212, 191, 0.3));
    margin-top: 38px;
    position: relative;
}

.timeline-content {
    max-width: 250px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Mobile responsive for timeline */
@media (max-width: 992px) {
    .timeline-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    .timeline-item {
        flex-direction: row;
        text-align: left;
        margin-bottom: 2rem;
    }

    .timeline-number {
        flex-shrink: 0;
        margin-right: 1.5rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .timeline-connector {
        display: none;
    }

    .timeline-content {
        max-width: none;
    }
}

/* About - Drop Shape */
/* About - Dark & Drop Shape */
#o-mne {
    background: transparent;
    color: white;
}

#o-mne h2,
#o-mne .lead,
#o-mne p {
    color: white;
}

#o-mne .lead {
    color: #e0e0e0;
}

.about-chip {
    display: inline-flex;
    width: auto;
    font-size: 0.78rem;
    font-weight: 600;
    color: #d6f7f4;
    letter-spacing: 0.2px;
    background: rgba(125, 211, 202, 0.12);
    border: 1px solid rgba(125, 211, 202, 0.35);
    border-radius: 999px 999px 999px 0;
    padding: 0.28rem 0.62rem;
    margin-bottom: 0.7rem;
}

.about-container {
    background: #0D3C3E;
    background: radial-gradient(circle at center, #134e50 0%, #082829 100%);
    border-radius: 32px 0 32px 32px;
    padding: 4.75rem 3.25rem;
    max-width: 1140px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 992px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
        padding: 5.25rem 4rem;
    }
}

.drop-shape {
    border-radius: 360px 0 360px 360px;
    /* Pointing Right (Top-Right sharp) */
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    aspect-ratio: 1/1;
    border: 8px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.drop-shape:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Portfolio */
.portfolio-showcase {
    margin: 2.75rem auto 0;
    max-width: 1140px;
    display: grid;
    gap: 2.5rem;
}

.portfolio-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px 24px 24px 0;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(45, 212, 191, 0.15);
}

.portfolio-card-media {
    aspect-ratio: 16 / 10;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
}

.portfolio-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-card-image {
    transform: scale(1.01);
}

.portfolio-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 420px;
    padding: 0 1.2rem 1.2rem;
}

.portfolio-chip {
    display: inline-flex;
    width: auto;
    font-size: 0.77rem;
    font-weight: 600;
    color: #0f766e;
    letter-spacing: 0.2px;
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 999px 999px 999px 0;
    padding: 0.28rem 0.62rem;
    margin-bottom: 0.7rem;
}

.portfolio-card-content h3 {
    font-size: clamp(1.26rem, 1.9vw, 1.58rem);
    color: var(--text-primary);
    margin-bottom: 0.45rem;
}

.portfolio-card-content p {
    color: var(--text-secondary);
    margin-bottom: 0.95rem;
    max-width: 42ch;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.portfolio-link::after {
    content: '→';
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.portfolio-link:hover {
    color: var(--primary-dark);
}

.portfolio-link:hover::after {
    transform: translateX(2px);
}

@media (min-width: 992px) {
    .portfolio-showcase {
        gap: 2.25rem;
    }

    .portfolio-card {
        grid-template-columns: minmax(0, 63%) minmax(0, 37%);
        gap: 0;
    }

    .portfolio-card-media {
        margin-left: -0.35rem;
    }

    .portfolio-card-content {
        padding: 1.2rem 2rem 1.2rem 0;
        margin-left: -1.4rem;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Testimonials - Dark Highlight */
/* Subtle Gradient for Light Sections */
#proces,
#portfolio,
#reference,
#cenik {
    background: transparent;
}

#portfolio {
    padding-bottom: 1.5rem;
}

#cenik {
    padding-bottom: 1.25rem;
}

@media (min-width: 992px) {
    #sluzby {
        padding-top: 3.5rem;
    }

    #portfolio {
        padding-bottom: 2rem;
    }

    #cenik {
        padding-bottom: 1.75rem;
    }
}

.testimonial-card {
    background: linear-gradient(180deg, #123d3f 0%, #0a2a2c 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px 24px 24px 0;
    text-align: center;
    border: 1px solid rgba(125, 211, 202, 0.22);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 400px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 202, 0.4);
    box-shadow: 0 8px 24px rgba(13, 60, 62, 0.25);
}

.client-header {
    margin-bottom: 1.5rem;
}

.client-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 2px solid rgba(209, 246, 242, 0.38);
}

.stars {
    color: #2DD4BF;
    margin-bottom: 0;
    font-size: 1rem;
}

.stars .bi {
    margin: 0 0.06rem;
}

.feedback-content {
    max-height: 100px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.feedback-content.expanded {
    max-height: 1000px;
}

.read-more-btn {
    background: none;
    border: none;
    color: #9fe8e1;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    margin-bottom: 1.5rem;
    text-transform: none;
    transition: color 0.2s ease;
}

.read-more-btn:hover {
    color: #ffffff;
}

.feedback {
    font-style: italic;
    color: rgba(234, 248, 246, 0.88);
    margin: 0;
}

.client-info-bottom {
    margin-top: auto;
    padding-top: 1rem;
}

.client-name {
    margin-bottom: 0.25rem;
    font-weight: 700;
    color: #f3fbfa;
}

.client-role {
    font-size: 0.875rem;
    color: #b7d6d3;
}

/* Pricing */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: #fff;
    border: none;
    border-radius: 24px 24px 24px 0;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-main .pricing-card .price {
    display: block;
    font-size: clamp(2rem, 3vw, 2.45rem);
    line-height: 1;
    font-weight: 700;
    color: #0b3f41;
    margin: 0.45rem 0 0.2rem;
    font-family: var(--font-heading);
}

.pricing-main .pricing-card .sub-price {
    display: block;
    color: #4b5563;
    font-weight: 600;
}

.pricing-main .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-main .tick-icon {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: translateY(-1px);
}

.pricing-secondary {
    margin-top: 1.5rem;
}

.pricing-card-secondary {
    background: #fbfcfc;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.pricing-card-secondary .price {
    display: block;
    font-size: 1.45rem;
    font-weight: 700;
    color: #0b3f41;
    font-family: var(--font-heading);
}

.pricing-card-secondary .service-icon {
    display: none;
}

.pricing-card-secondary .service-icon i {
    font-size: 1.55rem;
}

.pricing-card-secondary .features-list li {
    gap: 0.5rem;
}

.pricing-card-secondary .tick-icon {
    display: none;
}

.pricing-card-secondary .features-list li::before {
    content: '•';
    color: #14b8a6;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.12rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50% 50% 50% 0;
    background: rgba(45, 212, 191, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(45, 212, 191, 0.3);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
    transform: rotate(45deg);
    pointer-events: none;
}

.service-icon i {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.pricing-card:hover .service-icon {
    background: rgba(45, 212, 191, 0.15);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-body {
    text-align: left;
}

h2.section-title {
    color: #0D3C3E;
}

/* ... existing styles ... */

.step-num {
    font-size: 3rem;
    font-weight: 700;
    color: #0D3C3E;
    /* Dark Teal for numbers */
    line-height: 1;
    font-family: var(--font-heading);
    min-width: 60px;
}

/* ... existing styles ... */

.pricing-card.featured {
    border: none;
    background: #0D3C3E;
    background: radial-gradient(circle at center, #134e50 0%, #082829 100%);
    color: white;
    transform: scale(1.05);
    /* Slightly larger */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.pricing-card.featured h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.pricing-card.featured .price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
    margin: 0.5rem 0;
}

.pricing-card.featured .sub-price {
    color: #e5e7eb;
    font-weight: 500;
}

.pricing-card.featured p {
    color: #e5e7eb;
}

.pricing-card.featured .features-list li {
    color: #d1d5db;
    /* Light gray text for dark card */
}

.features-list li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--text-secondary);
    /* Restoring default color */
}

.tick-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pricing .features-list li::before {
    flex-shrink: 0;
}

.pricing-secondary .features-list li::before {
    content: '•';
    color: #14b8a6;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.12rem;
}

.pricing-secondary .features-list .tick-icon {
    display: none;
}

.pricing-main .features-list li::before {
    content: none;
}

.pricing-main .features-list .tick-icon {
    display: inline-flex;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: translateY(0);
    margin-top: 0;
    opacity: 1;
}

.pricing-main .features-list li {
    align-items: center;
}

.pricing-main .strengths-list .strengths-icon {
    color: #14b8a6;
}

.pricing-main .notes-list .notes-icon {
    color: #14b8a6;
}

.pricing-card.featured .tick-icon {
    filter: brightness(0) invert(1);
    /* make white */
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Other Services - Bento */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-bento {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--divider);
    transition: 0.3s;
}

.service-bento:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.price-mini {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

/* CTA with Image */
.cta-section {
    background: transparent;
}

.cta-container-flex {
    background: #0D3C3E;
    background: radial-gradient(circle at center, #134e50 0%, #082829 100%);
    border-radius: 0 32px 32px 32px;
    padding: 4.75rem 3.25rem;
    max-width: 1140px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 992px) {
    .cta-container-flex {
        flex-direction: row;
        text-align: left;
        padding: 5.25rem 4rem;
        min-height: 560px;
    }

    .cta-content {
        flex: 0.9;
        text-align: left;
    }

    .cta-image {
        flex: 1.1;
        text-align: right;
    }
}

.cta-drop-img {
    border-radius: 0 360px 360px 360px;
    width: 100%;
    max-width: 470px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.cta-drop-img:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-content h2 {
    color: white;
    margin-top: 0;
}

.cta-content p {
    color: #e0e0e0;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #111827;
    /* Dark footer */
    color: #9CA3AF;
    padding-top: 4rem;
    padding-bottom: 0;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    color: white;
    transition: 0.3s;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-links i {
    font-size: 0.95rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer h3 {
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links li,
.contact-list li {
    margin-bottom: 0.75rem;
}

/* Unified icons: "sjednoť všechny ikony s těmi na webu" -> Bootstrap icons are used. "Dokážeš je případně přebarvit na bílo?" */
.contact-list i {
    margin-right: 0.5rem;
    color: #fff;
    /* White icon requested */
}

.footer-bottom {
    background-color: transparent;
    /* "mentolový pruh zruš" */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* "odděl copyright spíš nějakou linkou" */
    padding: 1.5rem 0;
    color: #6B7280;
    font-size: 0.875rem;
    margin-top: 0;
    width: 100%;
}

.remove-padding-bottom {
    padding-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: min(460px, calc(100vw - 2rem));
    z-index: 3000;
    background: rgba(17, 24, 39, 0.96);
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.95rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-banner p {
    margin: 0;
    color: #d1d5db;
    font-size: 0.92rem;
}

.cookie-banner a {
    color: #99f6e4;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-btn {
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: transparent;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.46rem 0.82rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.cookie-btn:hover {
    border-color: rgba(153, 246, 228, 0.8);
}

.cookie-btn--accept {
    background: #0ea5a1;
    border-color: #0ea5a1;
}


/* Mobile UX tune-up */
@media (max-width: 768px) {
    .section {
        padding: 2.75rem 0;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-container {
        gap: 1rem;
    }

    .hero-image {
        margin-top: -0.65rem;
    }

    .nav-menu {
        max-height: calc(100vh - 78px);
        overflow-y: auto;
    }

    .services-grid,
    .testimonials-grid,
    .pricing-container {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .service-card-box,
    .pricing-card,
    .testimonial-card {
        padding: 1.6rem 1.25rem;
    }

    .testimonial-card {
        min-height: auto;
    }

    .timeline-item {
        align-items: flex-start;
    }

    .timeline-number {
        margin-right: 1rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .about-container,
    .cta-container-flex {
        padding: 2.25rem 1.25rem;
        gap: 2rem;
    }

    .portfolio-showcase {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .portfolio-card-content {
        max-width: none;
        padding: 0 1rem 1rem;
    }

    .footer-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .cookie-banner {
        right: 0.75rem;
        bottom: 0.75rem;
        width: min(460px, calc(100vw - 1.5rem));
    }
}

/* ===== Focus-visible states (keyboard accessibility) ===== */
.service-card-box:focus-within {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(45, 212, 191, 0.2);
}

.portfolio-card:focus-within {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(45, 212, 191, 0.15);
}

.pricing-card:focus-within {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
}

.testimonial-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 202, 0.4);
    box-shadow: 0 8px 24px rgba(13, 60, 62, 0.25);
}

.portfolio-link:focus-visible {
    color: var(--primary-dark);
}

.portfolio-link:focus-visible::after {
    transform: translateX(2px);
}

.read-more-btn:focus-visible {
    color: #ffffff;
}

.social-links a:focus-visible {
    background: var(--primary-color);
    color: white;
}

.nav-link:focus-visible {
    color: var(--primary-color);
}

/* ===== Scroll reveal ===== */
.hero-content {
    animation: fadeIn 0.7s ease-out both;
}

.hero-image {
    animation: fadeIn 0.7s ease-out 0.1s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Reduced motion (accessibility) ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-content,
    .hero-image {
        animation: none;
        opacity: 1;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .service-card-box:hover,
    .portfolio-card:hover,
    .pricing-card:hover,
    .testimonial-card:hover,
    .drop-shape:hover,
    .cta-drop-img:hover,
    .btn-primary:hover,
    .timeline-item:hover .timeline-number {
        transform: none;
    }

    .portfolio-card:hover .portfolio-card-image {
        transform: none;
    }

    .service-card-box:focus-within,
    .portfolio-card:focus-within,
    .pricing-card:focus-within,
    .testimonial-card:focus-within {
        transform: none;
    }
}
