/* ============================================
   TECH-PAGE.CSS - Landing Page Specific Styles
   ============================================ */


/* Responsive protections (keep these to preserve original behavior) */
@media (max-width: 768px) {
    .security-strip { 
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
}

@media (min-width: 415px) and (max-width: 768px) {
    .security-strip {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 414px) {
    .security-strip { align-items: start; }
}


/* Tech page specific styles - Complete Redesign */

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}



/* ============================================
   PROCESS SECTION - MODERN CARDS DESIGN
   ============================================ */
.section--process {
    background: #0a0e27;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section--process::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
}

.process-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-title {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-layers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
}

.process-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.process-card-content {
    flex: 1;
}

.process-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.process-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0;
}

/* Animation Keyframes */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(-30px);
    }
}

@keyframes fadeInCenter {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(30px);
    }
}

/* Card animations triggered by .animate-in class */
.process-card:nth-child(1).animate-in {
    animation: fadeInLeft 0.8s ease-out 0.2s forwards;
}


.process-card:nth-child(2).animate-in {
    animation: fadeInCenter 0.8s ease-out 0.4s forwards;
}

.process-card:nth-child(3).animate-in {
    animation: fadeInRight 0.8s ease-out 0.6s forwards;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .process-container {
        padding: 0 20px;
    }
    
    .process-card {
        flex-direction: column;
        text-align: center;
    }
    
    .process-card-icon {
        margin: 0 auto;
    }
    
    /* Reset positions on mobile */
    .process-card:nth-child(1).animate-in,
    .process-card:nth-child(3).animate-in {
        animation: fadeInCenter 0.8s ease-out forwards;
    }

    .security-strip {
    justify-content: left;
    align-items: flex-start;
    gap: 4%rem;
    padding: 2rem 3rem;
    margin: 1rem;
    }


}



/* ============================================
   ABOUT SECTION - SPLIT SCREEN DESIGN
   ============================================ */
.section--about {
    background: white;
    padding: 0;
    min-height: 600px;
}

.about-split {
    display: flex;
    min-height: 600px;
}

.about-visual {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.profile-container {
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.profile-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profile-badge span {
    color: var(--bridge-color);
    font-weight: 600;
    font-size: 14px;
}

.about-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(-135deg, #667eea00 0%, #764ba233 100%);
}

.about-label {
    color: var(--bridge-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-story {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-left: 4px solid var(--bridge-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0 0 2rem 0;
}

.projects-showcase {
    margin-top: 2rem;
}

.projects-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-cards {
    display: flex;
    gap: 1.5rem;
}

.company-card {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.company-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.company-info h4 {
    color: var(--text-light);
    font-size: 16px;
    margin: 0 0 4px 0;
}

.company-info p {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
}


/* ============================================
   WHY THIS WORKS - BENTO GRID
   ============================================ */
.section--reasons {
    background: #0a0e27;
    padding: 100px 0;
    position: relative;
}

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

.reasons-title {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto); /* Changed from 200px to auto */
    gap: 1.5rem;
}

.bento-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    cursor: default;
    position: relative;
    overflow: hidden;
    opacity: 0; /* Hidden initially for animation */
}

.bento-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.bento-content {
    flex: 1;
}

.bento-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.bento-text {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0; /* Remove all margins to eliminate space below */
}

/* Animation Keyframes */
@keyframes fadeInBento {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Cascade animation from top-left to bottom-right */
.bento-item.animate-in {
    animation: fadeInBento 0.6s ease-out forwards;
}

.bento-item:nth-child(1).animate-in {
    animation-delay: 0s;
}

.bento-item:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.bento-item:nth-child(3).animate-in {
    animation-delay: 0.4s;
}

.bento-item:nth-child(4).animate-in {
    animation-delay: 0.6s;
}

/* ============================================
   SECURITY SECTION - ICON STRIP
   ============================================ */
.section--security {
    background: white;
    padding: 80px 0;
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.security-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.security-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 100px;
    padding: 2rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.security-icon-wrap {
    width: 50px;
    height: 50px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon-wrap i {
    color: white;
    font-size: 24px;
}

.security-text h3 {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 0 4px 0;
    text-align: left;
}

.security-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    text-align: left;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .process-cards {
        flex-direction: column;
    }
    
    .process-connector {
        display: none;
    }


}

@media (max-width: 768px) {
    .about-split {
        flex-direction: column;
    }
    
    .about-visual {
        min-height: 400px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
    
    .security-strip {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .company-cards {
        flex-direction: column;
    }
}

/* Security section grid for smaller screens */
@media (min-width: 415px) and (max-width: 768px) {
    .security-strip {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        gap: 1.5rem; /* Add spacing between items */
        padding: 1.5rem; /* Adjust padding */
    }
}



/* ============================================
   HERO SECTION - NO ANIMATIONS VERSION
   ============================================ */

/* Keep only the page fade-in */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    pointer-events: none;
    animation: pageFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes pageFadeIn {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* Hero Section Base Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Static background elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.hero-float-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero-float-2 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hero Typography */
.hero-subtitle-main {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    margin-top: 2rem;
    margin-bottom: 0px;
    opacity: 1;
    display: block;
}

.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.1;
    display: block;
    opacity: 1;
}

/* Promise Grid */
.hero-promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
    row-gap: 1.3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    flex-direction: row;
    text-align: left;
    opacity: 1;
}

.promise-item i {
    color: #764ba2;
    font-size: 24px;
    flex-shrink: 0;
}

.promise-text {
    flex: 1;
}

.promise-title {
    font-weight: 600;
    margin-top: 4px;
    font-size: 16px;
    color: white;
    line-height: 1;
}

/* Left column items - align to the right */
.promise-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

/* Right column items - keep left alignment */
.promise-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
}

/* Differentiator Message */
.hero-differentiator {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 1.75rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: none;
}

.hero-differentiator p {
    color: white;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Button */
.hero-cta {
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.3);
    opacity: 1;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 184, 0, 0.4);
}

/* Discount text */
.hero-discount {
    opacity: 1;
}

/* Pulse Badge - keep pulse animation */
.pulse-badge {
    background: var(--gradient-success);
    color: white;
    padding: 4px 10px;
    margin: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Logo */
.logo-container {
    opacity: 1;
    margin-top: 2rem;
    display: inline-block;
    perspective: 1000px;
}

.hero-logo {
    filter: none;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-promise-grid {
        column-gap: 1.1rem;
        row-gap: 1.2rem;
    }
}

@media (max-width: 414px) {
    .hero-main-title {
        font-size: 10vw;
    }

    .hero-cta {
        padding: 10px 20px;
    }

    .promise-item:nth-child(odd) {
        flex-direction: unset;
        text-align: left;
        padding: 7px 14px;
    }

    .hero-promise-grid {
        column-gap: 1rem;
        row-gap: 1.1rem;
    }
}


/* ============================================
   CTA SECTION AFTER TESTIMONIALS
   ============================================ */
.testimonials-cta-section {
    background: linear-gradient(0deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0) 100%);
    padding: 60px 0 100px 0;
}

.cta-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-card .btn {
    font-size: 18px;
    padding: 14px 40px;
}

/* ============================================
   SECURITY SECTION - UPDATED
   ============================================ */
.security-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 100px;
    padding: 1.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* ============================================
   BOOKING SECTION - PROTECTED 90% OFF BADGE
   ============================================ */
#book .pulse-badge {
    background: var(--gradient-success);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* ============================================
   TESTIMONIALS CAROUSEL - ARROWS OUTSIDE CONTAINER
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    overflow: visible; /* Allow overflow for arrows */
}

/* Outer wrapper with relative positioning for arrows */
.testimonials-outer-wrapper {
    position: relative;
    max-width: 1200px; /* Wider to accommodate arrows */
    margin: 0 auto;
    padding: 0 20px;
}

/* Container for the actual testimonials */
.testimonials-container {
    max-width: 1000px; /* Narrower content area */
    margin: 0 auto;
    position: relative;
}

/* Override Swiper's position to static to allow arrows outside */
.testimonials-swiper {
    padding: 30px 30px 60px 30px; /* Equal padding on both sides */
    margin: 0; /* Remove negative margin */
    position: static; /* Critical for arrows outside */
    overflow: hidden; /* Hide extra slides */
}

/* Swiper wrapper - Add padding for shadows */
.testimonials-swiper .swiper-wrapper {
    padding: 30px; /* Padding around all slides for shadows */
}

/* Individual slide padding */
.testimonials-swiper .swiper-slide {
    padding: 20px; /* Space for shadow on each slide */
    margin-left: -10px;
}

/* Visible wrapper to show shadows */
.swiper-wrapper {
    padding: 10px; /* Space for shadows */
}

/* Single testimonial card */
.testimonial-slide {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    height: 300px;
    display: flex;
    flex-direction: column;
}

/* CSS stars with yellow fill */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.star-filled {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #FFD700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Testimonial text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    flex: 1;
    margin-bottom: 1rem;
}

/* Author section - NO country text, only flag */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.author-name {
    font-weight: 600;
    color: #2d2d2d;
    font-size: 14px;
}

.author-location {
    display: flex;
    align-items: center;
}

.country-flag {
    font-size: 20px;
}

/* Navigation arrows - positioned OUTSIDE the testimonials container */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: none;
    border-radius: 50%;
    box-shadow: none;
    color: #667eea;
}


.swiper-button-prev:hover,
.swiper-button-next:hover {
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination dots below cards */
.swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: auto;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    opacity: 1;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: #667eea;
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    /* Ensure 3 cards visible on large screens */
    .testimonials-swiper .swiper-slide {
        width: calc((100% - 60px) / 3);
    }
}

@media (max-width: 1199px) {
    .testimonials-outer-wrapper {
        max-width: 100%;
    }
    
    .testimonials-container {
        max-width: 800px;
    }
    
}

@media (max-width: 768px) {
    .testimonials-container {
        max-width: 100%;
        /*padding: 0 60px;*/
    }
    
    /* Force 1 card on mobile */
    .testimonials-swiper .swiper-slide {
        width: 100%;
    }
        
    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    .hero-promise-grid {
        column-gap: 1.1rem;
        row-gap: 1.2rem;
    }
}

@media (max-width: 414px) {

    .hero-main-title {
    font-size: 10vw;
    }

    .about-content {
    padding: 60px 20px;
    }

    .testimonials-container {
        padding: 0px;
    }

    .hero-cta {
        padding: 10px 20px;
    }

    .cta-card {
    padding: 2rem;
    margin: 1rem;
    }

    .cta-card .btn {
    font-size: 18px;
    padding: 14px 20px;
    }

    .promise-item:nth-child(odd) {
    flex-direction: unset;
    text-align: left;
    padding: 7px 14px;
   }

    .security-strip {
        align-items: start;
    }

    .hero-promise-grid {
        column-gap: 1rem;
        row-gap: 1.1rem;
    }
}

@media (max-width: 991) {
    h2, .process-title, .section-title-modern, .reasons-title, .security-title, .display-4 {
        font-size: 2.5rem;
    }
}

/* ============================================
   SESSION FLOW SECTION - What Actually Happens
   ============================================ */
/* What Actually Happens Section - Scroll Animations */
.section--session-flow {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.session-bg-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: subtle-rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes subtle-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Section elements with animation states */
.session-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.session-lead.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Journey Timeline - Animation Ready */
.session-journey {
    margin: 60px 0;
    position: relative;
}

.journey-stage {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-stage.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays */
.journey-stage[data-stage="1"] { transition-delay: 0.1s; }
.journey-stage[data-stage="2"] { transition-delay: 0.3s; }
.journey-stage[data-stage="3"] { transition-delay: 0.5s; }

/* Stage Visual */
.stage-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stage-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--bridge-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bridge-color);
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.journey-stage.animate-in .stage-number {
    transform: scale(1);
}

.stage-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bridge-color), var(--wisdom-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    opacity: 0;
    transform: rotateY(90deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.journey-stage.animate-in .stage-icon {
    opacity: 1;
    transform: rotateY(0);
}

/* Stage Content */
.stage-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, var(--bridge-color), var(--wisdom-color));
    border-image-slice: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.journey-stage.animate-in .stage-content {
    transform: translateY(0);
    opacity: 1;
}

.stage-content h4 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.stage-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.stage-insight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.journey-stage.animate-in .stage-insight {
    opacity: 1;
    transform: translateX(0);
}

.stage-insight i {
    color: var(--bridge-color);
    font-size: 1.25rem;
}

.stage-insight span {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Journey Connector */
.journey-connector {
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -20px 0;
}

.connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--bridge-color), var(--wisdom-color));
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-connector.animate-in .connector-line {
    opacity: 0.3;
    transform: scaleY(1);
}

.connector-pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--bridge-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s;
}

.journey-connector.animate-in .connector-pulse {
    opacity: 0.6;
    transform: scale(1);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px 5px rgba(102, 126, 234, 0);
        transform: scale(1.1);
    }
}

/* Impact Card Animation */
.impact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bridge-color), var(--wisdom-color));
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.impact-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.impact-card.animate-in::before {
    transform: scaleX(1);
}

.impact-icon {
    font-size: 3rem;
    color: var(--bridge-color);
    opacity: 0;
    transform: rotateZ(-180deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.impact-card.animate-in .impact-icon {
    opacity: 1;
    transform: rotateZ(0);
}

.impact-card h3 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.impact-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Trust Indicators Animation */
.session-trust {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.session-trust.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.trust-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.session-trust.animate-in .trust-item:nth-child(1) {
    transition-delay: 0.1s;
}

.session-trust.animate-in .trust-item:nth-child(2) {
    transition-delay: 0.2s;
}

.session-trust.animate-in .trust-item:nth-child(3) {
    transition-delay: 0.3s;
}

.session-trust.animate-in .trust-item {
    opacity: 1;
    transform: scale(1);
}

.trust-item i {
    font-size: 2rem;
    color: var(--bridge-color);
}

.trust-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Reverse animations when scrolling up */
.animate-out {
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

.journey-stage.animate-out {
    transform: translateX(-30px) !important;
}

.impact-card.animate-out {
    transform: translateY(30px) scale(0.95) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .journey-stage {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stage-visual {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .stage-content {
        padding: 20px;
    }
    
    .journey-connector {
        display: none;
    }
}

/* ============================================
   HERO DIFFERENTIATOR MESSAGE
   ============================================ */
.hero-differentiator {
    max-width: 750px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 5s forwards;
}

.hero-differentiator p {
    color: white;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.hero-differentiator p:last-child {
    margin-bottom: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   DIFFERENCE SECTION - IMPROVED STYLING & ANIMATION
   ============================================ */
.section--difference {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section--difference::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.difference-title {
    font-size: 2.5rem;
    color: var(--text-light);
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.difference-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    align-items: center;
}

.comparison-card {
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card.traditional {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    transform: translateX(-50px);
}

.comparison-card.traditional.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.comparison-card.modern {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 2px solid #667eea;
    transform: translateX(50px);
}

.comparison-card.modern.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.card-label {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.comparison-card.traditional .card-label {
    color: #6c757d;
}

.comparison-card.modern .card-label {
    color: #667eea;
    border-bottom-color: #667eea;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card.animate-in li {
    opacity: 1;
    transform: translateX(0);
}

.comparison-card.animate-in li:nth-child(1) { transition-delay: 0.4s; }
.comparison-card.animate-in li:nth-child(2) { transition-delay: 0.5s; }
.comparison-card.animate-in li:nth-child(3) { transition-delay: 0.6s; }
.comparison-card.animate-in li:nth-child(4) { transition-delay: 0.7s; }

.comparison-card li:last-child {
    border-bottom: none;
}

.comparison-card li i {
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.comparison-card.traditional li i {
    color: #dc3545;
}

.comparison-card.modern li i {
    color: #10B981;
}

.comparison-card li span {
    flex: 1;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-arrow {
    font-size: 3rem;
    color: #667eea;
    font-weight: bold;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.comparison-arrow.animate-in {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.3s;
}

.difference-statement {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 20px;
    border: 2px solid #667eea;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.difference-statement.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}

.statement-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.difference-statement p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.difference-statement strong {
    color: #667eea;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .comparison-arrow {
        display: none;
    }
    
    .comparison-card.traditional,
    .comparison-card.modern {
        transform: translateY(20px);
    }
    
    .comparison-card.traditional.animate-in,
    .comparison-card.modern.animate-in {
        transform: translateY(0);
    }
    
    .difference-statement {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .statement-icon {
        margin: 0 auto;
    }
    
/* ============================================
   HERO DIFFERENTIATOR MESSAGE - UPDATED
   ============================================ */
.hero-differentiator {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 1.75rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 5s forwards;
}

.hero-differentiator p {
    color: white;
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
  
}

@media (max-width: 414px) {
    .section--difference {
        padding: 60px 0;
    }
    
    .difference-title {
        font-size: 2rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .comparison-card li {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
}

