/* HERO SECTION - Matching Homepage Design */

.hero-section {
   background: #ffffff;
    min-height: 900px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 4rem 2rem;
}

/* Background Effects - Matching Homepage */
.hero-section .background-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-section .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orb 20s ease-in-out infinite;
}

.hero-section .orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--main-purple) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.hero-section .orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-teal) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.hero-section .orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--main-purple) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation-delay: 14s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Water Flow Animation */
.hero-section .water-flow {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.15;
}

.hero-section .flow-line {
    width: 100%;
    height: 100%;
}

/* Floating Particles */
.hero-section .floating-particles {
    position: absolute;
    inset: 0;
}

.hero-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--main-purple);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-particle 15s ease-in-out infinite;
}

.hero-section .particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-section .particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.hero-section .particle-3 {
    top: 80%;
    left: 40%;
    animation-delay: 10s;
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(50px, -100px); opacity: 0.8; }
}

/* Container */
.hero-container {
   width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    padding: 0 ;
    box-sizing: border-box;
    z-index: 1;
}
.title-line:last-child {
    font-size: 0.5em;
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2.5rem;
}
.hero-title {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-navy);
    margin: 0;
}
.hero-title .title-line {
    display: block;
}
.title-line:first-child {
    font-size: var(--size-heading-medium);
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 0.05em;
    margin-bottom: 0.09em;
}

.title-line:last-child {
    font-size: var(--size-heading-small);
    font-weight: 600;
    color: var(--neutral-slate);
    margin-top: 0.6em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--lighter-main-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-size: var(--size-heading-hero);
    font-weight: 800;
    max-width: fit-content !important;
}


.hero-subtitle .highlight-accent {
    padding: 0 6px;
    background: var(--accent-teal);
    font-weight: 700;
    color: #636a74;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    /* background: rgba(250, 250, 250, 0.8);
    border: 1px solid rgba(121, 72, 156, 0.13); */
    border-radius: 16px;
    transition: all 0.3s ease;
    /* box-shadow: var(--shadow-sm); */
}

/* .stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
} */

.stat-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-purple);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.stat:hover .stat-icon svg {
    transform: scale(1.1);
}

.stat-icon .icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #b6af51 0%, var(--lighter-main-purple) 100%);
    border-radius: 12px;
    opacity: 0.1;
}

.stat-text {
    flex: 1;
    
}

.stat-number {
    font-weight: 700;
    color: var(--main-purple);
    font-size: 18px;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-slate);
}

.reviews-badges {
    margin-top: var(--space-4);
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
}

/* CTA buttons use global styles from global.css */

/* Visual Section */
.hero-visual {
    position: relative;
    width: 100%;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fdfdfd;
}

.image-frame img {
    border-radius: 14px;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   PROJECTS SERVICE SECTION
   ============================================ */

.service-section {
    background: #ffffff;
    padding: var(--space-20) var(--space-8);
    position: relative;
    overflow: hidden;
}

.service-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Header */
.service-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto ;
}

/* Title styles moved to global style.css */

.service-subtitle {
    font-size: var(--size-subtitle);
    color: var(--neutral-slate);
    line-height: 1.6;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

/* Service Card */
.service-card {
    background: #fdfdff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(121, 72, 156, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    justify-content: space-evenly;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(121, 72, 156, 0.2);
}

/* Highlight Card (4th card) */
.service-card.highlight-card {
    background: linear-gradient(135deg, rgba(121, 72, 156, 0.05) 0%, rgba(243, 231, 106, 0.05) 100%);
    border-color: rgba(121, 72, 156, 0.2);
}

.service-card.highlight-card:hover {
    background: linear-gradient(135deg, rgba(121, 72, 156, 0.08) 0%, rgba(243, 231, 106, 0.08) 100%);
}

/* Card Icon */
.service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--main-purple) 0%, rgba(99, 92, 19, 0.432) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 0.5rem;
  justify-self: start;
}
.service-card .top-row {
    align-items: center;
    justify-content: start;
    gap:1.5rem;
}

.service-card-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    transition: filter 0.3s ease;
}

.service-card-icon svg {
    width: 34px;
    height: 34px;
}

.highlight-card .service-card-icon {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-darker-teal) 100%);
    color: var(--dark-navy);
}

/* Card Number */
.service-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(121, 72, 156, 0.055);
    line-height: 1;
}

/* Card Title */
.service-card-title {
    font-size: var(--size-heading-small);
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 auto;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    width: 80%;
    margin-bottom: 0;
}

/* Card Description */
.service-card-description {
    font-size:  var(--size-body);
    color: var(--neutral-slate);
    line-height: 1.6;
    margin: 0;
    margin-top: 1rem;
    flex: 1;
}

/* Card List */
.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 0.75rem;
}

.service-card-list li {
    font-size:  var(--size-body);
    color: var(--neutral-slate);
    padding-left: 1.5rem;
    position: relative;
}

.service-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--main-purple);
    font-weight: 700;
}

/* Time Saved Badge (for 4th card) */
.time-saved-badge {
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--lighter-main-purple) 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 14px;
    text-align: center;
    margin-top: 0.5rem;
}

.time-saved-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-saved-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Service Detail Slider */
.service-detail-slider {
    position: relative;
    margin-top: 4rem;
    height: 600px;
}

.service-detail-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.service-detail-slide.active {
    display: grid;
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.service-detail-slide.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-title {
    font-size:  var(--size-heading-small);
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.2;
}

.service-detail-text {
    font-size:  var(--size-body);
    color: var(--neutral-slate);
    line-height: 1.7;
    margin: 0;
}

.service-detail-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-detail-features li {
    font-size:  var(--size-body);
    color: var(--neutral-slate);
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}

.service-detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--main-purple);
    font-weight: 800;
    font-size: 1.1rem;
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 2rem auto;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Slider Indicators */
.service-detail-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    position: absolute;
    top: -80px;
    left: 48%;
}

.service-detail-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-detail-indicators .indicator:hover {
    background: #94a3b8;
    transform: scale(1.1);
}

.service-detail-indicators .indicator.active {
    background: var(--main-purple);
    width: 32px;
    border-radius: 6px;
}

/* Service CTA Section */
.service-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* ============================================
   CISTIRNY PROCESS SECTION
   ============================================ */

.process-section {
    background: #ffffff;
    padding: var(--space-20) var(--space-8);
    position: relative;
    overflow: hidden;
}

.process-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}

/* Header */
.process-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-12);
}

/* Title styles moved to global style.css */

.process-subtitle {
    margin-top: var(--space-4);
    font-size: var(--size-subtitle);
    color: var(--neutral-slate);
    line-height: 1.6;
}

/* Process Steps Wrapper */
.process-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
}

/* Connecting line between steps */
.process-steps-wrapper::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-teal) 0%, var(--main-purple) 50%, var(--accent-teal) 100%);
    opacity: 0.3;
    z-index: 0;
}

/* Individual Step */
.process-step {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-color: rgba(121, 72, 156, 0.2);
    box-shadow: 0 12px 32px rgba(121, 72, 156, 0.15);
    background: rgba(255, 255, 255, 0.9);
    justify-content: space-between;
}



/* Accent dot on each step */
.process-step::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--accent-teal) 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(121, 72, 156, 0.1);
    z-index: 1;
}

.process-container .step-number {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0 0 0.75rem 0;
    display: block;
    padding: 0;
}

.process-section .step-title {
    font-size: var(--size-heading-small);
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.step-description {
    font-size: 1.125rem;
    color: var(--neutral-slate);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.step-features li {
    font-size: var(--size-body);
    color: var(--neutral-slate);
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Basic Package Badge - Process Section Specific */
.process-section .basic-package-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(17, 138, 61, 0.08) 0%, rgba(17, 138, 61, 0.04) 100%);
    border: 1px solid rgba(17, 138, 61, 0.2);
    border-radius: 12px;
    color: #0f8a3e;
    font-weight: 600;
    font-size: 0.875rem;
}

.process-section .basic-package-badge svg {
    width: 18px;
    height: 18px;
}

/* Process CTA */
.process-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ============================================
   PROJECTS HOOK SECTION
   ============================================ */

.hook-section {
    background: #ffffff;
    padding: var(--space-20) var(--space-8);
    position: relative;
}

.hook-container {
    max-width: 1320px;
    margin: 0 auto;
}

.hook-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.hook-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-12);
}

.hook-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.hook-subtitle {
    font-size: var(--size-subtitle);
    color: var(--neutral-slate);
    margin: 0;
    line-height: 1.6;
}

.hook-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Karta 1 - Jemný akcent */
.hook-benefit-item:nth-child(1) {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(121, 72, 156, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(121, 72, 156, 0.1);
}

.hook-benefit-item:nth-child(1):hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(121, 72, 156, 0.15);
    border-color: rgba(121, 72, 156, 0.3);
}

/* Karta 2 - Nejvýraznější akcent (kompletní řešení) */
.hook-benefit-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(121, 72, 156, 0.08) 0%, rgba(243, 231, 106, 0.08) 100%);
    border: 2px solid var(--main-purple);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(121, 72, 156, 0.2);
    position: relative;
}

.hook-benefit-item:nth-child(2)::before {
    content: 'NEJLEPŠÍ VOLBA';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--lighter-main-purple) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.hook-benefit-item:nth-child(2):hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(121, 72, 156, 0.25);
    border-color: var(--lighter-main-purple);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--lighter-main-purple) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
}

.hook-benefit-item:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--lighter-main-purple) 100%);
    box-shadow: 0 4px 12px rgba(121, 72, 156, 0.3);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

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

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1.125rem;
    color: var(--neutral-slate);
    margin: 0;
    line-height: 1.6;
}

.hook-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hook-note {
    font-size: 1.0625rem;
    color: var(--neutral-slate);
    margin: 0;
}

/* =========================
   CISTIRNY - HOW IT WORKS SECTION
   Added here to keep related styles together.
========================= */
.cistirny-process-section{
    padding:56px 20px;
    background:var(--surface, #ffffff);
    color:var(--text-primary, #222);
}
.cistirny-process-container{max-width:1120px;margin:0 auto}
.cistirny-process-header .sub{color:var(--neutral-slate);margin:0 0 24px}
.process-steps{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr;gap:18px}
.step{display:flex;gap:18px;align-items:flex-start;padding:18px;border-radius:12px;box-shadow:0 6px 18px rgba(43,18,86,0.04)}
.step-index{min-width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;color:#fff;font-size:16px;flex-shrink:0}
.standard-step{background:linear-gradient(180deg, rgba(121,72,156,0.06), rgba(121,72,156,0.02));border:1px solid rgba(121,72,156,0.08)}
.standard-step .step-index{background:var(--main-purple)}
.optional-step{background:linear-gradient(180deg, rgba(255,210,74,0.06), rgba(255,210,74,0.02));border:1px solid rgba(218,165,32,0.12)}
.optional-step .step-index{background:var(--accent-teal, #d89e1a)}
.step-body{flex:1}
.step-title{margin:0 0 6px;font-size:18px;color:var(--dark-navy)}
.step-text{margin:0;color:var(--neutral-slate)}
.basic-badge{display:inline-block;margin-top:10px;background:rgba(17,138,61,0.06);color:var(--success, #0f8a3e);padding:6px 12px;border-radius:999px;font-size:13px}
.process-break{display:flex;align-items:center;justify-content:center;padding:8px 0}
.process-break .break-line{width:100%;border-top:2px dashed rgba(121,72,156,0.16);padding-top:12px;text-align:center;color:var(--dark-navy)}
.process-break .break-text{background:var(--surface, #fff);padding:0 14px;font-weight:600}
.soft-nudge{margin-top:8px;color:var(--main-purple);font-weight:600}
.process-ctas{display:flex;gap:14px;margin-top:26px}
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 18px;border-radius:10px;text-decoration:none;font-weight:700}
.btn-primary{background:linear-gradient(135deg,var(--main-purple),var(--lighter-main-purple));color:#fff}
.btn-primary:focus{outline:3px solid rgba(121,72,156,0.16);outline-offset:3px}
.btn-secondary{background:var(--warning-amber, #ffd24a);color:var(--dark-navy)}

/* Roadmap (polished alternating vertical timeline) for cistirny */
.roadmap{
    position:relative;
    padding:3rem 0 1rem;
    counter-reset:roadmap;
}
 .services-menu {
        grid-template-columns: repeat(4, 1fr);
    }
/* central line */
.roadmap::before{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:0;
    bottom:0;
    width:6px;
    background:linear-gradient(180deg,var(--main-purple) 0%, rgba(121,72,156,0.14) 100%);
    border-radius:6px;
    box-shadow:0 6px 20px rgba(43,18,86,0.05);
}

/* each node wrapper - alternating sides on desktop */
.roadmap-item{
    position:relative;
    display:grid;
    grid-template-columns:1fr 120px 1fr;
    gap:24px;
    align-items:start;
    margin:22px 0;
}

/* point sits in the center column */
.roadmap-point{
    grid-column:2;
    width:68px;
    height:68px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-self:center;
    justify-content: center;
    font-weight:800;
    color:#fff;
    font-size:18px;
    z-index:3;
    transition:transform .24s ease,box-shadow .24s ease;
    box-shadow:0 8px 24px rgba(43,18,86,0.12);
}

/* ========================================
   CISTIRNY HOOK SECTION
   ======================================== */

.cistirny-hook-section {
    background: #ffffff;
    padding: var(--space-20) var(--space-8);
    position: relative;
}

.cistirny-hook-container {
    max-width: 1320px;
    margin: 0 auto;
}

.cistirny-hook-section .hook-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-12);
}

.hook-subtitle {
    color: var(--neutral-slate);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.hook-problems-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: var(--space-18);
    margin-bottom: var(--space-18);
}

.hook-problem-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
}

.hook-problem-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: calc(-1 * var(--space-16));
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cdd2da, transparent);
    opacity: 0.6;
}

.hook-problem-row.reverse {
    direction: rtl;
}

.hook-problem-row.reverse > * {
    direction: ltr;
}

.hook-problem-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    position: relative;
}

.hook-problem-title {
    font-size: var(--size-heading-medium);
    font-weight: 900;
    background: linear-gradient(135deg, #6b3f99 0%, #2b1654 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    margin: 0 var(--space-16) var(--space-2) 0;
    display: block;
    padding: 0 0 var(--space-3) 0;
    position: relative;
    z-index: 2;
}

/* Podtržení nadpisu */
.hook-problem-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--accent-teal) 100%);
    border-radius: 2px;
}

/* Výkřičník u nadpisu */
.hook-problem-title::before {
    content: '!';
    position: absolute;
    top: -15px;
    right: -25px;
    font-size: 4.5rem;
    font-weight: 900;
    color: #F3E76A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
     
    -webkit-text-fill-color: var(--accent-darker-teal);
    background: none;
}

.hook-problem-description {
    color: var(--neutral-slate);
    font-size: var(--size-body);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
    margin: var(--space-4) auto;
}

.hook-solution-box {
    background: linear-gradient(115deg, rgba(135, 64, 191, 0.12) 0%, rgba(255, 255, 255, 0.12) 100%);
    border-left: 4px solid var(--main-purple);
    padding: var(--space-5);
    border-radius: 12px;
    font-size: var(--size-body);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.hook-solution-box strong {
    color: var(--main-purple);
    font-weight: 700;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: var(--space-3) 0 0 0;
}

.solution-list li {
    padding-left: var(--space-6);
    position: relative;
    margin-bottom: var(--space-2);
    color: var(--dark-navy);
    font-size: var(--size-body);
    line-height: 1.6;
}

.solution-list li::before {
    content: '✓';
    color: var(--main-purple);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.hook-problem-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(121, 72, 156, 0.12);
    transition: all 0.3s ease;
}

.hook-problem-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hook-problem-row:hover .hook-problem-image {
    box-shadow: 0 16px 60px rgba(121, 72, 156, 0.18);
    transform: translateY(-4px);
}

.hook-problem-row:hover .hook-problem-image img {
    transform: scale(1.05);
}

.hook-cta-section {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-16);
}

.process-step .top-row{
    display: flex;
    flex-direction: column ;
    align-items: start;
}
.cistirny-why-us-section {
    width: 100%;
    margin: var(--space-20) 0;
    padding: 0 var(--space-4);
}
.section-header{
    margin: 0 auto;
    width: fit-content;
}

.cistirny-why-us-section .section-header .section-title {
    font-size: var(--size-heading-big);
    font-weight: 800;
    background: linear-gradient(85deg, var(--lighter-main-purple) 10%, var(--main-purple) 100%);
    color: transparent;
    -webkit-background-clip: text;

    background-clip: text;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 var(--space-4);
}

.why-us-text {
    max-width: 900px;
    margin: var(--space-8) auto var(--space-12) auto;
    text-align: center;
    font-size: var(--size-subtitle);
    line-height: 1.7;
    color: var(--neutral-slate);
    padding: 0 var(--space-4);
}

.why-us-text .highlight {
    color: var(--dark-navy);
    font-weight: 600;
}

.cistirny-why-us-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 6px;
    display: flex;
    gap: var(--space-2);
    background: linear-gradient(135deg, #b794d683 0%, #a878cc85 50%, #9c6ec48c 20%);
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(183, 148, 214, 0.2);
    position: relative;
    overflow: hidden;
}

.cistirny-why-us-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cistirny-why-us-container article {
    width: 50%;
    padding: var(--space-12) var(--space-8);
    position: relative;
    z-index: 1;
}

.why-us-column.others {
    color: var(--dark-navy);
    display: flex;
    flex-direction: column;
}

.why-us-column.us {
    background: linear-gradient(135deg, #ffffff 0%, #FFFFFF 100%);
    border-radius: 28px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(141, 37, 214, 0.808),
        inset 0 1px 0 rgb(255, 255, 255);
    position: relative;
}

.why-us-column.us::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(243, 232, 106, 0.068));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
}

.why-us-heading {
    width: 100%;
    text-align: center;
    font-size: var(--size-heading-small);
    font-weight: 700;
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
}

.why-us-column.others .why-us-heading {
    color: var(--dark-navy);
}

.why-us-column.us .why-us-heading {
    color: var(--dark-navy);
    background: var(--dark-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.why-us-row {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-4);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-us-column.us .why-us-row {
    border: 2px solid transparent;
}

.why-us-row .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.why-us-row .icon svg {
    display: none;
}

.why-us-column.others .why-us-row .icon {
    background: rgba(201, 0, 0, 0.445);
    margin-top: 5px;
}

.why-us-column.others .why-us-row .icon::before {
    content: '✕';
    font-size: var(--size-body);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.why-us-column.us .why-us-row .icon {
    background: linear-gradient(135deg, #96d694 0%, #8ec46e 100%);
    margin-top: 5px;
}

.why-us-column.us .why-us-row .icon::before {
    content: '✓';
    font-size: var(--size-body);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.why-us-row .content {
    flex: 1;
    font-size: var(--size-body);
}

.why-us-row .content h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 var(--space-2) 0;
    letter-spacing: -0.01em;
}

.why-us-column.others .content h5 {
    color:  var(--dark-navy);
    font-size: var(--size-heading-small); 
}

.why-us-column.us .content h5 {
    color: var(--dark-navy);
     font-size: var(--size-heading-small); 
}

.why-us-row .content p {
     font-size: var(--size-body); 
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.why-us-column.others .content p {
    color: var(--dark-navy);
     font-size: var(--size-body); 
    opacity: 0.85;
}

.why-us-column.us .content p {
    color: var(--neutral-slate);
}
.step-note{
    font-size: var(--size-body);
}
/* ============================================
   MOBILNÍ RESPONZIVITA
   ============================================ */
@media (max-width: 1400px){
.review-badge{
    flex-wrap:  wrap;
}
.stars-container,.badge-content-firmy,.badge-content{
    margin-left: auto;
    margin-right: auto;
}
}

@media (max-width: 1200px){
    .footer-main {
    gap: 20px;
    }
     .services-menu {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-main-row{
        grid-template-columns: 1fr;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.3rem;
        max-width: 100%;
        padding: 0 ;
        padding-left: 20px ;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-section {
        padding: 6rem 1.5rem 3rem 1.5rem ;
        padding-top: 120px ;
        min-height: auto;
    }
    .image-3d-container {
    transform: none;
    }
    .floating-ui {
    display: none;
}      
.hero-container{
    margin: 0;
}
}
   @media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: 100%;
      
        width: 100%;
        box-sizing: border-box;
    }
    .services-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps-wrapper {
        grid-template-columns: 1fr 1fr ;
        gap: 2rem;
    }
    .hero-section {
         padding: 6rem 1.5rem 3rem 1.5rem ;
        padding-top: 120px ;
        min-height: auto;
    }
    
    .service-card {
        padding: 1rem 0.9rem;
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
        top: 16px;
        left: 16px;
    }

    .service-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card-number {
        top: 1.25rem;
        right: 1.25rem;
    }

    .service-card-title {
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }

    .process-step .top-row{
    flex-direction: row ;
    gap: 15px;
    }
     .cistirny-why-us-section {
        margin: var(--space-16) 0;
    }

    .cistirny-why-us-section .section-title {
        margin-bottom: var(--space-5);
    }

    .why-us-text {
        margin-bottom: var(--space-10);
        padding: 0 var(--space-3);
    }

    .cistirny-why-us-container {
        gap: var(--space-3);
        padding: 5px;
        border-radius: 28px;
    }

    .cistirny-why-us-container article {
        padding: var(--space-9) var(--space-2);
    }

    .why-us-heading {
        margin-bottom: var(--space-5);
    }

    .article-content {
        gap: var(--space-4);
    }

    .why-us-row {
        gap: var(--space-3);
        padding: var(--space-3);
    }

    .why-us-row .icon {
        width: 28px;
        height: 28px;
    }

   }
@media (max-width: 768px) {
    .process-steps-wrapper {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 20px;
      padding: 20px 0;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;       
    }

    .process-steps-wrapper > * {     
      flex: 0 0 85%; 
      scroll-snap-align: center; 
      min-width: 310px; 
    }

    .process-steps-wrapper::-webkit-scrollbar {
      display: none;
    }

    .process-steps-wrapper {
      -ms-overflow-style: none;
      scrollbar-width: none; 
    }

    .process-steps-wrapper {
      padding-left: 20px;
      padding-right: 20px;
    }

    .process-steps-wrapper > *:first-child {
      margin-left: 0;
    }

    .process-steps-wrapper > *:last-child {
      margin-right: 20px;
    }


    .process-step{
        box-shadow: 0 16px 20px rgba(121, 72, 156, 0.18);;
    }

    .hero-section {
        padding: 1rem 16px 0 16px ;
        min-height: auto;
    }
      .process-steps-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .hero-section .gradient-orb,
    .hero-section .water-flow,
    .hero-section .floating-particles {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
     .services-menu {
        grid-template-columns: 1fr;
    }
 
    .hero-content {
        gap: 1.5rem;
        padding-top: 0;
        order: 1;
    }
   

    .hero-title {
       
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        line-height: 1.6;
        max-width: 100%;
    }

    .main-image{
        display: none;
    }
    .hero-visual .image-frame{
        background: none;
        box-shadow: none;
    }

    .service-detail-image{
        display: none;
    }

    .cta-section {
        align-items: stretch;
    }

    .hero-visual {
        order: 1;
    }
    .image-frame {
        max-width: 100%;
        margin: 0;
        border-radius: 16px;
    }

    .service-section {
        padding: var(--space-12) 20px;
    }

    .service-container {
        gap: 2rem;
    }

    .service-header {
        margin: 0 auto var(--space-8);
    }

    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
        top: 16px;
        left: 16px;
    }

    .service-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card-number {
        top: 1.25rem;
        right: 1.25rem;
    }

    .service-card-title {
        width: 80%;
    }

    .time-saved-badge {
        padding: 1rem;
    }

    .service-detail-slider {
        height: auto;
        margin-top: 2rem;
    }

    .service-detail-slide {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        position: relative;
    }

    .service-detail-slide.active {
        display: flex;
        flex-direction: column;
    }

    .service-detail-content {
        gap: 1.25rem;
    }

 
    .service-detail-features li {
        padding-left: 1.5rem;
    }

    .service-detail-image {
        margin: 1rem 0;
        order: -1;
    }

    .service-detail-indicators {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 2rem;
    }

    .process-section {
        padding: var(--space-12) 20px;
    }

    .process-header {
        margin: 0 auto var(--space-8);
    }

    .process-steps-wrapper::before {
        display: none;
    }

    .process-step {
        padding: 1.5rem;
    }

    .process-step::before {
        top: 1.5rem;
        left: 50%;
        top: -5px;
        transform: translateX(0);
    }

    .step-features li {
        padding-left: 1.5rem;
    }

    .process-section .basic-package-badge {
        padding: 0.625rem 1rem;
    }

    .process-section .basic-package-badge svg {
        width: 16px;
        height: 16px;
    }

    .hook-section {
        padding: var(--space-12) 20px;
    }

    .hook-content {
        gap: 2rem;
    }

    .hook-header {
        margin: 0 auto var(--space-8);
    }

    .hook-benefits {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .hook-benefit-item:nth-child(1),
    .hook-benefit-item:nth-child(2) {
        padding: 1.5rem;
    }

    .hook-benefit-item:nth-child(2)::before {
        padding: 0.35rem 0.85rem;
        top: -10px;
        right: 16px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .cistirny-process-section {
        padding: 40px 20px;
    }

    .step {
        padding: 14px;
        gap: 14px;
    }

    .step-index {
        min-width: 44px;
        height: 44px;
    }

    .basic-badge {
        padding: 5px 10px;
    }

    .process-ctas {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .roadmap {
        padding: 2rem 0 0.5rem;
    }

    .roadmap::before {
        left: 34px;
        width: 4px;
    }

    .roadmap-item {
        grid-template-columns: 68px 1fr;
        gap: 16px;
        margin: 16px 0;
    }

    .roadmap-point {
        grid-column: 1;
        width: 52px;
        height: 52px;
    }

    .cistirny-hook-section {
        padding: var(--space-12) 20px;
    }

    .cistirny-hook-section .hook-header {
        margin: 0 auto var(--space-8);
    }

    .hook-problems-list {
        gap: var(--space-16);
    }

    .hook-problem-row {
        grid-template-columns: 1fr !important;
        gap: var(--space-8);
    }

    .hook-problem-row:not(:last-child)::after {
        bottom: calc(-1 * var(--space-6));
        left: 5%;
        right: 5%;
    }

    .hook-problem-row.reverse {
        direction: ltr;
    }

    .hook-problem-content {
        gap: var(--space-3);
    }

    .hook-problem-title {
        margin: 0 var(--space-8) var(--space-2) 0;
        padding: 0 0 var(--space-2) 0;
    }

    .hook-problem-title::after {
        width: 80px;
        height: 2px;
    }

    .hook-problem-title::before {
        top: -10px;
        right: -10px;
    }

    .hook-problem-description {
        margin: var(--space-3) auto;
    }

    .hook-solution-box {
        padding: var(--space-4);

    }

    .solution-list li {
        padding-left: var(--space-5);
        margin-bottom: var(--space-2);
    }

    .hook-problem-image {
        border-radius: 16px;
    }

    .hook-problem-image img {
        height: 300px;
    }

    .hook-cta-section {
        margin-top: var(--space-12);
    }
    .service-detail-slide{
        min-height: 550px;
    }
      .cistirny-why-us-section {
        margin: var(--space-12) 0;
        padding: 0 var(--space-3);
    }

    .cistirny-why-us-section .section-title {
        margin-bottom: var(--space-4);
    }

    .why-us-text {
        margin-bottom: var(--space-8);
        padding: 0 var(--space-2);
        line-height: 1.6;
    }

    .cistirny-why-us-container {
        flex-direction: column;
        gap: var(--space-4);
        padding: 4px;
        border-radius: 24px;
    }

    .cistirny-why-us-container article {
        width: 100%;
        padding: var(--space-6) var(--space-4);
    }

    .why-us-heading {
        margin-bottom: var(--space-4);
    }

    .article-content {
        gap: var(--space-3);
    }

    .why-us-row {
        flex-direction: row;
        gap: var(--space-2);
        padding: var(--space-2);
        border-radius: 10px;
    }

    .why-us-row .icon {
        width: 22px;
        height: 22px;
    }

    .why-us-row .content h5 {
        margin-bottom: var(--space-1);
    }

    .why-us-row .content p {
        line-height: 1.5;
    }

    .why-us-column.us .why-us-row:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
 .cistirny-why-us-section {
        margin: var(--space-10) 0;
        padding: 0 var(--space-2);
    }

    .cistirny-why-us-section .section-title {
        margin-bottom: var(--space-3);
    }
    .why-us-column.us{
        border-radius: 15px;
    }
    .why-us-text {
        margin-bottom: var(--space-6);
        padding: 0 var(--space-2);
    }

    .cistirny-why-us-container {
        border-radius: 16px;
        gap: var(--space-2);
        padding: 3px;
    }

    .cistirny-why-us-container article {
        padding: var(--space-4) var(--space-3);
    }

    .why-us-heading {
        margin-bottom: var(--space-3);
    }

    .article-content {
        gap: var(--space-2);
    }

    .why-us-row {
        gap: var(--space-2);
        padding: var(--space-2);
        border-radius: 8px;
    }

    .why-us-row .icon {
        width: 18px;
        height: 18px;
    }

    .why-us-row .content h5 {
        margin-bottom: 2px;
    }

    .why-us-row .content p {
        line-height: 1.4;
    }

    .service-section {
        padding: 2.5rem 0;
    }

    .service-container {
        gap: 0.3rem;
        padding: 0 1rem;
    }

    .service-header {
        margin-bottom: 0.8rem;
    }

    .service-header .section-title {
        margin-bottom: 0.75rem;
    }

    .service-subtitle {
        padding: 0 0.5rem;
    }

    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1rem 0.85rem;
        border-radius: 16px;
        gap: 0.75rem;
    }

    .service-card-icon {
        width: 42px;
        height: 42px;
        top: 16px;
        left: 16px;
        border-radius: 12px;
    }

    .service-card-icon img {
        width: 20px;
        height: 20px;
    }

    .service-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-card-number {
        top: 1rem;
        right: 1rem;
    }

    .service-card-title {
        width: 75%;
        margin-top: 0.75rem;
    }

    .service-card-description {
        margin-top: 0.75rem;
    }

    .service-card-list {
        gap: 0.5rem;
    }

    .service-card-list li {
        padding-left: 1.25rem;
    }

    .time-saved-badge {
        padding: 0.875rem;
        border-radius: 12px;
        margin-top: 0.75rem;
    }

    .service-detail-slider {
        margin-top: 1.5rem;
        height: auto;
    }

    .service-detail-slide {
        min-height: auto;
    }

    .service-detail-content {
        gap: 1rem;
    }

    .service-detail-text {
        line-height: 1.6;
    }

    .service-detail-features li {
        padding-left: 1.25rem;
    }

    .service-detail-indicators {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }

    .service-detail-indicators .indicator {
        width: 10px;
        height: 10px;
    }

    .service-detail-indicators .indicator.active {
        width: 24px;
    }

    .process-section {
        padding: 2.5rem 0;
    }

    .process-container {
        padding: 0 1rem;
    }

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

    .process-header .section-title {
        margin-bottom: 0.75rem;
    }

    .process-subtitle {
        padding: 0 0.5rem;
    }

    .process-steps-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .process-step {
        padding: 1.25rem 1rem;
        gap: 0.75rem;
        border-radius: 16px;
    }

    .process-step::before {
        width: 10px;
        height: 10px;
        top: -5px;
    }

    .process-section .cistirny-step-number {
        margin-bottom: 0.5rem;
    }
     .process-section .step-number {
        margin-bottom: 0.5rem;
        font-size: 42px;
    }
    .process-section .step-title {
        margin-bottom: 0.75rem;
    }

    .step-features {
        gap: 0.5rem;
    }

    .step-features li {
        padding-left: 1.25rem;
        line-height: 1.5;
    }

    .step-note {
        padding: 0.75rem;
        border-radius: 10px;
        margin-top: 0.25rem;
    }

    .process-section .basic-package-badge {
        padding: 0.5rem 1rem;
        margin-top: 1rem;
    }

    .process-section .basic-package-badge svg {
        width: 14px;
        height: 14px;
    }

    .cistirny-hook-section {
        padding: 2.5rem 0;
    }

    .cistirny-hook-container {
        padding: 0 1rem;
    }

    .cistirny-hook-section .hook-header {
        margin-bottom: 1.5rem;
    }

    .cistirny-hook-section .hook-header .section-title {
        margin-bottom: 0.75rem;
    }

    .hook-subtitle {
        padding: 0 0.5rem;
    }

    .hook-problems-list {
        gap: 3rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .hook-problem-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .hook-problem-row:not(:last-child)::after {
        bottom: -1.5rem;
        left: 5%;
        right: 5%;
    }

    .hook-problem-content {
        gap: 1rem;
    }

    .hook-problem-title {
        margin: 0 2rem 0.75rem 0;
        padding-bottom: 0.75rem;
    }

    .hook-problem-title::after {
        width: 60px;
        height: 2px;
    }

    .hook-problem-title::before {
        top: -8px;
        right: -15px;
    }

    .hook-problem-description {
        margin: 0.75rem auto;
        line-height: 1.6;
    }

    .hook-solution-box {
        padding: 1rem;
        border-radius: 10px;
        border-left-width: 3px;
    }

    .solution-list {
        margin-top: 0.75rem;
    }

    .solution-list li {
        padding-left: 1.25rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }

    .hook-problem-image {
        border-radius: 12px;
    }

    .hook-problem-image img {
        height: 220px;
    }

    .hook-cta-section {
        margin-top: 2rem;
    }

    .septiky-trust-section {
        padding: 2.5rem 0;
    }

    .septiky-trust-container {
        padding: 0 1rem;
    }

    .trust-section-header {
        margin-bottom: 1.5rem;
    }

    .trust-section-header .section-title {
        margin-bottom: 0.75rem;
    }

    .trust-section-header .section-subtitle {
        padding: 0 0.5rem;
    }

    .septiky-realizations-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .septiky-realization-card {
        border-radius: 12px;
    }

    .realization-card__media {
        border-radius: 12px 12px 0 0;
    }

    .realization-card__image {
        height: 200px;
    }

    .realization-card__label {
        padding: 0.5rem 0.875rem;
    }

    .realization-card__overlay {
        padding: 1.25rem 1rem;
    }

    .realization-card__quote p {
        line-height: 1.5;
    }

    .realization-card__author {
        margin-top: 0.75rem;
    }

    .realization-card__review-btn {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }

    .realization-card__review-btn svg {
        width: 16px;
        height: 16px;
    }

    .realization-review-dialog {
        padding: 1rem;
    }

    .review-dialog__content {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
        max-width: 100%;
    }

    .review-dialog__close {
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
    }

    .review-dialog__close svg {
        width: 20px;
        height: 20px;
    }

    .review-dialog__title {
        margin-bottom: 1rem;
    }

    .review-dialog__quote p {
        line-height: 1.6;
    }

    .review-dialog__author {
        margin-top: 1rem;
    }

    .septiky-trust-benefit {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
        margin-top: 2rem;
    }

    .trust-benefit__title {
        margin-bottom: 0.875rem;
    }

    .trust-benefit__text {
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .trust-benefit__cta {
        gap: 0.875rem;
        flex-direction: column;
    }

    .trust-benefit__cta .primary-cta {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }

    .trust-benefit__link {
        gap: 0.375rem;
    }

    .trust-benefit__link svg {
        width: 14px;
        height: 14px;
    }

    .contains-section {
        padding: 2.5rem 0;
    }


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

    .contains-header .section-title {
        margin-bottom: 0.25rem;
    }

    .contains-header .section-subtitle {
        padding: 0 0.5rem;
        margin-top: 0.1rem;
    }

    .contains-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .contains-card {
        padding: 1.25rem 1rem;
        border-radius: 14px;
    }

    .contains-card-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 0.875rem;
    }

    .contains-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .contains-card-title {
        margin-bottom: 0.75rem;
    }

    .contains-card-description {
        line-height: 1.6;
    }

    .cta-section {
        gap: 0.75rem;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        padding: 0.875rem 1.25rem;
        justify-content: center;
    }

    .hook-benefits {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .hook-benefit-item:nth-child(1),
    .hook-benefit-item:nth-child(2) {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .hook-benefit-item:nth-child(2)::before {
        padding: 0.3rem 0.75rem;
        top: -10px;
        right: 12px;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    
    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }

    .benefit-title {
        margin-bottom: 0.5rem;
    }

    .stat{
        padding: 6px;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    .contains-card-description{
        display: none;
    }
    .contains-card-description-mobile{
        display: block;
    }
    .contains-card{
        display: flex;
        flex-direction: row !important;
        align-items: center;
        gap: var(--space-18);
    }
    .hero-container{
        padding: 0;
    }

    .image-frame{
        margin: 0;
        max-width: 100%;
    }
  
    .image-frame, .reviews-badges{
        padding:0;
        margin:0;
    }
    .hero-subtitle {
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    .stat-number {
        font-size: 15px;
        font-weight: 500;
    }
    .process-section .cistirny-step-number{
        font-size: 42px;
    }
    .process-step .top-row{
        flex-direction: column;
    }
    .cistirny-why-us-section{
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ============================================
   COMPARE SECTION - ČOV vs Septik (Infographic Style)
   ============================================ */

.cistirny-compare-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cistirny-compare-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.compare-header {
    text-align: center;
    margin-bottom: 4rem;
}

.compare-header .section-title {
    color: var(--dark-navy);
    font-size: var(--size-heading-big);
    margin-bottom: 1rem;
}

/* Wrapper for cards and VS divider */
.compare-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-bottom: 3rem;
    align-items: stretch;
}

/* VS Divider */
.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.compare-vs span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    color: rgba(89, 102, 119, 0.15);
    padding: 3rem 1.5rem;
    border-radius: 60px;
    border: 2px solid rgba(89, 102, 119, 0.1);
}

/* Card Styles */
.compare-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Pill Button */
.compare-pill {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Septik Card - Red Theme */
.septik-card {
    border-color: rgba(239, 68, 68, 0.3);
}

.septik-card .compare-pill {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.septik-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 6px 24px rgba(239, 68, 68, 0.15);
}

/* ČOV Card - Purple Theme */
.cov-card {
    border-color: rgba(121, 72, 156, 0.3);
}

.cov-card .compare-pill {
    background: linear-gradient(135deg, var(--main-purple) 0%, var(--lighter-main-purple) 100%);
    color: #ffffff;
}

.cov-card:hover {
    border-color: rgba(121, 72, 156, 0.5);
    box-shadow: 0 6px 24px rgba(121, 72, 156, 0.15);
}

/* List Items */
.compare-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.3s ease;
}

.compare-item:hover {
    background: rgba(241, 245, 249, 1);
}

.compare-item-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.compare-item.negative .compare-item-icon {
    color: #ef4444;
}

.compare-item.positive .compare-item-icon {
    color: var(--accent-teal);
}

.compare-text {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.compare-text strong {
    font-size: var(--size-subtitle);
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
}

.compare-text span {
    font-size: var(--size-body);
    color: var(--neutral-slate);
    line-height: 1.5;
}

.compare-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    .cistirny-compare-section {
        padding: 4rem 2rem;
    }
    
    .compare-wrapper {
        gap: 1.5rem;
    }
    
    .compare-card {
        padding: 2.5rem 2rem 2rem 2rem;
    }
    
    .compare-vs span {
        font-size: 2rem;
        padding: 2rem 1rem;
    }
    
    .compare-text strong {
        font-size: var(--size-body);
    }
}

@media (max-width: 768px) {
    .cistirny-compare-section {
        padding: 3rem 20px;
    }
    
    .compare-header {
        margin-bottom: 3rem;
    }
    
    .compare-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 3rem;
    }
    
    /* Stack VS divider horizontally on mobile */
    .compare-vs {
        padding: 2rem 0;
        grid-row: 2;
    }
    
    .compare-vs span {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        font-size: 2.5rem;
        letter-spacing: 0.5rem;
        padding: 1rem 3rem;
        border-radius: 60px;
    }
    
    .septik-card {
        grid-row: 1;
    }
    
    .cov-card {
        grid-row: 3;
    }
    
    .compare-card {
        padding: 2.5rem 1.75rem 1.75rem 1.75rem;
    }
    
    .compare-list {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .cistirny-compare-section {
        padding: 2.5rem 15px;
    }
    
    .compare-header {
        margin-bottom: 2rem;
    }
    
    .compare-wrapper {
        gap: 2.5rem;
    }
    
    .compare-card {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
        border-radius: 24px;
    }
    
    .compare-pill {
        padding: 0.625rem 1.5rem;
        font-size: 0.75rem;
        top: -16px;
    }
    
    .compare-vs span {
        font-size: 2rem;
        letter-spacing: 0.3rem;
        padding: 0.75rem 2rem;
    }
    
    .compare-list {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .compare-item {
        gap: 0.75rem;
        padding: 0.875rem;
    }
    
    .compare-item-icon {
        width: 24px;
        height: 24px;
    }
    
    .compare-text strong {
        font-size: var(--size-body);
    }
    
    .compare-text span {
        font-size: var(--size-small);
    }
    
    .compare-cta {
        margin-top: 2rem;
    }
}
