/* ==========================================================================
   Design Tokens & Variables (Lighter Slate Navy theme - Scaled Down)
   ========================================================================== */
:root {
    --bg-dark: #1d2b3c; /* Lighter, softer slate-navy blue */
    --bg-dark-card: #26364a; 
    --bg-dark-card-hover: #2f425b;
    --bg-cream: #f4f3ef;
    --bg-white: #ffffff;
    
    --text-white: #ffffff;
    --text-slate: #cbd5e1; /* Brightened slate gray for better legibility */
    --text-dark: #121b2d;
    --text-dark-muted: #475569;
    
    --accent-green: #2cd483;
    --accent-green-glow: rgba(44, 212, 131, 0.35);
    --border-color: rgba(44, 212, 131, 0.25);
    --border-color-hover: rgba(44, 212, 131, 0.55);
    --border-dark: rgba(255, 255, 255, 0.12);
    
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1080px; /* Tightened from 1200px for a more compact container */
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 0),
        radial-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 0);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    pointer-events: none;
    z-index: 9999;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Background Glow Effects */
.glow-effect {
    position: fixed;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 212, 131, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    transition: transform 0.5s ease-out;
}

/* Common Layout Elements */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-tag {
    font-size: 0.75rem; /* Scaled down */
    font-weight: 700;
    color: var(--text-slate);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-tag.green-tag {
    color: var(--accent-green);
}

.section-tag.subtitle-tag {
    font-size: 0.7rem;
    color: var(--text-slate);
    letter-spacing: 0.25em;
    margin-top: 1.25rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); /* Scaled down */
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.section-title.dark-title {
    color: var(--text-dark);
}

.section-title.white-title {
    color: var(--text-white);
}

.text-white-desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Button Components */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-green);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.85rem; /* Scaled down */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.85rem 1.6rem; /* Scaled down */
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(44, 212, 131, 0.2);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #26c276;
    box-shadow: 0 6px 18px rgba(44, 212, 131, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-white);
    font-weight: 800;
    font-size: 0.85rem; /* Scaled down */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.85rem 1.6rem; /* Scaled down */
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
    width: 100%;
    padding: 1.25rem 0; /* Scaled down */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand .logo-link {
    font-size: 1.4rem; /* Scaled down */
    font-weight: 900;
    letter-spacing: 0.02em;
}

.logo-white {
    color: var(--text-white);
}

.logo-green {
    color: var(--accent-green);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem; /* Scaled down */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem; /* Scaled down */
}

.nav-links a {
    font-size: 0.8rem; /* Scaled down */
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-slate);
    padding: 0.4rem 0;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-green);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-white);
}

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

.btn-nav {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-green);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.75rem; /* Scaled down */
    letter-spacing: 0.05em;
    padding: 0.6rem 1.1rem; /* Scaled down */
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.btn-nav:hover {
    background-color: #26c276;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(44, 212, 131, 0.25);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 7rem 0 4rem 0; /* Scaled down */
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem; /* Scaled down */
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: clamp(2.3rem, 4.5vw, 3.5rem); /* Scaled down from 4.4rem */
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

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

.green-box {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--bg-dark);
    padding: 0 12px;
    border-radius: 6px;
    font-weight: 900;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem); /* Scaled down */
    font-weight: 300;
    color: var(--text-slate);
    line-height: 1.55;
    margin-bottom: 2rem; /* Scaled down */
    max-width: 550px;
}

.hero-description strong {
    color: var(--text-white);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem; /* Scaled down */
}

.hero-capsules {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem; /* Scaled down */
}

.capsule {
    font-size: 0.65rem; /* Scaled down */
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.95rem; /* Scaled down */
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-slate);
    transition: var(--transition-smooth);
}

.capsule.active {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--bg-dark);
}

.capsule:hover:not(.active) {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

/* Hero Image */
.hero-image-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px; /* Made slightly wider to show more gym fading out */
    overflow: hidden;
    background-color: transparent;
    border-radius: 0; /* Remove harsh box borders */
    box-shadow: none; /* Remove boxed shadow */
}

.trainer-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.02);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-wrapper:hover .trainer-img {
    transform: scale(1.03);
}

.image-fade-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to right, var(--bg-dark) 0%, rgba(29, 43, 60, 0.9) 10%, rgba(29, 43, 60, 0.3) 30%, transparent 50%),
        linear-gradient(to top, var(--bg-dark) 0%, transparent 8%),
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 8%);
    pointer-events: none;
}

/* ==========================================================================
   Services Section (Light Cream Theme)
   ========================================================================== */
.services-outer-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 3.5rem 0; /* Scaled down and tightened */
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-desc-intro {
    font-size: clamp(1rem, 1.8vw, 1.2rem); /* Scaled down */
    font-weight: 500;
    color: var(--text-dark-muted);
    margin-bottom: 1.75rem; /* Scaled down and tightened */
    max-width: 650px;
}

.services-outer-section .section-desc-intro {
    color: var(--text-slate);
}

/* Highlight Box (01, 05) styling */
.highlight-container-box {
    border-radius: 20px; /* Scaled down */
    padding: 2.5rem 3rem; /* Scaled down from 3.5rem */
    display: grid;
    grid-template-columns: 1fr 240px; /* Scaled down */
    gap: 2.5rem; /* Scaled down from 3.5rem */
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem; /* Scaled down and tightened */
}

.dark-theme-box {
    background-color: var(--bg-dark-card);
    color: var(--text-white);
    border: 1px solid var(--border-dark);
}

.box-content-left {
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.inner-tag {
    font-size: 0.7rem; /* Scaled down */
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.box-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem); /* Scaled down from 2.1rem */
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.box-text {
    font-size: 0.95rem; /* Scaled down */
    color: var(--text-slate);
    line-height: 1.55;
    margin-bottom: 1.5rem; /* Scaled down */
    font-weight: 300;
}

.tip-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background-color: rgba(44, 212, 131, 0.08);
    border-left: 3px solid var(--accent-green);
    padding: 0.85rem 1.1rem; /* Scaled down */
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem; /* Scaled down */
}

.tip-icon {
    font-size: 1rem;
    line-height: 1.2;
}

.tip-text {
    font-size: 0.85rem; /* Scaled down */
    color: #e2e8f0;
    line-height: 1.45;
}

/* Inner sub-cards */
.sub-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.sub-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem; /* Scaled down */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.sub-card.recommended {
    border-color: var(--accent-green);
    background-color: rgba(44, 212, 131, 0.02);
}

.badge-recommended {
    position: absolute;
    top: 0;
    right: 1.5rem;
    transform: translateY(-50%);
    background-color: var(--accent-green);
    color: var(--bg-dark);
    font-size: 0.6rem; /* Scaled down */
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
}

.sub-card-tag {
    font-size: 0.6rem; /* Scaled down */
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.sub-card-title {
    font-size: 1.05rem; /* Scaled down */
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.sub-card-text {
    font-size: 0.8rem; /* Scaled down */
    color: var(--text-slate);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.sub-card-duration {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-slate);
    margin-top: auto;
}

/* Box Action Right */
.box-action-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 1.5rem; /* Scaled down */
}

.action-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
}

.action-subtext {
    font-size: 0.7rem; /* Scaled down */
    color: var(--text-slate);
    font-weight: 500;
}

.giant-num-bg {
    position: absolute;
    bottom: -3rem;
    right: -1.25rem;
    font-size: 14rem; /* Scaled down from 16rem */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    line-height: 1;
    user-select: none;
    z-index: 1;
}

/* Card lists and bullets */
.card-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem; /* Scaled down from 2rem */
}

.card-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.85rem; /* Scaled down */
    line-height: 1.4;
    color: var(--text-slate);
    font-weight: 500;
}

.dark-theme-box .card-bullets li {
    color: #cbd5e1;
}

.check-icon {
    color: var(--accent-green);
    font-weight: 900;
}

/* Service Cards (02, 03, 04) Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* Scaled down from 2rem */
    margin-bottom: 2rem; /* Scaled down and tightened */
}

.service-card {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px; /* Scaled down */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-dark-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 35px rgba(44, 212, 131, 0.12);
}

.card-img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05) grayscale(100%);
    transition: var(--transition-smooth);
}

.service-card:hover .card-img-wrap img {
    filter: brightness(0.95) contrast(1.05) grayscale(0%);
    transform: scale(1.03);
}

#sc-priprava .card-img-wrap img {
    filter: brightness(0.7) contrast(1.15) saturate(1.1) sepia(0.05) grayscale(100%);
}

#sc-priprava:hover .card-img-wrap img {
    filter: brightness(0.8) contrast(1.15) saturate(1.1) sepia(0.05) grayscale(0%);
    transform: scale(1.03);
}

.card-body {
    padding: 1.75rem; /* Scaled down from 2.25rem */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-tag {
    font-size: 0.6rem; /* Scaled down */
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.2rem; /* Scaled down from 1.35rem */
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.75rem; /* Scaled down */
    text-transform: uppercase;
    line-height: 1.25;
}

.card-desc {
    font-size: 0.85rem; /* Scaled down */
    color: var(--text-slate);
    line-height: 1.5;
    margin-bottom: 1.25rem; /* Scaled down */
    font-weight: 400;
}

.card-btn {
    width: 100%;
    margin-top: auto;
}

/* Section 05: Mentoring Box tweaks */
.mentoring-box {
    margin-bottom: 0;
}

.mentoring-bullets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.inline-bullets {
    margin-bottom: 0;
}

/* ==========================================================================
   About Section (Dark Theme)
   ========================================================================== */
.about-section {
    padding: 3.5rem 0; /* Scaled down and tightened */
    position: relative;
    background-color: var(--bg-cream);
    color: var(--text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem; /* Scaled down from 4.5rem */
    align-items: start;
}

/* Image collage grid */
.collage-container {
    width: 100%;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.collage-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background-color: #0c1420;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
    transition: var(--transition-smooth);
}

.collage-img:hover img {
    filter: brightness(0.95) contrast(1.05);
}

.item-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: 9/14;
}

.item-square-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 1;
}

.item-square-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 1;
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem; /* Scaled down */
}

.badge-outline {
    font-size: 0.6rem; /* Scaled down */
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-slate);
    text-transform: uppercase;
}

.badge-outline.green {
    border-color: var(--accent-green);
    color: var(--accent-green);
    background-color: rgba(44, 212, 131, 0.02);
}

/* Quote box */
.quote-border-left {
    border-left: 3px solid var(--accent-green);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 1.25rem 1.75rem; /* Scaled down from 2rem */
    margin-bottom: 1.5rem; /* Scaled down */
    border-radius: 0 12px 12px 0;
}

.quote-border-left p {
    font-size: 1.05rem; /* Scaled down */
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 0.4rem;
    color: var(--text-white);
}

.quote-border-left cite {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-green);
    font-style: normal;
    text-transform: uppercase;
}

.about-quote {
    border-left: 3px solid var(--accent-green);
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--accent-green);
    padding: 1.25rem 1.75rem; /* Scaled down */
    margin-bottom: 1.5rem; /* Scaled down */
    border-radius: 0 12px 12px 0;
    font-size: 1.05rem; /* Scaled down */
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.about-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-green);
    font-style: normal;
    text-transform: uppercase;
}

.about-text {
    font-size: 0.95rem; /* Scaled down */
    color: var(--text-dark-muted);
    line-height: 1.65;
    margin-bottom: 2rem; /* Scaled down from 3rem */
    font-weight: 300;
}

.about-text strong {
    color: var(--text-dark);
    font-weight: 550;
}

.about-section .badge-outline {
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark-muted);
}

.about-section .education-block {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Education subsection */
.education-block {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.75rem;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; /* Scaled down */
    margin-top: 1.25rem;
}

.edu-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem; /* Scaled down */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.edu-card:hover {
    border-color: var(--border-color-hover);
    background-color: var(--bg-white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.edu-category {
    font-size: 0.6rem; /* Scaled down */
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.edu-title {
    font-size: 0.9rem; /* Scaled down */
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.edu-desc {
    font-size: 0.75rem; /* Scaled down */
    color: var(--text-dark-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Testimonials Section (2x2 Grid - Scaled Down)
   ========================================================================== */
.testimonials-section {
    padding: 3.5rem 0; /* Scaled down and tightened */
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; /* Scaled down gap for horizontal layout */
    margin-top: 1.75rem;
}

.testimonial-card-premium {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px; /* Scaled down from 16px */
    padding: 1.25rem 1.5rem; /* Much more compact padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: var(--transition-smooth);
}

.testimonial-card-premium:hover {
    transform: translateY(-4px);
    background-color: var(--bg-dark-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 35px rgba(44, 212, 131, 0.15);
}

.quote-sign {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem; /* Scaled down from 5rem */
    font-weight: 900;
    color: var(--accent-green);
    opacity: 0.06;
    line-height: 1;
    position: absolute;
    top: 0.5rem; /* Re-positioned */
    left: 1rem;
    user-select: none;
}

.testimonial-text {
    font-size: 0.85rem; /* Scaled down from 0.95rem */
    color: #cbd5e1;
    font-weight: 350;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.25rem; /* Scaled down from 2rem */
    z-index: 2;
    position: relative;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Scaled down */
    z-index: 2;
}

.client-avatar-wrap {
    width: 40px; /* Scaled down from 46px */
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-dark);
}

.client-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.client-name {
    font-size: 0.8rem; /* Scaled down from 0.85rem */
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.05em;
}

.client-role {
    font-size: 0.65rem; /* Scaled down from 0.7rem */
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.08em;
}

/* ==========================================================================
   Modal Popup Styles (Scaled Down Content)
   ========================================================================== */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(9, 14, 23, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: #1a2a40;
    border: 1px solid var(--accent-green);
    border-radius: 20px;
    width: 90%;
    max-width: 600px; /* Scaled down from 650px */
    padding: 2.75rem; /* Scaled down from 3.5rem */
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 80vh;
    overflow-y: auto;
    color: var(--text-white);
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2rem;
    color: var(--text-slate);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent-green);
    transform: rotate(90deg);
}

/* Modal Content Typography */
.modal-body-title {
    font-size: 1.45rem; /* Scaled down */
    font-weight: 900;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.modal-body-content h4 {
    font-size: 1.05rem; /* Scaled down */
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
}

.modal-body-content p {
    font-size: 0.9rem; /* Scaled down */
    color: #cbd5e1;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    font-weight: 350;
}

.modal-body-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.modal-body-content li {
    font-size: 0.85rem; /* Scaled down */
    color: #cbd5e1;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.modal-body-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 900;
}

.modal-body-content strong {
    color: var(--text-white);
}

/* ==========================================================================
   Call to Action (CTA) & Contact
   ========================================================================== */
.cta-section {
    padding: 3.5rem 0 4rem 0; /* Scaled down and tightened */
    background-color: var(--bg-dark);
}

.cta-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Scaled down */
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cta-title .green-text {
    color: var(--accent-green);
}

.cta-description {
    font-size: 1rem; /* Scaled down */
    color: var(--text-slate);
    margin-bottom: 3rem; /* Scaled down */
    max-width: 600px;
}

.cta-flex-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3rem; /* Scaled down */
    align-items: start;
}

.cta-left-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Scaled down */
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.timeline-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-slate);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: rgba(18, 27, 45, 0.35);
    padding: 1.5rem 1.75rem; /* Scaled down from 2rem / 2.25rem */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.step-num {
    font-size: 1.25rem; /* Scaled down */
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
}

.step-details h5 {
    font-size: 0.9rem; /* Scaled down */
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.1rem;
}

.step-details p {
    font-size: 0.8rem; /* Scaled down */
    color: var(--text-slate);
    line-height: 1.3;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

/* Full-width Process Timeline */
.process-timeline-full {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    width: 100%;
}

/* New Grid Container for Contact section */
.cta-grid-container {
    display: grid;
    grid-template-columns: 0.9fr 1.15fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

/* Contact Details & Info Block */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-slate);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.75rem;
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-slate);
    text-transform: uppercase;
}

.detail-value, .detail-link {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    width: fit-content;
}

.detail-link {
    color: var(--accent-green);
}

.detail-link:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    transform: translateX(3px);
}

/* WhatsApp QR Card Column Wrapper */
.whatsapp-qr-block {
    margin-top: 1rem;
}

.whatsapp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-green);
    color: var(--bg-dark);
    padding: 2.75rem 2rem;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 15px 35px rgba(44, 212, 131, 0.12);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.whatsapp-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(44, 212, 131, 0.25);
}

.whatsapp-title {
    font-size: 1.05rem; /* Scaled down */
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem; /* Scaled down */
    line-height: 1.25;
}

.qr-wrapper {
    background-color: var(--text-white);
    padding: 0.85rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem; /* Scaled down */
    width: 150px; /* Scaled down from 180px */
    height: 150px;
}

.qr-code-img {
    width: 100%;
    height: auto;
    display: block;
}

.whatsapp-subtitle {
    font-size: 0.75rem; /* Scaled down */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.whatsapp-card:hover .whatsapp-subtitle {
    opacity: 1;
    letter-spacing: 0.08em;
}

/* Contact Form Container & Form Fields */
.contact-form-container {
    width: 100%;
}

.contact-form-container .contact-title {
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-slate);
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    background-color: var(--bg-dark-card);
    color: var(--text-white);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-color: var(--accent-green);
    box-shadow: 0 0 12px var(--accent-green-glow);
    background-color: var(--bg-dark-card-hover);
}

/* Style select element custom arrow */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232cd483' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background-color: var(--bg-dark-card);
    color: var(--text-white);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
    margin-top: 0.5rem;
    cursor: pointer;
}

/* Form Submission Status Msg */
.form-status {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.form-status.success {
    padding: 0.75rem 1rem;
    background-color: rgba(44, 212, 131, 0.15);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

.form-status.error {
    padding: 0.75rem 1rem;
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #ef4444;
}

/* Service Card Price Tags */
.card-price-tag {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Mentoring Highlight Box Price Block */
.mentoring-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.1rem;
    text-align: center;
}

.price-val {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1.1;
}

.price-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-slate);
    opacity: 0.85;
}

/* FAQ Accordion Section (Full-width) */
.faq-container-full {
    width: 100%;
    margin-bottom: 3.5rem;
}

.faq-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-slate);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 4px 15px rgba(44, 212, 131, 0.05);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1.1rem 1.5rem;
    text-align: left;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    outline: none;
}

.faq-question {
    padding-right: 1.5rem;
}

.faq-icon-acc {
    font-size: 1.25rem;
    color: var(--accent-green);
    transition: transform 0.3s ease;
    font-weight: 400;
}

/* Accordion Active State */
.faq-item.active {
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(44, 212, 131, 0.08);
}

.faq-item.active .faq-icon-acc {
    transform: rotate(45deg); /* Rotates "+" to "x" */
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 1.5rem 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
}

.faq-content p {
    font-size: 0.9rem;
    color: var(--text-slate);
    line-height: 1.55;
}

/* Modal Call-To-Action Button & Price Badge */
.modal-price-badge {
    display: inline-block;
    background-color: rgba(44, 212, 131, 0.1);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-cta-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.1rem;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
}

/* ==========================================================================
   Approach Section (Kde se vidíš?)
   ========================================================================== */
.pristup-section {
    padding: 3.5rem 0; /* Scaled down and tightened */
    background-color: var(--bg-cream);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.pristup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/pristup_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.035; /* Very subtle background watermark */
    pointer-events: none;
    filter: grayscale(100%) contrast(1.1);
    z-index: 1;
}

.pristup-section .section-container {
    position: relative;
    z-index: 2;
}

.text-white-desc {
    color: var(--text-slate);
}

.pristup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.pristup-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.pristup-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-white);
    border-color: var(--accent-green);
    box-shadow: 0 15px 35px rgba(44, 212, 131, 0.12);
}

.pristup-card.highlighted {
    border-color: var(--accent-green);
    box-shadow: 0 12px 28px rgba(44, 212, 131, 0.10);
}

.pristup-card.highlighted:hover {
    border-color: var(--accent-green);
    box-shadow: 0 15px 35px rgba(44, 212, 131, 0.20);
}

.pristup-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.pristup-card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.pristup-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.pristup-card-desc {
    font-size: 0.8rem;
    color: var(--text-dark-muted);
    line-height: 1.5;
    margin-bottom: 1.1rem;
    flex-grow: 1;
}

.pristup-card-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.pristup-card-link .arrow {
    transition: transform 0.2s ease;
}

.pristup-card-link:hover {
    color: var(--accent-green);
}

.pristup-card-link:hover .arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Podcasts & Media Section
   ========================================================================== */
.podcasts-section {
    padding: 3.5rem 0; /* Scaled down and tightened */
    background-color: var(--bg-cream);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.75rem;
}

.podcast-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.podcast-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-white);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.podcast-show {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.podcast-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.podcast-desc {
    font-size: 0.8rem;
    color: var(--text-dark-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.podcast-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.podcast-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.spotify-link {
    background-color: rgba(30, 215, 96, 0.1);
    color: #1ed760;
    border: 1px solid rgba(30, 215, 96, 0.2);
}

.spotify-link:hover {
    background-color: #1ed760;
    color: #000000;
    border-color: #1ed760;
    box-shadow: 0 4px 12px rgba(30, 215, 96, 0.35);
}

.youtube-link {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.youtube-link:hover {
    background-color: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0; /* Scaled down */
    text-align: center;
    color: var(--text-slate);
    font-size: 0.8rem;
    background-color: var(--bg-dark);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Tablet & Smaller Screens */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .hero-capsules {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 360px;
        margin: 0 auto;
    }

    .highlight-container-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .box-action-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .collage-container {
        max-width: 420px;
        margin: 0 auto;
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .pristup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .cta-grid-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .cta-title, .cta-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-right-content {
        justify-content: center;
    }
}

/* Small Tablets / Large Mobiles */
@media (max-width: 768px) {
    .site-header {
        position: relative;
        padding: 1rem 0;
        background-color: var(--bg-dark);
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 0.75rem 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .sub-cards-grid {
        grid-template-columns: 1fr;
    }

    .mentoring-bullets-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pristup-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.5rem;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.5rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        padding: 1.5rem 1.25rem;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.25rem 0;
    }

    .step-item {
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-link {
        margin: 0 auto;
    }
    
    .modal-content {
        padding: 2rem 1.25rem;
    }
}

/* ==========================================================================
   Instagram Link in Bio Page (bio.html)
   ========================================================================== */
.bio-page-body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 1rem;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

.bio-bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 212, 131, 0.05) 0%, rgba(9, 14, 23, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.bio-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bio-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.bio-avatar-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid var(--accent-green);
    overflow: hidden;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(44, 212, 131, 0.15);
}

.bio-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.bio-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.bio-tagline {
    font-size: 0.9rem;
    color: var(--text-slate);
    font-weight: 400;
}

.bio-links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.bio-link-btn {
    display: block;
    width: 100%;
    padding: 1.15rem 1.5rem;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bio-link-btn:hover {
    transform: translateY(-2px);
    background-color: var(--bg-dark-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.bio-link-btn .btn-text {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.bio-link-btn .btn-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-slate);
    line-height: 1.4;
}

/* Highlight style for Komplexní diagnostika */
.bio-link-btn.primary-highlight {
    border: 1.5px solid rgba(44, 212, 131, 0.4);
    background: linear-gradient(135deg, rgba(44, 212, 131, 0.04) 0%, rgba(9, 14, 23, 0.4) 100%);
    box-shadow: 0 4px 15px rgba(44, 212, 131, 0.08);
}

.bio-link-btn.primary-highlight:hover {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(44, 212, 131, 0.08) 0%, rgba(9, 14, 23, 0.6) 100%);
    box-shadow: 0 8px 25px rgba(44, 212, 131, 0.15);
}

.bio-link-btn.primary-highlight .btn-text {
    color: var(--accent-green);
}

/* Pulse animation dot for highlighted link */
.btn-highlight-dot {
    position: absolute;
    top: 1.5rem;
    left: 1.25rem;
    width: 8px;
    height: 8px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(44, 212, 131, 0.4);
    animation: bio-pulse 2s infinite;
}

@keyframes bio-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 212, 131, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(44, 212, 131, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 212, 131, 0);
    }
}

/* Secondary Button Style */
.bio-link-btn.secondary-btn {
    border: 1px dashed rgba(255, 255, 255, 0.15);
    background-color: transparent;
}

.bio-link-btn.secondary-btn:hover {
    border-style: solid;
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.02);
}

/* Footer & Socials */
.bio-footer {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.bio-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bio-social-icon {
    color: var(--text-slate);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bio-social-icon:hover {
    color: var(--accent-green);
    background-color: rgba(44, 212, 131, 0.05);
    border-color: rgba(44, 212, 131, 0.2);
    transform: translateY(-2px);
}

.bio-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

