
/* ========== Appdev PAGE ========= */

/* ----- CONTAINER ----- */
.app-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ----- HERO SECTION (no background) ----- */
.app-hero {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

/* glow orbs removed */
.app-hero::before,
.app-hero::after {
    display: none;
}

.app-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.app-hero-text {
    flex: 1 1 50%;
    min-width: 320px;
}

.app-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.20);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #a5b4fc;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    margin-bottom: 1.8rem;
}

.app-hero-badge i {
    color: #818cf8;
    font-size: 0.95rem;
}

.app-hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.app-hero-title .app-highlight {
    background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #b0b8d1;
    max-width: 560px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.app-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.app-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.30);
}

.app-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(99, 102, 241, 0.45);
    background: linear-gradient(135deg, #7477f5, #9b6dfa);
}

.app-btn-outline {
    background: transparent;
    color: #e0e7ff;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.app-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.app-btn-lg {
    padding: 1rem 2.4rem;
    font-size: 1.05rem;
}

.app-btn i {
    font-size: 1.1rem;
}

.app-hero-visual {
    flex: 1 1 40%;
    min-width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-phone-mockup {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.10), rgba(15, 18, 30, 0.9) 80%);
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 80px rgba(99, 102, 241, 0.03);
}

.app-phone-mockup i.fa-mobile-alt {
    color: rgba(255, 255, 255, 0.06);
    font-size: 10rem;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.15));
}

.app-mockup-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 18, 30, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.6rem 1.2rem;
    border-radius: 60px;
    color: #e0e7ff;
    font-weight: 500;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.app-mockup-badge i {
    font-size: 1.1rem;
}

.app-mockup-badge:first-of-type {
    top: 12%;
    left: -8%;
}

.app-mockup-badge.second {
    bottom: 16%;
    right: -10%;
}

.app-mockup-badge .fa-apple {
    color: #a5b4fc;
}

.app-mockup-badge .fa-google-play {
    color: #a5b4fc;
}

@media (max-width: 768px) {
    .app-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .app-hero-text {
        min-width: unset;
        flex: 1 1 100%;
    }

    .app-hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .app-hero-buttons {
        justify-content: center;
    }

    .app-hero-visual {
        flex: 1 1 100%;
        width: 100%;
    }

    .app-phone-mockup {
        max-width: 260px;
    }

    .app-mockup-badge:first-of-type {
        top: 8%;
        left: 0%;
    }

    .app-mockup-badge.second {
        bottom: 10%;
        right: 0%;
    }

    .app-hero {
        padding: 3rem 1rem;
        border-radius: 0;
    }

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


/* ----- SERVICES SECTION — transparent background ----- */
.app-services {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* remove decorative orbs */
.app-services::before,
.app-services::after {
    display: none;
}


/* ----- SECTION HEADER (reuses hero styles) ----- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .app-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.20);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #a5b4fc;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    margin-bottom: 1.8rem;
}

.section-header .app-hero-badge i {
    color: #818cf8;
    font-size: 0.95rem;
}

.section-header .app-hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-header .app-highlight {
    background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header .app-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #b0b8d1;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}


/* ============================================
   SERVICES GRID
   ============================================ */
.app-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 0.5rem;
}


/* ============================================
   SERVICE CARD — SIMPLE + WHITE
   ============================================ */
.app-service-card {
    /* white background */
    background: #ffffff;
    /* simple, clean border */
    border: 1px solid #e9edf4;
    border-radius: 1rem;
    padding: 2rem 1.5rem 1.8rem;
    /* subtle shadow — fast, no blur overload */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease;
}

.app-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    border-color: #d0d8e6;
}


/* ----- ICON — simple, light ----- */
.app-service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #f0f3fa;
    border: 1px solid #e4e9f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #4f5b7a;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.app-service-card:hover .app-service-icon {
    background: #e8edf8;
    border-color: #c8d0e0;
    color: #2d3a5e;
}


/* ----- TITLE — dark, bold ----- */
.app-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}


/* ----- DESCRIPTION — muted dark ----- */
.app-service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5770;
    margin-bottom: 1.25rem;
    flex: 1;
}


/* ----- FEATURES LIST — clean, simple ----- */
.app-service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.25rem;
}

.app-service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: #2d3a5e;
    font-weight: 450;
}

.app-service-features li i {
    color: #6366f1;
    font-size: 0.8rem;
    width: 1.1rem;
    text-align: center;
    flex-shrink: 0;
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ----- Tablets & small laptops (≤ 1024px) ----- */
@media (max-width: 1024px) {
    .app-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-header .app-hero-title {
        font-size: 2.2rem;
    }

    .section-header .app-hero-description {
        font-size: 1.05rem;
    }
}

/* ----- Mobile devices (≤ 768px) — 2 cards per row ----- */
@media (max-width: 768px) {
    .app-services {
        padding: 3rem 0;
    }

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

    .section-header {
        margin-bottom: 2.25rem;
    }

    .section-header .app-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        gap: 0.4rem;
    }

    .section-header .app-hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-header .app-hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .app-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }

    .app-service-card {
        padding: 1.2rem 0.9rem 1.2rem;
        border-radius: 0.9rem;
    }

    .app-service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        border-radius: 12px;
    }

    .app-service-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .app-service-desc {
        font-size: 0.82rem;
        margin-bottom: 0.9rem;
    }

    .app-service-features li {
        font-size: 0.78rem;
        gap: 0.4rem;
    }

    .app-service-features li i {
        font-size: 0.7rem;
        width: 0.9rem;
    }
}

/* ----- Very small phones (≤ 420px) — back to 1 column ----- */
@media (max-width: 420px) {
    .app-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-header .app-hero-title {
        font-size: 1.5rem;
    }

    .app-service-card {
        padding: 1.2rem 1rem;
    }

    .app-service-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}


/* ----- SECTION CONTAINER ----- */
.process {
    width: 100%;
    padding: 4rem 0;
    background: transparent;   /* matches your page background */
    position: relative;
}

.process .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ----- SECTION HEADER (consistent with AppDev) ----- */
.process .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.process .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.20);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #a5b4fc;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    margin-bottom: 1.8rem;
}

.process .section-tag i {
    color: #818cf8;
    font-size: 0.95rem;
}

.process .section-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.process .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #b0b8d1;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}


/* ----- STEPS GRID ----- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}


/* ----- STEP CARD — white, simple, fast ----- */
.step {
    background: #ffffff;
    border: 1px solid #e9edf4;
    border-radius: 1rem;
    padding: 2rem 1.5rem 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.2s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    border-color: #d0d8e6;
}


/* ----- STEP NUMBER (01, 02, …) ----- */
.step-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    transition: color 0.2s ease;
}

.step:hover .step-number {
    color: #6366f1;
}


/* ----- STEP ICON ----- */
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f0f3fa;
    border: 1px solid #e4e9f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4f5b7a;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.step:hover .step-icon {
    background: #e8edf8;
    border-color: #c8d0e0;
    color: #2d3a5e;
}


/* ----- STEP TITLE ----- */
.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}


/* ----- STEP DESCRIPTION ----- */
.step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5770;
    margin: 0;
    flex: 1;
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ----- Tablets (≤ 1024px) — 2 columns ----- */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process .section-title {
        font-size: 2.2rem;
    }

    .process .section-subtitle {
        font-size: 1.05rem;
    }
}

/* ----- Mobile (≤ 768px) — 1 column ----- */
@media (max-width: 768px) {
    .process {
        padding: 3rem 0;
    }

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

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

    .process .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        gap: 0.4rem;
    }

    .process .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .process .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .step {
        padding: 1.4rem 1.2rem;
        border-radius: 0.9rem;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        border-radius: 12px;
    }

    .step-title {
        font-size: 1.05rem;
    }

    .step-desc {
        font-size: 0.88rem;
    }
}

/* ----- Very small phones (≤ 420px) — same 1 column, tighter ----- */
@media (max-width: 420px) {
    .process .section-title {
        font-size: 1.5rem;
    }

    .step {
        padding: 1.2rem 1rem;
    }

    .step-number {
        font-size: 1.6rem;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}


/* ----- SECTION CONTAINER ----- */
.features {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
    position: relative;
}

.features .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ----- SECTION HEADER (consistent with AppDev & Process) ----- */
.features .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.20);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #a5b4fc;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    margin-bottom: 1.8rem;
}

.features .section-tag i {
    color: #818cf8;
    font-size: 0.95rem;
}

.features .section-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.features .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #b0b8d1;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}


/* ----- FEATURES GRID ----- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 0.5rem;
}


/* ----- FEATURE ITEM — white, simple, fast ----- */
.feature-item {
    background: #ffffff;
    border: 1px solid #e9edf4;
    border-radius: 1rem;
    padding: 2rem 1.5rem 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    border-color: #d0d8e6;
}


/* ----- FEATURE ICON ----- */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f0f3fa;
    border: 1px solid #e4e9f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4f5b7a;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.feature-item:hover .feature-icon {
    background: #e8edf8;
    border-color: #c8d0e0;
    color: #2d3a5e;
}


/* ----- FEATURE TITLE ----- */
.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}


/* ----- FEATURE DESCRIPTION ----- */
.feature-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #4a5770;
    margin: 0;
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ----- Tablets & small laptops (≤ 1024px) — 3 columns ----- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .features .section-title {
        font-size: 2.2rem;
    }

    .features .section-subtitle {
        font-size: 1.05rem;
    }
}

/* ----- Tablets (≤ 768px) — 2 columns ----- */
@media (max-width: 768px) {
    .features {
        padding: 3rem 0;
    }

    .features .container {
        padding: 0 1rem;
    }

    .features .section-header {
        margin-bottom: 2.25rem;
    }

    .features .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        gap: 0.4rem;
    }

    .features .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .features .section-subtitle {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-item {
        padding: 1.4rem 1.2rem;
        border-radius: 0.9rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }
}

/* ----- Very small phones (≤ 420px) — 1 column ----- */
@media (max-width: 420px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features .section-title {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1.2rem 1rem;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}


/* ----- SECTION CONTAINER ----- */
.industries {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
    position: relative;
}

.industries .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ----- SECTION HEADER (consistent with AppDev, Process, Features) ----- */
.industries .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.industries .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.20);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #a5b4fc;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    margin-bottom: 1.8rem;
}

.industries .section-tag i {
    color: #818cf8;
    font-size: 0.95rem;
}

.industries .section-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.industries .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #b0b8d1;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}


/* ----- INDUSTRIES GRID ----- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 0.5rem;
}


/* ----- INDUSTRY CARD — white, simple, centered ----- */
.industry-card {
    background: #ffffff;
    border: 1px solid #e9edf4;
    border-radius: 1rem;
    padding: 2rem 1.5rem 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.2s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    border-color: #d0d8e6;
}


/* ----- CARD ICON (circle background) ----- */
.industry-card i {
    font-size: 2.2rem;
    color: #6366f1;
    margin-bottom: 1.2rem;
    background: #f0f3fa;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.industry-card:hover i {
    background: #e8edf8;
    color: #4f46e5;
}


/* ----- CARD TITLE ----- */
.industry-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}


/* ----- CARD DESCRIPTION ----- */
.industry-card p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #4a5770;
    margin: 0;
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ----- Tablets & small laptops (≤ 1024px) — 3 columns ----- */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .industries .section-title {
        font-size: 2.2rem;
    }

    .industries .section-subtitle {
        font-size: 1.05rem;
    }
}

/* ----- Tablets (≤ 768px) — 2 columns ----- */
@media (max-width: 768px) {
    .industries {
        padding: 3rem 0;
    }

    .industries .container {
        padding: 0 1rem;
    }

    .industries .section-header {
        margin-bottom: 2.25rem;
    }

    .industries .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        gap: 0.4rem;
    }

    .industries .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .industries .section-subtitle {
        font-size: 0.95rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-card {
        padding: 1.5rem 1rem;
        border-radius: 0.9rem;
    }

    .industry-card i {
        font-size: 1.8rem;
        width: 4rem;
        height: 4rem;
        margin-bottom: 1rem;
    }

    .industry-card h4 {
        font-size: 1rem;
    }

    .industry-card p {
        font-size: 0.85rem;
    }
}

/* ----- Very small phones (≤ 420px) — 1 column ----- */
@media (max-width: 420px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industries .section-title {
        font-size: 1.5rem;
    }

    .industry-card {
        padding: 1.2rem 1rem;
        flex-direction: row;          /* row layout for better space on small screens */
        text-align: left;
        gap: 1rem;
        align-items: center;
    }

    .industry-card i {
        font-size: 1.8rem;
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .industry-card h4 {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }

    .industry-card p {
        font-size: 0.82rem;
    }
}


/* ----- SECTION WRAPPER ----- */
.app-pricing {
    padding: 4rem 0;
    background: transparent;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.app-pricing .app-pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ----- SECTION HEADER ----- */
.app-pricing .app-pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.app-pricing .app-pricing-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #1e2240;
    border: 1px solid #2d3360;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #a5b4fc;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.app-pricing .app-pricing-tag i {
    color: #818cf8;
    font-size: 0.95rem;
}

.app-pricing .app-pricing-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.app-pricing .app-pricing-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #b0b8d1;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
}


/* ----- PRICING GRID ----- */
.app-pricing .app-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}


/* ----- PRICING CARD ----- */
.app-pricing .app-pricing-card {
    background: #ffffff;
    border: 1px solid #e9edf4;
    border-radius: 1rem;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.app-pricing .app-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    border-color: #d0d8e6;
}


/* ----- FEATURED CARD ----- */
.app-pricing .app-pricing-card.app-pricing-featured {
    border-color: #6366f1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.app-pricing .app-pricing-card.app-pricing-featured:hover {
    box-shadow: 0 16px 36px rgba(99, 102, 241, 0.25);
    border-color: #4f46e5;
}


/* ----- PRICING BADGE ----- */
.app-pricing .app-pricing-badge {
    display: inline-block;
    background: #e8edf8;
    color: #2d3a5e;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    align-self: flex-start;
    margin-bottom: 1.5rem;
    border: 1px solid #d0d8e6;
    transition: all 0.2s ease;
}

.app-pricing .app-pricing-card.app-pricing-featured .app-pricing-badge {
    background: #6366f1;
    color: #ffffff;
    border-color: #6366f1;
}


/* ----- PRICE ----- */
.app-pricing .app-pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.app-pricing .app-pricing-currency {
    font-size: 1.8rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 0.1rem;
    color: #4a5770;
}

.app-pricing .app-pricing-period {
    font-size: 1rem;
    font-weight: 400;
    color: #7a8aa3;
    margin-left: 0.25rem;
}


/* ----- PLAN NAME ----- */
.app-pricing .app-pricing-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5770;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}


/* ----- FEATURES LIST ----- */
.app-pricing .app-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.app-pricing .app-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #2d3a5e;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f3f5f9;
    line-height: 1.4;
}

.app-pricing .app-pricing-features li:last-child {
    border-bottom: none;
}

.app-pricing .app-pricing-features li i {
    width: 1.1rem;
    text-align: center;
    flex-shrink: 0;
}

.app-pricing .app-pricing-features li i.fa-check {
    color: #22c55e;
    font-size: 0.9rem;
}

.app-pricing .app-pricing-features li i.fa-times {
    color: #e5e7eb;
    font-size: 0.9rem;
}


/* ----- BUTTON ----- */
.app-pricing .app-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    width: 100%;
}

.app-pricing .app-pricing-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.30);
}

.app-pricing .app-pricing-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(99, 102, 241, 0.45);
    background: linear-gradient(135deg, #7477f5, #9b6dfa);
}

.app-pricing .app-pricing-btn-block {
    width: 100%;
}



/* ----- Tablets (≤ 1024px) — 2 columns ----- */
@media (max-width: 1024px) {
    .app-pricing .app-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .app-pricing .app-pricing-title {
        font-size: 2.2rem;
    }

    .app-pricing .app-pricing-subtitle {
        font-size: 1.05rem;
    }
}

/* ----- Mobile (≤ 768px) — 1 column ----- */
@media (max-width: 768px) {
    .app-pricing {
        padding: 3rem 0;
    }

    .app-pricing .app-pricing-container {
        padding: 0 1rem;
    }

    .app-pricing .app-pricing-header {
        margin-bottom: 2.25rem;
    }

    .app-pricing .app-pricing-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        gap: 0.4rem;
    }

    .app-pricing .app-pricing-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .app-pricing .app-pricing-subtitle {
        font-size: 0.95rem;
    }

    .app-pricing .app-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .app-pricing .app-pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 0.9rem;
    }

    .app-pricing .app-pricing-price {
        font-size: 2.4rem;
    }

    .app-pricing .app-pricing-currency {
        font-size: 1.5rem;
    }

    .app-pricing .app-pricing-period {
        font-size: 0.9rem;
    }

    .app-pricing .app-pricing-features li {
        font-size: 0.9rem;
    }

    .app-pricing .app-pricing-card.app-pricing-featured {
        border-color: #6366f1;
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    }
}

/* ----- Very small phones (≤ 420px) ----- */
@media (max-width: 420px) {
    .app-pricing .app-pricing-title {
        font-size: 1.5rem;
    }

    .app-pricing .app-pricing-card {
        padding: 1.5rem 1.2rem;
    }

    .app-pricing .app-pricing-price {
        font-size: 2rem;
    }

    .app-pricing .app-pricing-currency {
        font-size: 1.2rem;
    }

    .app-pricing .app-pricing-period {
        font-size: 0.8rem;
    }

    .app-pricing .app-pricing-features li {
        font-size: 0.82rem;
        padding: 0.3rem 0;
    }

    .app-pricing .app-pricing-badge {
        font-size: 0.65rem;
        padding: 0.3rem 1rem;
    }

    .app-pricing .app-pricing-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* ----- SECTION CONTAINER ----- */
.faq {
    padding: 4rem 0;
    background: transparent;
}

.faq .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ----- SECTION HEADER ----- */
.faq .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #1e2240;
    border: 1px solid #2d3360;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #a5b4fc;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}

.faq .section-tag i {
    color: #818cf8;
    font-size: 0.95rem;
}

.faq .section-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.faq .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #b0b8d1;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
}


/* ----- FAQ LIST ----- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* ----- FAQ ITEM — white card ----- */
.faq-item {
    background: #ffffff;
    border: 1px solid #e9edf4;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    border-color: #d0d8e6;
}


/* ----- FAQ QUESTION (clickable area) ----- */
.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fc;
}

.faq-question i.fa-chevron-right {
    color: #6366f1;
    font-size: 0.85rem;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    width: 1.2rem;
    text-align: center;
}

/* Rotate icon when active/open */
.faq-item.active .faq-question i.fa-chevron-right {
    transform: rotate(90deg);
}

.faq-question h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a2332;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}


/* ----- FAQ ANSWER (hidden by default) ----- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5770;
    margin: 0;
}


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ----- Tablets (≤ 768px) ----- */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }

    .faq .container {
        padding: 0 1rem;
    }

    .faq .section-header {
        margin-bottom: 2.25rem;
    }

    .faq .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        gap: 0.4rem;
    }

    .faq .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .faq .section-subtitle {
        font-size: 0.95rem;
    }

    .faq-list {
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
        gap: 0.75rem;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
    }

    .faq-answer p {
        font-size: 0.88rem;
    }
}

/* ----- Very small phones (≤ 420px) ----- */
@media (max-width: 420px) {
    .faq .section-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 0.85rem 1rem;
        gap: 0.6rem;
    }

    .faq-question h4 {
        font-size: 0.88rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 0.85rem 1rem;
    }

    .faq-answer p {
        font-size: 0.82rem;
    }
}
