/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} */

:root {

    /* Brand Colors */
    --primary-color: #21336d;
    --secondary-color: #1e3a8a;
    --accent-color-1: #f5821f;
    --accent-color-2: #21336d;
    --muted-color: #667085;

    /* Neutral Colors */
    --black: #000000;
    --bg-light: #eef2f7;
    --bg-light-blue: #f8fbff;
    --bg-soft-blue: #eaf1fe;
    --bg-soft-green: #e6f7f7;
    --border-light: #e2e8f0;
    --border-medium: #c4cedb;

    /* Table */
    --table-head-text: var(--black);
    --table-head-bg: var(--bg-light);
    --table-tr-bg: var(--bg-soft-green);
    --table-border: var(--border-light);

    /* Card */
    --card-bg: var(--bg-light);
    --card-bg-1: var(--bg-light-blue);
    --card-border: var(--border-medium);
    --card-border-left: var(--primary-color);
    --card-border-left-2: var(--accent-color-1);

    /* Text */
    --text-color-1: var(--primary-color);
    --text-color-2: var(--secondary-color);
    --text-color-3: var(--muted-color);

    /* Badge */
    --batch-bg-1: var(--bg-soft-blue);
    --batch-bg-2: var(--secondary-color);
    --batch-bg-3: var(--primary-color);
    --batch-font-weight: 800;
}

.text-accent-1 {
    color: var(--accent-color-1);
}

.text-accent-2 {
    color: var(--accent-color-2);
}

.fl-root {
    /* background: #0d2461; */
    color: #fff;
    overflow: hidden;
}

.fl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    background: rgba(13, 36, 97, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.fl-nav-links {
    display: flex;
    gap: 28px;
}

.fl-nav-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.fl-nav-links a:hover {
    color: #fff;
}

.fl-nav-cta {
    background: #f58220;
    color: #0d2461;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.fl-nav-cta:hover {
    transform: scale(1.04);
}

.fl-hero {
    padding: 72px 0 0px;
    position: relative;
    overflow: hidden;
}

.fl-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.fl-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
}

.fl-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
}

.fl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1px solid rgba(79, 142, 247, 0.2);
    border-radius: 20px;
    background: var(--batch-bg-1);
    font-size: 12px;
    font-weight: var(--batch-font-weight);
    letter-spacing: 0.06em;
    color: var(--text-color-1);
    margin-bottom: 24px;
}

.fl-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f58220;
}

.fl-hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.fl-hero h1 .accent {
    color: #f58220;
    display: block;
}

.fl-hero p {
    font-size: 17px;
    color: var(--facile-black);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.fl-btn-row {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

.fl-btn-primary {
    background: #f58220;
    color: #0d2461;
    font-weight: 500;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 130, 32, 0.35);
}

.fl-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: background 0.2s;
}

.fl-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.fl-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px; */
}

.fl-stat {
    background: #edf0fa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 18px;
    width: 185px;
}

.fl-stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #f58220;
}

.fl-stat-label {
    font-size: 12px;
    color: #1a0707;
    margin-top: 4px;
}

.fl-hero-img-wrap {
    position: relative;
    z-index: 1;
    /* max-width: 560px; */
}

.fl-hero-img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
    object-fit: cover;
    height: 360px;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.fl-logo-img {
    height: 40px;
    object-fit: contain;
}

.fl-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.fl-section .container {
    position: relative;
    z-index: 1;
}

.fl-section-dark {
    position: relative;
    background:
        linear-gradient(135deg, #f8fbff 0%, #eef4ff 45%, #fdfdff 100%);
    overflow: hidden;
}

.fl-section-dark::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.08);
    filter: blur(20px);
}

.fl-section-dark::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(19, 47, 122, 0.06);
    filter: blur(20px);
}

.fl-section-dark .section-title__title {
    color: #0d2461;
}

.fl-section-dark .section-title__title span {
    color: #f58220;
}

.fl-section-dark .banner-one__text {
    color: #4f5d75;
}

.fl-section-mid {
    /* background: linear-gradient(135deg, #f5f9ff, #e8f0ff); */
}

.fl-section-head {
    margin-bottom: 45px;
}

.fl-section-head h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0d2461;
}

.fl-section-head h1 .accent {
    color: #f58220;
    display: block;
}

.fl-section-head h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
}

.fl-section-head p {
    font-size: 17px;
    color: var(--facile-black);
    line-height: 1.7;
    margin: 0;
}

.fl-section-head p.banner-one__text strong {
    color: #f58220;
}

.fl-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.fl-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(19, 47, 122, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.fl-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 130, 32, 0.25);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.fl-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.fl-card-body {
    padding: 24px;
}

.fl-card-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.fl-card-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--facile-black);
}

.fl-card-title {
    color: #0d2461;
}

.fl-card-desc {
    color: #5d6b82;
}

.fl-dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.fl-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 130, 32, 0.1);
    border: 1px solid rgba(245, 130, 32, 0.25);
    color: #f58220;
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.fl-dash-grid h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.fl-dash-grid p {
    font-size: 16px;
    color: var(--facile-black);
    line-height: 1.7;
    margin-bottom: 28px;
}

.fl-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fl-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff7ed;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--facile-black);
}

.fl-check-ico {
    width: 34px;
    height: 34px;
    background: #f58220;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
    font-weight: bold;
}

.fl-dash-img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(19, 47, 122, 0.08);
    display: block;
    object-fit: cover;
    height: 380px;
    transition: transform 0.4s;
}

.fl-dash-img:hover {
    transform: scale(1.02);
}

.fl-grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fl-step {
    background: #ffffff;
    border: 1px solid #6787b1;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s;
}

.fl-step:hover {
    transform: translateY(-6px);
}

.fl-step-num {
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1;
}

.fl-step-num i {
    font-size: 54px;
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Upload Data */
.fl-icon-upload i {
    background-image: linear-gradient(135deg, #0ea5e9, #2563eb);
    font-size: 40px;
}

/* System Validation */
.fl-icon-validation i {
    background-image: linear-gradient(135deg, #10b981, #059669);
    font-size: 40px;
}

/* Risk Detection */
.fl-icon-risk i {
    background-image: linear-gradient(135deg, #ef4444, #dc2626);
    font-size: 40px;
}

/* Generate Reports */
.fl-icon-report i {
    background-image: linear-gradient(135deg, #f58220, #fb923c);
    font-size: 40px;
}

.fl-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.fl-step p {
    font-size: 13px;
    color: var(--facile-black);
    line-height: 1.6;
}

.fl-footer {
    background: #0d2461;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 36px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fl-footer-right {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.fl-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.fl-hero-slide {
    display: none;
    animation: fadeSlide .6s ease;
}

.fl-hero-slide.active {
    display: block;
}

.fl-hero-img-wrap {
    position: relative;
}

/* .fl-hero-img {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
} */

.fl-hero-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.fl-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.fl-slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.45);
    transition: all .3s ease;
    cursor: pointer;
}

.fl-slider-dots span.active {
    width: 28px;
    background: #21336d;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fl-feature-points {
    padding: 30px;
    /* border-radius: 24px;
    background: #f8fbff;
    border: 1px solid #dbe5f1;
    box-shadow: 0 10px 30px rgba(33, 51, 109, 0.06); */
}

.fl-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
    color: #21336d;
    /* border-bottom: 1px dashed #d7dfeb; */
    transition: all 0.3s ease;
}

.fl-feature-item:last-child {
    border-bottom: 0;
}

.fl-feature-item:hover {
    color: #f58220;
    transform: translateX(6px);
}

.fl-feature-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 30%;
    /* background: var(--batch-bg-2); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-feature-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

@media (max-width: 991px) {

    .fl-step-num i {
        font-size: 46px;
    }

    .fl-hero {
        padding: 55px 0 65px;
    }

    .fl-hero .container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fl-hero h1 {
        font-size: 42px;
    }

    .fl-grid3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .fl-section-head h1 {
        font-size: 42px;
    }

    .fl-dash-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fl-section-mid {
        padding: 80px 0;
    }

    .fl-dash-grid h2 {
        font-size: 38px;
        line-height: 1.2;
    }

    .fl-dash-grid p {
        font-size: 16px;
    }

    .fl-dash-img {
        width: 100%;
        border-radius: 24px;
    }

    .fl-grid4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .fl-feature-points {
        margin: 40px 0;
    }

    .fl-feature-points ul li {
        font-size: 16px;
        padding: 14px 0 14px 34px;
    }
}

@media (max-width: 768px) {

    .fl-hero-tag {
        font-size: 12px;
        padding: 8px 14px;
        left: 14px;
        bottom: 14px;
    }
}

@media (max-width: 575px) {

    .fl-step-num i {
        font-size: 40px;
    }

    .fl-hero-content {
        margin-bottom: 5px;
    }

    .fl-hero {
        padding: 40px 0 55px;
    }

    .fl-hero h1 {
        font-size: 34px;
    }

    .fl-hero-img {
        height: 260px;
    }

    .fl-section {
        padding: 50px 0;
    }

    .fl-grid3 {
        grid-template-columns: 1fr;
    }

    .fl-section-head h1 {
        font-size: 34px;
    }

    .fl-section-mid {
        padding: 60px 0;
    }

    .fl-dash-grid {
        gap: 35px;
    }

    .fl-dash-grid h2 {
        font-size: 30px;
    }

    .fl-dash-grid p {
        font-size: 15px;
        line-height: 1.7;
    }

    .fl-checklist {
        margin-top: 24px;
    }

    .fl-check-item {
        font-size: 14px;
        align-items: flex-start;
    }

    .fl-check-ico {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 12px;
    }

    .fl-pill {
        font-size: 13px;
        padding: 8px 14px;
    }

    .fl-dash-img {
        border-radius: 18px;
    }

    .fl-grid4 {
        grid-template-columns: 1fr;
    }

    .fl-step {
        padding: 28px 24px;
        border-radius: 20px;
    }

    /* .fl-step-num {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: 18px;
    } */

    .fl-step h3 {
        font-size: 20px;
    }

    .fl-step p {
        font-size: 14px;
        line-height: 1.7;
    }

    .fl-feature-points {
        padding: 20px;
        border-radius: 18px;
        margin-top: 30px;
    }

    .fl-feature-points ul li {
        font-size: 15px;
        line-height: 1.6;
        padding: 12px 0 12px 28px;
    }

    .fl-feature-points ul li::before {
        width: 10px;
        height: 10px;
        top: 20px;
    }
}

.fl-app-logo img {
    max-width: 220px;
    height: auto;
}

.fl-mobile-showcase {
    position: relative;
    width: 420px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.fl-phone-slider {
    position: relative;
    width: 320px;
    height: 430px;
    animation: phoneFloat 4s ease-in-out infinite;
    z-index: 2;
}

.fl-phone-slider img {
    position: absolute;
    inset: 0;
    width: 320px;
    height: 425px;
    object-fit: contain;
    /* display: block;
    opacity: 0;
    transform: scale(0.96);
    animation: phoneFadeRound 12s infinite ease-in-out; */
}

.fl-phone-slider img:nth-child(1) {
    animation-delay: 0s;
}

.fl-phone-slider img:nth-child(2) {
    animation-delay: 4s;
}

/* .fl-phone-slider img:nth-child(3) {
    animation-delay: 8s;
} */

.fl-app-download-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.fl-app-download-buttons img {
    height: 40px;
    width: auto;
    display: block;
}

/* Surrounding Badges */
.fl-orbit-badge {
    position: absolute;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(219, 229, 241, 0.95);
    box-shadow: 0 16px 35px rgba(33, 51, 109, 0.12);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: #21336d;
    backdrop-filter: blur(8px);
    animation: badgeFloat 4.5s ease-in-out infinite;
    white-space: nowrap;
}

.fl-orbit-badge span {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #f5821f;
    margin-bottom: 3px;
}

/* Different Badge Styles */
.fl-badge-1 {
    top: 105px;
    left: 0;
}

.fl-badge-2 {
    top: 210px;
    right: -5px;
    border-radius: 999px;
}

.fl-badge-3 {
    bottom: 210px;
    left: -10px;
    background: #21336d;
    color: #ffffff;
    animation-delay: 1s;
}

.fl-badge-3 span {
    color: #ffffff;
}

.fl-badge-4 {
    bottom: 110px;
    right: 15px;
    background: #fff4ea;
    border-color: #ffd9b5;
    animation-delay: 1.6s;
}

/* Animations */
@keyframes phoneFadeRound {
    0% {
        opacity: 0;
        transform: scale(0.96) rotate(-1deg);
    }

    8% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    28% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    36% {
        opacity: 0;
        transform: scale(1.04) rotate(1deg);
    }

    100% {
        opacity: 0;
        transform: scale(0.96) rotate(-1deg);
    }
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .fl-mobile-showcase {
        margin: 50px auto;
    }
}

@media (max-width: 575px) {
    .fl-mobile-showcase {
        width: 310px;
        height: 610px;
    }

    .fl-phone-slider,
    .fl-phone-slider img {
        width: 270px;
        height: 585px;
    }

    .fl-orbit-badge {
        padding: 8px 11px;
        font-size: 10px;
        border-radius: 14px;
    }

    .fl-orbit-badge span {
        font-size: 15px;
    }

    .fl-badge-1 {
        top: 95px;
        left: -5px;
    }

    .fl-badge-2 {
        top: 190px;
        right: -8px;
    }

    .fl-badge-3 {
        bottom: 185px;
        left: -8px;
    }

    .fl-badge-4 {
        bottom: 95px;
        right: 0;
    }
}

.fl-badge-set {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    animation: badgeSetChange 12s infinite ease-in-out;
}

.fl-badge-set-1 {
    animation-delay: 0s;
}

.fl-badge-set-2 {
    animation-delay: 4s;
}

.fl-badge-set-3 {
    animation-delay: 8s;
}

@keyframes badgeSetChange {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    28% {
        opacity: 1;
    }

    36% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.fl-tech-card {
    height: 100%;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    transition: all 0.3s ease;
}

/* .fl-tech-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(245, 130, 31, 0.45);
} */

.fl-tech-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--batch-bg-2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.fl-tech-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color-1);
    margin-bottom: 12px;
}

.fl-tech-card p {
    font-size: 14px;
    color: var(--text-color-3);
    line-height: 1.7;
    margin-bottom: 0;
}

/* .fl-tech-card:hover h4 {
    color: #21336c;
}

.fl-tech-card:hover p {
    color: #667085;
} */

.fl-tech-bottom {
    margin-top: 45px;
    padding: 35px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.fl-tech-bottom-icon {
    min-width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #21336d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.fl-tech-bottom h3 {
    color: #21336c;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.fl-tech-bottom p {
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .fl-tech-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .fl-tech-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .fl-tech-card h4 {
        font-size: 17px;
    }

    .fl-tech-card p {
        font-size: 14px;
    }

    .fl-tech-bottom {
        margin-top: 35px;
        padding: 30px;
        gap: 20px;
    }

    .fl-tech-bottom-icon {
        min-width: 62px;
        height: 62px;
        font-size: 26px;
    }

    .fl-tech-bottom h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .fl-tech-bottom {
        flex-direction: column;
        padding: 28px;
    }

    .fl-tech-bottom h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .fl-tech-card {
        padding: 22px 18px;
        text-align: center;
    }

    .fl-tech-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
        margin: 0 auto 16px;
        border-radius: 14px;
    }

    .fl-tech-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .fl-tech-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .fl-tech-bottom {
        margin-top: 30px;
        padding: 24px 20px;
        border-radius: 18px;
        text-align: center;
        align-items: center;
    }

    .fl-tech-bottom-icon {
        min-width: 56px;
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 16px;
    }

    .fl-tech-bottom h3 {
        font-size: 20px;
    }

    .fl-tech-bottom p {
        font-size: 13px;
        line-height: 1.7;
    }
}

.fl-tech-intro-card {
    margin-bottom: 40px;
    padding: 34px 36px;
    background: #fff7ef;
    border: 1px solid rgba(245, 130, 31, 0.22);
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.fl-tech-intro-icon {
    min-width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #f5821f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.fl-tech-intro-content .fl-badge {
    margin-bottom: 14px;
}

.fl-tech-intro-content h2 {
    color: #f5821f;
    font-size: 29px;
    font-weight: 800;
    margin-bottom: 14px;
}

.fl-tech-intro-content p {
    color: #6b4a2b;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 980px;
}

@media (max-width: 991px) {
    .fl-tech-intro-card {
        padding: 30px;
        gap: 20px;
    }

    .fl-tech-intro-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .fl-tech-intro-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 26px 20px;
        border-radius: 20px;
    }

    .fl-tech-intro-icon {
        min-width: 60px;
        width: 60px;
        height: 60px;
        font-size: 26px;
        border-radius: 16px;
    }

    .fl-tech-intro-content h2 {
        font-size: 24px;
    }

    .fl-tech-intro-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

.fl-section {
    padding: 70px 0;
    background: #ffffff;
}

.fl-product-head {
    max-width: 760px;
    margin: 0 auto 45px;
}

.fl-product-head h2 {
    color: #21336c;
    font-size: 43px;
    font-weight: 900;
    margin-bottom: 12px;
}

.fl-product-head p {
    color: #667085;
    font-size: 16px;
    margin-bottom: 0;
}

.text-accent-1 {
    color: #f5821f;
}

.fl-product-group {
    margin-bottom: 50px;
    padding: 38px 36px;
    border-radius: 26px;
    background: linear-gradient(135deg, #f8fbff, #eef4fb);
    border: 1px solid #dfe7f1;
}

.fl-group-title {
    margin-bottom: 32px;
}

.fl-group-title h3 {
    display: inline-block;
    color: #21336c;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 12px;
}

.fl-group-title h3::after {
    content: "";
    position: absolute;
    width: 62px;
    height: 4px;
    background: #f5821f;
    border-radius: 10px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.fl-product-item {
    display: flex;
    gap: 15px;
    height: 100%;
}

.fl-product-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 25px;
    background: linear-gradient(135deg, #21336c, #16234b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-product-icon i {
    color: #ffffff;
    font-size: 18px;
}

.fl-orange-icon {
    background: linear-gradient(135deg, #f5821f, #d76500);
}

.fl-product-content h4 {
    color: #21336c;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 6px;
}

.fl-product-content p {
    color: #667085;
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 0;
}

.fl-product-why {
    padding: 42px 35px;
    border-radius: 28px;
    background: linear-gradient(135deg, #21336c, #16234b);
    position: relative;
    overflow: hidden;
}

.fl-product-why::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: rgba(245, 130, 31, 0.22);
    right: -55px;
    top: -55px;
    border-radius: 50%;
}

.fl-product-why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 30px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.fl-product-icon-img {
    width: 52px;
    height: auto;
}

.fl-product-why h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.fl-product-why p {
    max-width: 980px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .fl-product-head h2 {
        font-size: 36px;
    }

    .fl-product-group {
        padding: 32px 24px;
    }

    .fl-group-title h3 {
        font-size: 25px;
    }
}

@media (max-width: 576px) {
    .fl-section {
        padding: 45px 0;
    }

    .fl-product-head h2 {
        font-size: 30px;
    }

    .fl-product-group {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .fl-product-item {
        gap: 12px;
    }

    .fl-product-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .fl-product-icon i {
        font-size: 16px;
    }

    .fl-product-content h4 {
        font-size: 15px;
    }

    .fl-product-why {
        padding: 34px 20px;
    }
}