/* ===== INDUSTRY PAGES — Dark / Light Alternating ===== */

.ind-page {
    --ind-accent: #8C52FF;
    --ind-light-bg: #ffffff;
    --ind-light-muted: #f7f5fc;
    --ind-text-dark: #1a1a1a;
    --ind-text-muted: #555;
}

/* ---- Section themes ---- */
.ind-sec--light {
    background: var(--ind-light-bg) !important;
    border-top: 1px solid #eee !important;
}

.ind-sec--light .ind-sec-title,
.ind-sec--light .svc-process-title,
.ind-sec--light .svc-related-title {
    color: var(--ind-text-dark);
}

.ind-sec--light .ind-text-p,
.ind-sec--light .ind-sec-subtitle,
.ind-sec--light .svc-process-subtitle {
    color: var(--ind-text-muted);
}

.ind-sec--dark {
    background: var(--bg-dark);
}

/* Light badges */
.ind-badge {
    display: inline-block;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 4px;
}

.ind-badge--light {
    background: rgba(140, 82, 255, 0.08);
    color: var(--purple-deep);
    border: 1px solid rgba(140, 82, 255, 0.15);
}

/* ---- HERO (Dark) ---- */
.ind-hero-accent-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 75% 35%, color-mix(in srgb, var(--ind-accent) 20%, transparent), transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.ind-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 440px) !important;
    align-items: center;
    gap: 40px;
}

.ind-hero-right {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 4;
}

.ind-form-card {
    margin-top: 0;
}

/* ---- CHALLENGE (Light) ---- */
.ind-challenge-sec {
    padding: 100px 24px;
}

.ind-challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-challenge-grid--visual {
    grid-template-columns: 1.05fr 0.95fr;
}

.ind-challenge-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.ind-visual-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.14) 0%, transparent 70%);
    z-index: 0;
}

.ind-challenge-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    min-height: 400px;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.18));
    transition: transform 0.4s ease;
}

.ind-challenge-visual:hover .ind-challenge-img {
    transform: scale(1.03) translateY(-6px);
}

.ind-text-p--inline {
    margin-top: 20px;
}

.ind-sec-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-top: 16px;
}

.ind-text-p {
    font-family: var(--font-nav);
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.ind-text-p:last-child { margin-bottom: 0; }

/* ---- MOBILE PLATFORM (Dark) ---- */
.ind-platform-sec {
    padding: 100px 24px;
}

.ind-platform-sec .svc-platform-card-visual {
    padding: 40px 32px 0;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ind-platform-sec .svc-platform-card-visual img {
    height: auto;
    min-height: 360px;
    max-height: 420px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
    transition: transform 0.35s ease;
}

.ind-platform-sec .svc-platform-card:hover .svc-platform-card-visual img {
    transform: translateY(-8px) scale(1.02);
}

/* ---- SOLUTIONS (Light) ---- */
.ind-solutions-sec {
    padding: 100px 24px;
}

.ind-section-header {
    max-width: 720px;
    margin: 0 auto 56px;
}

.ind-sec-subtitle {
    font-family: var(--font-nav);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.ind-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-sec--light .ind-solution-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ind-sec--light .ind-solution-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 12px 32px rgba(140, 82, 255, 0.12);
    transform: translateY(-4px);
}

.ind-sec--light .ind-solution-title {
    color: var(--ind-text-dark);
}

.ind-sec--light .ind-solution-desc {
    color: var(--ind-text-muted);
}

.ind-solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.ind-solution-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.12), rgba(140, 82, 255, 0.04));
    border: 1px solid rgba(140, 82, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--purple-light);
}

.ind-solution-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ind-solution-desc {
    font-family: var(--font-nav);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

/* ---- CAPABILITIES (Dark) ---- */
.ind-capabilities-sec {
    padding: 100px 24px;
    background: var(--bg-dark-deep) !important;
}

.ind-capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-capabilities-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.ind-cap-dual-phones {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 480px;
}

.ind-cap-phone {
    position: absolute;
    width: 58%;
    height: auto;
    min-height: 400px;
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(0 32px 56px rgba(0, 0, 0, 0.55));
    border-radius: 24px;
    transition: transform 0.35s ease;
}

.ind-cap-phone--back {
    left: -4%;
    bottom: 0;
    transform: rotate(-10deg);
    opacity: 0.9;
    z-index: 1;
}

.ind-cap-phone--front {
    right: -4%;
    bottom: 24px;
    transform: rotate(8deg);
    z-index: 2;
}

.ind-capabilities-visual:hover .ind-cap-phone--front {
    transform: rotate(6deg) translateY(-10px);
}

.ind-capabilities-visual:hover .ind-cap-phone--back {
    transform: rotate(-8deg) translateY(-6px);
}

.ind-capabilities-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--ind-accent) 30%, transparent), transparent 70%);
    z-index: 0;
}

.ind-capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.ind-capability-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ind-capability-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(140, 82, 255, 0.12);
    border: 1px solid rgba(140, 82, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    font-size: 16px;
}

.ind-capability-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.ind-capability-desc {
    font-family: var(--font-nav);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ---- PROCESS (Light) ---- */
.ind-process-sec.ind-sec--light {
    background: var(--ind-light-muted) !important;
}

.ind-process-sec .ind-process-steps {
    grid-template-columns: repeat(4, 1fr);
}

.ind-sec--light .svc-process-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.ind-sec--light .svc-process-card-title {
    color: var(--ind-text-dark);
}

.ind-sec--light .svc-process-card-desc {
    color: var(--ind-text-muted);
}

.ind-sec--light .svc-process-num {
    color: rgba(140, 82, 255, 0.15);
}

.ind-sec--light .svc-process-icon-wrap {
    background: rgba(140, 82, 255, 0.08);
    border-color: rgba(140, 82, 255, 0.2);
}

.ind-sec--light .svc-process-icon-wrap i {
    color: var(--purple-light);
}

/* ---- STATS (Dark) ---- */
.ind-stats-sec {
    background: linear-gradient(90deg, var(--purple-deep) 0%, #120828 50%, var(--bg-dark-deep) 100%) !important;
}

/* ---- RELATED (Light) — uses default white svc-related-sec ---- */
.ind-related-card {
    background: #fff;
    border: 1px solid #e5e5e5;
}

.ind-related-card:hover {
    border-color: var(--purple-light);
    background: rgba(140, 82, 255, 0.04);
}

/* ---- FAQ stays dark on industry pages ---- */
.ind-faq-sec.ind-sec--dark {
    background: var(--bg-dark-deep) !important;
}

/* ---- MORE INDUSTRIES (Light) ---- */
.ind-more-sec {
    padding: 100px 24px;
}

.ind-sec--light .ind-more-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ind-sec--light .ind-more-card:hover {
    border-color: var(--purple-light);
    background: rgba(140, 82, 255, 0.04);
    box-shadow: 0 8px 24px rgba(140, 82, 255, 0.1);
}

.ind-sec--light .ind-more-title {
    color: var(--ind-text-dark);
}

.ind-sec--light .ind-more-desc {
    color: var(--ind-text-muted);
}

.ind-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-more-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px 28px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.ind-more-card:hover {
    transform: translateY(-3px);
}

.ind-more-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.ind-more-desc {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    padding-right: 32px;
}

.ind-more-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--purple-light);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.ind-more-card:hover .ind-more-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

/* ---- CTA dual phones ---- */
.ind-cta-phones {
    position: relative;
    width: 440px;
    height: 400px;
    flex-shrink: 0;
}

.ind-cta-phone {
    position: absolute;
    width: 58%;
    height: auto;
    min-height: 340px;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
    border-radius: 22px;
    transition: transform 0.35s ease;
}

.ind-cta-phone--ios {
    left: 0;
    bottom: 0;
    transform: rotate(-8deg);
    z-index: 1;
}

.ind-cta-phone--android {
    right: 0;
    bottom: 16px;
    transform: rotate(7deg);
    z-index: 2;
}

.svc-cta-card:hover .ind-cta-phone--android {
    transform: rotate(5deg) translateY(-8px);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .ind-solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-process-sec .ind-process-steps { grid-template-columns: repeat(2, 1fr); }
    .ind-more-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .ind-challenge-grid,
    .ind-challenge-grid--visual,
    .ind-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ind-challenge-visual { order: -1; min-height: 360px; }
    .ind-challenge-img { min-height: 320px; max-height: 400px; }
    .ind-capabilities-visual { order: -1; min-height: 380px; }
    .ind-hero-inner { grid-template-columns: 1fr !important; }
    .ind-hero-right { max-width: 480px; margin: 0 auto; width: 100%; }
    .ind-cta-phones { width: 340px; height: 320px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .ind-solutions-grid,
    .ind-process-sec .ind-process-steps,
    .ind-more-grid { grid-template-columns: 1fr; }

    .ind-challenge-sec,
    .ind-solutions-sec,
    .ind-capabilities-sec,
    .ind-more-sec,
    .ind-platform-sec { padding: 70px 20px; }
}

/* ===== INDUSTRIES LISTING PAGE ===== */
.ind-list-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 80px 24px 60px;
    background: var(--bg-dark);
}

.ind-list-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.ind-list-desc {
    max-width: 620px;
    margin: 20px auto 0;
}

.svc-breadcrumb--center {
    justify-content: center;
    margin-bottom: 24px;
}

.ind-list-grid-sec {
    background: var(--ind-light-bg);
    padding: 60px 24px 100px;
}

.ind-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-list-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.ind-list-card:hover {
    border-color: var(--purple-light);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(140, 82, 255, 0.12);
}

.ind-list-card-visual {
    background: linear-gradient(180deg, rgba(140, 82, 255, 0.06) 0%, transparent 100%);
    padding: 32px 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.ind-list-card-visual img {
    width: auto;
    height: 280px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s;
}

.ind-list-card:hover .ind-list-card-visual img {
    transform: scale(1.04);
}

.ind-list-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ind-list-card-eyebrow {
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 8px;
}

.ind-list-card-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    color: var(--ind-text-dark);
    margin-bottom: 8px;
}

.ind-list-card-desc {
    font-family: var(--font-nav);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ind-text-muted);
    flex: 1;
    margin-bottom: 16px;
}

.ind-list-card-link {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 500;
    color: var(--purple-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.ind-list-card:hover .ind-list-card-link { gap: 12px; }

@media (max-width: 900px) {
    .ind-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .ind-list-grid { grid-template-columns: 1fr; }
}

/* ===== TEKREVOL-STYLE INDUSTRY SECTIONS (Fluxio Theme) ===== */

.ind-sec--muted {
    background: var(--ind-light-muted) !important;
}

.ind-sec-title--dark { color: var(--ind-text-dark); }
.ind-sec-subtitle--dark { color: var(--ind-text-muted) !important; }
.ind-text-p--dark { color: var(--ind-text-muted); }

/* Hero highlights */
.ind-hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    list-style: none;
    margin: 28px 0 32px;
    padding: 0;
}

.ind-hero-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-nav);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.ind-hero-highlights li i {
    color: var(--purple-light);
    font-size: 12px;
    flex-shrink: 0;
}

/* Services grid */
.ind-services-sec { padding: 100px 24px; }

.ind-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.ind-service-card {
    position: relative;
    background: #faf9ff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 28px 36px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.ind-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 82, 255, 0.25);
    box-shadow: 0 16px 40px rgba(140, 82, 255, 0.1);
}

.ind-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
}

.ind-service-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--ind-text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.ind-service-desc {
    font-family: var(--font-nav);
    font-size: 14px;
    line-height: 1.65;
    color: var(--ind-text-muted);
}

.ind-service-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-light), var(--purple-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.ind-service-card:hover .ind-service-accent { transform: scaleX(1); }

.ind-inline-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 36px 24px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-deep) 100%);
    border-radius: 20px;
    border: 1px solid rgba(140, 82, 255, 0.15);
}

.ind-inline-stat {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 8px 20px;
}

.ind-inline-stat-num {
    font-family: var(--font-body);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.ind-inline-stat-suffix {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--purple-light);
}

.ind-inline-stat-label {
    font-family: var(--font-nav);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.ind-inline-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
}

/* Audience tabs */
.ind-audience-sec { padding: 100px 24px; }

.ind-audience-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.ind-tabs-nav {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ind-tabs-nav::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.ind-tab-btn {
    background: none;
    border: none;
    padding: 0 0 16px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.25s;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
}

.ind-tab-btn.is-active {
    color: var(--ind-text-dark);
    font-weight: 600;
}

.ind-tab-btn.is-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-light), var(--purple-deep));
    border-radius: 3px 3px 0 0;
}

.ind-tab-panel { display: none; }
.ind-tab-panel.is-active { display: block; }

.ind-tab-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ind-tab-panel-title {
    font-family: var(--font-body);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--ind-text-dark);
    margin-bottom: 16px;
}

.ind-tab-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ind-tab-features::-webkit-scrollbar {
    display: none;
}

.ind-tab-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-nav);
    font-size: 14px;
    color: var(--ind-text-dark);
    line-height: 1.5;
}

.ind-check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    margin-top: 2px;
}

/* Portfolio carousel */
.ind-portfolio-sec { padding: 100px 24px; }

.ind-portfolio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.ind-carousel-nav {
    display: flex;
    gap: 12px;
}

.ind-carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    color: var(--ind-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    flex-shrink: 0;
}

.ind-carousel-btn:hover:not(:disabled) {
    border-color: var(--ind-text-dark);
    background: #fff;
    color: var(--ind-text-dark);
}

.ind-carousel-btn.is-active-nav,
.ind-carousel-btn:focus-visible {
    border-color: var(--ind-text-dark);
    border-width: 2px;
}

.ind-carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.ind-portfolio-track-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.ind-portfolio-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    touch-action: pan-y;
}

.ind-portfolio-card {
    flex: 0 0 auto;
    min-width: 0;
    box-sizing: border-box;
}

.ind-portfolio-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.ind-portfolio-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-deep) 100%);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(140, 82, 255, 0.15);
    min-height: 420px;
}

.ind-portfolio-name {
    font-family: var(--font-body);
    font-size: clamp(28px, 3vw, 28px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.ind-portfolio-desc {
    font-family: var(--font-nav);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.ind-portfolio-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 28px;
}

.ind-portfolio-stat {
    padding: 0 20px;
    text-align: center;
}

.ind-portfolio-stat:first-child { padding-left: 0; }

.ind-portfolio-stat-val {
    display: block;
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.ind-portfolio-stat-label {
    display: block;
    font-family: var(--font-nav);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    max-width: 90px;
    line-height: 1.3;
}

.ind-portfolio-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.ind-portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-light);
    transition: gap 0.25s;
}

.ind-portfolio-link:hover { gap: 12px; }

.ind-portfolio-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind-portfolio-visual img {
    max-height: 380px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 32px 56px rgba(0, 0, 0, 0.5));
}

/* Mid CTA */
.ind-mid-cta-sec {
    padding: 60px 24px;
    background: #fff;
}

.ind-mid-cta-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #120828 100%);
    border-radius: 28px;
    padding: 56px 64px;
    border: 1px solid rgba(140, 82, 255, 0.2);
    overflow: visible;
    position: relative;
}

.ind-mid-cta-title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.ind-mid-cta-desc {
    font-family: var(--font-nav);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.ind-mid-cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind-mid-cta-visual img {
    max-height: 420px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
    transform: translateY(-20px);
}

/* Segments */
.ind-segments-sec { padding: 100px 24px; }

.ind-segments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-segment-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ind-segment-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 12px 32px rgba(140, 82, 255, 0.1);
}

.ind-segment-num {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--purple-light);
    margin-bottom: 12px;
}

.ind-segment-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--ind-text-dark);
    margin-bottom: 10px;
}

.ind-segment-desc {
    font-family: var(--font-nav);
    font-size: 14px;
    line-height: 1.65;
    color: var(--ind-text-muted);
}

/* Features accordion */
.ind-features-sec { padding: 100px 24px; }

.ind-features-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 56px;
}

.ind-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-feat-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.25s;
}

.ind-feat-item.is-open {
    border-color: rgba(140, 82, 255, 0.3);
}

.ind-feat-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    color: var(--ind-text-dark);
    text-align: left;
}

.ind-feat-trigger i {
    color: var(--purple-light);
    transition: transform 0.25s;
    font-size: 12px;
}

.ind-feat-item.is-open .ind-feat-trigger i { transform: rotate(180deg); }

.ind-feat-panel {
    display: none;
    padding: 0 20px 18px;
}

.ind-feat-item.is-open .ind-feat-panel { display: block; }

.ind-feat-panel p {
    font-family: var(--font-nav);
    font-size: 14px;
    line-height: 1.65;
    color: var(--ind-text-muted);
    margin: 0;
}

.ind-features-visual {
    display: flex;
    align-items: stretch;
    min-height: 100%;
}

.ind-features-visual-frame {
    flex: 1;
    width: 100%;
    min-height: 520px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.14), rgba(140, 82, 255, 0.05));
    overflow: hidden;
    display: block;
    position: relative;
}

.ind-features-phone {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 24px;
}

/* Compliance carousel */
.ind-compliance-sec {
    position: relative;
    padding: 100px 24px;
    overflow: hidden;
}

.ind-compliance-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(5, 8, 20, 0.92) 0%, rgba(18, 8, 40, 0.88) 100%),
        url('../images/hero-bg-tech.webp') center/cover no-repeat;
    z-index: 0;
}

.ind-compliance-inner { position: relative; z-index: 1; }

.ind-compliance-header { margin-bottom: 48px; }

.ind-compliance-controls {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.ind-compliance-track-wrap { overflow: hidden; }

.ind-compliance-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ind-compliance-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(8px);
}

.ind-compliance-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.ind-compliance-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.ind-compliance-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ind-compliance-desc {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.ind-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.ind-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.ind-carousel-dot.is-active {
    background: var(--purple-light);
    transform: scale(1.2);
}

/* Advantages */
.ind-advantages-sec { padding: 100px 24px; }

.ind-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-advantage-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.ind-advantage-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple-light);
    box-shadow: 0 12px 32px rgba(140, 82, 255, 0.1);
}

.ind-advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(140, 82, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    font-size: 20px;
    margin-bottom: 16px;
}

.ind-advantage-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ind-text-dark);
    margin-bottom: 8px;
}

.ind-advantage-desc {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.65;
    color: var(--ind-text-muted);
}

/* Process pills */
.ind-process-tabs-sec {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-dark-deep) 0%, var(--bg-dark) 100%) !important;
}

.ind-process-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.ind-process-pill {
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.ind-process-pill.is-active,
.ind-process-pill:hover {
    background: linear-gradient(90deg, var(--purple-light), var(--purple-deep));
    border-color: transparent;
    color: #fff;
}

.ind-process-content { max-width: 800px; margin: 0 auto; text-align: center; }

.ind-process-text {
    display: none;
    font-family: var(--font-nav);
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
}

.ind-process-text.is-active { display: block; }

/* Advanced tech */
.ind-advtech-sec { padding: 100px 24px; }

.ind-advtech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-advtech-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ind-advtech-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 8px 24px rgba(140, 82, 255, 0.1);
}

.ind-advtech-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.15), rgba(140, 82, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    font-size: 20px;
    margin-bottom: 16px;
}

.ind-advtech-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--ind-text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.ind-advtech-desc {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ind-text-muted);
}

/* Tools tabs */
.ind-tools-sec { padding: 100px 24px; }

.ind-tools-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.ind-tools-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.ind-tools-btn {
    padding: 12px 28px;
    border-radius: 100px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 500;
    color: var(--ind-text-muted);
    cursor: pointer;
    transition: all 0.25s;
}

.ind-tools-btn.is-active {
    background: linear-gradient(90deg, var(--purple-light), var(--purple-deep));
    border-color: transparent;
    color: #fff;
}

.ind-tools-panel { display: none; }
.ind-tools-panel.is-active { display: block; }

.ind-tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.ind-tool-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.ind-tool-chip:hover {
    border-color: var(--purple-light);
    box-shadow: 0 6px 20px rgba(140, 82, 255, 0.1);
}

.ind-tool-chip i {
    font-size: 28px;
    color: var(--purple-light);
}

.ind-tool-chip span {
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 500;
    color: var(--ind-text-dark);
    text-align: center;
}

/* Cost table */
.ind-cost-sec { padding: 100px 24px; }

.ind-cost-table-wrap {
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ind-cost-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-nav);
    font-size: 14px;
    background: #fff;
}

.ind-cost-table th,
.ind-cost-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    line-height: 1.6;
}

.ind-cost-table th {
    background: #faf9ff;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ind-text-dark);
    font-size: 15px;
}

.ind-cost-table td:first-child {
    font-weight: 600;
    color: var(--ind-text-dark);
    background: #fafafa;
    min-width: 140px;
}

.ind-cost-table tr:last-child td,
.ind-cost-table tr:last-child th { border-bottom: none; }

.ind-cost-highlight td {
    background: rgba(140, 82, 255, 0.06) !important;
    color: var(--purple-deep);
    font-weight: 600;
}

/* Why choose */
.ind-why-sec { padding: 100px 24px; }

.ind-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.ind-why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, background 0.3s;
}

.ind-why-card:hover {
    border-color: rgba(140, 82, 255, 0.3);
    background: rgba(140, 82, 255, 0.05);
}

.ind-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(140, 82, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    font-size: 20px;
    margin-bottom: 16px;
}

.ind-why-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.ind-why-desc {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

/* Contact section */
.ind-contact-sec { padding: 100px 24px; }

.ind-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.ind-contact-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.ind-contact-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: #faf9ff;
    border: 1px solid #eee;
    border-radius: 12px;
    min-width: 90px;
}

.ind-contact-badge strong {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--purple-light);
}

.ind-contact-badge span {
    font-family: var(--font-nav);
    font-size: 11px;
    color: var(--ind-text-muted);
    margin-top: 4px;
}

.ind-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ind-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-nav);
    font-size: 14px;
    color: var(--ind-text-dark);
    transition: color 0.2s;
}

.ind-contact-link i { color: var(--purple-light); }
.ind-contact-link:hover { color: var(--purple-light); }

.ind-contact-form {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.ind-contact-form .svc-form-title--dark {
    color: var(--ind-text-dark);
}

.ind-contact-form .svc-form-input--white {
    color: var(--ind-text-dark);
    border-bottom: 1px solid #d5d5d5;
    background: transparent;
}

.ind-contact-form .svc-form-input--white::placeholder {
    color: #999;
}

.ind-contact-form .svc-form-input--white:focus {
    border-bottom-color: var(--purple-light);
}

/* Responsive — new sections */
@media (max-width: 1100px) {
    .ind-services-grid,
    .ind-advantages-grid,
    .ind-why-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-advtech-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-tools-grid { grid-template-columns: repeat(4, 1fr); }
    .ind-compliance-card {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 900px) {
    .ind-hero-highlights { grid-template-columns: 1fr; }
    .ind-audience-header,
    .ind-features-header,
    .ind-tools-header,
    .ind-tab-panel-grid,
    .ind-contact-grid,
    .ind-mid-cta-card,
    .ind-portfolio-card-inner,
    .ind-features-grid { grid-template-columns: 1fr; gap: 32px; }
    .ind-portfolio-header { flex-direction: column; align-items: flex-start; }
    .ind-mid-cta-visual img { transform: none; max-height: 320px; }
    .ind-features-visual-frame { min-height: 380px; }
    .ind-features-phone { min-height: 380px; }
    .ind-features-visual { order: -1; }
    .ind-inline-stat-divider { display: none; }
    .ind-segments-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .ind-services-grid,
    .ind-advantages-grid,
    .ind-why-grid,
    .ind-advtech-grid,
    .ind-tools-grid { grid-template-columns: 1fr; }
    .ind-compliance-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .ind-portfolio-card-inner { padding: 32px 24px; }
    .ind-mid-cta-card { padding: 36px 28px; }
    .ind-process-pill { font-size: 12px; padding: 10px 16px; }
    .ind-services-sec,
    .ind-audience-sec,
    .ind-portfolio-sec,
    .ind-segments-sec,
    .ind-features-sec,
    .ind-compliance-sec,
    .ind-advantages-sec,
    .ind-process-tabs-sec,
    .ind-advtech-sec,
    .ind-tools-sec,
    .ind-cost-sec,
    .ind-why-sec,
    .ind-contact-sec { padding: 70px 20px; }
}

