/* ==========================================================================
   SA INFOTECHS - HOME.CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   7. Hero Slider Section (Matching Reference Screenshots & Multi-slide)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   7. Hero Slider Section (Automatic Multi-slide with New Background)
   -------------------------------------------------------------------------- */
.hero-slider-section {
    position: relative;
    width: 100%;
    min-height: 640px;
    height: calc(88vh - var(--header-height));
    max-height: 820px;
    overflow: hidden;
    background: #060912;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}
/* .hero-main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    transform: scale(2.02);
    z-index: 0;
} */

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 9, 18, 0.68) 0%, rgba(6, 9, 18, 0.42) 50%, rgba(6, 9, 18, 0.82) 100%);
    z-index: 1;
}

.hero-watermark-text {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 13vw, 9.5rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.06);
    color: transparent;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    white-space: nowrap;
    text-transform: uppercase;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-content {
    text-align: center;
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 24px;
}

.hero-slide-tag {
    font-size: 1rem;
    font-weight: 700;
    color: #00DFD8;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 22px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(-12px);
    transition: all 0.3s ease 0.05s;
}

.hero-slide.active .hero-slide-tag {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.6vw, 4.85rem);
    font-weight: 800;
    line-height: 1.16;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.35s ease 0.1s;
}

.hero-slide.active .hero-slide-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-actions {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease 0.15s;
}

.hero-slide.active .hero-slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-hero {
    background: linear-gradient(135deg, #0072ff 0%, #7928ca 100%) !important;
    color: #ffffff !important;
    padding: 16px 46px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 6px 24px rgba(0, 114, 255, 0.4);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.btn-hero:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 32px rgba(0, 223, 216, 0.5);
    color: #ffffff !important;
}

/* Hero Slider Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(6, 9, 18, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-base);
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    box-shadow: 0 0 24px rgba(0, 198, 255, 0.65);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev {
    left: 28px;
}

.hero-arrow-next {
    right: 28px;
}

/* Hero Slider Pagination Dots */
.hero-dots-container {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    width: 32px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    box-shadow: 0 0 14px rgba(0, 198, 255, 0.75);
}

/* Floating Navigation Arrows for Portfolio and Team Sliders */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 114, 255, 0.22);
    color: #0072ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 114, 255, 0.12);
    transition: all var(--transition-base);
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(0, 114, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.portfolio-arrow-prev, .team-arrow-prev {
    left: -22px;
}

.portfolio-arrow-next, .team-arrow-next {
    right: -22px;
}

@media (max-width: 900px) {
    .portfolio-arrow-prev, .team-arrow-prev {
        left: 4px;
    }
    .portfolio-arrow-next, .team-arrow-next {
        right: 4px;
    }
    .hero-arrow-prev { left: 12px; }
    .hero-arrow-next { right: 12px; }
}

/* --------------------------------------------------------------------------
   7B. Home Introduction Section (Who We Are, What We Do, How We Help)
   -------------------------------------------------------------------------- */
.home-intro-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 115px;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 114, 255, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 80% 30%, rgba(0, 198, 255, 0.10) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 90%, rgba(5, 19, 71, 0.05) 0%, transparent 55%),
                linear-gradient(180deg, #f8fafc 0%, #f0f7ff 50%, #f8fafc 100%);
    background-size: 100% 100%;
    background-position: center top, right top, center bottom, center center;
    border-top: 1px solid rgba(0, 114, 255, 0.14);
    border-bottom: 1px solid rgba(0, 114, 255, 0.14);
    z-index: 2;
}

/* Ambient Glowing Orbs */
.home-intro-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.18) 0%, rgba(0, 114, 255, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.home-intro-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(0, 114, 255, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.home-intro-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.home-intro-header {
    max-width: 880px;
    margin: 0 auto 55px;
}

.home-intro-badge {
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 114, 255, 0.08);
    color: #0072ff;
    border: 1px solid rgba(0, 114, 255, 0.18);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
}

.home-intro-title {
    font-family: var(--font-display, inherit);
    font-size: clamp(2.1rem, 3.8vw, 2.9rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
}

.home-intro-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.72;
    margin: 0 auto;
    max-width: 600px;
}

/* The Three Pillars Grid */
.home-intro-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 0;
}

.home-intro-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 32px 34px;
    position: relative;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.home-intro-pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 114, 255, 0.35);
    box-shadow: 0 16px 36px rgba(0, 114, 255, 0.12);
}

.home-intro-pillar-card.active-pillar {
    border-color: rgba(0, 114, 255, 0.28);
    box-shadow: 0 8px 26px rgba(0, 114, 255, 0.08);
    position: relative;
}

.home-intro-pillar-card.active-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 0 0 4px 4px;
}

.pillar-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pillar-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.1) 0%, rgba(121, 40, 202, 0.1) 100%);
    border: 1px solid rgba(0, 114, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: #0072ff;
    transition: all 0.3s ease;
}

.home-intro-pillar-card:hover .pillar-icon-box {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.35);
    transform: scale(1.05);
}

.pillar-step-num {
    font-family: var(--font-display, inherit);
    font-size: 1.4rem;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.home-intro-pillar-card:hover .pillar-step-num {
    color: #0072ff;
}

.pillar-title {
    font-family: var(--font-display, inherit);
    font-size: 1.38rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pillar-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.62;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pillar-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pillar-features-list li {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 9px;
}

.pillar-features-list li i {
    color: #0072ff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .home-intro-pillars-grid {
        gap: 20px;
    }
    
    .home-intro-pillar-card {
        padding: 30px 24px 28px;
    }
}

@media (max-width: 860px) {
    .home-intro-section {
        padding: 70px 0 65px;
    }

    .home-intro-pillars-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .home-intro-section {
        padding: 60px 0 50px;
    }
}

/* --------------------------------------------------------------------------
   8. Highlights / Our Core Features Section (Matching Screenshot)
   -------------------------------------------------------------------------- */
.core-features-section {
    padding: 75px 0 85px;
    background: #ffffff;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #f1f5f9;
}

.core-features-header {
    text-align: center;
    margin-bottom: 55px;
}

.core-features-tag {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0072ff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: var(--font-display, inherit);
}

.core-features-title {
    font-family: var(--font-display, inherit);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin: 0 auto;
    max-width: 860px;
}

.core-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    align-items: flex-start;
}

.core-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.core-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-feature-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.core-feature-content {
    flex: 1;
}

.core-feature-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
}

.core-feature-desc {
    font-size: 0.94rem;
    color: #4b5563;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 991px) {
    .core-features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 540px;
        margin: 0 auto;
    }
}



/* --------------------------------------------------------------------------
   What We Do / How To Grow Your Business (media_1788348349923.png)
   -------------------------------------------------------------------------- */
.grow-business-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 115px;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 114, 255, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 80% 30%, rgba(0, 198, 255, 0.10) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 90%, rgba(5, 19, 71, 0.05) 0%, transparent 55%),
                linear-gradient(180deg, #f8fafc 0%, #f0f7ff 50%, #f8fafc 100%);
    background-size: 100% 100%;
    background-position: center top, right top, center bottom, center center;
    border-top: 1px solid rgba(0, 114, 255, 0.14);
    border-bottom: 1px solid rgba(0, 114, 255, 0.14);
    z-index: 2;
}

/* Ambient Glowing Orbs */
.grow-business-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.18) 0%, rgba(0, 114, 255, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.grow-business-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(0, 114, 255, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.grow-business-section .container {
    position: relative;
    z-index: 2;
}

.grow-biz-header {
    margin-bottom: 48px;
}

.grow-biz-tag {
    display: inline-block;
    color: #2563eb;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.grow-biz-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.grow-biz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grow-biz-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 38px 26px 36px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.7);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.grow-biz-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.25);
}

.grow-biz-icon-box {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform var(--transition-fast);
}

.grow-biz-card:hover .grow-biz-icon-box {
    transform: scale(1.08);
}

.grow-biz-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.grow-biz-card-title {
    font-size: 1.28rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.grow-biz-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 1100px) {
    .grow-biz-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 640px) {
    .grow-biz-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .grow-biz-title {
        font-size: 1.85rem;
    }
    .grow-biz-card {
        padding: 30px 22px;
    }
}



/* --------------------------------------------------------------------------
   12. Projects / Portfolio Section
       (Ultra-Premium Brand-Blue Cyber Background & Flowing Ambient Glow)
   -------------------------------------------------------------------------- */
.portfolio-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 115px;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 114, 255, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 80% 30%, rgba(0, 198, 255, 0.10) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 90%, rgba(5, 19, 71, 0.05) 0%, transparent 55%),
                linear-gradient(180deg, #f8fafc 0%, #f0f7ff 50%, #f8fafc 100%);
    background-size: 100% 100%;
    background-position: center top, right top, center bottom, center center;
    border-top: 1px solid rgba(0, 114, 255, 0.14);
    border-bottom: 1px solid rgba(0, 114, 255, 0.14);
}

/* Ambient Glowing Orbs */
.portfolio-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.18) 0%, rgba(0, 114, 255, 0.04) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

.portfolio-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.15) 0%, rgba(0, 114, 255, 0.03) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(65px);
    pointer-events: none;
    z-index: 0;
}

/* Flowing Vector Cyber Curves (SVG) */
.cyber-bg-curves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.portfolio-section .container {
    position: relative;
    z-index: 2;
}

/* Badge Pill in Portfolio Section */
.portfolio-section .badge-pill {
    background: rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.22);
    color: #0072ff;
    box-shadow: 0 4px 14px rgba(0, 114, 255, 0.1);
}

.portfolio-section .badge-pill i {
    color: #0072ff;
}

/* Section Title & Subtitle */
.portfolio-section .section-title {
    color: #051347;
}

.portfolio-section .section-title .gradient-text {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-section .section-subtitle {
    color: #475569;
    max-width: 650px;
    margin: 0 auto 32px;
}

/* View All Projects Action Pill */
.portfolio-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.portfolio-section .filter-btn {
    padding: 10px 28px;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1.5px solid rgba(0, 114, 255, 0.22);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #051347;
    box-shadow: 0 4px 16px rgba(0, 114, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.portfolio-section .filter-btn:hover {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 114, 255, 0.35);
    transform: translateY(-2px);
}

.portfolio-section .filter-btn i {
    font-size: 0.82rem;
    color: #0072ff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.portfolio-section .filter-btn:hover i {
    color: #ffffff;
    transform: translateX(2px) translateY(-1px);
}

/* --------------------------------------------------------------------------
   Portfolio Single-Line Automatic Slider
   -------------------------------------------------------------------------- */
.portfolio-slider-container {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.portfolio-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 14px 4px 24px 4px;
}

.portfolio-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.portfolio-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07), 0 4px 14px rgba(0, 114, 255, 0.05);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.portfolio-card.hidden { display: none !important; }

/* Top Accent Line on Hover */
.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 3;
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 114, 255, 0.35);
    box-shadow: 0 22px 50px rgba(0, 114, 255, 0.16), 0 4px 12px rgba(15, 23, 42, 0.05);
}

@media (max-width: 1024px) {
    .portfolio-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .portfolio-card {
        flex: 0 0 100%;
    }
}

.portfolio-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
    height: 14px;
}

.portfolio-dot,
.port-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    max-width: 10px;
    min-height: 10px;
    max-height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
    flex-shrink: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-dot:hover,
.port-dot:hover {
    background: #94a3b8;
}

.portfolio-dot.active,
.port-dot.active {
    width: 28px;
    min-width: 28px;
    max-width: 28px;
    height: 10px;
    min-height: 10px;
    max-height: 10px;
    border-radius: 6px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    box-shadow: 0 3px 10px rgba(0, 114, 255, 0.35);
}

.portfolio-img-container {
    position: relative;
    height: 215px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* Project Real Image */
.portfolio-project-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px 24px;
    background: transparent;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-project-img {
    transform: scale(1.06);
}

.portfolio-info {
    padding: 20px 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.portfolio-category {
    font-size: 0.76rem;
    font-weight: 700;
    color: #0072ff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.portfolio-title {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.35;
    color: #051347;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
    color: #0072ff;
}

/* --------------------------------------------------------------------------
   All Projects Gallery Modal
   -------------------------------------------------------------------------- */
.all-projects-modal-card {
    width: min(96vw, 1560px);
    max-width: 1560px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 28px 32px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(0, 114, 255, 0.18);
    box-shadow: 0 30px 70px -10px rgba(15, 23, 42, 0.3);
}

.all-projects-modal-header {
    text-align: center;
    margin-bottom: 22px;
}

.all-projects-modal-header .modal-badge-pill {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.22);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #0072ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.all-projects-modal-header .modal-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #051347;
    margin-bottom: 6px;
}

.all-projects-modal-header .modal-desc {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.all-projects-modal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 10px;
}

@media (max-width: 1250px) {
    .all-projects-modal-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .all-projects-modal-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 720px) {
    .all-projects-modal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .all-projects-modal-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.modal-project-item {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.modal-project-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 114, 255, 0.35);
    box-shadow: 0 14px 30px rgba(0, 114, 255, 0.15);
}

.modal-project-img-box {
    height: 115px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

.modal-project-img-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.modal-project-item:hover .modal-project-img-box img {
    transform: scale(1.05);
}

.modal-project-details {
    padding: 12px 14px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.modal-project-cat {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    color: #0072ff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.modal-project-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #051347;
    margin: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.modal-project-item:hover .modal-project-name {
    color: #0072ff;
}

/* --------------------------------------------------------------------------
   Full Display Project Modal
   -------------------------------------------------------------------------- */
.project-detail-modal-card {
    max-width: 840px;
    width: min(94vw, 840px);
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 36px;
    border-radius: 22px;
    border: 1px solid rgba(0, 114, 255, 0.2);
    box-shadow: 0 30px 80px -15px rgba(15, 23, 42, 0.35);
}

.modal-project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.modal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0072ff;
    background: rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.25);
    border-radius: 9999px;
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-back-btn:hover {
    background: #0072ff;
    color: #ffffff;
    border-color: #0072ff;
    transform: translateX(-3px);
}

.project-detail-modal-card .modal-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #051347;
    margin-bottom: 16px;
    line-height: 1.25;
}

.modal-project-preview-wrap {
    width: 100%;
    min-height: 200px;
    max-height: 360px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.modal-project-preview-img {
    max-width: 100%;
    max-height: 320px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease;
}

.modal-project-preview-wrap:hover .modal-project-preview-img {
    transform: scale(1.02);
}

.project-detail-modal-card .modal-desc {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 22px;
}

.project-detail-modal-card .modal-stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 26px;
}

.m-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.m-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 114, 255, 0.1);
    color: #0072ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.m-stat-info {
    display: flex;
    flex-direction: column;
}

.m-stat .m-label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 2px;
}

.m-stat .m-val {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 700;
}

.project-modal-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.modal-return-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 9999px;
    border: 1.5px solid #0072ff;
    color: #0072ff;
    background: transparent;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-return-gallery-btn:hover {
    background: rgba(0, 114, 255, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .project-detail-modal-card {
        padding: 24px 18px;
    }
    .project-detail-modal-card .modal-title {
        font-size: 1.35rem;
    }
    .modal-project-preview-wrap {
        min-height: 180px;
        max-height: 250px;
        padding: 10px;
    }
    .modal-project-preview-img {
        max-height: 220px;
    }
    .project-detail-modal-card .modal-stats-box {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }
    .project-modal-actions {
        flex-direction: column;
        width: 100%;
    }
    .project-modal-actions .btn,
    .project-modal-actions .modal-return-gallery-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   13. Work Process Section (Directly Below Project Success Stories)
   -------------------------------------------------------------------------- */
.work-process-section {
    position: relative;
    background-color: #e5e7eb;
    background: linear-gradient(180deg, #e5e7eb 0%, #dbe0e8 100%);
    padding: 85px 0 110px;
    overflow: hidden;
    border-bottom: 1px solid #cbd5e1;
}

.process-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #3b5078;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.process-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 45px;
    letter-spacing: -0.02em;
}

.process-main-title .highlight-it {
    color: #4355b9;
    font-weight: 900;
}

/* Flow Container with dashed track */
.process-flow-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.process-svg-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.process-dashed-line {
    stroke: #8fa2c4;
    stroke-width: 2.4;
    stroke-dasharray: 6 7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Staggered Cards Grid */
.process-cards-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: start;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered Heights matching the design */
.process-step-item.step-high {
    margin-top: 0;
}

.process-step-item.step-low {
    margin-top: 48px;
}

/* Connecting Node Dot */
.process-node-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #344365;
    border: 3.5px solid #ced7e5;
    box-shadow: 0 0 0 4px rgba(52, 67, 101, 0.14);
    margin-bottom: 26px;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step-item:hover .process-node-dot {
    transform: scale(1.25);
    background: #4355b9;
    box-shadow: 0 0 0 6px rgba(67, 85, 185, 0.2);
}

/* White Step Card */
.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 24px 34px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 35px rgba(28, 39, 60, 0.08), 0 2px 8px rgba(28, 39, 60, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-item:hover .process-card {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(28, 39, 60, 0.14), 0 6px 16px rgba(28, 39, 60, 0.06);
}

/* 3D Icon Box */
.process-icon-box {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
    transition: transform 0.4s ease;
}

.process-step-item:hover .process-step-img {
    transform: scale(1.12);
}

/* Card Title & Desc */
.process-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .process-step-item.step-low {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .process-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .process-main-title {
        font-size: 1.9rem;
    }
    .process-card {
        padding: 30px 20px 26px;
    }
}

/* --------------------------------------------------------------------------
   Fullscreen Projects Page View (data-page="projects")
   -------------------------------------------------------------------------- */
.all-projects-fullscreen-section {
    padding: 80px 0 100px;
    background: #f8fafc;
    min-height: 80vh;
}

.projects-back-btn-row {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.back-to-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-primary);
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.back-to-home-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.projects-fullscreen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .projects-fullscreen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .projects-fullscreen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.fullscreen-project-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.fullscreen-project-card:hover {
    transform: translateY(-8px);
    border-color: var(--logo-blue);
    box-shadow: 0 20px 40px -8px rgba(0, 114, 255, 0.16);
}

.fullscreen-project-img-box {
    height: 230px;
    background: #ffffff;
    border-bottom: 1.5px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.fullscreen-project-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-project-card:hover .fullscreen-project-img-box img {
    transform: scale(1.08);
}

.fullscreen-project-body {
    padding: 22px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
}

.fullscreen-project-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.fullscreen-project-card:hover .fullscreen-project-title {
    color: var(--logo-blue);
}

.projects-fullscreen-cta {
    margin-top: 70px;
    background: linear-gradient(135deg, #050d24 0%, #0d1b3e 100%);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(5, 13, 36, 0.15);
}

.projects-fullscreen-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.projects-fullscreen-cta p {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 550px;
    margin: 0 auto 24px;
}



/* --------------------------------------------------------------------------
   15. FAQ Section (2-Column Visual & Interactive Accordion Showcase)
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 100px 0 110px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-layout-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr;
    gap: 60px;
    align-items: center;
}

/* Left Visual Showcase */
.faq-visual-col {
    position: relative;
}

.faq-visual-wrapper {
    position: relative;
    padding: 20px 20px 30px;
}

/* Ambient Concentric Rings Backdrop */
.faq-ambient-rings {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 1;
}

.faq-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(0, 114, 255, 0.12);
}

.faq-ring.ring-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.05) 0%, transparent 70%);
}

.faq-ring.ring-2 {
    width: 480px;
    height: 480px;
    border-color: rgba(0, 198, 255, 0.15);
}

.faq-ring.ring-3 {
    width: 580px;
    height: 580px;
    border-style: dashed;
    border-color: rgba(0, 114, 255, 0.08);
}

/* Image Card */
.faq-image-card {
    position: relative;
    border-radius: 36px 140px 36px 36px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border: 5px solid #ffffff;
    max-width: 480px;
    height: 520px;
    z-index: 2;
    background: #f1f5f9;
}

.faq-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-image-card:hover .faq-main-img {
    transform: scale(1.04);
}

/* Floating Customer Feedback Pill (Positioned Down) */
.faq-floating-feedback {
    position: absolute;
    bottom: 24px;
    right: -15px;
    background: #ffffff;
    border-radius: 99px;
    padding: 12px 24px 12px 16px;
    box-shadow: 0 16px 40px rgba(5, 19, 71, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.95);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
    animation: floatFeedback 6s ease-in-out infinite;
}

.faq-avatars-group {
    display: flex;
    align-items: center;
}

.faq-avatar-mini {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #ffffff;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.faq-avatar-mini:first-child {
    margin-left: 0;
}

.faq-feedback-info {
    display: flex;
    flex-direction: column;
}

.faq-feedback-title {
    font-size: 0.96rem;
    font-weight: 800;
    color: #051347;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.faq-stars {
    color: #f59e0b;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.faq-rating-num {
    color: #475569;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: 6px;
}

@keyframes floatFeedback {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Right FAQ Content Column */
.faq-content-col {
    position: relative;
    z-index: 2;
}

.faq-section-header {
    margin-bottom: 28px;
}

.faq-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: #051347;
    line-height: 1.25;
    margin-top: 14px;
    letter-spacing: -0.02em;
}

/* Modern Clean Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.accordion-item.active {
    border-color: #051347;
    box-shadow: 0 10px 28px rgba(5, 19, 71, 0.09);
}

.accordion-trigger {
    width: 100%;
    padding: 18px 22px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #ffffff;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.25s ease;
}

.accordion-question {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.accordion-toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 114, 255, 0.08);
    color: #0072ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

/* Active Trigger (Navy Background with White Text matching reference) */
.accordion-item.active .accordion-trigger {
    background: #051347;
}

.accordion-item.active .accordion-question {
    color: #ffffff;
}

.accordion-item.active .accordion-toggle-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Accordion Panel */
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-panel {
    max-height: 500px;
}

.accordion-panel-inner {
    padding: 18px 22px 22px;
    background: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.accordion-panel-inner p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.68;
    margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .faq-layout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .faq-image-card {
        max-width: 100%;
        height: 420px;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 70px 0 80px;
    }
    .faq-image-card {
        height: 320px;
        border-radius: 24px;
    }
    .faq-title {
        font-size: 1.7rem;
    }
    .faq-floating-feedback {
        position: static;
        margin-top: 18px;
        width: 100%;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }
    .accordion-trigger {
        padding: 16px 18px;
    }
    .accordion-question {
        font-size: 0.94rem;
    }
}



/* --------------------------------------------------------------------------
   17. CTA Consultation Banner (Matching Screenshot Photo)
   -------------------------------------------------------------------------- */
.cta-banner-section {
    padding: 35px 0 65px;
    position: relative;
    z-index: 2;
}

.cta-banner-box {
    position: relative;
    background: 
        radial-gradient(100% 100% at 15% 15%, rgba(121, 40, 202, 0.5) 0%, transparent 60%),
        radial-gradient(100% 100% at 85% 85%, rgba(0, 223, 216, 0.22) 0%, transparent 60%),
        linear-gradient(135deg, #0d0920 0%, #170e38 25%, #251052 50%, #3b0764 78%, #1a0836 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    padding: 68px 40px 62px;
    text-align: center;
    box-shadow: 0 24px 70px -10px rgba(17, 10, 48, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    overflow: hidden;
}

.banner-aura {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.42) 0%, rgba(0, 223, 216, 0.18) 50%, transparent 70%);
    filter: blur(48px);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-box .badge-pill.light {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff !important;
    padding: 8px 24px;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    text-decoration: none !important;
    transition: all var(--transition-base);
    cursor: pointer;
}

.cta-banner-box .badge-pill.light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.cta-banner-box .badge-pill.light i {
    color: #00DFD8;
}

.dash-mid {
    display: inline-block;
    vertical-align: 0.12em;
    line-height: 1;
    font-weight: 700;
}

.banner-title {
    font-family: var(--font-display, inherit);
    font-size: clamp(2.1rem, 3.8vw, 2.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.banner-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 34px;
    max-width: 680px;
    line-height: 1.6;
}

.banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.btn-light {
    background: #ffffff !important;
    color: #1e293b !important;
    border-radius: 9999px !important;
    padding: 15px 42px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22) !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all var(--transition-base) !important;
    text-decoration: none !important;
}

.btn-light i {
    transition: transform 0.25s ease;
}

.btn-light:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.btn-light:hover i {
    transform: translateX(4px);
}

.btn-outline-white {
    background: transparent !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 9999px !important;
    padding: 14px 34px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all var(--transition-base) !important;
    text-decoration: none !important;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* ==========================================================================
   18. Startup IT Solutions Section (Executive Tech Navy Theme & Large Media Showcase)
   ========================================================================== */
.startup-solution-section {
    position: relative;
    overflow: hidden;
    padding: 125px 0 175px;
    background: 
        radial-gradient(circle at 85% 20%, rgba(0, 114, 255, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(0, 223, 216, 0.16) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(13, 27, 62, 0.6) 0%, transparent 70%),
        linear-gradient(145deg, #070e24 0%, #0c193b 50%, #060b1e 100%);
    border-top: 1px solid rgba(56, 189, 248, 0.16);
    border-bottom: 1px solid rgba(56, 189, 248, 0.16);
    z-index: 2;
}

/* Geometric High-Tech Grid Texture */
.startup-solution-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 1;
}

/* Ambient Deep Glow Elements */
.startup-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
    z-index: 0;
}

.startup-bg-glow.glow-left {
    top: 10%;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.25) 0%, transparent 70%);
}

.startup-bg-glow.glow-right {
    bottom: 5%;
    right: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 223, 216, 0.18) 0%, transparent 70%);
}

.startup-solution-section > .container {
    position: relative;
    z-index: 2;
}

.startup-solution-grid {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Left Content Column (Directly on Canvas, No Box/Card) */
.startup-content-col {
    max-width: 680px;
}

.startup-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 114, 255, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 7px 18px;
    border-radius: 9999px;
    margin-bottom: 22px;
    box-shadow: 0 0 16px rgba(0, 114, 255, 0.2);
}

.startup-pulse-indicator {
    width: 7px;
    height: 7px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 10px #38bdf8;
    animation: startupPulseIndicator 2s infinite;
}

@keyframes startupPulseIndicator {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.6; }
}

.startup-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: clamp(2.3rem, 3.6vw, 3.1rem);
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.startup-content-body {
    margin-bottom: 32px;
}

.startup-lead {
    font-size: 1.05rem;
    line-height: 1.84;
    color: #e2e8f0;
    margin-bottom: 18px;
    font-weight: 400;
}

.startup-subtext {
    font-size: 1.01rem;
    line-height: 1.84;
    color: #94a3b8;
    margin: 0;
    font-weight: 400;
}

/* Highlights List Directly on Background */
.startup-highlights-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.startup-highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    padding: 8px 16px;
    color: #f1f5f9;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.startup-highlight-item:hover {
    background: rgba(0, 114, 255, 0.16);
    border-color: rgba(56, 189, 248, 0.45);
    transform: translateY(-2px);
}

.highlight-icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0072ff, #00dfd8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.68rem;
    flex-shrink: 0;
}

/* ==========================================
   Trust & Appointment Action Pill (Reference Design)
   ========================================== */
.startup-trust-pill {
    margin-top: 36px;
    margin-bottom: 16px;
    background: #ffffff;
    border-radius: 9999px;
    padding: 14px 46px 14px 22px;
    min-height: 74px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.42), 0 0 24px rgba(56, 189, 248, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: max-content;
    box-sizing: border-box;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.startup-trust-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px -6px rgba(0, 0, 0, 0.5), 0 0 32px rgba(56, 189, 248, 0.25);
}

/* Segment 1: Overlapping Avatars & Appointment Action */
.trust-pill-segment {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.trust-appointment-segment {
    gap: 11px;
}

.trust-avatar-group {
    display: flex;
    align-items: center;
}

.trust-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    margin-left: -10px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0.3s ease;
    flex-shrink: 0;
}

.trust-avatar-img:first-child {
    margin-left: 0;
    z-index: 3;
}

.trust-avatar-img:nth-child(2) {
    z-index: 2;
}

.trust-avatar-img:nth-child(3) {
    z-index: 1;
}

.trust-avatar-img:hover {
    transform: scale(1.18);
    z-index: 10;
}

.trust-appointment-btn {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #0c193b;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.trust-appointment-btn:hover {
    color: #0072ff;
    transform: translateX(2px);
}

/* Diagonal Slanted Divider */
.trust-pill-divider {
    width: 1.5px;
    height: 36px;
    background: #e2e8f0;
    transform: skewX(-16deg);
    margin: 0 14px;
    flex-shrink: 0;
}

/* Segment 2: Active Clients Counter */
.trust-counter-segment {
    gap: 8px;
}

.trust-counter-num {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 1.95rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.03em;
    transition: transform 0.2s ease;
}

.trust-counter-labels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.trust-label-top {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0c193b;
    text-transform: uppercase;
}

.trust-label-sub {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #0c193b;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Segment 3: Reviews & Golden Stars */
.trust-reviews-segment {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.5px;
    padding-right: 2px;
}

.trust-star-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
    font-size: 0.82rem;
}

.trust-reviews-count {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: #0c193b;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* Right Media Column - Large Prominent Presentation */
.startup-media-col {
    display: flex;
    justify-content: center;
    position: relative;
}

.startup-media-showcase {
    position: relative;
    width: 100%;
    max-width: 620px;
}

/* Ambient Backdrop Aura */
.startup-img-ambient-aura {
    position: absolute;
    inset: 10% 5%;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.35) 0%, rgba(0, 223, 216, 0.15) 50%, transparent 75%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

/* Modern Geometric Offset Accent Frame */
.startup-img-accent-frame {
    position: absolute;
    inset: -14px -14px 14px 14px;
    border-radius: 46px 20px 46px 20px;
    border: 1.5px solid rgba(56, 189, 248, 0.32);
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.12) 0%, rgba(0, 223, 216, 0.04) 100%);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.startup-media-showcase:hover .startup-img-accent-frame {
    transform: translate(4px, -4px);
    border-color: rgba(56, 189, 248, 0.6);
}

/* Main Image Container with Stylish Asymmetric Silhouette */
.startup-img-stylish-mask {
    position: relative;
    z-index: 2;
    border-radius: 40px 18px 40px 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.15);
    background: #0d1b3e;
}

.startup-featured-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.startup-media-showcase:hover .startup-featured-img {
    transform: scale(1.035);
}

.startup-img-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(6, 12, 30, 0.5) 100%);
    pointer-events: none;
}

/* Modern Floating Capsule Experience Badge (Overlaid on Image, Not a Box) */
.startup-exp-capsule-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    z-index: 4;
    background: rgba(8, 16, 40, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(56, 189, 248, 0.55);
    border-radius: 60px;
    padding: 12px 26px 12px 16px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 18px 40px -8px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 114, 255, 0.3);
    animation: startupFloatingCapsule 4s ease-in-out infinite;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.startup-exp-capsule-badge:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 22px 50px -8px rgba(0, 0, 0, 0.75), 0 0 38px rgba(0, 114, 255, 0.45);
    border-color: rgba(56, 189, 248, 0.85);
}

@keyframes startupFloatingCapsule {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.startup-badge-aura {
    position: absolute;
    inset: -1px;
    border-radius: 60px;
    background: linear-gradient(90deg, rgba(0, 223, 216, 0.4), rgba(0, 114, 255, 0.4));
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.startup-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0072ff 0%, #00dfd8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(0, 223, 216, 0.5);
}

.startup-counter-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.startup-counter-number {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 2.85rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
    transition: transform 0.15s ease;
}

.startup-counter-plus {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: #38bdf8;
    line-height: 1;
}

.startup-badge-divider {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.4), transparent);
    flex-shrink: 0;
}

.startup-badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.startup-badge-heading {
    font-size: 0.96rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.startup-badge-sub {
    font-size: 0.84rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.25;
    white-space: nowrap;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .startup-solution-grid {
        gap: 40px;
    }
    .startup-title {
        font-size: 2.5rem;
    }
    .startup-exp-capsule-badge {
        left: -12px;
        bottom: 18px;
    }
    .startup-trust-pill {
        padding: 12px 32px 12px 20px;
        min-height: 68px;
    }
    .trust-pill-divider {
        margin: 0 12px;
    }
    .trust-appointment-btn {
        font-size: 0.76rem;
    }
    .trust-counter-num {
        font-size: 1.85rem;
    }
    .trust-avatar-img {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 991px) {
    .startup-solution-section {
        padding: 95px 0 145px;
    }
    .startup-solution-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .startup-content-col {
        max-width: 100%;
    }
    .startup-trust-pill {
        padding: 14px 36px 14px 24px;
        min-height: 72px;
    }
    .startup-media-col {
        justify-content: center;
    }
    .startup-media-showcase {
        max-width: 600px;
    }
    .startup-exp-capsule-badge {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 680px) {
    .startup-trust-pill {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 18px 24px;
        border-radius: 24px;
        margin-top: 26px;
        width: 100%;
        max-width: 440px;
    }
    .trust-pill-divider {
        width: 100%;
        height: 1px;
        transform: none;
        margin: 2px 0;
        background: #e2e8f0;
    }
    .trust-reviews-segment {
        align-items: center;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .startup-solution-section {
        padding: 70px 0 110px;
    }
    .startup-tag-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    .startup-title {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 18px;
    }
    .startup-lead {
        font-size: 0.98rem;
        line-height: 1.72;
        margin-bottom: 14px;
    }
    .startup-subtext {
        font-size: 0.94rem;
        line-height: 1.72;
    }
    .startup-highlights-list {
        gap: 10px;
    }
    .startup-highlight-item {
        font-size: 0.86rem;
        padding: 6px 14px;
    }
    .startup-img-stylish-mask {
        border-radius: 28px 14px 28px 14px;
    }
    .startup-img-accent-frame {
        inset: -8px -8px 8px 8px;
        border-radius: 32px 16px 32px 16px;
    }
    .startup-exp-capsule-badge {
        border-radius: 40px;
        padding: 10px 16px 10px 12px;
        gap: 12px;
        left: 12px;
        bottom: 12px;
    }
    .startup-badge-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .startup-counter-number {
        font-size: 2.1rem;
    }
    .startup-counter-plus {
        font-size: 1.35rem;
    }
    .startup-badge-divider {
        height: 30px;
    }
    .startup-badge-heading {
        font-size: 0.86rem;
    }
    .startup-badge-sub {
        font-size: 0.76rem;
    }
    .startup-trust-pill {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 18px 20px;
        border-radius: 20px;
        margin-top: 26px;
    }
    .trust-pill-divider {
        width: 100%;
        height: 1px;
        transform: none;
        margin: 2px 0;
        background: #e2e8f0;
    }
    .trust-reviews-segment {
        align-items: center;
    }
}

@media (max-width: 400px) {
    .startup-exp-capsule-badge {
        padding: 8px 12px 8px 10px;
        gap: 8px;
        left: 8px;
        bottom: 8px;
    }
    .startup-counter-number {
        font-size: 1.8rem;
    }
    .startup-counter-plus {
        font-size: 1.15rem;
    }
    .startup-badge-heading {
        font-size: 0.8rem;
    }
    .startup-badge-sub {
        font-size: 0.72rem;
    }
    .startup-trust-pill {
        padding: 16px 14px;
        gap: 14px;
    }
    .trust-appointment-btn {
        font-size: 0.74rem;
    }
    .trust-counter-num {
        font-size: 1.7rem;
    }
}
