

/* ============================================
   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 var(--space-12);
}

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

.service-subtitle {
    font-size: 1.25rem;
    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: 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;
}

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



.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 Description */
.service-card-description {
    font-size: 1.125rem;
    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: 1rem;
    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: 2.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.2;
}

.service-detail-text {
    font-size: 1.05rem;
    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: 1rem;
    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;
    box-shadow: var(--shadow-lg);
    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 {
    font-size: 1.3rem;
    color: var(--neutral-slate);
    line-height: 1.6;
}

/* Process Steps Wrapper */
.process-steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    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;
}

.process-step:hover {
    border-color: rgba(121, 72, 156, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(121, 72, 156, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

/* 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-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;
}

.process-section .step-title {
     
    font-size: 1.75rem;
    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: 1rem;
    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: 1.25rem;
    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 TRUST & TESTIMONIAL SECTION
   ============================================ */

.cistirny-trust-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--space-20) var(--space-8);
    position: relative;
}

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

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

.trust-section-header .section-title {
     
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0 0 var(--space-4);
    line-height: 1.2;
}

.trust-section-header .section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-slate);
    margin: 0;
    line-height: 1.6;
}

/* Trust Stats Wrapper */
.trust-stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(121, 72, 156, 0.1);
    margin-bottom: var(--space-16);
    box-shadow: 0 4px 24px rgba(121, 72, 156, 0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-stat-item {
    text-align: center;
    flex: 1;
}

.trust-stat-number {
    font-size: 3rem;
    font-weight: 900;
    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;
    line-height: 1;
     
    margin-bottom: var(--space-2);
}

.trust-stat-label {
    font-size: 1rem;
    color: var(--neutral-slate);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-stat-stars {
    color: #F3E76A;
    font-size: 1.5rem;
    margin-top: var(--space-2);
    letter-spacing: 2px;
}

.trust-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(121, 72, 156, 0.3), transparent);
}

/* Trust CTA Section */
.trust-cta-section {
    display: flex;
    justify-content: center;
    margin-top: var(--space-12);
}

/* Legacy compatibility */
.hero-trust-number {
    font-size: 1.5rem;
    font-weight: 800;
    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;
    line-height: 1;
     
}

/* Reviews Header */
.cistirny-reviews-section .reviews-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.cistirny-reviews-section .reviews-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-slate);
    line-height: 1.6;
    margin-top: 1rem;
}


.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);
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.hook-problems-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    margin-top: var(--space-12);
}

.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-8));
    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: 2rem;
    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 0 var(--space-2) 0;
    display: block;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hook-problem-description {
    color: var(--neutral-slate);
    font-size: 1.125rem;
    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: 1.0625rem;
    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: 1rem;
    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);
}


/* ============================================
   SEPTIKY TRUST SECTION STYLES
   ============================================ */

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

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

/* Section Header */
.trust-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.trust-section-header .section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.trust-section-header .section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-slate);
    line-height: 1.6;
    margin: 0;
}

/* Realizations Grid */
.septiky-realizations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

/* Realization Card */
.septiky-realization-card {
    position: relative;
    transition: all 0.3s ease;
}

/* Card Media */
.realization-card__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(121, 72, 156, 0.1);
}

.realization-card__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.septiky-realization-card:hover .realization-card__image {
    transform: scale(1.05);
}

/* Label on image */
.realization-card__label {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-3) var(--space-5);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.label-location {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-navy);
}

/* Desktop Overlay (hover/focus) */
.realization-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.85) 0%, rgba(30, 41, 59, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}



.realization-card__quote {
    margin: 0 0 var(--space-4);
}

.realization-card__quote p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-style: italic;
    text-align: center;
}

.realization-card__author {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--accent-teal);
    text-align: center;
}

/* Text pod galerií */
.realizations-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-16);
}

.realizations-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-slate);
    margin: 0;
}

/* Mobile Review Button */
.realization-card__review-btn {
    display: none;
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(121, 72, 156, 0.2);
    border-radius: 12px;
    color: var(--main-purple);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    gap: var(--space-2);
    align-items: center;
}


.realization-card__review-btn:hover,
.realization-card__review-btn:focus {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 72, 156, 0.2);
}

/* Mobile Dialog */
.realization-review-dialog {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
}

.realization-review-dialog[hidden] {
    display: none;
}

.review-dialog__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.review-dialog__content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: var(--space-10);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: dialogSlideUp 0.3s ease;
}

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

.review-dialog__close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: rgba(121, 72, 156, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-navy);
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-dialog__close:hover,
.review-dialog__close:focus {
    background: rgba(121, 72, 156, 0.2);
    transform: rotate(90deg);
}

.review-dialog__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0 0 var(--space-6);
    padding-right: var(--space-10);
    line-height: 1.3;
}

.review-dialog__quote {
    margin: 0 0 var(--space-6);
}

.review-dialog__quote p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-slate);
    margin: 0;
    font-style: italic;
}

.review-dialog__author {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--main-purple);
}

/* Trust Benefit Section */
.septiky-trust-benefit {

    padding: var(--space-12);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.trust-benefit__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin: 0 0 var(--space-6);
    line-height: 1.3;
}

.trust-benefit__text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-slate);
    margin: 0 0 var(--space-8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-benefit__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.trust-benefit__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--main-purple);
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.trust-benefit__link:hover,
.trust-benefit__link:focus {
    color: var(--lighter-main-purple);
    gap: var(--space-3);
}

.trust-benefit__link svg {
    transition: transform 0.2s ease;
}

.trust-benefit__link:hover svg {
    transform: translateX(4px);
}
