/* FLUXIO — screenshot exact match */

:root {
    --purple-deep: #412676;
    --purple-light: #8C52FF;
    --bg-dark: #0A0618;
    --bg-dark-deep: #05010d;
    --gradient-heading: linear-gradient(90deg, #8C52FF 0%, #412676 100%);
    --gradient-btn: linear-gradient(90deg, #8C52FF 0%, #412676 100%);
    --gradient-dark: linear-gradient(180deg, #0A0618 0%, #05010d 48%, #120828 100%);
    --font-body: 'Clash Display', sans-serif;
    --font-nav: 'Poppins', sans-serif;
}

.flux-gradient-text {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark-deep);
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ===== NAVBAR — scrolls with page ===== */
.fluxio-header {
    position: relative;
    z-index: 1000;
    padding-top: 40px;
    flex-shrink: 0;
}

.fluxio-nav-wrap {
    position: relative;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 clamp(48px, 6vw, 120px);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.fluxio-logo {
    flex-shrink: 0;
    z-index: 2;
}

.fluxio-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.fluxio-nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: static;
    transform: none;
    min-width: 0;
}

.fluxio-nav-links a {
    font-family: var(--font-nav);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    padding: 10px 20px;
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.fluxio-nav-links a.active,
.fluxio-nav-links a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.fluxio-nav-has-mega {
    position: relative;
}

.fluxio-nav-has-mega::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 40px;
}

.fluxio-nav-has-mega .fluxio-nav-mega-trigger {
    position: relative;
    z-index: 1003;
}

.fluxio-header.mega-open .fluxio-nav-has-mega[data-mega="services"] .fluxio-nav-mega-trigger,
.fluxio-nav-has-mega[data-mega="services"]:hover .fluxio-nav-mega-trigger {
    color: var(--purple-light);
}

.fluxio-header.mega-open .fluxio-nav-has-mega[data-mega="industries"] .fluxio-nav-mega-trigger,
.fluxio-nav-has-mega[data-mega="industries"]:hover .fluxio-nav-mega-trigger {
    color: var(--purple-light);
}

.fluxio-header.mega-open[data-active-mega="services"] .fluxio-nav-has-mega:not([data-mega="services"]) .fluxio-nav-mega-trigger,
.fluxio-header.mega-open[data-active-mega="industries"] .fluxio-nav-has-mega:not([data-mega="industries"]) .fluxio-nav-mega-trigger {
    color: rgba(255, 255, 255, 0.72);
}

.fluxio-header.mega-open[data-active-mega="services"] .fluxio-nav-has-mega[data-mega="services"] .fluxio-nav-mega-trigger,
.fluxio-header.mega-open[data-active-mega="industries"] .fluxio-nav-has-mega[data-mega="industries"] .fluxio-nav-mega-trigger {
    color: var(--purple-light);
}

.fluxio-mega-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 999;
}

.fluxio-mega-bridge {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100vw - 48px));
    height: 32px;
    z-index: 1002;
    pointer-events: none;
}

.fluxio-mega-panel {
    position: absolute;
    top: calc(100% + 28px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    width: min(1180px, calc(100vw - 48px));
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0.38s ease;
    z-index: 1001;
    overflow: visible;
}

.fluxio-mega-inner {
    display: grid;
    grid-template-columns: 0.95fr 2.05fr;
    gap: 0;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
}

.fluxio-header.mega-open .fluxio-mega-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.fluxio-header.mega-open .fluxio-mega-bridge {
    pointer-events: auto;
}

.fluxio-header.mega-open .fluxio-mega-panel.is-mega-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.fluxio-mega-columns--industries {
    padding-top: 20px;
    padding-bottom: 20px;
}

.fluxio-mega-industry {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    transition: transform 0.22s ease, padding-left 0.22s ease;
}

.fluxio-mega-industry:last-child {
    border-bottom: none;
}

.fluxio-mega-industry-title {
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.fluxio-mega-industry-desc {
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    color: #777;
    margin: 0;
    transition: color 0.2s ease;
}

.fluxio-mega-industry:hover {
    transform: translateX(4px);
}

.fluxio-mega-industry:hover .fluxio-mega-industry-title {
    color: var(--purple-light);
}

.fluxio-mega-industry:hover .fluxio-mega-industry-desc {
    color: #555;
}

.fluxio-mega-promo {
    padding: 36px 32px 28px;
    border-right: 1px solid #eee;
    background: #fafafa;
}

.fluxio-mega-promo-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 14px;
}

.fluxio-mega-promo-desc {
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.fluxio-mega-promo-visual {
    position: relative;
    height: 220px;
}

.fluxio-mega-phone {
    position: absolute;
    object-fit: contain;
    display: block;
}

.fluxio-mega-phone-back {
    left: 0;
    bottom: 0;
    width: 48%;
    z-index: 1;
}

.fluxio-mega-phone-front {
    right: 0;
    bottom: 0;
    width: 58%;
    z-index: 2;
}

.fluxio-mega-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 28px 24px 28px 16px;
}

.fluxio-mega-col {
    padding: 0 16px;
    border-right: 1px solid #eee;
}

.fluxio-mega-col:last-child {
    border-right: none;
}

.fluxio-mega-group {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.fluxio-mega-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fluxio-mega-group-title {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fluxio-mega-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fluxio-mega-links a {
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 400;
    color: #555;
    line-height: 1.45;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.fluxio-mega-links a::before {
    content: '›';
    color: #bbb;
    font-size: 14px;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.fluxio-mega-links a:hover {
    color: var(--purple-light);
    transform: translateX(3px);
}

.fluxio-mega-links a:hover::before {
    color: var(--purple-light);
    transform: translateX(2px);
}

.btn-fluxio-contact {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 10px 10px 26px;
    background: linear-gradient(90deg, #8C52FF 0%, #6a3fd4 38%, #3d2478 72%, #120828 100%);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.38), 0 2px 14px rgba(140, 82, 255, 0.18);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    z-index: 2;
}

.btn-fluxio-contact:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.42), 0 4px 18px rgba(140, 82, 255, 0.28);
    transform: translateY(-1px);
}

.btn-fluxio-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-fluxio-icon svg {
    display: block;
}

.fluxio-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.fluxio-mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
}

/* ===== HERO — full screen background ===== */
.fluxio-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--bg-dark-deep);
    background-image:
        url('../images/home-background.webp'),
        radial-gradient(ellipse 85% 65% at 50% 18%, rgba(65, 38, 118, 0.42) 0%, transparent 58%),
        var(--gradient-dark);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center top, center top, center center;
    background-size: 100% auto, 100% 100%, 100% 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fluxio-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1680px;
    flex: 1;
    margin: 0 auto;
    padding: 8px clamp(48px, 6vw, 120px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* phone — arc ke andar, neeche fade */
.fluxio-phone-wrap {
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
}

.fluxio-phone-img {
    width: 340px;
    height: auto;
    margin: 140px 0 0 0;
}

/* text — phone fade ke neeche start */
.fluxio-hero-content {
    text-align: center;
    flex-shrink: 0;
    margin-top: -8px;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 920px;
    padding: 0 24px;
}

.fluxio-hero-title {
    font-family: var(--font-body);
    margin: 0;
}

.fluxio-title-line1 {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 300;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.fluxio-title-line2 {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(44px, 5.8vw, 80px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-top: 8px;
}

.fluxio-exceptional {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.fluxio-apps {
    color: #fff;
    font-weight: 500;
}

.fluxio-hero-desc {
    margin-top: clamp(24px, 3vw, 36px);
    font-family: var(--font-body);
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 300;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* tech logos bottom — same hero section, no separator */
.fluxio-tech-row {
    position: relative;
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 3.5vw, 44px);
    gap: clamp(8px, 1.2vw, 20px);
    background: transparent;
    border: none;
    box-shadow: none;
}

.fluxio-tech-row img {
    height: clamp(30px, 2.6vw, 40px);
    width: auto;
    max-width: clamp(36px, 4vw, 56px);
    flex: 0 1 auto;
    object-fit: contain;
    opacity: 0.92;
    filter: brightness(1.05);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: #fff;
    padding: 100px 56px 110px;
}

.about-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
}

.about-title {
    font-size: 40px;
    font-weight: 500;
    color: #333333;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-brand {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.about-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: #888;
}

.about-cards {
    display: flex;
    align-items: flex-end;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 470px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border-radius: 26px;
    overflow: visible;
    position: relative;
    gap: 0;
}

.about-card {
    flex: 1;
    min-height: 470px;
    padding: 28px 14px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.4s ease, min-height 0.4s ease, margin 0.4s ease;
    position: relative;
    z-index: 1;
}

.about-card:last-child {
    border-right: none;
}

.about-card.active {
    flex: 1;
    min-height: 520px;
    margin-top: -28px;
    padding: 34px 14px 26px;
    background: linear-gradient(180deg, #8C52FF 0%, #A876FF 55%, #B888FF 100%);
    border-radius: 26px 26px 0 0;
    border-right: none;
    z-index: 2;
}

.about-card.active + .about-card,
.about-card:has(+ .about-card.active) {
    border-right-color: transparent;
}

.about-stat {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.about-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 14px;
}

.about-card-img {
    width: 100%;
    max-width: 200px;
    height: 118px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.about-card-desc {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.42);
    max-width: 210px;
    margin-bottom: 14px;
    transition: color 0.35s ease;
}

.about-card.active .about-card-desc {
    color: rgba(255, 255, 255, 0.95);
}

.about-card-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #8C52FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: auto;
    transition: background 0.35s ease;
}

.about-icon-active { display: none; }
.about-icon-inactive { display: block; }

.about-card.active .about-card-btn {
    background: #000;
}

.about-card.active .about-icon-active { display: block; }
.about-card.active .about-icon-inactive { display: none; }

/* ===== SECTION THREE — Ventures ===== */
.ventures-section {
    background-color: #fff;
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 79px,
        rgba(0, 0, 0, 0.035) 79px,
        rgba(0, 0, 0, 0.035) 80px
    );
    padding: 100px 56px 110px;
}

.ventures-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.ventures-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    letter-spacing: 0;
    margin-bottom: 16px;
    text-align: center;
}

.ventures-gradient {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.ventures-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: #888;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 38px;
    row-gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.venture-card {
    position: relative;
    min-height: 300px;
    background: linear-gradient(180deg, #E4D9FF 0%, #D8CAFF 100%);
    border-radius: 24px;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.venture-card-body {
    position: relative;
    z-index: 2;
    padding: 28px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 52%;
}

.venture-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.venture-card-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
    color: #555;
    margin-bottom: auto;
    padding-bottom: 16px;
}

.venture-card-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--purple-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: auto;
}

.venture-card-visual {
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 58%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.venture-phone {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 92%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom right;
}

.venture-element {
    position: absolute;
    right: 18%;
    bottom: -6px;
    height: 62%;
    width: auto;
    max-width: none;
    object-fit: contain;
    z-index: 4;
}

/* Cards 1–3 — shared visual container */
.venture-card-visual-realestate,
.venture-card-visual-fitness,
.venture-card-visual-booking {
    width: 68%;
    right: -14px;
    height: 110%;
    bottom: 0;
    overflow: visible;
}

.venture-realestate-phone,
.venture-fitness-phone,
.venture-booking-back {
    right: -6%;
    bottom: -10px;
    height: 108%;
    width: auto;
    z-index: 1;
    object-position: bottom right;
}

.venture-realestate-element,
.venture-fitness-element,
.venture-booking-front {
    right: 10%;
    bottom: -16px;
    width: auto;
    z-index: 5;
    object-position: bottom center;
}

.venture-realestate-element {
    height: 66%;
}

.venture-fitness-element {
    height: 66%;
}

.venture-booking-front {
    height: 56%;
}

.venture-booking-box {
    left: -18%;
    right: auto;
    bottom: 38%;
    height: 34%;
    width: auto;
    z-index: 3;
    object-position: center;
}

/* ===== SECTION FOUR — Revamp Digital Presence ===== */
.revamp-section {
    position: relative;
    overflow: hidden;
    padding: 100px 56px 110px;
}

.revamp-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    pointer-events: none;
}

.revamp-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 79px,
        rgba(255, 255, 255, 0.04) 79px,
        rgba(255, 255, 255, 0.04) 80px
    );
}

.revamp-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.revamp-content {
    flex: 0 1 46%;
    max-width: 500px;
}

.revamp-title {
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    line-height: 1.22;
    letter-spacing: 0;
    margin-bottom: 28px;
}

.revamp-gradient {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.revamp-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
}

.revamp-desc:last-of-type {
    margin-bottom: 32px;
}

.btn-revamp-work {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 24px;
    background: var(--gradient-btn);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(65, 38, 118, 0.35);
    transition: box-shadow 0.25s ease;
}

.btn-revamp-work:hover {
    box-shadow: 0 6px 30px rgba(65, 38, 118, 0.5);
}

.btn-revamp-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.revamp-visual {
    flex: 0 1 52%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.revamp-phone-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

/* ===== SECTION FIVE — AI + Build App ===== */
.section-five {
    background: #fff;
}

/* Top block */
.ai-block {
    background-color: #fff;
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 79px,
        rgba(0, 0, 0, 0.035) 79px,
        rgba(0, 0, 0, 0.035) 80px
    );
    padding: 90px 56px 70px;
}

.ai-block-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.ai-visual {
    position: relative;
    flex: 0 1 52%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 380px;
    pointer-events: none;
}

.ai-phones {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.ai-robot {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-18%);
    height: 72%;
    width: auto;
    max-width: 42%;
    object-fit: contain;
    z-index: 3;
}

.ai-content {
    flex: 0 1 44%;
    max-width: 480px;
}

.ai-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 20px;
}

.ai-gradient {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.ai-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #666;
    margin-bottom: 16px;
}

.ai-desc:last-of-type {
    margin-bottom: 28px;
}

.btn-ai-start {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 24px;
    background: var(--gradient-btn);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(65, 38, 118, 0.25);
    transition: box-shadow 0.25s ease;
}

.btn-ai-start:hover {
    box-shadow: 0 6px 26px rgba(65, 38, 118, 0.4);
}

.btn-ai-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Bottom block — lavender card */
.build-app-wrap {
    background-color: #fff;
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 79px,
        rgba(0, 0, 0, 0.035) 79px,
        rgba(0, 0, 0, 0.035) 80px
    );
    padding: 80px 56px 70px;
    overflow: visible;
}

.build-app-outer {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    overflow: visible;
}

.build-app-card {
    position: relative;
    z-index: 1;
    background: #C5B4FF;
    border-radius: 28px;
    padding: 52px 52% 52px 56px;
    min-height: 270px;
    overflow: visible;
}

.build-app-content {
    max-width: 480px;
}

.build-app-title {
    font-size: 38px;
    font-weight: 500;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 18px;
}

.build-app-dark {
    color: #1a1a1a;
    font-weight: 500;
}

.build-app-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
}

.btn-build-start {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px 10px 24px;
    background: #1a1a1a;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    transition: background 0.25s ease;
}

.btn-build-start:hover {
    background: #000;
}

.btn-build-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.build-app-visual {
    position: absolute;
    right: -24px;
    bottom: 0;
    width: 52%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.build-app-hand {
    width: auto;
    max-width: 560px;
    height: 520px;
    object-fit: contain;
    object-position: bottom center;
}

/* ===== SECTION SIX — Why Choose Fluxio ===== */
.choose-section {
    background: #fff;
    padding: 100px 56px 110px;
    overflow: visible;
}

.choose-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.choose-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 16px;
}

.choose-brand {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.choose-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: #888;
}

.choose-layout {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 88px 240px 88px 1fr;
    align-items: center;
    column-gap: 0;
    min-height: 520px;
}

.choose-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 72px;
    height: 520px;
    z-index: 2;
}

.choose-side-left {
    align-items: flex-end;
    padding-right: 0;
}

.choose-side-right {
    align-items: flex-start;
    padding-left: 0;
}

.choose-card {
    width: 100%;
    max-width: 252px;
    background: #0A0618;
    border: 1px solid rgba(140, 82, 255, 0.22);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 0 40px rgba(120, 70, 255, 0.12);
}

.choose-card-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.choose-card-desc {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.choose-bridge {
    height: 520px;
    flex-shrink: 0;
    z-index: 1;
}

.choose-bridge svg {
    display: block;
    width: 100%;
    height: 100%;
}

.choose-path {
    fill: none;
    stroke: #A67FFF;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.choose-hub {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 520px;
    flex-shrink: 0;
}

.choose-glow {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.1) 0%, transparent 68%);
    pointer-events: none;
}

.choose-phone {
    width: 240px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* ===== SECTION SEVEN — Partners / Trust Bar ===== */
.partners-bar {
    background: linear-gradient(90deg, #7B4BFF 0%, #4A1FA8 42%, #120828 100%);
    padding: 44px 56px;
}

.partners-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.partners-bar-left {
    flex: 1 1 auto;
    min-width: 0;
}

.partners-bar-label {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 18px;
    letter-spacing: 0;
}

.partners-logos {
    line-height: 0;
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
}

.partners-logos img {
    height: 52px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.partners-bar-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.partners-bar-cta {
    text-align: left;
}

.partners-bar-small {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
    margin-bottom: 2px;
}

.partners-bar-click {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-bottom: 0;
}

.partners-bar-live {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.btn-partners-order {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-partners-order:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* ===== SECTION EIGHT — How We Build ===== */
.build-section {
    background-color: #fff;
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 79px,
        rgba(0, 0, 0, 0.035) 79px,
        rgba(0, 0, 0, 0.035) 80px
    );
    padding: 100px 56px 110px;
}

.build-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.build-header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 52px;
}

.build-header-lead {
    display: flex;
    align-items: stretch;
    gap: 28px;
    flex-shrink: 0;
}

.build-header-divider {
    width: 3px;
    background: linear-gradient(180deg, #8C52FF 0%, #412676 100%);
    flex-shrink: 0;
}

.build-title {
    flex: 0 0 auto;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.28;
    color: #1a1a1a;
    letter-spacing: 0;
    margin: 0;
}

.build-accent {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.build-intro {
    flex: 1;
    min-width: 0;
}

.build-intro p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    color: #333;
    margin: 0;
}

.build-content-row {
    position: relative;
    margin-top: 0;
}

.build-process-col {
    width: calc(50% - 24px);
    min-width: 0;
}

.build-process-steps {
    position: relative;
    padding: 12px 40px 0;
}

.build-steps-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.build-steps-path {
    fill: none;
    stroke: rgba(0, 0, 0, 0.22);
    stroke-width: 1.5;
    stroke-dasharray: 3 5;
    stroke-linecap: butt;
    stroke-linejoin: miter;
}

.build-step {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}

.build-step:last-child {
    padding-bottom: 0;
}

.build-step-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 14px;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.build-step-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    color: #333;
    margin: 0;
}

.build-visual-col {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 24px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.build-phones {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ===== SECTION NINE — Case Studies ===== */
.cases-section {
    position: relative;
    overflow: hidden;
    padding: 100px 56px 110px;
    background: #050212;
}

.cases-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    pointer-events: none;
}

.cases-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 79px,
            rgba(255, 255, 255, 0.035) 79px,
            rgba(255, 255, 255, 0.035) 80px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 79px,
            rgba(255, 255, 255, 0.025) 79px,
            rgba(255, 255, 255, 0.025) 80px
        );
}

.cases-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.cases-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
}

.cases-title {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.cases-gradient {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.cases-subtitle {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.case-card {
    background: rgba(18, 14, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 14px 14px 18px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    backdrop-filter: blur(6px);
}

.case-card-visual {
    border-radius: 14px;
    overflow: hidden;
    background: #0c0a16;
    margin-bottom: 16px;
    aspect-ratio: 1 / 0.82;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.case-card-body {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 44px;
    min-height: 72px;
}

.case-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.case-card-desc {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.52);
    margin: 0;
}

.case-card-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.case-card-btn:hover {
    box-shadow: 0 4px 18px rgba(140, 82, 255, 0.45);
    transform: translateY(-1px);
}

/* ===== SECTION TEN — Testimonials ===== */
.testimonials-section {
    background: #fff;
    padding: 100px 56px 110px;
}

.testimonials-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 16px;
}

.testimonials-gradient {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.testimonials-subtitle {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #888;
    margin: 0;
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    background: #050510;
    border-radius: 10px;
    padding: 22px 22px 24px;
}

.testimonial-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.testimonial-meta {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
    margin: 0 0 10px;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star {
    font-size: 14px;
    line-height: 1;
}

.star-filled {
    color: #fff;
}

.star-empty {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.85);
}

.testimonial-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.testimonial-quote {
    position: absolute;
    left: -8px;
    bottom: -6px;
    width: 34px;
    height: 34px;
    display: block;
    z-index: 2;
}

.testimonial-text {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* ===== SECTION ELEVEN — FAQ + Quote ===== */
.faq-quote-section {
    background: #fff;
    padding: 100px 56px 110px;
}

.faq-quote-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: start;
}

.faq-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 28px;
}

.faq-gradient {
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background 0.25s ease;
}

.faq-item.is-open .faq-trigger {
    background: #ede8ff;
}

.faq-question {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.45;
}

.faq-toggle {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-panel {
    display: none;
    padding: 0 20px 18px;
    background: #fff;
}

.faq-item.is-open .faq-panel {
    display: block;
}

.faq-panel p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.7;
    color: #888;
    margin: 0;
    padding-top: 2px;
}

.quote-card {
    background: linear-gradient(160deg, #8C52FF 0%, #6a3fd4 45%, #412676 100%);
    border-radius: 24px;
    padding: 36px 32px 32px;
    box-shadow: 0 16px 48px rgba(65, 38, 118, 0.22);
}

.quote-title {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.quote-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    margin-bottom: 24px;
}

.quote-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.quote-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.quote-input {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    outline: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.quote-input::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.quote-input:focus {
    background: rgba(255, 255, 255, 0.24);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.quote-textarea {
    min-height: 140px;
    resize: vertical;
}

.quote-submit {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    background: #0a0a0a;
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.quote-submit:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.fluxio-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 56px 0;
    background: #050212;
}

.fluxio-footer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
    pointer-events: none;
}

.fluxio-footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.fluxio-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr 1fr;
    gap: 40px 32px;
    padding-bottom: 36px;
}

.fluxio-footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.fluxio-footer-logo img {
    height: 28px;
    width: auto;
    display: block;
}

.fluxio-footer-desc {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 20px;
    max-width: 220px;
}

.fluxio-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.fluxio-footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.fluxio-footer-social a:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.fluxio-footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 22px;
}

.fluxio-footer-locations-title {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 10px;
}

.fluxio-footer-locations-list {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.02em;
}

.fluxio-footer-heading {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 18px;
}

.fluxio-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fluxio-footer-links a {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.52);
    transition: color 0.2s ease;
}

.fluxio-footer-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.fluxio-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fluxio-footer-copy,
.fluxio-footer-privacy {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.fluxio-footer-privacy {
    transition: color 0.2s ease;
}

.fluxio-footer-privacy:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* ===== responsive ===== */
@media (max-width: 1199px) {
    .fluxio-nav-wrap {
        padding: 0 40px;
        gap: 32px;
    }

    .fluxio-nav-links {
        gap: 6px;
    }

    .fluxio-nav-links a {
        font-size: 16px;
        padding: 10px 14px;
    }

    .fluxio-logo img {
        height: 42px;
    }
}

@media (max-width: 991px) {
    .fluxio-nav-wrap {
        padding: 0 24px;
        gap: 16px;
    }

    .fluxio-nav-links {
        flex: none;
    }

    .fluxio-nav-links,
    .btn-fluxio-contact { display: none; }

    .fluxio-mega-panel,
    .fluxio-mega-backdrop { display: none; }

    .fluxio-mobile-toggle { display: flex; }

    .fluxio-header.menu-open .fluxio-nav-wrap {
        flex-wrap: wrap;
    }

    .fluxio-header.menu-open .fluxio-nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        order: 3;
        background: rgba(0, 0, 0, 0.95);
        padding: 16px;
        border-radius: 12px;
        margin-top: 12px;
    }

    .fluxio-header.menu-open .btn-fluxio-contact {
        display: inline-flex;
        order: 4;
        margin-top: 8px;
    }

    .fluxio-logo img { height: 28px; }

    .fluxio-hero-inner { padding: 12px 24px 32px; }
    .fluxio-phone-img { width: 250px; }
    .fluxio-title-line1 { font-size: 28px; font-weight: 500; }
    .fluxio-title-line2 { font-size: 42px; font-weight: 700; }
    .fluxio-hero-desc { font-size: 15px; font-weight: 300; margin-top: 22px; }

    .fluxio-tech-row {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px 28px;
        padding-top: 40px;
    }

    .fluxio-tech-row img {
        height: 28px;
        max-width: 44px;
    }

    .about-section { padding: 70px 24px 80px; }

    .about-title { font-size: 30px; font-weight: 500; }

    .about-cards {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        border-radius: 20px;
    }

    .about-card {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 28px 20px;
    }

    .about-card.active {
        margin-top: 0;
        min-height: auto;
        border-radius: 20px;
    }

    .about-card:last-child { border-bottom: none; }

    .ventures-section { padding: 70px 24px 80px; }

    .ventures-title { font-size: 30px; }

    .revamp-section { padding: 70px 24px 80px; }

    .revamp-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
    }

    .revamp-content {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .revamp-title { font-size: 32px; }

    .revamp-visual {
        flex: 1 1 auto;
        width: 100%;
        justify-content: center;
    }

    .revamp-phone-img {
        max-width: 100%;
    }

    .ai-block { padding: 70px 24px 50px; }

    .ai-block-inner {
        flex-direction: column;
        gap: 40px;
    }

    .ai-visual {
        flex: 1 1 auto;
        width: 100%;
        min-height: 300px;
    }

    .ai-phones { max-width: 100%; }

    .ai-content {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .ai-title { font-size: 30px; }

    .build-app-wrap { padding: 40px 24px 60px; }

    .build-app-card {
        padding: 36px 28px;
        min-height: auto;
    }

    .build-app-content { max-width: 100%; }

    .build-app-title { font-size: 28px; }

    .build-app-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: -20px;
    }

    .build-app-hand {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .ventures-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 24px;
    }

    .venture-card {
        min-height: 340px;
    }

    .venture-card-body {
        max-width: 100%;
        padding-bottom: 180px;
    }

    .venture-card-visual {
        width: 75%;
        right: 0;
        height: 55%;
        top: auto;
    }

    .venture-card-visual-realestate,
    .venture-card-visual-fitness,
    .venture-card-visual-booking {
        width: 85%;
        right: -8px;
        height: 100%;
    }

    .venture-realestate-phone,
    .venture-fitness-phone,
    .venture-booking-back {
        height: 95%;
        right: -5%;
    }

    .venture-realestate-element,
    .venture-fitness-element,
    .venture-booking-front {
        right: 5%;
        bottom: -10px;
    }

    .venture-realestate-element {
        height: 58%;
    }

    .venture-fitness-element {
        height: 58%;
    }

    .venture-booking-front {
        height: 50%;
    }

    .venture-element {
        height: 55%;
        right: 10%;
    }

    .venture-booking-box {
        left: -10%;
        bottom: 32%;
        height: 30%;
    }

    .choose-section { padding: 70px 24px 80px; }

    .choose-title { font-size: 30px; }

    .choose-layout {
        grid-template-columns: 1fr;
        row-gap: 24px;
        min-height: auto;
    }

    .choose-side {
        height: auto;
        gap: 20px;
        align-items: center !important;
    }

    .choose-card { max-width: 100%; }

    .choose-bridge { display: none; }

    .choose-hub {
        width: 200px;
        height: auto;
        margin: 0 auto;
        order: -1;
    }

    .choose-glow { width: 260px; height: 340px; }

    .choose-phone { width: 200px; }

    .partners-bar { padding: 36px 24px; }

    .partners-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .partners-bar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .partners-logos img { height: 44px; }

    .partners-bar-live { font-size: 24px; }

    .build-section { padding: 70px 24px 80px; }

    .build-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .build-header-lead {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .build-header-divider {
        width: 100%;
        height: 3px;
    }

    .build-intro {
        width: 100%;
    }

    .build-title { font-size: 32px; }

    .build-content-row {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .build-process-col {
        width: 100%;
    }

    .build-step-title { font-size: 26px; }

    .build-process-steps { padding: 8px 24px 0; }

    .build-visual-col {
        position: static;
        width: 100%;
        height: auto;
        order: -1;
    }

    .build-phones {
        width: 100%;
        max-width: 360px;
        height: auto;
        margin: 0 auto;
    }

    .cases-section { padding: 70px 24px 80px; }

    .cases-title { font-size: 32px; }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonials-section { padding: 70px 24px 80px; }

    .testimonials-title { font-size: 32px; }

    .testimonial-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .faq-quote-section { padding: 70px 24px 80px; }

    .faq-quote-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-title { font-size: 32px; }

    .fluxio-footer { padding: 56px 24px 0; }

    .fluxio-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .fluxio-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .fluxio-phone-img { width: 200px; }
    .fluxio-title-line1 { font-size: 24px; font-weight: 500; }
    .fluxio-title-line2 { font-size: 34px; font-weight: 700; }
    .fluxio-hero-desc { font-size: 14px; max-width: 320px; }
    .fluxio-tech-row {
        justify-content: center;
        gap: 16px 22px;
    }

    .fluxio-tech-row img { height: 24px; max-width: 40px; }

    .ventures-title { font-size: 26px; }
    .venture-card-title { font-size: 20px; }

    .revamp-title { font-size: 26px; }
    .revamp-desc { font-size: 12px; }

    .ai-title { font-size: 26px; }
    .build-app-title { font-size: 24px; }

    .choose-title { font-size: 26px; }

    .build-title { font-size: 28px; }

    .build-step-title { font-size: 22px; }

    .build-process-steps { padding: 8px 16px 0; }

    .cases-grid { grid-template-columns: 1fr; }

    .cases-title { font-size: 28px; }

    .testimonial-card { flex: 0 0 100%; }

    .testimonials-title { font-size: 28px; }

    .faq-title { font-size: 28px; }

    .quote-row { grid-template-columns: 1fr; }

    .quote-card { padding: 28px 22px 24px; }

    .fluxio-footer-grid { grid-template-columns: 1fr; }

    .fluxio-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===== STANDALONE ABOUT PAGE STYLES ===== */

.about-page-main {
    overflow-x: hidden;
}

.about-nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* About Hero Section — Premium */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 160px 24px 90px;
    background: var(--bg-dark-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-hero-bg-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.about-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-hero-bg-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 60% at 50% 45%, rgba(5,1,13,0.55) 0%, rgba(5,1,13,0.88) 100%),
        linear-gradient(180deg, rgba(5,1,13,0.7) 0%, rgba(5,1,13,0.4) 35%, rgba(5,1,13,0.5) 70%, rgba(5,1,13,0.92) 100%);
    pointer-events: none;
}

.about-hero-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(140,82,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140,82,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

.about-hero-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.1) 0%, transparent 70%);
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    font-family: var(--font-nav);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.about-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.about-breadcrumb a:hover { color: var(--purple-light); }
.about-breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 11px; }
.about-breadcrumb-current { color: var(--purple-light); }

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
    width: 100%;
}

.about-badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(140, 82, 255, 0.12);
    border: 1px solid rgba(140, 82, 255, 0.35);
    border-radius: 50px;
    color: var(--purple-light);
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.about-hero-title {
    font-family: var(--font-body);
    font-size: clamp(38px, 5.8vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 26px;
}

.about-hero-desc {
    font-family: var(--font-nav);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    max-width: 680px;
    margin: 0 auto 36px;
}

.about-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px 14px 28px;
    background: linear-gradient(90deg, #8C52FF 0%, #6a3fd4 38%, #3d2478 72%, #120828 100%);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 6px 28px rgba(140,82,255,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(140,82,255,0.45);
}

.btn-about-arrow {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
}

.btn-about-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-about-ghost:hover {
    border-color: var(--purple-light);
    background: rgba(140,82,255,0.1);
    color: #fff;
}

.about-hero-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.about-hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px clamp(28px, 4vw, 48px);
}

.about-hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.about-hero-stat-item .stat-num {
    font-family: var(--font-body);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-stat-item .stat-lbl {
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 640px) {
    .about-hero { min-height: auto; padding-top: 140px; padding-bottom: 70px; }
    .about-hero-stats { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .about-hero-stat-divider { width: 60%; height: 1px; }
    .about-hero-stat-item { padding: 16px 24px; width: 100%; }
    .about-hero-btns { flex-direction: column; }
}

/* About Story Section — Premium */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-sec-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-values-sec .about-sec-title,
.about-team-sec .about-sec-title,
.about-timeline-sec .about-sec-title {
    color: #fff;
}

.about-timeline-sec .about-sec-title {
    color: #1a1a1a;
}

.about-text-p {
    font-family: var(--font-nav);
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 20px;
}

.about-story-sec {
    background: linear-gradient(180deg, #fff 0%, #f8f7ff 50%, #fff 100%);
    padding: 120px 24px;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.about-story-sec--premium {
    border-top: 1px solid rgba(140,82,255,0.06);
}

.about-story-bg-accent {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(140,82,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-story-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(140,82,255,0.08);
    border: 1px solid rgba(140,82,255,0.2);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 18px;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 90px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-story-text .about-sec-title {
    margin-bottom: 28px;
}

.about-mission-quote {
    position: relative;
    background: #fff;
    border: 1px solid rgba(140,82,255,0.12);
    border-radius: 16px;
    padding: 24px 24px 24px 28px;
    margin-top: 32px;
    box-shadow: 0 12px 40px rgba(140,82,255,0.08);
}

.about-mission-quote-icon {
    position: absolute;
    top: -14px;
    left: 24px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-deep));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(140,82,255,0.3);
}

.about-mission-quote p {
    font-family: var(--font-nav);
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: #444;
    margin: 0;
    padding-top: 8px;
}

.about-story-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-story-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 600;
    color: #555;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: border-color 0.25s, transform 0.25s;
}

.about-story-pill i {
    font-size: 13px;
    color: var(--purple-light);
}

.about-story-pill:hover {
    border-color: var(--purple-light);
    transform: translateY(-2px);
}

/* Phone scene */
.about-story-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-phone-scene {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.about-phone-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(140,82,255,0.15) 0%, rgba(0,206,201,0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about-phone-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 32px 64px rgba(0,0,0,0.22));
    border-radius: 32px;
    animation: aboutPhoneFloat 4s ease-in-out infinite;
}

@keyframes aboutPhoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    max-width: 220px;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}

.about-float-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0,0,0,0.16);
}

.about-float-card h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.about-float-card p {
    font-family: var(--font-nav);
    font-size: 11px;
    line-height: 1.5;
    color: #888;
    margin: 0;
}

.about-float-card--agile {
    top: 8%;
    left: -8%;
    animation: aboutFloatCard1 5s ease-in-out infinite;
}

.about-float-card--enterprise {
    bottom: 12%;
    right: -10%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0A0618 100%);
    border-color: rgba(255,255,255,0.08);
}

.about-float-card--enterprise h4 { color: #fff; }
.about-float-card--enterprise p { color: rgba(255,255,255,0.6); }

.about-float-card--enterprise {
    animation: aboutFloatCard2 5s ease-in-out infinite 0.5s;
}

@keyframes aboutFloatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes aboutFloatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.about-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.about-float-icon--teal {
    background: linear-gradient(135deg, #00B894 0%, #0984E3 100%);
    box-shadow: 0 6px 16px rgba(0,184,148,0.35);
}

.about-float-icon--gold {
    background: linear-gradient(135deg, #F5A623 0%, #E67E22 100%);
    box-shadow: 0 6px 16px rgba(245,166,35,0.35);
}

/* Legacy visual cards — kept for compatibility */
.visual-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visual-card {
    background: #faf9fe;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.visual-card-icon {
    font-size: 28px;
    color: var(--purple-light);
    margin-bottom: 16px;
    display: inline-block;
}

.visual-card h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.visual-card p {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.visual-card.active {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-deep) 100%);
    border-color: rgba(140, 82, 255, 0.2);
}

.visual-card.active h4 {
    color: #fff;
}

.visual-card.active p {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .about-float-card--agile { left: 0; }
    .about-float-card--enterprise { right: 0; }
}

@media (max-width: 768px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-phone-scene { max-width: 340px; }
    .about-float-card { max-width: 190px; padding: 12px 14px; }
    .about-float-card--agile { top: 4%; left: -2%; }
    .about-float-card--enterprise { bottom: 8%; right: -2%; }
}

/* Values Section */
.about-values-sec {
    background: var(--bg-dark);
    padding: 120px 24px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-sec-header {
    max-width: 680px;
    margin: 0 auto 64px;
}

.text-center {
    text-align: center;
}

.about-sec-subtitle {
    font-family: var(--font-nav);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.about-story-sec .about-sec-subtitle,
.about-timeline-sec .about-sec-subtitle {
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.value-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(140, 82, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--purple-light);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.value-card-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.value-card-desc {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.value-card:hover {
    transform: translateY(-6px);
    background: rgba(140, 82, 255, 0.03);
    border-color: rgba(140, 82, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover .value-icon-wrap {
    background: var(--purple-light);
    color: #fff;
    box-shadow: 0 8px 20px rgba(140, 82, 255, 0.3);
}

/* Journey / Timeline Section — Premium */
.about-timeline-sec {
    background: #fff;
    padding: 100px 24px 110px;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.about-timeline-sec--premium {
    background: linear-gradient(180deg, #fff 0%, #f9f8ff 45%, #fff 100%);
    border-top: 1px solid rgba(140, 82, 255, 0.06);
}

.about-timeline-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 40% at 15% 20%, rgba(140, 82, 255, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 45% 35% at 85% 75%, rgba(0, 201, 167, 0.04) 0%, transparent 70%);
}

.journey-header {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.journey-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(140, 82, 255, 0.08);
    border: 1px solid rgba(140, 82, 255, 0.2);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 16px;
}

.journey-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    max-width: 560px;
    margin: 36px auto 48px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(140, 82, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(140, 82, 255, 0.07);
    position: relative;
    z-index: 2;
}

.journey-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.journey-stat-num {
    font-family: var(--font-body);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
}

.journey-stat-lbl {
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.journey-stat-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(140, 82, 255, 0.2), transparent);
    flex-shrink: 0;
}

.journey-timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    z-index: 2;
}

.journey-track {
    position: absolute;
    left: 50%;
    top: 12px;
    bottom: 12px;
    width: 3px;
    transform: translateX(-50%);
    z-index: 1;
}

.journey-track-line {
    position: absolute;
    inset: 0;
    border-radius: 3px;
    background: linear-gradient(180deg,
        rgba(140, 82, 255, 0.15) 0%,
        rgba(0, 201, 167, 0.2) 35%,
        rgba(59, 130, 246, 0.2) 65%,
        rgba(245, 158, 11, 0.25) 100%);
}

.journey-track-glow {
    position: absolute;
    inset: -4px -8px;
    border-radius: 8px;
    background: linear-gradient(180deg,
        rgba(140, 82, 255, 0.08) 0%,
        rgba(245, 158, 11, 0.08) 100%);
    filter: blur(8px);
    z-index: -1;
}

.journey-step {
    position: relative;
    width: 50%;
    padding: 0 36px 28px;
    z-index: 2;
}

.journey-step:last-child {
    padding-bottom: 0;
}

.journey-step:nth-child(even) {
    left: 50%;
}

.journey-node {
    position: absolute;
    top: 18px;
    right: -18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--j-accent, var(--purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--j-accent, var(--purple-light));
    z-index: 4;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), 0 0 0 4px rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step:nth-child(even) .journey-node {
    left: -18px;
    right: auto;
}

.journey-node-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--j-accent, var(--purple-light));
    opacity: 0.45;
    animation: journeyPulse 2s ease-in-out infinite;
}

@keyframes journeyPulse {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50% { transform: scale(1.25); opacity: 0; }
}

.journey-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--j-accent, var(--purple-light));
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.journey-step:nth-child(even) .journey-card {
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-right: 3px solid var(--j-accent, var(--purple-light));
}

.journey-step:hover .journey-card {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--j-accent-soft, rgba(140, 82, 255, 0.1));
}

.journey-step:hover .journey-node {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 0 0 4px var(--j-accent-soft, rgba(140, 82, 255, 0.15));
}

.journey-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.journey-year {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--j-accent, var(--purple-light));
    letter-spacing: 0.02em;
}

.journey-tag {
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--j-accent, var(--purple-light));
    background: var(--j-accent-soft, rgba(140, 82, 255, 0.1));
    padding: 3px 8px;
    border-radius: 4px;
}

.journey-tag--live {
    background: rgba(245, 158, 11, 0.15);
    color: #D97706;
    position: relative;
}

.journey-tag--live::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #22C55E;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    animation: journeyLiveBlink 1.5s ease-in-out infinite;
}

@keyframes journeyLiveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.journey-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.journey-desc {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.55;
    color: #666;
    margin-bottom: 10px;
}

.journey-foot {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 600;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.journey-foot i {
    font-size: 10px;
    color: var(--j-accent, var(--purple-light));
}

.journey-step--current .journey-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 251, 240, 0.9) 100%);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1);
}

/* Team Section — VIP Premium */
.about-team-sec {
    background: var(--bg-dark-deep);
    padding: 110px 24px 120px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.about-team-sec--vip {
    background: linear-gradient(180deg, #0A0618 0%, #05010d 45%, #0A0618 100%);
}

.team-vip-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.team-vip-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.team-vip-glow--1 {
    width: 600px;
    height: 400px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(140, 82, 255, 0.12) 0%, transparent 70%);
}

.team-vip-glow--2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.07) 0%, transparent 70%);
}

.team-vip-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 80%);
}

.team-vip-header {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto 40px;
}

.team-vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(140, 82, 255, 0.1);
    border: 1px solid rgba(140, 82, 255, 0.25);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 18px;
    box-shadow: 0 0 24px rgba(140, 82, 255, 0.15);
}

.team-vip-badge i {
    font-size: 10px;
    color: #F59E0B;
}

.about-team-sec .about-sec-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    line-height: 1.7;
}

.team-vip-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.team-vip-stat {
    background: rgba(255, 255, 255, 0.02);
    padding: 22px 16px;
    text-align: center;
    transition: background 0.3s ease;
}

.team-vip-stat:hover {
    background: rgba(140, 82, 255, 0.06);
}

.team-vip-stat-num {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.team-vip-stat-lbl {
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.03em;
}

.team-vip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.team-vip-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.team-vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--t-accent, var(--purple-light)), transparent);
    opacity: 0.7;
}

.team-vip-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--t-accent-soft, rgba(140, 82, 255, 0.15)) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.team-vip-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--t-accent-soft, rgba(140, 82, 255, 0.2));
}

.team-vip-card:hover .team-vip-card-glow {
    opacity: 1;
}

.team-vip-avatar {
    position: relative;
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.team-vip-initials {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, var(--t-accent, var(--purple-light)), color-mix(in srgb, var(--t-accent, #8C52FF) 60%, #000));
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-vip-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid var(--t-accent, var(--purple-light));
    opacity: 0.35;
    transition: inset 0.35s ease, opacity 0.35s ease;
}

.team-vip-card:hover .team-vip-initials {
    transform: scale(1.06);
    box-shadow: 0 8px 28px var(--t-accent-soft, rgba(140, 82, 255, 0.3));
}

.team-vip-card:hover .team-vip-ring {
    inset: -9px;
    opacity: 0.6;
}

.team-vip-body {
    width: 100%;
    position: relative;
    z-index: 2;
}

.team-vip-name {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.25;
}

.team-vip-role {
    display: inline-block;
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--t-accent, var(--purple-light));
    margin-bottom: 12px;
}

.team-vip-bio {
    font-family: var(--font-nav);
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
    min-height: 40px;
}

.team-vip-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
}

.team-vip-tags span {
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
    transition: border-color 0.25s, background 0.25s;
}

.team-vip-card:hover .team-vip-tags span {
    border-color: var(--t-accent-soft, rgba(140, 82, 255, 0.3));
    background: var(--t-accent-soft, rgba(140, 82, 255, 0.1));
}

.team-vip-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-vip-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
}

.team-vip-social a:hover {
    background: var(--t-accent, var(--purple-light));
    color: #fff;
    border-color: var(--t-accent, var(--purple-light));
    transform: translateY(-3px);
    box-shadow: 0 6px 16px var(--t-accent-soft, rgba(140, 82, 255, 0.35));
}

/* About CTA Section — Premium */
.about-cta-sec {
    position: relative;
    background: linear-gradient(180deg, #0A0618 0%, #05010d 50%, #0A0618 100%);
    padding: 80px 0 90px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.about-cta-wrap {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 0 clamp(20px, 4vw, 48px);
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.about-cta-glow--1 {
    width: 600px;
    height: 450px;
    top: 40%;
    left: 25%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(140, 82, 255, 0.16) 0%, transparent 70%);
}

.about-cta-glow--2 {
    width: 500px;
    height: 500px;
    top: 30%;
    right: -5%;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.1) 0%, transparent 70%);
}

.about-cta-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.about-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 82, 255, 0.5), rgba(0, 201, 167, 0.4), transparent);
    z-index: 3;
}

.about-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: stretch;
    min-height: 520px;
}

.about-cta-content {
    text-align: left;
    padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.about-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(140, 82, 255, 0.1);
    border: 1px solid rgba(140, 82, 255, 0.22);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 20px;
}

.about-cta-badge i {
    font-size: 10px;
}

.about-cta-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-cta-desc {
    font-family: var(--font-nav);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 22px;
    max-width: 480px;
}

.about-cta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.about-cta-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.about-cta-pills i {
    font-size: 10px;
    color: #00C9A7;
}

.about-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.about-cta-sec .btn-about-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.about-cta-sec .btn-about-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.about-cta-sec .btn-about-ghost i {
    font-size: 16px;
    color: var(--purple-light);
}

.about-cta-trust {
    display: inline-flex;
    align-items: center;
    gap: clamp(16px, 3vw, 28px);
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
}

.about-cta-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-cta-trust-item strong {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.about-cta-trust-item span {
    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.about-cta-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.about-cta-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    overflow: visible;
}

.about-cta-visual-panel {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 60% 50%, rgba(140, 82, 255, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(0, 201, 167, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, rgba(140, 82, 255, 0.04) 0%, transparent 50%);
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.about-cta-phone-scene {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px 24px 8px;
    z-index: 2;
    background: transparent;
}

.about-cta-phone-glow {
    position: absolute;
    width: min(340px, 70%);
    height: min(340px, 70%);
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(140, 82, 255, 0.22) 0%, rgba(0, 201, 167, 0.1) 45%, transparent 72%);
    pointer-events: none;
    z-index: 0;
    animation: ctaGlowPulse 4s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
    0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

.about-cta-phone-img {
    position: relative;
    z-index: 2;
    width: auto;
    height: min(520px, 92%);
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.35));
    animation: ctaPhoneFloat 5s ease-in-out infinite;
}

.about-cta-phone-img--blend {
    mix-blend-mode: lighten;
}

@keyframes ctaPhoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-cta-float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.about-cta-float:hover {
    transform: translateY(-3px) scale(1.03);
}

.about-cta-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--f-accent, var(--purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
}

.about-cta-float strong {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-cta-float span {
    font-family: var(--font-nav);
    font-size: 10px;
    color: #888;
}

.about-cta-float--1 {
    top: 14%;
    left: 4%;
    animation: ctaFloat1 4s ease-in-out infinite;
}

.about-cta-float--2 {
    top: 44%;
    right: 6%;
    animation: ctaFloat2 4.5s ease-in-out infinite;
}

.about-cta-float--3 {
    bottom: 14%;
    left: 8%;
    animation: ctaFloat3 5s ease-in-out infinite;
}

@keyframes ctaFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes ctaFloat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes ctaFloat3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Legacy CTA classes (used elsewhere) */
.cta-title {
    font-family: var(--font-body);
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta-desc {
    font-family: var(--font-nav);
    font-size: clamp(14px, 1.1vw, 17px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .journey-stats-strip {
        flex-wrap: wrap;
        gap: 16px 24px;
        padding: 16px 20px;
    }

    .journey-stat-divider {
        display: none;
    }

    .journey-stat {
        flex: 1 1 28%;
        min-width: 80px;
    }

    .journey-track {
        left: 18px;
        transform: none;
    }

    .journey-step {
        width: 100%;
        padding: 0 0 22px 48px;
    }

    .journey-step:nth-child(even) {
        left: 0;
    }

    .journey-node {
        left: 0 !important;
        right: auto !important;
        top: 16px;
    }

    .journey-step:nth-child(even) .journey-card {
        border-left: 3px solid var(--j-accent, var(--purple-light));
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }

    .team-vip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-vip-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-cta-content {
        text-align: center;
        padding: 40px 32px 32px;
    }

    .about-cta-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta-pills,
    .about-cta-btns {
        justify-content: center;
    }

    .about-cta-trust {
        margin: 0 auto;
    }

    .about-cta-visual {
        min-height: 380px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .about-cta-visual-panel {
        border-left: none;
    }

    .about-cta-phone-scene {
        min-height: 380px;
        padding: 32px 24px;
    }

    .about-cta-phone-img {
        height: min(420px, 75vw);
    }

    .about-cta-float--1 { top: 10%; left: 6%; }
    .about-cta-float--2 { top: 42%; right: 6%; }
    .about-cta-float--3 { bottom: 10%; left: 10%; }
}

@media (max-width: 575px) {
    .team-vip-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-vip-stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-cta-trust {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .about-cta-trust-divider {
        display: none;
    }

    .about-cta-float {
        display: none;
    }
}

/* ================================================================
   SERVICES PAGE STYLES
   ================================================================ */

.svc-page-main { overflow-x: hidden; }

.svc-nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.svc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
    width: 100%;
}

/* ---- HERO ---- */
.svc-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 160px 0 100px;
    background-color: var(--bg-dark-deep);
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(140,82,255,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(65,38,118,0.15) 0%, transparent 60%),
        var(--gradient-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.svc-hero-bg-glow {
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(140,82,255,0.06) 0%, transparent 70%);
    top: -100px; left: -150px;
    pointer-events: none;
    z-index: 0;
}

.svc-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(140,82,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140,82,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.svc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 56px);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.svc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-family: var(--font-nav);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.svc-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.svc-breadcrumb a:hover { color: var(--purple-light); }
.svc-breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 11px; }
.svc-breadcrumb-current { color: var(--purple-light); }

.svc-hero-eyebrow {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 18px;
}

.svc-hero-title {
    font-family: var(--font-body);
    font-size: clamp(32px, 4.5vw, 40px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 22px;
}

.svc-hero-desc {
    font-family: var(--font-nav);
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin-bottom: 36px;
}

.svc-hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary button */
.btn-svc-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px 13px 28px;
    background: linear-gradient(90deg, #8C52FF 0%, #6a3fd4 38%, #3d2478 72%, #120828 100%);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 22px rgba(140,82,255,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-svc-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(140,82,255,0.35);
}

.btn-svc-arrow {
    width: 34px; height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-light);
    flex-shrink: 0;
}

/* Ghost button */
.btn-svc-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.04);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
}

.btn-svc-ghost:hover {
    border-color: var(--purple-light);
    background: rgba(140,82,255,0.08);
    color: #fff;
}

/* Hero Form Card */
.svc-hero-form-wrap { position: relative; }

.svc-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.svc-form-title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.svc-form-group { margin-bottom: 14px; }

.svc-form-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-family: var(--font-nav);
    font-size: 14px;
    color: #fff;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    resize: none;
}

.svc-form-input::placeholder { color: rgba(255,255,255,0.4); }

.svc-form-input:focus {
    border-color: var(--purple-light);
    background: rgba(140,82,255,0.06);
}

.svc-form-select { cursor: pointer; appearance: none; }
.svc-form-select option { background: #1a1a2e; color: #fff; }

.svc-form-textarea { min-height: 80px; }

.svc-form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-nav);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    margin-bottom: 18px;
}

.svc-form-check input[type="checkbox"] { accent-color: var(--purple-light); }

.btn-svc-submit {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(90deg, #8C52FF 0%, #412676 100%);
    border: none;
    border-radius: 12px;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 6px 20px rgba(140,82,255,0.3);
}

.btn-svc-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ---- TRUSTED BY ---- */
.svc-trusted-sec {
    background: #fff;
    padding: 70px 24px;
    text-align: center;
}

.svc-trusted-title {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 40px;
}

.svc-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.svc-logo-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.svc-logo-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 4px 16px rgba(140,82,255,0.12);
}

.svc-logo-card i {
    font-size: 22px;
    color: var(--purple-light);
}

.svc-ratings-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.svc-rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-nav);
    font-size: 14px;
    color: #444;
}

.svc-star { color: #f59e0b; font-size: 16px; }
.svc-award-icon { color: var(--purple-light); font-size: 16px; }

.svc-rating-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
}

/* ---- ACHIEVEMENTS ---- */
.svc-achieve-sec {
    background: #f8f7ff;
    padding: 100px 24px;
}

.svc-achieve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.svc-achieve-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(140,82,255,0.08);
    border: 1px solid rgba(140,82,255,0.2);
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 600;
    color: var(--purple-deep);
    margin-bottom: 20px;
}

.svc-achieve-title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 32px;
}

.svc-achieve-subtitle {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 700;
    color: #4a4a4a;
    line-height: 1.6;
    margin: -16px 0 32px;
    letter-spacing: 0.02em;
}

.svc-awards-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.svc-award-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--bg-dark) 100%);
    border: 2px solid rgba(140,82,255,0.3);
    padding: 10px;
    font-family: var(--font-nav);
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    justify-content: center;
    cursor: default;
    transition: transform 0.2s, box-shadow 0.2s;
}

.svc-award-badge:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(140,82,255,0.25);
}

.svc-award-badge i { font-size: 18px; color: var(--purple-light); margin-bottom: 2px; }

.svc-achieve-text {
    font-family: var(--font-nav);
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.svc-hl {
    color: var(--purple-light);
    font-weight: 600;
}

/* ---- SERVICES WE OFFER ---- */
.svc-offer-sec {
    background: #fff;
    padding: 100px 24px;
}

.svc-offer-header {
    max-width: 720px;
    margin: 0 auto 60px;
}

.svc-offer-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.svc-offer-subtitle {
    font-family: var(--font-nav);
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.svc-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-offer-card {
    background: #faf9ff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
    display: flex;
    flex-direction: column;
}

.svc-offer-card.active,
.svc-offer-card:hover {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-deep) 100%);
    border-color: rgba(140,82,255,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transform: translateY(-4px);
}

.svc-offer-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(140,82,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--purple-light);
    margin-bottom: 20px;
    transition: background 0.3s, box-shadow 0.3s;
}

.svc-offer-card.active .svc-offer-icon-wrap,
.svc-offer-card:hover .svc-offer-icon-wrap {
    background: var(--purple-light);
    color: #fff;
    box-shadow: 0 6px 20px rgba(140,82,255,0.35);
}

.svc-offer-card-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.svc-offer-card.active .svc-offer-card-title,
.svc-offer-card:hover .svc-offer-card-title { color: #fff; }

.svc-offer-card-desc {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    flex: 1;
    transition: color 0.3s;
    margin-bottom: 20px;
}

.svc-offer-card.active .svc-offer-card-desc,
.svc-offer-card:hover .svc-offer-card-desc { color: rgba(255,255,255,0.7); }

.svc-offer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-light);
    transition: gap 0.2s;
    margin-top: auto;
}

.svc-offer-card.active .svc-offer-link,
.svc-offer-card:hover .svc-offer-link {
    color: rgba(255,255,255,0.9);
}

.svc-offer-link:hover { gap: 10px; }

/* ---- PROCESS ---- */
.svc-process-sec {
    background: var(--bg-dark);
    padding: 100px 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.svc-process-header {
    max-width: 680px;
    margin: 0 auto 64px;
}

.svc-process-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.5vw, 32px);
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.svc-process-subtitle {
    font-family: var(--font-nav);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.svc-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-process-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.svc-process-card:hover {
    border-color: rgba(140,82,255,0.25);
    background: rgba(140,82,255,0.03);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.svc-process-num {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 700;
    color: rgba(140,82,255,0.08);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}

.svc-process-icon-wrap {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(140,82,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: var(--purple-light);
    margin-bottom: 16px;
    transition: background 0.3s;
}

.svc-process-card:hover .svc-process-icon-wrap {
    background: var(--purple-light);
    color: #fff;
}

.svc-process-card-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.svc-process-card-desc {
    font-family: var(--font-nav);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

/* ---- TECH STACK ---- */
.svc-tech-sec {
    background: var(--bg-dark-deep);
    padding: 80px 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.svc-tech-header {
    max-width: 600px;
    margin: 0 auto 48px;
}

.svc-tech-title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.svc-tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.svc-tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: all 0.25s ease;
    cursor: default;
}

.svc-tech-chip i { font-size: 18px; color: var(--purple-light); }

.svc-tech-chip:hover {
    border-color: var(--purple-light);
    background: rgba(140,82,255,0.06);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- STATS BANNER ---- */
.svc-stats-sec {
    background: linear-gradient(90deg, var(--purple-deep) 0%, #120828 50%, var(--bg-dark-deep) 100%);
    padding: 60px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.svc-stats-header {
    margin-bottom: 32px;
}

.svc-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.svc-stat-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 20px;
}

.svc-stat-num {
    font-family: var(--font-body);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.svc-stat-suffix {
    font-family: var(--font-body);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--purple-light);
}

.svc-stat-label {
    font-family: var(--font-nav);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.svc-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    align-self: center;
}

/* ---- CTA BANNER ---- */
.svc-cta-sec {
    background: var(--bg-dark-deep);
    padding: 80px 24px 120px;
}

.svc-cta-card {
    position: relative;
    background: linear-gradient(135deg, #120828 0%, #0A0618 60%, #1a0d36 100%);
    border: 1px solid rgba(140,82,255,0.2);
    border-radius: 28px;
    padding: 64px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
}

.svc-cta-glow {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(140,82,255,0.1) 0%, transparent 70%);
    top: -150px; left: -100px;
    pointer-events: none;
}

.svc-cta-content { position: relative; z-index: 2; }

.svc-cta-title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3.2vw, 27px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.svc-cta-desc {
    font-family: var(--font-nav);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    max-width: 520px;
}

.svc-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Phone Mock */
.svc-cta-visual { position: relative; z-index: 2; }

.svc-cta-phone-mock {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.svc-mock-screen { display: flex; flex-direction: column; gap: 20px; }

.svc-mock-row {
    display: flex;
    gap: 12px;
}

.svc-mock-stat-pill {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 12px;
}

.svc-mock-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(140,82,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-light);
    font-size: 14px;
    flex-shrink: 0;
}

.svc-mock-val {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.svc-mock-key {
    display: block;
    font-family: var(--font-nav);
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.svc-mock-bar-wrap {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.svc-mock-bar {
    flex: 1;
    background: rgba(140,82,255,0.2);
    border-radius: 4px 4px 0 0;
    transition: height 0.4s ease;
}

.svc-mock-bar.active {
    background: var(--purple-light);
    box-shadow: 0 0 14px rgba(140,82,255,0.5);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .svc-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .svc-hero { padding-top: 140px; min-height: auto; }
    .svc-achieve-grid { grid-template-columns: 1fr; gap: 48px; }
    .svc-offer-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-process-steps { grid-template-columns: repeat(2, 1fr); }
    .svc-cta-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

    @media (max-width: 640px) {
    .svc-offer-grid { grid-template-columns: 1fr; }
    .svc-process-steps { grid-template-columns: 1fr; }
    .svc-hero-btns { flex-direction: column; align-items: flex-start; }
    .svc-logos-row { gap: 10px; }
    .svc-logo-card { padding: 12px 16px; font-size: 12px; }
    .svc-stats-grid { gap: 0; }
    .svc-stat-divider { display: none; }
    .svc-cta-card { padding: 28px 20px; }
}

/* ================================================================
   SERVICE DETAIL PAGE — TekRevol-style hero + sections
   ================================================================ */

.svc-hero--detail {
    min-height: 100vh;
    padding: 150px 0 90px;
    background: var(--bg-dark-deep);
    align-items: stretch;
}

.svc-hero-bg-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.svc-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.svc-hero-bg-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(5,1,13,0.97) 0%, rgba(5,1,13,0.88) 38%, rgba(5,1,13,0.55) 58%, rgba(5,1,13,0.25) 100%),
        linear-gradient(180deg, rgba(5,1,13,0.4) 0%, transparent 30%, transparent 70%, rgba(5,1,13,0.6) 100%);
    pointer-events: none;
}

.svc-hero--detail .svc-hero-bg-glow {
    z-index: 1;
    right: -100px;
    left: auto;
    top: 10%;
    opacity: 0.7;
}

.svc-hero-inner--detail {
    position: relative;
    z-index: 3;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 240px);
}

.svc-hero-form-col {
    position: relative;
    z-index: 4;
}

/* Transparent glass consultation form */
.svc-form-card--white {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 36px 32px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.svc-form-title--dark {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
}

.svc-form-input--white {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    padding: 14px 0;
    color: #fff;
    font-size: 14px;
}

.svc-form-input--white::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.svc-form-input--white:focus {
    border-bottom-color: var(--purple-light);
    background: transparent;
    box-shadow: none;
}

.svc-form--white .svc-form-textarea {
    min-height: 90px;
    resize: vertical;
}

.svc-form-check--dark {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 22px;
}

.btn-svc-submit--purple {
    border-radius: 6px;
    padding: 16px 24px;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.svc-detail-page .svc-hero-desc {
    max-width: 520px;
}

.svc-detail-page .svc-hero-title {
    max-width: 580px;
}

/* Platform section */
.svc-platform-sec {
    background: var(--bg-dark);
    padding: 100px 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.svc-platform-header {
    max-width: 720px;
    margin: 0 auto 56px;
}

.svc-platform-title {
    font-family: var(--font-body);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin: 16px 0;
}

.svc-platform-subtitle {
    font-family: var(--font-nav);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.svc-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.svc-platform-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.svc-platform-card:hover {
    border-color: rgba(140,82,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.svc-platform-card--android:hover {
    border-color: rgba(61,220,132,0.3);
}

.svc-platform-card-visual {
    background: linear-gradient(180deg, rgba(140,82,255,0.08) 0%, transparent 100%);
    padding: 32px 24px 0;
    text-align: center;
}

.svc-platform-card--android .svc-platform-card-visual {
    background: linear-gradient(180deg, rgba(61,220,132,0.06) 0%, transparent 100%);
}

.svc-platform-card-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
    filter: none;
    border-radius: 12px;
}

.svc-platform-card-body {
    padding: 28px 32px 36px;
}

.svc-platform-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(140,82,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--purple-light);
    margin-bottom: 16px;
}

.svc-platform-card--android .svc-platform-card-icon {
    background: rgba(61,220,132,0.12);
    color: #3ddc84;
}

.svc-platform-card-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.svc-platform-card-desc {
    font-family: var(--font-nav);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}

.svc-platform-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-platform-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-nav);
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.svc-platform-features li i {
    color: var(--purple-light);
    font-size: 11px;
    flex-shrink: 0;
}

.svc-platform-card--android .svc-platform-features li i {
    color: #3ddc84;
}

/* Capabilities */
.svc-capabilities-sec {
    background: #f8f7ff;
    padding: 100px 24px;
}

.svc-capabilities-header {
    max-width: 640px;
    margin: 0 auto 56px;
}

.svc-capabilities-title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 16px 0 12px;
}

.svc-capabilities-subtitle {
    font-family: var(--font-nav);
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.svc-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.svc-capability-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.svc-capability-card:hover {
    box-shadow: 0 16px 40px rgba(140,82,255,0.12);
    transform: translateY(-3px);
}

.svc-capability-num {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 700;
    color: rgba(140,82,255,0.1);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.svc-capability-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    padding-right: 40px;
}

.svc-capability-desc {
    font-family: var(--font-nav);
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* FAQ on service detail */
.svc-faq-sec {
    background: var(--bg-dark-deep);
    padding: 100px 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.svc-faq-header { margin-bottom: 48px; }

.svc-faq-title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 500;
    color: #fff;
}

.svc-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
}

.svc-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-nav);
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-align: left;
}

.svc-faq-trigger i {
    color: var(--purple-light);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.svc-faq-item.is-open .svc-faq-trigger i {
    transform: rotate(180deg);
}

.svc-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.svc-faq-item.is-open .svc-faq-panel {
    max-height: 300px;
}

.svc-faq-panel p {
    padding: 0 24px 20px;
    font-family: var(--font-nav);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}

/* Related services */
.svc-related-sec {
    background: #fff;
    padding: 80px 24px;
}

.svc-related-title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 36px;
}

.svc-related-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.svc-related-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border: 1px solid #eee;
    border-radius: 50px;
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.25s;
}

.svc-related-card i {
    color: var(--purple-light);
    transition: transform 0.2s;
}

.svc-related-card:hover {
    border-color: var(--purple-light);
    background: rgba(140,82,255,0.04);
    color: var(--purple-deep);
}

.svc-related-card:hover i {
    transform: translateX(4px);
}

/* CTA dual phones */
.svc-cta-dual-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.svc-cta-phone-ios,
.svc-cta-phone-android {
    width: 130px;
    border-radius: 18px;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.4));
}

.svc-cta-phone-ios {
    transform: rotate(-8deg);
    z-index: 2;
}

.svc-cta-phone-android {
    transform: rotate(8deg) translateY(16px);
    z-index: 1;
}

.svc-cta-single-img {
    width: 100%;
    max-width: 260px;
    border-radius: 20px;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.4));
}

.text-center { text-align: center; }

@media (max-width: 1024px) {
    .svc-hero-inner--detail {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 40px;
    }

    .svc-hero--detail {
        padding-top: 130px;
        min-height: auto;
    }

    .svc-hero-bg-img {
        object-position: 70% center;
    }

    .svc-hero-bg-shade {
        background:
            linear-gradient(180deg, rgba(5,1,13,0.95) 0%, rgba(5,1,13,0.82) 50%, rgba(5,1,13,0.92) 100%);
    }

    .svc-platform-grid { grid-template-columns: 1fr; }
    .svc-capabilities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .svc-form-card--white { padding: 28px 22px; }
    .svc-hero--detail { padding-top: 120px; }
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
    min-height: 85vh;
}

.thank-you-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6b3fa0 0%, #412676 100%);
    box-shadow: 0 20px 50px rgba(65, 38, 118, 0.45);
}

.thank-you-icon i {
    font-size: 2rem;
    color: #fff;
}

.thank-you-content .about-hero-btns {
    justify-content: center;
}

.thank-you-contact {
    margin-top: 36px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
}

.thank-you-contact a {
    color: #c4a8ff;
    text-decoration: none;
}

.thank-you-contact a:hover {
    color: #fff;
}

.thank-you-contact-sep {
    margin: 0 12px;
    opacity: 0.45;
}
