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

.projects-service-section {
    background: linear-gradient(0deg, #ffffff 0%, var(--light-blue) 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.projects-service-card {
    background: rgba(255, 255, 255, 0.8);
    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;
}

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

.service-card-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-bottom: 0.5rem;
}

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

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

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

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    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;
}

.service-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.service-bonus {
    font-size: var(--size-body);
    font-weight: 600;
    color: #16a34a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-bonus::before {
    content: '✓';
    font-size: 1.3rem;
    font-weight: 800;
}

.projects-process-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--light-blue) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.projects-process-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    padding: 6rem 2rem;
}

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

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

/* Skrýt tečky na desktopu */
.process-dots {
    display: none;
}

.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;
}

.process-step {
   display: flex;
    flex-direction: column;
    gap: 0.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);
}

.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;
}

.projects-process-section .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;
}

.projects-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: var(--size-body);
    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(--main-purple);
    font-weight: 800;
    font-size: 1.1rem;
}

.projects-hook-section {
    background: #ffffff;
    padding: 5rem 2rem;
    position: relative;
}

.projects-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 {
    max-width: 900px;
}

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

.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;

    box-shadow: 0 6px 16px rgba(121, 72, 156, 0.1);
}


.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;
   
    box-shadow: 0 8px 24px rgba(121, 72, 156, 0.2);
    position: relative;
}


.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: var(--size-heading-small);
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

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

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

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

.projects-trust-section {
    background: #ffffff;
    padding: 5rem 2rem;
    position: relative;
}

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

.trust-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.trust-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem;
    margin-bottom: 0;
}

.trust-stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trust-stat-number {
    font-size: var(--size-heading-medium);
    font-weight: 900;
    color: var(--main-purple);
    line-height: 1;
 
}

.trust-stat-label {
    font-size: var(--size-heading-small);
    color: var(--dark-navy);
    font-weight: 700;
}

.trust-stat-description {
    font-size: var(--size-body);
    color: var(--neutral-slate);
    line-height: 1.5;
    max-width: 280px;
}

.trust-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(121, 72, 156, 0.2) 50%, transparent 100%);
    margin: 0;
}

.trust-review-row {
    background-color: #fcfbee;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 3rem;
}


.review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 900px;
}

.review-title {
    font-size: var(--size-heading-small);
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.3;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 900px;
}

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

.review-guarantee {
    display: inline-flex;
    align-items: center;
    margin: 0 auto;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    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: var(--size-body);
    align-self: flex-start;
}

.guarantee-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(121, 72, 156, 0.1);
    gap: 2rem;
}

.review-stars {
    display: flex;
    gap: 0.5rem;
    color: #FFD700;
}

.review-stars svg {
    width: 24px;
    height: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e7e3a7;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
}
 .services-menu {
        grid-template-columns: repeat(4, 1fr);
    }
.author-role {
    font-size: 0.875rem;
    color: var(--neutral-slate);
}
.process-step .top-row{
    display: flex;
    flex-direction: column ;
    align-items: start;
    
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
     .process-step .top-row{
    flex-direction: row ;
    gap: 15px;
    align-items: center;
    }

    .projects-service-grid {
    grid-template-columns: repeat(2, 1fr);
    }
    .particle {
        width: 6px;
        height: 6px;
    }
    .hook-benefits{
        grid-template-columns:  1fr;
    }
    .services-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        gap: var(--space-3);
        margin-bottom: var(--space-6);
    }

    .cta-buttons {
        min-width: auto;
        gap: var(--space-4);
        margin-bottom: var(--space-6);
        flex-wrap: wrap;
    }

    .image-3d-container {
        transform: perspective(800px) rotateY(-3deg) rotateX(1deg);
    }

    .image-frame {
        padding: 10px;
    }

   
    .brand-symbol {
        width: 45px;
        height: 45px;
    }

    .ui-1,
    .ui-2,
    .ui-3 {
        display: none;
    }

    .services-section {
        padding: var(--space-16) 0;
    }
    .partners-container,
    .services-container {
        padding: 0 var(--space-6);
    }

    .partners-label {
        margin-bottom: var(--space-4);
    }

    .partners-track {
        gap: var(--space-10);
    }

    .partner-logo-premium {
        height: 40px;
    }

    .services-title {
        margin-bottom: var(--space-12);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: var(--space-6);
    }

    .service-card {
        padding: var(--space-10) var(--space-8);
    }

    .service-icon {
        width: 160px;
        height: 160px;
        margin-bottom: var(--space-6);
    }

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

    .service-title {
        margin-bottom: var(--space-3);
    }

    .service-description {
        margin-bottom: var(--space-6);
    }

    .service-features li {
        padding: var(--space-1) 0;
        padding-left: var(--space-5);
    }
     .trust-section {
        gap: var(--space-4);
        padding: var(--space-3) 0;
       
    }

}
@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;
    }

    /* Scroll indikátory (tečky) pro mobilní */
    .process-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 20px 0 30px 0;
        padding: 10px 0;
        position: relative;
        z-index: 10;
    }

    .process-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(121, 72, 156, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .process-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #8740bf;
    }

    .process-dot:hover {
        background: rgba(121, 72, 156, 0.6);
    }

     .services-menu {
        grid-template-columns:  1fr;
        text-align: start;
    }
    .process-steps-wrapper::before {
        display: none;
    }

    .process-step {
        padding: 1.5rem;
    }

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


    .review-author-wrapper{
        width: 100%;
        gap: 1rem;
    }
    .review-stars{
        width: 100%;
        justify-content: center;
    }
    .review-author{
        justify-content: center;
        width: 100%;
    }

    .stat-icon .icon-bg{
        width: 48px;
        max-height: 48px ;
        
    }

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

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

    .projects-service-container {
        gap: 2rem;
    }

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

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

    .projects-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 ;
        gap: 2rem;
        position: relative;
    }

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

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

    .flex-row{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        
    }

    .review-footer{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .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);
    }

    .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 ;
        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-8);
    }

    .hook-problem-row {
        grid-template-columns: 1fr ;
        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);
    }
        .flex-row{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        
    }

    .trust-section {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
        padding: var(--space-4) 0;
    }
    .trust-text{
        text-align: center !important;
        max-width: 100% !important;
    }
    .trust-numbers {
        gap: var(--space-2);
    }
    .trust-stat-number{
       text-align: center !important;
    }
    .trust-stat-item .trust-stat-description{
        display: none !important;
    }

    .review-footer{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .trust-stats-row{
        gap: 1rem;
        
    }
    .trust-stat-item{
        gap: 0.3rem;
    }
    .trust-stat-number{
        width: 100% !important;
        text-align: center !important;
    }
    .trust-stats-row{
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
 
    .projects-trust-section{
        padding: 4rem 15px;
    }
    .review-author-wrapper{
        width: 100%;
        gap: 1rem;
    }
    .review-stars{
        width: 100%;
        justify-content: center;
    }
    .review-author{
        justify-content: center;
        width: 100%;
    }

    .stat-icon .icon-bg{
        width: 44px;
        max-height: 44px ;
        height: 44px;
    
    }
    .process-steps-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 3rem;
    }

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

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

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

    .image-frame {
        border-radius: 16px;
    }

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

    .projects-service-container {
        gap: 1.5rem;
    }

    .projects-service-header {
        margin: 0 auto var(--space-7);
    }
    .projects-service-grid {
        grid-template-columns: 1fr ;
        gap: 1.15rem;
    }

    .projects-service-card {
        padding: 1.45rem 1.15rem;
    }

    .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: 0.9rem;
    }

    .service-detail-slider {
        height: auto;
        margin-top: 1.9rem;
    }
    .projects-process-section .step-title {
        margin-bottom: 0.75rem;
    }

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

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

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

    .flex-row{
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        
    }

    .review-footer{
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .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) 10px;
    }

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

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

    .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) 10px;
    }

    .hook-content {
        gap: 2.2rem;
    }

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

    .hook-benefits {
        grid-template-columns: 1fr ;
        gap: 2rem;
    }

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

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

    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--space-4);
    }

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

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

    .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: 10px 14px;
    }

    .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) 10px;
    }

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

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

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

    .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-7) 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);
    }
 
    .review-guarantee{
        padding: 0.8rem 1.2rem;
    }
    .solution-list li {
        padding-left: var(--space-5);
        margin-bottom: var(--space-2);
    }

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

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

    .hook-cta-section {
        margin-top: var(--space-12);
    }
}

.projects-hook-section {
    background: #ffffff;
    padding: 5rem 2rem;
    position: relative;
}

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

.hook-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hook-title {
     
    font-size: 1,25rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.hook-title .title-gradient {
    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;
}

.hook-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.hook-text-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-slate);
    margin: 0;

}

.hook-intro {
    font-size: 1rem;
    line-height: 1.8;
}

.hook-text-content p strong {
    color: var(--dark-navy);
    font-weight: 700;
}

.text-highlight {
    background: linear-gradient(135deg, rgba(243, 231, 106, 0.3) 0%, rgba(243, 231, 106, 0.15) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--dark-navy);
}

.hook-highlight-box {

    border-radius: 12px;
    padding: 2rem;
    margin: 0.5rem 0;
}

.hook-highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 1.25rem 0;
}

.hook-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hook-check-list li {
    font-size: var(--size-body);
    color: var(--neutral-slate);
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}



.hook-closing {
    font-size: var(--size-body);
    text-align: center;
    padding: 1.5rem;
    
    border-radius: 12px;
}

@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){
    .image-3d-container {
    transform: none;
    }
    .floating-ui {
    display: none;
}      
.hero-container{
    margin: 0;
}
}
@media (max-width: 1024px) {
    .projects-hook-section {
        padding: 4rem 1.5rem;
    }

}

@media (max-width: 768px) {
    .projects-hook-section {
        padding: 3rem 20px;
    }

    .hook-content {
        gap: 2rem;
    }
    .trust-review-row{
        padding:1.5rem;
    }

    .hook-text-content {
        gap: 1.5rem;
    }


    .hook-highlight-box {
        padding: 1.5rem;
    }

    .hook-highlight-title {
        margin: 0 0 1rem 0;
    }

    .hook-check-list {
        gap: 0.75rem;
    }

    .hook-check-list li {
        padding-left: 1.75rem;
    }

    .hook-closing {
        padding: 1.25rem;
    }
     .image-frame{
        margin: 0;
        max-width: 100%;
        background: none;
    }
    .review-badge{
        justify-content: center;
    }
  
}

@media (max-width: 480px) {
 
    .hook-cta {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .hero-trust-section {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
    }

     .hero-trust-section .hero-trust-text {
        margin-bottom: 0.75rem;
    }

     .hero-trust-section .hero-trust-numbers {
        gap: 0.75rem;
    }

    .hero-trust-numbers .hero-trust-divider {
        height: 14px;
    }

    .image-frame {
        border-radius: 12px;
    }

    
    .projects-steps-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .projects-process-container {
        padding: 0 1rem;
    }
    .stars-container {
        gap: 0.25rem;
    }

    .hook-content {
        gap: 1.75rem;
    }

    .hook-text-content {
        gap: 1.25rem;
    }

    .hook-highlight-box {
        padding: 1.25rem;
        border-left-width: 3px;
    }

    .hook-highlight-title {
        margin: 0 0 0.875rem 0;
    }

    .hook-check-list {
        gap: 0.625rem;
    }

    .hook-check-list li {
        padding-left: 1.5rem;
    }

    .hook-check-list li::before {
        width: 20px;
        height: 20px;
    }

    .hook-closing {
        padding: 1rem;
    }
      .projects-trust-section{
        padding: 4rem 15px;
    }
    .trust-section {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
        padding: var(--space-3) 0;
    }
    .trust-text{
        text-align: center !important;
        max-width: 100% !important;
    }
    .trust-numbers {
        gap: var(--space-1);
    }
 
    .projects-process-container{
        padding-bottom: 10px;
    }
    .trust-section .trust-numbers .trust-item{
        width: auto;
    }
 
    .hero-trust-section {
        flex-direction: row;
        gap: var(--space-2);
        align-items: start;
        padding: var(--space-1) 0;
    }
    .trust-text{
        text-align: center ;
    }
    .trust-numbers {
        gap: var(--space-1);
    }

    .projects-process-container{
        padding-bottom: 10px;
    }
    .trust-section .trust-numbers .trust-item{
        width: auto;
    }
       .trust-section {
        flex-direction: row;
        align-items: center;
        gap: 0.675rem;
        padding: 0.875rem 0;
        text-align: center;
    }

    .trust-numbers {
        flex-direction: row;
        gap: 0.75rem;
        width: 100%;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
    }

    .trust-divider {
        display: none;
    }
    .trust-stat-label{
        font-size: 14px;
    }
    .stat-number {
        font-size: 15px;
        font-weight: 500;
    }
}


