:root {
    --ft-blue: #0057ff;
    --ft-blue-deep: #003fb8;
    --ft-blue-soft: #eaf2ff;
    --ft-red: #ff1b2d;
    --ft-red-deep: #c90f1f;
    --ft-red-soft: #fff0f2;
    --ft-white: #ffffff;
    --ft-black: #02040a;
    --ft-navy: #020b1f;
    --ft-navy-2: #06152e;
    --ft-ink: #0b1220;
    --ft-gray: #5f6b7d;
    --ft-soft: #f6f8fc;
    --ft-steel: #d9e2ef;
    --ft-line: rgba(12, 18, 34, .12);
    --ft-glass: rgba(255, 255, 255, .72);
    --ft-shadow: 0 22px 70px rgba(0, 22, 80, .16);
    --ft-radius: 8px;
    --ft-radius-lg: 28px;
    --ft-font-body: "Poppins", Arial, sans-serif;
    --ft-font-head: "Montserrat", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ft-white);
    color: var(--ft-ink);
    font-family: var(--ft-font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open,
body.is-loading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(860px, calc(100% - 40px));
}

.section {
    position: relative;
    padding: 96px 0;
}

.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--ft-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--ft-blue), var(--ft-red));
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--ft-ink);
    font-family: var(--ft-font-head);
    letter-spacing: 0;
    line-height: 1.06;
}

h1 {
    font-size: clamp(42px, 7vw, 82px);
}

h2 {
    font-size: clamp(30px, 4vw, 52px);
}

h3 {
    font-size: 20px;
}

p {
    margin: 16px 0 0;
    color: var(--ft-gray);
}

.ft-btn,
.nav-cta,
.top-book {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    border: 0;
    border-radius: var(--ft-radius);
    color: var(--ft-white);
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.ft-btn::after,
.nav-cta::after,
.top-book::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,.3), transparent);
    transform: translateX(-120%);
    transition: transform .55s ease;
}

.ft-btn:hover,
.nav-cta:hover,
.top-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 87, 255, .26);
}

.ft-btn:hover::after,
.nav-cta:hover::after,
.top-book:hover::after {
    transform: translateX(120%);
}

.btn-primary,
.nav-cta,
.top-book {
    background: linear-gradient(135deg, var(--ft-blue), #003ab0);
}

.btn-red {
    background: linear-gradient(135deg, var(--ft-red), #b90019);
}

.btn-light {
    background: rgba(255,255,255,.1);
    color: var(--ft-white);
    border: 1px solid rgba(255,255,255,.24);
    backdrop-filter: blur(16px);
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(0, 87, 255, .14), transparent 34%), var(--ft-black);
    transition: opacity .55s ease, visibility .55s ease;
}

.site-loader img {
    width: min(340px, 72vw);
    filter: drop-shadow(0 0 40px rgba(0, 87, 255, .55));
    animation: loader-float 1.5s ease-in-out infinite alternate;
}

.site-loader span {
    position: absolute;
    width: 220px;
    height: 2px;
    margin-top: 140px;
    background: linear-gradient(90deg, transparent, var(--ft-blue), var(--ft-red), transparent);
    animation: scan 1.3s linear infinite;
}

body:not(.is-loading) .site-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    color: var(--ft-white);
    transition: background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
    background: rgba(3, 5, 10, .86);
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
    backdrop-filter: blur(18px);
}

.top-header {
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(3, 5, 10, .62);
    font-size: 13px;
}

.top-header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 42px;
}

.top-header-inner span,
.top-header-inner a {
    color: rgba(255,255,255,.82);
}

.social-links {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.09);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.top-book {
    min-height: 32px;
    padding: 9px 14px;
    font-size: 12px;
}

.main-nav-wrap {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 82px;
}

.site-logo img {
    width: min(252px, 38vw);
    filter: drop-shadow(0 8px 20px rgba(0, 87, 255, .24));
}

.primary-nav {
    margin-left: auto;
}

.primary-nav .menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    position: relative;
    display: block;
    padding: 10px 12px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    font-weight: 700;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 2px;
    background: linear-gradient(90deg, var(--ft-blue), var(--ft-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.primary-nav a:hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--ft-radius);
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ft-white);
    transition: transform .25s ease, opacity .25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    background: rgba(3,5,10,.78);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.mobile-panel-inner {
    width: min(420px, 92vw);
    min-height: 100%;
    padding: 120px 26px 34px;
    margin-left: auto;
    background: #05070d;
    border-left: 1px solid rgba(255,255,255,.1);
    transform: translateX(100%);
    transition: transform .3s ease;
}

.mobile-panel img {
    width: 230px;
    margin-bottom: 30px;
}

.mobile-panel .menu {
    display: grid;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.mobile-panel a {
    color: var(--ft-white);
    font-weight: 800;
}

.mobile-panel li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.menu-open .mobile-panel {
    opacity: 1;
    pointer-events: auto;
}

.menu-open .mobile-panel-inner {
    transform: translateX(0);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 190px 0 100px;
    color: var(--ft-white);
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(3, 5, 10, .92), rgba(3, 5, 10, .68)),
        radial-gradient(circle at 75% 35%, rgba(0, 87, 255, .3), transparent 28%),
        radial-gradient(circle at 28% 70%, rgba(255, 27, 45, .18), transparent 28%),
        #03050a;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .32;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.floating-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    animation: orbit 12s linear infinite;
}

.orbit-one {
    top: 22%;
    right: 8%;
    width: 290px;
    height: 290px;
}

.orbit-two {
    bottom: 10%;
    left: 5%;
    width: 180px;
    height: 180px;
    animation-duration: 16s;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
    gap: 60px;
    align-items: center;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow {
    color: var(--ft-white);
}

.hero-copy p {
    width: min(680px, 100%);
    color: rgba(255,255,255,.74);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-counters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
}

.hero-counters div,
.stat-card,
.status-card,
.portal-card,
.service-card,
.process-step,
.shop-panel,
.contact-card,
.form-shell,
.timeline-card,
.contact-details,
.ft-form,
.post-card {
    border: 1px solid rgba(12,18,34,.1);
    border-radius: var(--ft-radius-lg);
    background: var(--ft-white);
    box-shadow: var(--ft-shadow);
}

.hero-counters div {
    padding: 18px;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    backdrop-filter: blur(18px);
}

.hero-counters strong,
.stat-card strong {
    display: block;
    color: var(--ft-white);
    font-family: var(--ft-font-head);
    font-size: 34px;
    line-height: 1;
}

.hero-counters span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.hero-logo-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    opacity: .95;
    filter: drop-shadow(0 30px 70px rgba(0, 87, 255, .45));
}

.device-stage {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 12%;
    min-height: 390px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
    backdrop-filter: blur(22px);
    box-shadow: 0 40px 120px rgba(0,0,0,.42);
}

.screen-panel {
    position: relative;
    height: 250px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(0,87,255,.32), rgba(255,27,45,.12)),
        linear-gradient(180deg, #101a35, #05070d);
    overflow: hidden;
}

.screen-panel span {
    display: block;
    width: 56%;
    height: 10px;
    margin: 28px 0 0 30px;
    border-radius: 30px;
    background: rgba(255,255,255,.16);
}

.screen-panel span:nth-child(2) {
    width: 74%;
}

.screen-panel span:nth-child(3) {
    width: 42%;
}

.diagnostic-pulse {
    position: absolute;
    right: 34px;
    bottom: 34px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ft-blue), transparent 62%);
    animation: pulse 1.8s ease-in-out infinite;
}

.keyboard-lines {
    width: 72%;
    height: 74px;
    margin: 24px auto 0;
    border-radius: 0 0 28px 28px;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 26px, transparent 26px 34px),
        rgba(255,255,255,.07);
}

.tech-chip {
    position: absolute;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    background: rgba(3,5,10,.68);
    color: var(--ft-white);
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(0,0,0,.32);
    animation: float 4s ease-in-out infinite;
}

.chip-a {
    top: 58px;
    left: -28px;
}

.chip-b {
    right: -24px;
    bottom: 124px;
    animation-delay: .6s;
}

.chip-c {
    left: 28px;
    bottom: -18px;
    animation-delay: 1.1s;
}

.section-watermark::after {
    content: "";
    position: absolute;
    right: 4vw;
    bottom: 3vw;
    width: min(480px, 60vw);
    height: 160px;
    background: url("../images/finaltouch-logo.png") center/contain no-repeat;
    opacity: .035;
    pointer-events: none;
}

.services-section {
    background: linear-gradient(180deg, #fff, #f7f9ff);
}

.service-grid,
.portal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.portal-card,
.process-step,
.post-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card::before,
.portal-card::before,
.process-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,87,255,.1), rgba(255,27,45,.08));
    opacity: 0;
    transition: opacity .25s ease;
}

.service-card > *,
.portal-card > *,
.process-step > * {
    position: relative;
}

.service-card:hover,
.portal-card:hover,
.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(0,87,255,.32);
    box-shadow: 0 28px 80px rgba(0, 87, 255, .14);
}

.service-card:hover::before,
.portal-card:hover::before,
.process-step:hover::before {
    opacity: 1;
}

.icon-badge {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 18px;
    color: var(--ft-white);
    background: linear-gradient(135deg, var(--ft-blue), var(--ft-red));
    box-shadow: 0 18px 32px rgba(0,87,255,.2);
}

.service-card p,
.portal-card p {
    font-size: 14px;
}

.service-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--ft-blue);
    font-weight: 800;
}

.why-section {
    background: #05070d;
    overflow: hidden;
}

.why-section h2,
.why-section h3,
.why-section .eyebrow {
    color: var(--ft-white);
}

.why-section p {
    color: rgba(255,255,255,.68);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 42px;
    align-items: center;
}

.timeline-card {
    padding: 16px;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.13);
    backdrop-filter: blur(18px);
}

.timeline-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.timeline-item:last-child {
    border-bottom: 0;
}

.timeline-item span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--ft-white);
    background: linear-gradient(135deg, var(--ft-blue), var(--ft-red));
    font-weight: 900;
}

.stats-band {
    padding: 78px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,87,255,.32), transparent 26%),
        radial-gradient(circle at 86% 70%, rgba(255,27,45,.24), transparent 26%),
        #03050a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat-card {
    padding: 32px 24px;
    text-align: center;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    box-shadow: 0 18px 60px rgba(0,0,0,.24);
    backdrop-filter: blur(16px);
}

.stat-card strong {
    font-size: 50px;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.72);
    font-weight: 700;
}

.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.process-step {
    min-height: 176px;
    padding: 24px;
}

.process-step span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 28px;
    border-radius: 50%;
    color: var(--ft-white);
    background: var(--ft-ink);
    font-weight: 900;
}

.shop-preview {
    background: linear-gradient(180deg, #f7f9ff, #fff);
}

.shop-panel {
    padding: 42px;
}

.category-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.category-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid var(--ft-line);
    border-radius: 999px;
    background: var(--ft-white);
    box-shadow: 0 12px 30px rgba(0,22,80,.08);
    font-weight: 800;
}

.contact-cta {
    background: var(--ft-ink);
    overflow: hidden;
}

.contact-card {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.13);
    backdrop-filter: blur(18px);
}

.contact-card h2,
.contact-card .eyebrow {
    color: var(--ft-white);
}

.contact-card p {
    color: rgba(255,255,255,.72);
}

.page-hero {
    padding: 190px 0 78px;
    color: var(--ft-white);
    text-align: center;
    background:
        radial-gradient(circle at 20% 10%, rgba(0,87,255,.28), transparent 30%),
        radial-gradient(circle at 80% 65%, rgba(255,27,45,.17), transparent 30%),
        #05070d;
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
    color: var(--ft-white);
}

.page-content .content-container {
    padding-top: 70px;
    padding-bottom: 90px;
}

.content-container > h1:first-child {
    margin-top: 0;
}

.form-section,
.tracking-section,
.portal-section,
.contact-page {
    background: #f7f9ff;
}

.form-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 28px;
    padding: 22px;
}

.ft-form {
    display: grid;
    gap: 18px;
    padding: 30px;
    box-shadow: none;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.full {
    grid-column: 1 / -1;
}

.ft-form label {
    display: grid;
    gap: 8px;
    color: var(--ft-ink);
    font-size: 13px;
    font-weight: 800;
}

.ft-form input,
.ft-form select,
.ft-form textarea,
.tracking-search input {
    width: 100%;
    border: 1px solid var(--ft-line);
    border-radius: var(--ft-radius);
    background: #fff;
    color: var(--ft-ink);
    padding: 14px 15px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.ft-form input:focus,
.ft-form select:focus,
.ft-form textarea:focus,
.tracking-search input:focus {
    border-color: rgba(0,87,255,.55);
    box-shadow: 0 0 0 4px rgba(0,87,255,.1);
}

.ft-form .check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.ft-form .check input {
    width: 18px;
}

.form-aside {
    padding: 34px;
    border-radius: var(--ft-radius-lg);
    color: var(--ft-white);
    background:
        linear-gradient(145deg, rgba(0,87,255,.76), rgba(3,5,10,.96)),
        #05070d;
}

.form-aside img {
    width: 230px;
    margin-bottom: 48px;
}

.form-aside h2 {
    color: var(--ft-white);
}

.form-aside p {
    color: rgba(255,255,255,.72);
}

.tracking-dashboard {
    padding: 28px;
    border: 1px solid var(--ft-line);
    border-radius: var(--ft-radius-lg);
    background: var(--ft-white);
    box-shadow: var(--ft-shadow);
}

.tracking-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 22px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.status-card {
    padding: 22px;
    box-shadow: none;
}

.status-card span {
    color: var(--ft-gray);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.status-card strong {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.25;
}

.repair-timeline {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin: 28px 0;
}

.repair-timeline span {
    position: relative;
    padding: 14px 10px;
    border-radius: var(--ft-radius);
    background: #eef2fb;
    color: var(--ft-gray);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

.repair-timeline .done {
    background: rgba(0,87,255,.12);
    color: var(--ft-blue);
}

.repair-timeline .active {
    background: rgba(255,27,45,.12);
    color: var(--ft-red);
}

.dashboard-actions {
    display: flex;
    gap: 12px;
}

.pulse-once {
    animation: pulse-card .55s ease;
}

.dashboard-actions .btn-light {
    color: var(--ft-ink);
    border-color: var(--ft-line);
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 26px;
}

.contact-details {
    padding: 34px;
}

.contact-details img {
    width: 260px;
    margin-bottom: 28px;
}

.map-frame {
    margin-top: 28px;
}

.map-frame iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--ft-radius-lg);
    box-shadow: var(--ft-shadow);
}

.site-footer {
    position: relative;
    padding: 80px 0 28px;
    color: rgba(255,255,255,.72);
    background: #03050a;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr 1fr;
    gap: 34px;
}

.footer-brand img {
    width: 270px;
    margin-bottom: 20px;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: var(--ft-white);
    font-size: 16px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: rgba(255,255,255,.76);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
}

.footer-legal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.footer-legal a {
    display: inline;
    margin: 0;
}

.floating-whatsapp,
.floating-call {
    position: fixed;
    right: 20px;
    z-index: 900;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--ft-white);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
}

.floating-whatsapp {
    bottom: 24px;
    width: 62px;
    height: 62px;
    background: #25d366;
}

.floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 4px solid #fff;
    border-radius: 50%;
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 9px;
    width: 18px;
    height: 18px;
    background: #fff;
    clip-path: polygon(10% 0, 100% 34%, 33% 100%);
}

.floating-whatsapp span {
    position: relative;
    z-index: 2;
    width: 22px;
    height: 22px;
    border: 5px solid #fff;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 0 0 15px 0;
    transform: rotate(24deg);
}

.floating-whatsapp span::before {
    content: "";
    position: absolute;
    right: -7px;
    top: -1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.floating-call {
    bottom: 94px;
    width: 54px;
    height: 54px;
    background: var(--ft-red);
}

.post-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.post-card img {
    width: calc(100% + 56px);
    max-width: none;
    margin: -28px -28px 24px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.page-featured-image {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    padding: 16px;
    border: 1px solid var(--ft-line);
    border-radius: var(--ft-radius-lg);
    background: var(--ft-white);
    box-shadow: 0 16px 40px rgba(0,22,80,.08);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    border-radius: var(--ft-radius);
    background: var(--ft-blue);
    color: var(--ft-white);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes loader-float {
    to { transform: translateY(-8px) scale(1.015); }
}

@keyframes scan {
    0% { transform: scaleX(.25); opacity: .45; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(.25); opacity: .45; }
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(.86); opacity: .68; }
    50% { transform: scale(1.16); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes pulse-card {
    0% { transform: scale(1); }
    45% { transform: scale(1.012); }
    100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1120px) {
    .primary-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle,
    .mobile-panel {
        display: block;
    }

    .nav-inner {
        justify-content: space-between;
    }

    .hero-inner,
    .split-layout,
    .form-shell,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .portal-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid,
    .status-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-card,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .container,
    .narrow {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 70px 0;
    }

    .top-header {
        display: none;
    }

    .nav-inner {
        min-height: 76px;
    }

    .site-logo img {
        width: 210px;
    }

    .hero-section {
        min-height: auto;
        padding: 118px 0 74px;
    }

    .hero-inner {
        gap: 34px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-actions,
    .dashboard-actions {
        flex-direction: column;
    }

    .hero-actions .ft-btn,
    .dashboard-actions .ft-btn {
        width: 100%;
    }

    .hero-counters,
    .service-grid,
    .portal-grid,
    .stats-grid,
    .process-grid,
    .status-grid,
    .form-grid,
    .repair-timeline,
    .contact-card,
    .footer-grid,
    .post-list {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-logo-glow {
        width: 280px;
    }

    .device-stage {
        left: 0;
        min-height: 300px;
        padding: 18px;
    }

    .screen-panel {
        height: 190px;
    }

    .keyboard-lines {
        height: 52px;
    }

    .tech-chip {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 12px;
    }

    .page-hero {
        padding: 118px 0 62px;
    }

    .tracking-search {
        grid-template-columns: 1fr;
    }

    .contact-card {
        text-align: left;
    }

    .contact-card img {
        width: 230px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .floating-call {
        display: none;
    }
}

/* Reference-style Finaltouch homepage refresh */
.top-header {
    display: none;
}

.site-header {
    background: rgba(0, 8, 24, .78);
    border-bottom: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
}

.main-nav-wrap {
    border-bottom: 0;
}

.nav-inner {
    min-height: 86px;
}

.site-logo img {
    width: 248px;
}

.nav-whatsapp {
    display: grid;
    gap: 2px;
    position: relative;
    padding-left: 46px;
    color: var(--ft-white);
    line-height: 1.1;
}

.nav-whatsapp::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid #19d760;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: inset 0 0 0 5px rgba(25,215,96,.14);
}

.nav-whatsapp i {
    position: absolute;
    left: 7px;
    top: 50%;
    z-index: 2;
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-left-color: transparent;
    border-radius: 0 0 10px 0;
    transform: translateY(-48%) rotate(24deg);
}

.nav-whatsapp i::after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: -7px;
    width: 10px;
    height: 10px;
    background: #fff;
    clip-path: polygon(10% 0, 100% 34%, 33% 100%);
    transform: rotate(-24deg);
}

.nav-whatsapp i::before {
    content: "";
    position: absolute;
    right: -5px;
    top: 1px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.nav-whatsapp span {
    color: #7fe2a8;
    font-size: 12px;
    font-weight: 800;
}

.nav-whatsapp strong {
    color: var(--ft-white);
    font-size: 15px;
}

.ft-home-hero {
    position: relative;
    min-height: 690px;
    padding: 150px 0 86px;
    overflow: hidden;
    color: var(--ft-white);
    background:
        linear-gradient(90deg, rgba(0,8,24,.98) 0%, rgba(0,8,24,.9) 38%, rgba(0,8,24,.38) 68%, rgba(0,8,24,.72) 100%),
        radial-gradient(circle at 72% 42%, rgba(0,174,255,.24), transparent 28%),
        #000816;
}

.ft-home-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .9;
    background:
        linear-gradient(110deg, transparent 0 45%, rgba(0, 87, 255, .14) 45% 46%, transparent 46%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 86px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 86px);
}

.ft-home-hero-bg::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(58vw, 760px);
    height: 88%;
    background:
        radial-gradient(circle at 54% 30%, rgba(255,255,255,.28), transparent 0 4px, transparent 5px),
        radial-gradient(circle at 49% 30%, rgba(0,174,255,.32), transparent 0 70px, transparent 72px),
        linear-gradient(130deg, transparent 0 22%, rgba(255,255,255,.06) 22% 23%, transparent 23%),
        linear-gradient(180deg, rgba(12,60,105,.38), rgba(0,8,24,.88));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%, 5% 34%);
}

.ft-home-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(360px, .74fr);
    align-items: center;
    gap: 46px;
}

.ft-home-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0, 166, 255, .14);
    color: #00aeff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ft-home-hero h1 {
    max-width: 650px;
    color: var(--ft-white);
    font-size: clamp(44px, 5.9vw, 76px);
    line-height: .98;
}

.ft-home-hero h1 span {
    display: block;
    color: #12a8ff;
}

.ft-home-hero p {
    max-width: 610px;
    color: rgba(255,255,255,.9);
    font-size: 18px;
}

.ft-hero-badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 660px;
    margin-top: 34px;
}

.ft-hero-badges div {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 10px;
    align-items: center;
}

.ft-hero-badges svg {
    grid-row: span 2;
    width: 30px;
    height: 30px;
    color: #1c9dff;
}

.ft-hero-badges strong {
    color: var(--ft-white);
    font-size: 14px;
    line-height: 1.1;
}

.ft-hero-badges span {
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.1;
}

.ft-tech-portrait {
    position: relative;
    min-height: 470px;
    border-radius: 26px;
    overflow: hidden;
    background: url("../images/hero-technician.png") center right / cover no-repeat;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .42);
}

.ft-tech-portrait::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(2, 11, 31, .34), transparent 38%),
        linear-gradient(180deg, transparent 62%, rgba(2, 11, 31, .72));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.ft-tech-portrait::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 150px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ft-blue), var(--ft-red));
    box-shadow: 0 0 26px rgba(0,87,255,.6);
}

.ft-tech-portrait img {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    width: 210px;
    opacity: .92;
    filter: drop-shadow(0 18px 36px rgba(0,0,0,.42));
}

.ft-workbench {
    position: absolute;
    left: 20px;
    bottom: 88px;
    z-index: 3;
    width: 310px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(3,10,22,.72);
    box-shadow: 0 25px 70px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
}

.ft-workbench span {
    display: block;
    height: 8px;
    margin-bottom: 12px;
    border-radius: 50px;
    background: rgba(255,255,255,.16);
}

.ft-workbench span:nth-child(1) {
    width: 78%;
}

.ft-workbench span:nth-child(2) {
    width: 55%;
}

.ft-workbench span:nth-child(3) {
    width: 68%;
}

.ft-workbench strong {
    color: #12a8ff;
}

.ft-tech-portrait .ft-workbench {
    display: none;
}

.ft-trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -52px;
}

.ft-trust-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 24px 42px;
    border: 1px solid rgba(5,25,55,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 42px rgba(0,18,52,.18);
}

.ft-trust-card div {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    column-gap: 16px;
}

.ft-trust-card svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    color: #0067c8;
}

.ft-trust-card strong {
    color: #00509e;
    font-family: var(--ft-font-head);
    font-size: 26px;
    line-height: 1;
}

.ft-trust-card span {
    color: #061225;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.ft-home-services,
.ft-products-section,
.ft-process-row-section {
    padding: 68px 0;
    background: #fff;
}

.ft-compact-heading {
    margin-bottom: 26px;
    text-align: center;
}

.ft-compact-heading.align-left {
    text-align: left;
}

.ft-compact-heading span,
.ft-section-row span,
.ft-why-title span,
.ft-testimonial-copy > span {
    color: #008cff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ft-compact-heading h2,
.ft-section-row h2,
.ft-why-title h2,
.ft-testimonial-copy h2 {
    margin-top: 4px;
    font-size: clamp(24px, 3vw, 34px);
}

.ft-service-mini-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.ft-mini-card,
.ft-product-card,
.ft-review-grid article {
    border: 1px solid rgba(5,25,55,.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0,24,64,.1);
}

.ft-mini-card {
    min-height: 178px;
    padding: 22px 16px;
    text-align: center;
}

.ft-mini-card .icon-badge {
    margin: 0 auto 16px;
    color: #087bff;
    background: transparent;
    box-shadow: none;
    border: 2px solid rgba(0,123,255,.24);
}

.ft-mini-card h3 {
    font-size: 15px;
}

.ft-mini-card p {
    margin-top: 10px;
    color: #1b2638;
    font-size: 12px;
    line-height: 1.35;
}

.ft-center-action {
    margin-top: 22px;
    text-align: center;
}

.ft-why-band {
    padding: 42px 0;
    background: #000c21;
    color: var(--ft-white);
}

.ft-why-row {
    display: grid;
    grid-template-columns: 1.6fr repeat(5, 1fr);
    align-items: stretch;
    gap: 0;
}

.ft-why-title,
.ft-why-item {
    padding: 8px 26px;
}

.ft-why-title h2 {
    color: var(--ft-white);
}

.ft-why-item {
    display: grid;
    justify-items: center;
    text-align: center;
    border-left: 1px solid rgba(255,255,255,.16);
}

.ft-why-item svg {
    color: #2b9dff;
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
}

.ft-why-item strong {
    color: var(--ft-white);
    font-size: 13px;
    line-height: 1.2;
}

.ft-why-item span {
    margin-top: 9px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.35;
}

.ft-section-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-outline-dark {
    color: #081225;
    border: 1px solid #081225;
    background: #fff;
}

.ft-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.ft-product-card {
    padding: 14px;
}

.ft-product-image {
    height: 104px;
    margin-bottom: 12px;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(0,87,255,.12), rgba(255,27,45,.06)),
        #eef3fb;
}

.product-0 { background-image: repeating-linear-gradient(90deg, #1c2535 0 12px, #111827 12px 18px); }
.product-1 { background-image: linear-gradient(135deg, #111827, #273449); }
.product-2 { background-image: linear-gradient(90deg, #159447 0 74%, #d7e8db 74%); }
.product-3 { background-image: radial-gradient(circle at center, #dbe5f1 0 24px, #4a5568 25px 26px, #f1f5f9 27px); }
.product-4 { background-image: linear-gradient(135deg, #161b22 0 42%, #0f172a 42% 60%, #111 60%); }
.product-5 { background-image: repeating-linear-gradient(45deg, #94a3b8 0 8px, #e2e8f0 8px 14px); }

.ft-product-card h3 {
    color: #071224;
    font-size: 13px;
}

.ft-product-card p {
    margin-top: 2px;
    color: #2f3a4c;
    font-size: 12px;
    line-height: 1.25;
}

.ft-product-card strong {
    display: block;
    margin-top: 10px;
    color: #020817;
    font-size: 14px;
}

.ft-testimonial-band {
    padding: 54px 0;
    color: var(--ft-white);
    background:
        linear-gradient(90deg, rgba(0,8,24,.96), rgba(0,8,24,.78)),
        radial-gradient(circle at 82% 40%, rgba(0,140,255,.28), transparent 24%),
        #000816;
}

.ft-testimonial-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 34px;
    align-items: end;
}

.ft-testimonial-copy h2 {
    color: var(--ft-white);
}

.ft-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.ft-review-grid article {
    padding: 18px;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.22);
    backdrop-filter: blur(14px);
}

.ft-review-grid strong {
    color: #ffd43b;
}

.ft-review-grid p {
    margin-top: 8px;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    line-height: 1.45;
}

.ft-review-grid span {
    display: block;
    margin-top: 12px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 800;
}

.ft-smiling-tech {
    display: grid;
    place-items: center;
    min-height: 260px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 32%, rgba(0,174,255,.28), transparent 28%),
        rgba(255,255,255,.08);
}

.ft-smiling-tech img {
    width: 210px;
    filter: drop-shadow(0 18px 36px rgba(0,0,0,.4));
}

.ft-smiling-tech strong {
    color: var(--ft-white);
}

.ft-process-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.ft-process-mini {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 8px 12px;
    align-items: start;
}

.ft-process-mini b {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0,123,255,.24);
    border-radius: 8px;
    color: #007bff;
}

.ft-process-mini strong {
    color: #071224;
    font-size: 13px;
}

.ft-process-mini span {
    color: #475569;
    font-size: 12px;
    line-height: 1.35;
}

@media (max-width: 1120px) {
    .nav-whatsapp {
        display: none;
    }

    .ft-home-hero-inner,
    .ft-testimonial-wrap {
        grid-template-columns: 1fr;
    }

    .ft-service-mini-grid,
    .ft-product-grid,
    .ft-process-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ft-why-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ft-why-title {
        grid-column: 1 / -1;
    }

    .ft-trust-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ft-home-hero {
        padding: 118px 0 74px;
    }

    .ft-home-hero h1 {
        font-size: clamp(38px, 13vw, 56px);
    }

    .ft-home-hero-bg::after {
        opacity: .34;
        width: 100%;
    }

    .ft-hero-badges,
    .ft-trust-card,
    .ft-service-mini-grid,
    .ft-product-grid,
    .ft-review-grid,
    .ft-process-row,
    .ft-why-row {
        grid-template-columns: 1fr;
    }

    .ft-tech-portrait {
        min-height: 340px;
    }

    .ft-tech-portrait::before {
        right: 0;
        width: 240px;
        height: 320px;
    }

    .ft-tech-portrait::after {
        right: 0;
        width: 300px;
    }

    .ft-tech-portrait img {
        right: 22px;
        width: 190px;
    }

    .ft-workbench {
        left: 0;
        width: 260px;
    }

    .ft-trust-card {
        padding: 22px;
    }

    .ft-section-row {
        align-items: start;
        flex-direction: column;
    }

    .ft-why-item {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.14);
    }
}

/* Professional logo-matched palette overrides */
body {
    background: var(--ft-soft);
}

.btn-primary,
.nav-cta,
.top-book {
    background: linear-gradient(135deg, var(--ft-blue), var(--ft-blue-deep));
}

.btn-red {
    background: linear-gradient(135deg, var(--ft-red), var(--ft-red-deep));
}

.site-header {
    background: rgba(2, 11, 31, .88);
}

.nav-whatsapp::before {
    background: #19d760;
    border-color: #19d760;
    box-shadow: 0 0 0 5px rgba(25, 215, 96, .14);
}

.nav-whatsapp span {
    color: #93b9ff;
}

.ft-home-hero {
    background:
        linear-gradient(90deg, rgba(2,11,31,.98) 0%, rgba(2,11,31,.92) 38%, rgba(2,11,31,.42) 68%, rgba(2,11,31,.8) 100%),
        radial-gradient(circle at 72% 42%, rgba(0,87,255,.26), transparent 28%),
        radial-gradient(circle at 15% 72%, rgba(255,27,45,.12), transparent 26%),
        var(--ft-navy);
}

.ft-home-hero-bg::after {
    background:
        radial-gradient(circle at 54% 30%, rgba(255,255,255,.24), transparent 0 4px, transparent 5px),
        radial-gradient(circle at 49% 30%, rgba(0,87,255,.34), transparent 0 70px, transparent 72px),
        linear-gradient(130deg, transparent 0 22%, rgba(255,255,255,.06) 22% 23%, transparent 23%),
        linear-gradient(180deg, rgba(0,63,184,.34), rgba(2,11,31,.88));
}

.ft-home-label {
    background: rgba(0, 87, 255, .16);
    color: #7fb0ff;
}

.ft-home-hero h1 span,
.ft-hero-badges svg,
.ft-trust-card svg,
.ft-mini-card .icon-badge,
.ft-why-item svg,
.ft-process-mini b,
.ft-compact-heading span,
.ft-section-row span,
.ft-why-title span,
.ft-testimonial-copy > span {
    color: var(--ft-blue);
}

.ft-workbench strong {
    color: #8bb7ff;
}

.ft-trust-card strong {
    color: var(--ft-blue-deep);
}

.ft-home-services,
.ft-products-section,
.ft-process-row-section {
    background: var(--ft-soft);
}

.ft-mini-card,
.ft-product-card,
.ft-review-grid article,
.ft-trust-card {
    border-color: rgba(5, 25, 55, .11);
    box-shadow: 0 10px 28px rgba(2, 11, 31, .08);
}

.ft-mini-card .icon-badge,
.ft-process-mini b {
    border-color: rgba(0, 87, 255, .22);
}

.ft-why-band {
    background:
        linear-gradient(90deg, var(--ft-navy), var(--ft-navy-2)),
        var(--ft-navy);
}

.btn-outline-dark {
    color: var(--ft-ink);
    border-color: rgba(8, 18, 37, .34);
}

.ft-testimonial-band {
    background:
        linear-gradient(90deg, rgba(2,11,31,.97), rgba(2,11,31,.82)),
        radial-gradient(circle at 82% 40%, rgba(0,87,255,.28), transparent 24%),
        radial-gradient(circle at 18% 80%, rgba(255,27,45,.11), transparent 28%),
        var(--ft-navy);
}

.ft-review-grid strong {
    color: var(--ft-red);
}

.product-0,
.product-1 {
    background-color: var(--ft-ink);
}

.product-2 {
    background-image: linear-gradient(90deg, var(--ft-blue-deep) 0 68%, var(--ft-steel) 68%);
}

.product-3,
.product-4,
.product-5 {
    background-color: var(--ft-blue-soft);
}

/* Advanced hero redesign and clearer WhatsApp icons */
.ft-home-hero {
    min-height: 820px;
    padding: 168px 0 132px;
    background:
        radial-gradient(circle at 14% 20%, rgba(0,87,255,.26), transparent 28%),
        radial-gradient(circle at 45% 88%, rgba(255,27,45,.16), transparent 24%),
        linear-gradient(115deg, #02040a 0%, #020b1f 48%, #06152e 100%);
}

.ft-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .55;
    background:
        linear-gradient(90deg, transparent 0 7%, rgba(255,255,255,.05) 7% 7.2%, transparent 7.2%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 78px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 78px);
    mask-image: linear-gradient(to bottom, #000 0 78%, transparent);
}

.ft-home-hero-bg {
    opacity: 1;
    background:
        radial-gradient(circle at 88% 22%, rgba(0,87,255,.22), transparent 18%),
        radial-gradient(circle at 62% 72%, rgba(255,27,45,.12), transparent 20%);
}

.ft-home-hero-bg::after {
    right: 0;
    bottom: auto;
    top: 0;
    width: min(56vw, 860px);
    height: 100%;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 16% 50%);
    background:
        linear-gradient(90deg, rgba(2,11,31,.96) 0%, rgba(2,11,31,.56) 28%, rgba(2,11,31,.14) 58%, rgba(2,11,31,.54) 100%),
        url("../images/hero-technician.png") center / cover no-repeat;
    box-shadow: inset 24px 0 80px rgba(2,11,31,.72);
}

.ft-home-hero-inner {
    grid-template-columns: minmax(0, .96fr) minmax(390px, .78fr);
    gap: 56px;
}

.ft-home-hero-copy {
    position: relative;
    z-index: 3;
    padding-top: 12px;
}

.ft-home-label {
    padding: 7px 10px;
    border: 1px solid rgba(127,176,255,.25);
    border-radius: 999px;
    background: rgba(0,87,255,.13);
    box-shadow: inset 0 0 24px rgba(0,87,255,.1);
}

.ft-home-hero h1 {
    max-width: 720px;
    font-size: clamp(48px, 6.6vw, 92px);
    line-height: .93;
}

.ft-home-hero p {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255,255,255,.78);
    font-size: 19px;
}

.ft-home-hero .hero-actions {
    margin-top: 38px;
}

.ft-home-hero .ft-btn {
    min-height: 52px;
    padding-inline: 24px;
}

.ft-tech-portrait {
    z-index: 3;
    min-height: 560px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(2,11,31,.08), rgba(2,11,31,.5)),
        url("../images/hero-technician.png") center / cover no-repeat;
    box-shadow:
        0 42px 120px rgba(0,0,0,.5),
        0 0 0 10px rgba(255,255,255,.03);
    transform: perspective(1000px) rotateY(-4deg) rotateX(1deg);
}

.ft-tech-portrait::before {
    background:
        linear-gradient(135deg, rgba(255,255,255,.16), transparent 28%),
        linear-gradient(180deg, transparent 54%, rgba(2,11,31,.88));
}

.ft-tech-portrait::after {
    right: 28px;
    bottom: 28px;
    width: 230px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(0,87,255,.9), rgba(255,27,45,.86)),
        rgba(255,255,255,.08);
    box-shadow: 0 18px 45px rgba(0,0,0,.32);
}

.ft-tech-portrait img {
    left: 28px;
    bottom: 28px;
    width: 190px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(2,11,31,.64);
    backdrop-filter: blur(14px);
}

.ft-tech-portrait .ft-workbench {
    display: grid;
    left: auto;
    right: 48px;
    bottom: 45px;
    z-index: 4;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ft-tech-portrait .ft-workbench span {
    display: none;
}

.ft-tech-portrait .ft-workbench strong {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-whatsapp::before,
.nav-whatsapp i,
.nav-whatsapp i::before,
.nav-whatsapp i::after,
.floating-whatsapp::before,
.floating-whatsapp::after,
.floating-whatsapp span,
.floating-whatsapp span::before {
    content: none;
    display: none;
}

.nav-whatsapp svg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 34px;
    height: 34px;
    padding: 6px;
    border-radius: 999px;
    background: #25d366;
    fill: #fff;
    transform: translateY(-50%);
    box-shadow: 0 0 0 5px rgba(37,211,102,.13), 0 12px 24px rgba(37,211,102,.24);
}

.floating-whatsapp svg {
    width: 38px;
    height: 38px;
    fill: #fff;
}

.floating-whatsapp {
    background: #25d366;
    box-shadow: 0 18px 42px rgba(37,211,102,.32), 0 0 0 8px rgba(37,211,102,.1);
}

.ft-testimonial-wrap {
    grid-template-columns: 1fr;
}

.ft-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1120px) {
    .ft-home-hero-bg::after {
        width: 100%;
        opacity: .32;
        clip-path: none;
    }

    .ft-tech-portrait {
        transform: none;
    }
}

@media (max-width: 760px) {
    .ft-home-hero {
        min-height: auto;
        padding: 116px 0 78px;
    }

    .ft-home-hero h1 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .ft-tech-portrait {
        min-height: 390px;
        border-radius: 22px;
    }

    .ft-tech-portrait img {
        width: 154px;
    }

    .ft-tech-portrait::after,
    .ft-tech-portrait .ft-workbench {
        display: none;
    }
}

/* Image-free hero redesign */
.ft-home-hero {
    min-height: 760px;
    padding: 168px 0 116px;
    background:
        radial-gradient(circle at 16% 18%, rgba(0,87,255,.32), transparent 26%),
        radial-gradient(circle at 83% 18%, rgba(255,27,45,.18), transparent 24%),
        radial-gradient(circle at 74% 76%, rgba(0,87,255,.2), transparent 28%),
        linear-gradient(135deg, #02040a 0%, #020b1f 52%, #081a38 100%);
}

.ft-home-hero-bg::after {
    display: none;
}

.ft-home-hero::after {
    content: "";
    position: absolute;
    right: 6vw;
    top: 160px;
    width: min(42vw, 560px);
    height: min(42vw, 560px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(0,87,255,.18), transparent 48%),
        conic-gradient(from 120deg, rgba(0,87,255,.42), rgba(255,27,45,.22), rgba(255,255,255,.06), rgba(0,87,255,.42));
    opacity: .62;
    filter: blur(.1px);
    animation: orbit 18s linear infinite;
}

.ft-home-hero-inner {
    grid-template-columns: minmax(0, .98fr) minmax(340px, .72fr);
    align-items: center;
}

.ft-home-hero h1 {
    max-width: 760px;
}

.ft-home-hero p {
    max-width: 650px;
}

.ft-hero-command {
    position: relative;
    z-index: 3;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
        rgba(2,11,31,.54);
    box-shadow: 0 36px 110px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.16);
    backdrop-filter: blur(22px);
}

.ft-hero-command::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0,87,255,.5), rgba(255,27,45,.28), transparent 60%);
    opacity: .5;
}

.ft-command-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--ft-white);
}

.ft-command-top span {
    color: #9bbcff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ft-command-top strong {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(37,211,102,.14);
    color: #80f1aa;
    font-size: 12px;
}

.ft-command-screen {
    position: relative;
    min-height: 310px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0,87,255,.28), rgba(255,27,45,.1)),
        repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 22px),
        #071225;
}

.ft-command-screen::before {
    content: "";
    position: absolute;
    inset: 42px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,87,255,.38), transparent 58%);
    animation: pulse 2.4s ease-in-out infinite;
}

.ft-command-screen::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 30px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ft-blue), var(--ft-red), var(--ft-blue));
    box-shadow: 0 0 24px rgba(0,87,255,.64);
}

.ft-command-screen i {
    position: absolute;
    display: block;
    width: 44%;
    height: 10px;
    left: 30px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}

.ft-command-screen i:nth-child(1) {
    top: 34px;
}

.ft-command-screen i:nth-child(2) {
    top: 58px;
    width: 62%;
}

.ft-command-screen i:nth-child(3) {
    top: 82px;
    width: 34%;
}

.ft-command-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.ft-command-metrics div {
    padding: 14px 12px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 14px;
    background: rgba(255,255,255,.07);
}

.ft-command-metrics strong {
    display: block;
    color: var(--ft-white);
    font-family: var(--ft-font-head);
    font-size: 22px;
}

.ft-command-metrics span {
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 1120px) {
    .ft-home-hero-inner {
        grid-template-columns: 1fr;
    }

    .ft-home-hero::after {
        opacity: .28;
        width: 520px;
        height: 520px;
    }
}

@media (max-width: 760px) {
    .ft-home-hero {
        min-height: auto;
        padding: 116px 0 78px;
    }

    .ft-hero-command {
        padding: 16px;
        border-radius: 22px;
    }

    .ft-command-screen {
        min-height: 230px;
    }

    .ft-command-metrics {
        grid-template-columns: 1fr;
    }
}
