/* ═══════════════════════════════════════════════════════════════
   FusionTex Global — Custom Theme CSS
   Palette: #07101f (near-black) | #00c6a2 (teal) | #22d3ee (cyan)
═══════════════════════════════════════════════════════════════ */

:root {
    --ft-dark:   #07101f;
    --ft-dark2:  #0d1c33;
    --ft-teal:   #00c6a2;
    --ft-cyan:   #22d3ee;
    --ft-light:  #f8fafc;
    --ft-text:   #374151;
    --ft-sub:    #6b7280;
    --ft-border: rgba(0,198,162,0.2);
    --ft-glass:  rgba(13,28,51,0.7);
    --ft-glow:   0 0 30px rgba(0,198,162,0.25);
}

/* ─── Global ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
ol.ft-breadcrumb { list-style: none; margin: 0; padding: 0; }
body.ft-body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ft-text);
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul { list-style: none; margin: 0; padding: 0; }

/* ─── Topbar ──────────────────────────────────────────────── */
.ft-topbar {
    background: var(--ft-dark);
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,198,162,0.12);
}
.ft-topbar-left, .ft-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.ft-topbar-right { justify-content: flex-end; }
.ft-topbar span i,
.ft-topbar-right i { color: var(--ft-teal); margin-right: 6px; }
.ft-topbar a { color: rgba(255,255,255,0.8); }
.ft-topbar a:hover { color: var(--ft-teal); }

/* ─── Navbar ──────────────────────────────────────────────── */
.ft-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(7,16,31,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ft-border);
    transition: box-shadow 0.3s;
}
.ft-navbar.scrolled {
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.ft-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.ft-logo img { max-height: 50px; width: auto; }
.ft-nav { display: flex; align-items: center; gap: 36px; }
.ft-nav > ul { display: flex; align-items: center; gap: 4px; }
.ft-nav > ul > li { position: relative; }
.ft-nav > ul > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}
.ft-nav > ul > li > a:hover,
.ft-nav > ul > li > a.active { color: var(--ft-teal); }
.ft-nav > ul > li > a i { font-size: 12px; margin-left: 3px; }

/* Dropdown */
.ft-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--ft-dark2);
    border: 1px solid var(--ft-border);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 210px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: all 0.25s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.has-dropdown:hover .ft-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.ft-dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    transition: all 0.2s;
}
.ft-dropdown li a:hover { color: var(--ft-teal); padding-left: 26px; }

/* CTA button in nav */
.ft-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    color: var(--ft-dark) !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 4px 18px rgba(0,198,162,0.3);
}
.ft-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,198,162,0.45); }

/* Mobile toggle */
.ft-mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--ft-border);
    color: #fff;
    font-size: 22px;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.ft-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    color: var(--ft-dark);
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(0,198,162,0.3);
    border: none;
    cursor: pointer;
}
.ft-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,198,162,0.45);
    color: var(--ft-dark);
}
.ft-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 31px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}
.ft-btn-ghost:hover {
    border-color: var(--ft-teal);
    color: var(--ft-teal);
    background: rgba(0,198,162,0.08);
}

/* ─── Common Section Styles ───────────────────────────────── */
.ft-section-tag {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(0,198,162,0.1);
    color: var(--ft-teal);
    border: 1px solid rgba(0,198,162,0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.ft-section-h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--ft-dark);
    line-height: 1.15;
    margin-bottom: 18px;
}
.ft-section-p {
    font-size: 16px;
    color: var(--ft-sub);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
    text-align: center;
}
.ft-gradient-text {
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ft-link-arrow {
    color: var(--ft-teal);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.ft-link-arrow:hover { gap: 12px; color: var(--ft-teal); }

/* ─── Hero Carousel ───────────────────────────────────────── */
.ft-hero-carousel .owl-nav,
.ft-hero-carousel .owl-dots { display: none !important; }
.ft-hero-slide {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}
.ft-hero-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.ft-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,16,31,0.85) 0%, rgba(7,16,31,0.4) 100%);
    z-index: 1;
}
.ft-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}
.ft-hero-tag {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(0,0,0,0.35);
    color: var(--ft-teal);
    border: 1px solid rgba(0,198,162,0.5);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}
.ft-hero-h1 {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.7);
}
.ft-hero-p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 38px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.ft-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── Marquee Strip ───────────────────────────────────────── */
.ft-marquee-wrap {
    background: linear-gradient(90deg, var(--ft-teal), var(--ft-cyan), var(--ft-teal));
    overflow: hidden;
    padding: 0;
}
.ft-marquee {
    display: flex;
    align-items: center;
    gap: 0;
    animation: ftMarquee 28s linear infinite;
    white-space: nowrap;
    width: max-content;
    padding: 14px 0;
}
.ft-marquee span {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ft-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 28px;
}
.ft-marquee i {
    font-size: 8px;
    color: var(--ft-dark);
    opacity: 0.5;
}
@keyframes ftMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── About Section ───────────────────────────────────────── */
.ft-about-section { padding: 100px 0; background: #fff; }
.ft-about-imgs { position: relative; }
.ft-ai-main { border-radius: 16px; overflow: hidden; }
.ft-ai-main img { width: 100%; height: 480px; object-fit: cover; }
.ft-ai-side {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 170px;
}
.ft-ai-side img {
    border-radius: 12px;
    height: 165px;
    width: 170px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.ft-ai-badge {
    position: absolute;
    bottom: -22px;
    left: 30px;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    border-radius: 12px;
    padding: 18px 28px;
    box-shadow: 0 12px 40px rgba(0,198,162,0.35);
}
.ft-badge-num {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--ft-dark);
    line-height: 1;
}
.ft-badge-txt {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ft-dark);
    opacity: 0.85;
    margin-top: 4px;
}

/* About features */
.ft-about-features { display: flex; flex-direction: column; gap: 18px; }
.ft-af-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.ft-af-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ft-dark);
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}
.ft-af-item strong { display: block; font-size: 15px; color: var(--ft-dark); margin-bottom: 3px; }
.ft-af-item p { font-size: 13.5px; color: var(--ft-sub); margin: 0; }

/* ─── Capabilities (Dark) ─────────────────────────────────── */
.ft-capabilities {
    padding: 100px 0;
    background: var(--ft-dark);
}
.ft-cap-card {
    background: var(--ft-dark2);
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s;
}
.ft-cap-card:hover {
    transform: translateY(-8px);
    border-color: var(--ft-teal);
    box-shadow: var(--ft-glow);
}
.ft-cap-img { height: 220px; overflow: hidden; }
.ft-cap-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ft-cap-card:hover .ft-cap-img img { transform: scale(1.06); }
.ft-cap-body { padding: 28px; }
.ft-cap-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0,198,162,0.1);
    border: 1px solid rgba(0,198,162,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ft-teal);
    font-size: 22px;
    margin-bottom: 18px;
}
.ft-cap-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.ft-cap-body p { font-size: 14.5px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 20px; }
.ft-cap-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--ft-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.ft-cap-link:hover { gap: 12px; color: var(--ft-cyan); }

/* ─── Product Grid ────────────────────────────────────────── */
.ft-products-section { padding: 100px 0; background: var(--ft-light); }
.ft-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
}
.ft-pg-large { grid-row: span 2; }
.ft-pg-wide  { grid-column: span 2; }
.ft-pg-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}
.ft-pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.ft-pg-item:hover img { transform: scale(1.06); }
.ft-pg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,16,31,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.35s;
}
.ft-pg-item:hover .ft-pg-overlay { opacity: 1; }
.ft-pg-overlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-left: 3px solid var(--ft-teal);
    padding-left: 12px;
}

/* ─── Process Timeline ────────────────────────────────────── */
.ft-process-section { padding: 100px 0; background: var(--ft-dark); }
.ft-process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.ft-process-line {
    position: absolute;
    top: 40px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--ft-teal), var(--ft-cyan));
    z-index: 0;
    opacity: 0.35;
}
.ft-pt-item { position: relative; text-align: center; }
.ft-pt-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(0,198,162,0.15);
}
.ft-pt-dot span {
    font-size: 16px;
    font-weight: 800;
    color: var(--ft-dark);
}
.ft-pt-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--ft-border);
    border-radius: 14px;
    padding: 28px 22px;
    transition: all 0.3s;
}
.ft-pt-card:hover {
    background: rgba(0,198,162,0.06);
    border-color: rgba(0,198,162,0.4);
    transform: translateY(-6px);
}
.ft-pt-card i {
    font-size: 32px;
    color: var(--ft-teal);
    margin-bottom: 14px;
    display: block;
}
.ft-pt-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.ft-pt-card p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }

/* ─── World Map Section ───────────────────────────────────── */
.ft-map-section {
    padding: 100px 0 60px;
    background: var(--ft-dark2);
    overflow: hidden;
}
.ft-map-section .ft-section-h2 { color: #fff; text-align: center; }
.ft-map-section .ft-section-p { color: rgba(255,255,255,0.6); }
.ft-map-section .container { text-align: center; }
.ft-map-wrap {
    position: relative;
    margin: 50px auto 50px;
    max-width: 900px;
    width: 92%;
}
.ft-map-bg {
    width: 100%;
    display: block;
    opacity: 0.2;
    filter: invert(1) hue-rotate(150deg) saturate(0.4);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.ft-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ft-map-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--ft-border);
    border-radius: 16px;
    padding: 28px 0;
    margin-top: 8px;
}
.ft-map-stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 8px 20px;
}
.ft-ms-num {
    display: block;
    font-size: 34px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}
.ft-ms-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}
.ft-ms-divider {
    width: 1px;
    height: 50px;
    background: var(--ft-border);
    align-self: center;
}

/* ─── Testimonials ────────────────────────────────────────── */
.ft-testi-section { padding: 100px 0; background: var(--ft-light); }
.ft-testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.ft-testi-side { display: flex; flex-direction: column; gap: 24px; }
.ft-testi-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.ft-testi-card:hover {
    border-color: rgba(0,198,162,0.4);
    box-shadow: 0 12px 40px rgba(0,198,162,0.12);
    transform: translateY(-4px);
}
.ft-testi-featured {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--ft-dark);
    border-color: var(--ft-border);
}
.ft-testi-featured p { color: rgba(255,255,255,0.8); font-size: 16.5px; line-height: 1.75; }
.ft-testi-card p { font-size: 15px; color: var(--ft-text); line-height: 1.7; margin-bottom: 24px; }
.ft-tq-mark {
    font-size: 64px;
    font-weight: 900;
    color: var(--ft-teal);
    line-height: 0.8;
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}
.ft-testi-auth { display: flex; align-items: center; gap: 14px; }
.ft-ta-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--ft-dark);
    flex-shrink: 0;
}
.ft-testi-auth strong { display: block; font-size: 14.5px; color: #fff; }
.ft-testi-auth span { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.ft-testi-side .ft-testi-auth strong { color: var(--ft-dark); }
.ft-testi-side .ft-testi-auth span { color: var(--ft-sub); }

/* ─── Blog Section ────────────────────────────────────────── */
.ft-blog-section { padding: 100px 0; background: #fff; }
.ft-blog-featured {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    background: var(--ft-dark);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}
.ft-blog-featured:hover { transform: translateY(-6px); }
.ft-blog-featured > img { width: 100%; height: 250px; object-fit: cover; }
.ft-blog-feat-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.ft-blog-feat-body h3 { font-size: 20px; font-weight: 700; color: #fff; line-height: 1.3; margin: 14px 0 14px; }
.ft-blog-feat-body p { font-size: 14.5px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 24px; flex: 1; }
.ft-blog-feat-body .ft-link-arrow { color: var(--ft-teal); }

.ft-blog-list { display: flex; flex-direction: column; gap: 20px; }
.ft-blog-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    background: #fff;
}
.ft-blog-item:hover { border-color: rgba(0,198,162,0.4); box-shadow: 0 8px 28px rgba(0,198,162,0.1); }
.ft-blog-item > img { width: 90px; height: 80px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.ft-bi-content h4 { font-size: 15px; font-weight: 600; color: var(--ft-dark); line-height: 1.35; margin: 6px 0 8px; }
.ft-bi-content h4 a:hover { color: var(--ft-teal); }
.ft-bi-date { font-size: 12.5px; color: var(--ft-sub); }
.ft-blog-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0,198,162,0.1);
    color: var(--ft-teal);
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Blog cards (blog.html grid) */
.ft-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    height: 100%;
}
.ft-blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); border-color: rgba(0,198,162,0.3); }
.ft-blog-card > img { width: 100%; height: 220px; object-fit: cover; }
.ft-bc-body { padding: 24px; }
.ft-bc-body h3 { font-size: 17px; font-weight: 700; color: var(--ft-dark); margin: 12px 0 10px; line-height: 1.35; }
.ft-bc-body h3 a:hover { color: var(--ft-teal); }
.ft-bc-body p { font-size: 14px; color: var(--ft-sub); line-height: 1.6; margin-bottom: 16px; }
.ft-bc-body .ft-bi-date { display: block; margin-top: 16px; }

/* ─── CTA Section ─────────────────────────────────────────── */
.ft-cta-section { padding: 80px 0; background: var(--ft-dark); }
.ft-cta-inner {
    position: relative;
    text-align: center;
    padding: 70px 40px;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--ft-border);
    overflow: hidden;
}
.ft-cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,198,162,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.ft-cta-h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.ft-cta-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.ft-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ──────────────────────────────────────────────── */
.ft-footer { background: #03080f; }
.ft-footer-top { padding: 70px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ft-footer-desc { font-size: 14.5px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.ft-footer-socials { display: flex; gap: 12px; }
.ft-footer-socials a {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    transition: all 0.25s;
}
.ft-footer-socials a:hover { background: var(--ft-teal); color: var(--ft-dark); border-color: var(--ft-teal); }
.ft-footer-title { font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.ft-footer-links li { margin-bottom: 10px; }
.ft-footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.ft-footer-links a:hover { color: var(--ft-teal); }
.ft-footer-contact li { display: flex; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 14px; line-height: 1.5; }
.ft-footer-contact i { color: var(--ft-teal); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.ft-footer-contact a { color: rgba(255,255,255,0.5); }
.ft-footer-contact a:hover { color: var(--ft-teal); }
.ft-footer-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    color: var(--ft-dark);
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}
.ft-footer-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,198,162,0.35); color: var(--ft-dark); }
.ft-footer-bottom { padding: 20px 0; }
.ft-footer-bottom p { font-size: 13.5px; color: rgba(255,255,255,0.35); text-align: center; margin: 0; }
.ft-footer-bottom a { color: var(--ft-teal); }

/* ─── Page Hero (Inner Pages) ─────────────────────────────── */
.ft-page-hero {
    background: linear-gradient(135deg, var(--ft-dark) 0%, var(--ft-dark2) 100%);
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.ft-page-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,198,162,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.ft-page-hero .ft-section-tag { margin-bottom: 16px; }
.ft-page-h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}
.ft-page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 24px; line-height: 1.65; }
.ft-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; }
.ft-breadcrumb li { font-size: 13.5px; color: rgba(255,255,255,0.4); }
.ft-breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 10px; }
.ft-breadcrumb a { color: var(--ft-teal); }

/* ─── Stat Boxes (About page) ─────────────────────────────── */
.ft-stat-box { padding: 20px; }
.ft-sb-num {
    display: block;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.ft-sb-lab { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ─── Certifications Grid ─────────────────────────────────── */
.ft-cert-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.ft-cert-item {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s;
}
.ft-cert-item:hover {
    border-color: rgba(0,198,162,0.5);
    box-shadow: 0 8px 24px rgba(0,198,162,0.12);
    transform: translateY(-4px);
}
.ft-cert-item i { font-size: 32px; color: var(--ft-teal); margin-bottom: 10px; display: block; }
.ft-cert-item p { font-size: 13px; font-weight: 700; color: var(--ft-dark); margin: 0; }

/* ─── Contact Page ────────────────────────────────────────── */
.ft-contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}
.ft-contact-form label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ft-dark);
    margin-bottom: 6px;
}
.ft-contact-form input,
.ft-contact-form select,
.ft-contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14.5px;
    color: var(--ft-dark);
    background: var(--ft-light);
    outline: none;
    transition: border-color 0.25s;
    font-family: inherit;
}
.ft-contact-form input:focus,
.ft-contact-form select:focus,
.ft-contact-form textarea:focus { border-color: var(--ft-teal); background: #fff; }
.ft-contact-form textarea { resize: vertical; min-height: 140px; }

.ft-contact-sidebar {
    background: var(--ft-dark);
    border-radius: 20px;
    padding: 36px 30px;
    height: 100%;
    border: 1px solid var(--ft-border);
}
.ft-cs-info { margin-bottom: 30px; }
.ft-csi-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.ft-csi-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0,198,162,0.12);
    border: 1px solid rgba(0,198,162,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ft-teal);
    font-size: 20px;
    flex-shrink: 0;
}
.ft-csi-item h5 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.ft-csi-item p { font-size: 14.5px; color: #fff; margin: 0; }
.ft-csi-item a { color: #fff; }
.ft-csi-item a:hover { color: var(--ft-teal); }
.ft-why-contact { border-top: 1px solid var(--ft-border); padding-top: 26px; margin-top: 4px; }
.ft-why-contact h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.ft-why-contact ul { display: flex; flex-direction: column; gap: 10px; }
.ft-why-contact li { font-size: 14px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 10px; }
.ft-why-contact li i { color: var(--ft-teal); font-size: 17px; flex-shrink: 0; }
.ft-contact-socials { display: flex; gap: 12px; margin-top: 26px; border-top: 1px solid var(--ft-border); padding-top: 26px; }
.ft-contact-socials a {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--ft-border);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 19px;
    transition: all 0.25s;
}
.ft-contact-socials a:hover { background: var(--ft-teal); color: var(--ft-dark); border-color: var(--ft-teal); }

/* ─── Blog Single ─────────────────────────────────────────── */
.ft-article-body h2 { font-size: 22px; font-weight: 700; color: var(--ft-dark); margin: 36px 0 16px; }
.ft-article-body p { font-size: 15.5px; color: var(--ft-text); line-height: 1.8; margin-bottom: 18px; }
.ft-article-body ul { padding-left: 22px; margin-bottom: 18px; }
.ft-article-body ul li { font-size: 15px; color: var(--ft-text); margin-bottom: 8px; line-height: 1.6; }
.ft-article-body blockquote {
    border-left: 4px solid var(--ft-teal);
    padding: 16px 24px;
    background: rgba(0,198,162,0.06);
    border-radius: 0 10px 10px 0;
    margin: 28px 0;
    font-size: 16px;
    font-style: italic;
    color: var(--ft-dark);
}

/* ─── Go Top ──────────────────────────────────────────────── */
.go-top {
    position: fixed;
    bottom: 90px;
    right: 90px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--ft-teal), var(--ft-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ft-dark);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,198,162,0.4);
    z-index: 9000;
    transition: transform 0.25s;
}
.go-top:hover { transform: translateY(-4px); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .ft-mobile-toggle { display: flex; }
    .ft-nav {
        position: fixed;
        top: 0; right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--ft-dark2);
        flex-direction: column;
        align-items: flex-start;
        padding: 70px 24px 40px;
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        z-index: 10000;
        overflow-y: auto;
        gap: 0;
        border-left: 1px solid var(--ft-border);
    }
    .ft-nav.open { right: 0; }
    .ft-nav > ul { flex-direction: column; width: 100%; }
    .ft-nav > ul > li > a { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .ft-dropdown { position: static; opacity: 0; pointer-events: none; max-height: 0; overflow: hidden; transform: none; box-shadow: none; border: none; background: rgba(0,198,162,0.06); border-radius: 8px; margin: 0; transition: max-height 0.3s ease, opacity 0.25s, margin 0.25s; }
    .has-dropdown.open .ft-dropdown { opacity: 1; pointer-events: all; max-height: 400px; margin-top: 4px; margin-bottom: 8px; }
    .has-dropdown > a > .bx-chevron-down { transition: transform 0.3s; }
    .has-dropdown.open > a > .bx-chevron-down { transform: rotate(180deg); }
    .ft-nav-cta { margin-top: 24px; width: 100%; justify-content: center; }
    .ft-ai-side { display: none; }
    .ft-testi-grid { grid-template-columns: 1fr; }
    .ft-process-timeline { grid-template-columns: 1fr 1fr; }
    .ft-process-line { display: none; }
    .ft-cert-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .ft-topbar-left,
    .ft-topbar-right { font-size: 12px; gap: 14px; }
    .ft-product-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .ft-pg-large, .ft-pg-wide { grid-column: span 1; grid-row: span 1; }
    .ft-process-timeline { grid-template-columns: 1fr; }
    .ft-map-stats { flex-direction: column; gap: 8px; }
    .ft-ms-divider { width: 80px; height: 1px; }
    .ft-cert-grid { grid-template-columns: repeat(2, 1fr); }
    .go-top { right: 20px; bottom: 90px; }
}

/* Mobile nav overlay */
.ft-nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 8999; backdrop-filter: blur(2px);
}
.ft-nav-overlay.active { display: block; }
