/* ════════════════════════════════════════════════
   TECHNOLOGY PAGE STYLES (shared across all tech pages)
   ════════════════════════════════════════════════ */

:root {
    --tech-primary: #563AFF;
    --tech-primary-dark: #3d20e0;
    --tech-title: #211F54;
    --tech-para: #5A5F96;
    --tech-light: #F7F7FC;
    --tech-gray: #D8D4EB;
    --tech-n8: #fff;
    --tech-accent: #00D998;
    --tech-warning: #FF813A;
}

/* ─── Hero Section ─── */
.tech-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F0EDFF 0%, #E8F4FF 50%, #F7F7FC 100%);
    padding: 130px 0 70px;
}

.tech-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(86,58,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.tech-hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,217,152,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.tech-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(86,58,255,0.08);
    border: 1px solid rgba(86,58,255,0.22);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tech-primary);
    margin-bottom: 20px;
    font-family: "Jost", sans-serif;
}

.tech-hero__title {
    font-family: "Jost", sans-serif;
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 800;
    color: var(--tech-title);
    line-height: 1.2;
    margin-bottom: 18px;
}

.tech-hero__subtitle {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: var(--tech-para);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 540px;
}

.tech-hero__check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-bottom: 32px;
}

.tech-hero__check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: var(--tech-title);
    font-weight: 500;
}

.tech-hero__check-item i {
    color: var(--tech-primary);
    font-size: 18px;
}

.tech-hero__btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.tech-hero__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-hero__media img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .tech-hero { padding: 110px 0 50px; text-align: center; }
    .tech-hero__check-list { justify-content: center; }
    .tech-hero__btns { justify-content: center; }
    .tech-hero__subtitle { margin-left: auto; margin-right: auto; }
    .tech-hero__media { margin-top: 40px; }
}

/* ─── Clients Marquee ─── */
.tech-clients {
    padding: 50px 0 50px;
    overflow: hidden;
    background: var(--tech-light);
}

.tech-clients__label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9490B5;
    margin-bottom: 24px;
    font-family: "Jost", sans-serif;
}

.tech-clients__track-wrap {
    position: relative;
    overflow: hidden;
}

.tech-clients__track-wrap::before,
.tech-clients__track-wrap::after {
    content: '';
    position: absolute;
    top: 0; width: 100px; height: 100%;
    z-index: 2; pointer-events: none;
}

.tech-clients__track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--tech-light), transparent);
}

.tech-clients__track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--tech-light), transparent);
}

.tech-clients__track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: techLogoScroll 28s linear infinite;
}

.tech-clients__track:hover { animation-play-state: paused; }

.tech-clients__item img {
    height: 32px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(40%);
}

.tech-clients__item:hover img { opacity: 1; filter: grayscale(0%); }

@keyframes techLogoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Reveal animation ─── */
.tech-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.tech-reveal--left { transform: translateX(-50px); }
.tech-reveal--right { transform: translateX(50px); }

.tech-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

.tech-reveal-delay-1 { transition-delay: 0.1s; }
.tech-reveal-delay-2 { transition-delay: 0.2s; }
.tech-reveal-delay-3 { transition-delay: 0.3s; }
.tech-reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Section header common ─── */
.tech-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-section-header h5 {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tech-primary);
    margin-bottom: 12px;
}

.tech-section-header h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--tech-title);
    margin-bottom: 12px;
}

.tech-section-header p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    color: var(--tech-para);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Alternating Service Sections ─── */
.tech-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.tech-section--alt { background: var(--tech-light); }

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

@media (max-width: 767px) {
    .tech-grid { grid-template-columns: 1fr; gap: 40px; }
}

.tech-media--mockup {
    background: linear-gradient(135deg, #E8F4FF 0%, #EDE8FF 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.tech-media--mockup img {
    height: auto;
    max-height: 280px;
    object-fit: contain;
}

.tech-content__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tech-primary);
    margin-bottom: 14px;
    font-family: "Jost", sans-serif;
}

.tech-content__eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--tech-primary);
    border-radius: 2px;
}

.tech-content__title {
    font-family: "Jost", sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--tech-title);
    line-height: 1.25;
    margin-bottom: 14px;
}

.tech-content__desc {
    font-family: "Jost", sans-serif;
    font-size: 15.5px;
    color: var(--tech-para);
    line-height: 1.75;
    margin-bottom: 24px;
}

.tech-items {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tech-items__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--tech-gray);
    cursor: pointer;
    transition: all 0.25s;
    gap: 12px;
}

.tech-items__item:last-child { border-bottom: none; }
.tech-items__item:hover { padding-left: 8px; }

.tech-items__num {
    font-size: 12px;
    font-weight: 700;
    color: var(--tech-para);
    opacity: 0.5;
    min-width: 26px;
    font-family: "Jost", sans-serif;
}

.tech-items__name {
    flex: 1;
    font-family: "Jost", sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--tech-title);
    transition: color 0.2s;
}

.tech-items__item:hover .tech-items__name { color: var(--tech-primary); }

.tech-items__arrow {
    color: var(--tech-primary);
    font-size: 18px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.2s;
}

.tech-items__item:hover .tech-items__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ─── Stats Strip ─── */
.tech-stats {
    background: #fff;
    padding: 0;
}

.tech-stats__bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(86,58,255,0.10);
    padding: 30px 20px;
    max-width: 900px;
    margin: -70px auto 0;
    position: relative;
    z-index: 5;
}

.tech-stat {
    flex: 1;
    min-width: 150px;
    padding: 0 16px;
    border-right: 1px solid var(--tech-gray);
    text-align: center;
}

.tech-stat:last-child { border-right: none; }

.tech-stat__num {
    font-family: "Jost", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--tech-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.tech-stat__label {
    font-size: 13px;
    color: var(--tech-para);
    font-weight: 500;
}

@media (max-width: 767px) {
    .tech-stats__bar { margin-top: 20px; }
    .tech-stat {
        border-right: none;
        border-bottom: 1px solid var(--tech-gray);
        padding: 14px 0;
    }
    .tech-stat:last-child { border-bottom: none; }
}

/* ─── Capabilities Grid ─── */
.tech-caps {
    background: #fff;
    padding: 90px 0;
}

.tech-caps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tech-cap-card {
    background: var(--tech-light);
    border: 1px solid var(--tech-gray);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.tech-cap-card:hover {
    border-color: rgba(86,58,255,0.4);
    box-shadow: 0 8px 32px rgba(86,58,255,0.12);
    transform: translateY(-4px);
}

.tech-cap-card__icon {
    width: 52px; height: 52px;
    background: rgba(86,58,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--tech-primary);
    transition: background 0.3s, color 0.3s;
}

.tech-cap-card:hover .tech-cap-card__icon {
    background: var(--tech-primary);
    color: #fff;
}

.tech-cap-card__title {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--tech-title);
    margin-bottom: 10px;
}

.tech-cap-card__desc {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    color: var(--tech-para);
    line-height: 1.65;
    margin: 0;
}

/* ─── Stack & Tools Chips ─── */
.tech-stack {
    background: var(--tech-light);
    padding: 90px 0;
}

.tech-stack__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.tech-stack-card {
    background: #fff;
    border: 1px solid var(--tech-gray);
    border-radius: 16px;
    padding: 26px;
    transition: all 0.3s;
}

.tech-stack-card:hover {
    border-color: rgba(86,58,255,0.4);
    box-shadow: 0 8px 32px rgba(86,58,255,0.1);
}

.tech-stack-card__title {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--tech-title);
    margin-bottom: 16px;
}

.tech-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-chip {
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--tech-primary-dark);
    background-color: rgba(86,58,255,0.08);
    border: 1px solid rgba(86,58,255,0.18);
    padding: 7px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ─── Solutions Offered ─── */
.tech-solutions {
    background: #fff;
    padding: 90px 0;
}

.tech-solutions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tech-solution-card {
    border: 1px solid var(--tech-gray);
    border-radius: 16px;
    padding: 28px;
    background: var(--tech-light);
    transition: all 0.3s;
    text-align: left;
}

.tech-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(86,58,255,0.1);
    border-color: rgba(86,58,255,0.4);
}

.tech-solution-card__title {
    font-family: "Jost", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--tech-title);
    margin-bottom: 10px;
}

.tech-solution-card__desc {
    font-family: "Jost", sans-serif;
    font-size: 14.5px;
    color: var(--tech-para);
    line-height: 1.7;
    margin: 0;
}

/* ─── Cost Estimate Cards ─── */
.tech-cost {
    background: var(--tech-light);
    padding: 90px 0;
}

.tech-cost__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.tech-cost__header h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--tech-title);
    margin-bottom: 8px;
}

.tech-cost__header p {
    font-family: "Jost", sans-serif;
    color: var(--tech-para);
    font-size: 15px;
    margin: 0;
}

.tech-cost__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tech-cost-card {
    background: #fff;
    border: 1px solid var(--tech-gray);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s;
}

.tech-cost-card:hover {
    border-color: rgba(86,58,255,0.4);
    box-shadow: 0 16px 30px rgba(86,58,255,0.1);
}

.tech-cost-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.tech-cost-card__icon {
    width: 46px; height: 46px;
    background: rgba(86,58,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--tech-primary);
    flex-shrink: 0;
}

.tech-cost-card__title {
    font-family: "Jost", sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--tech-primary);
    margin: 0;
}

.tech-cost-card p.tech-cost-card__intro {
    font-family: "Jost", sans-serif;
    font-size: 14.5px;
    color: var(--tech-title);
    margin-bottom: 14px;
    font-weight: 600;
}

.tech-cost-card ul {
    padding-left: 18px;
    margin-bottom: 18px;
}

.tech-cost-card ul li {
    font-family: "Jost", sans-serif;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--tech-para);
    line-height: 1.6;
}

.tech-cost-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--tech-gray);
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: var(--tech-title);
    font-size: 14px;
}

.tech-cost__note {
    margin-top: 28px;
    font-family: "Jost", sans-serif;
    font-size: 13.5px;
    color: #9ca3af;
}

/* ─── Hire Developers ─── */
.tech-hire {
    background: linear-gradient(135deg, #F5F4FF 0%, #FCFBFF 100%);
    padding: 90px 0;
}

.tech-hire__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 767px) {
    .tech-hire__grid { grid-template-columns: 1fr; gap: 36px; }
    .tech-hire__media { order: -1; }
}

.tech-hire__eyebrow {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    color: var(--tech-primary);
    font-size: 14px;
    margin-bottom: 12px;
    display: block;
}

.tech-hire h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--tech-title);
    margin-bottom: 18px;
}

.tech-hire h2 span { color: var(--tech-primary); }

.tech-hire p {
    font-family: "Jost", sans-serif;
    color: var(--tech-para);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.tech-hire__media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(86,58,255,0.12);
}

/* ─── FAQ ─── */
.tech-faq {
    background: #fff;
    padding: 90px 0;
}

.tech-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .tech-faq__grid { grid-template-columns: 1fr; gap: 36px; }
}

.tech-faq__intro h5 {
    font-family: "Jost", sans-serif;
    color: var(--tech-primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tech-faq__intro h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--tech-title);
    margin-bottom: 14px;
}

.tech-faq__intro p {
    font-family: "Jost", sans-serif;
    color: var(--tech-para);
    font-size: 15px;
    margin-bottom: 24px;
}

.tech-faq-item {
    border: 1px solid var(--tech-gray);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 14px;
    background: var(--tech-light);
    transition: border-color 0.2s;
}

.tech-faq-item:hover { border-color: rgba(86,58,255,0.35); }

.tech-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
}

.tech-faq-item__q h6 {
    font-family: "Jost", sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--tech-title);
    margin: 0;
}

.tech-faq-item__icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--tech-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.tech-faq-item.is-open .tech-faq-item__icon { transform: rotate(90deg); }

.tech-faq-item__a {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.tech-faq-item__a p {
    font-family: "Jost", sans-serif;
    font-size: 14.5px;
    color: var(--tech-para);
    line-height: 1.7;
    margin: 14px 0 0;
}

/* ─── CTA ─── */
.tech-cta {
    background: linear-gradient(135deg, var(--tech-primary) 0%, #3d20e0 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.tech-cta::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 280px; height: 280px;
    background: rgba(0,217,152,0.1);
    border-radius: 50%;
}

.tech-cta h2 {
    font-family: "Jost", sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.tech-cta p {
    font-family: "Jost", sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.tech-cta__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}