
        @font-face {
            font-family: 'Inter';
            src: url('/assets/fonts/Inter-4.1/web/Inter-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Inter';
            src: url('/assets/fonts/Inter-4.1/web/Inter-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Inter';
            src: url('/assets/fonts/Inter-4.1/web/Inter-SemiBold.woff2') format('woff2');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Inter';
            src: url('/assets/fonts/Inter-4.1/web/Inter-Bold.woff2') format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --bg-dark: #002B37;
            --bg-soft: #006A86;
            --primary: #006A86;
            --primary-soft: #008AA8;
            --accent: #EB8500;
            --text-light: #FFFFFF;
            --text-dark: #002B37;
            --text-muted: #5f7f89;
            --border-soft: rgba(0, 43, 55, 0.10);
            --shadow-soft: 0 20px 60px rgba(0, 43, 55, 0.15);
            --bg-page: #fff;/*f4f7f9*/
            --card-shadow: 0 10px 25px rgba(0, 43, 55, 0.06);
            --card-shadow-hover: 0 22px 44px rgba(0, 43, 55, 0.12);
        }

        * {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        }

        body {
            background: var(--bg-page);
            color: var(--text-dark);
        }

        .navbar {
            backdrop-filter: blur(18px);
            background: rgba(0, 43, 55, 0.78);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 24px rgba(0, 43, 55, 0.10);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 800;
            letter-spacing: -0.03em;
            color: #fff;
            font-size: 1.35rem;
        }

        .navbar .nav-link {
            color: rgba(255, 255, 255, 0.88);
            font-weight: 500;
            padding: 0.75rem 1rem !important;
            border-radius: 999px;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link:focus {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .btn-primary {
            background: linear-gradient(135deg, #EB8500, #d97706);
            border: none;
            color: #fff;
            box-shadow: 0 14px 30px rgba(235, 133, 0, 0.28);
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: linear-gradient(135deg, #f39818, #c96f00);
            color: #fff;
        }

        .btn-outline-light:hover,
        .btn-outline-light:focus {
            color: var(--bg-dark);
            background: #fff;
            border-color: #fff;
        }

        .hero {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            background:
                radial-gradient(circle at 15% 20%, rgba(235, 133, 0, 0.18), transparent 26%),
                radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.10), transparent 20%),
                linear-gradient(135deg, #002B37 0%, #006A86 100%);
            color: var(--text-light);
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 43, 55, 0.18), rgba(0, 43, 55, 0.45));
            z-index: 1;
        }

        .hero-content,
        .hero-visual {
            position: relative;
            z-index: 2;
        }

        .badge-soft {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .7rem 1.05rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-weight: 600;
            font-size: .92rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .hero h1 {
            font-size: clamp(1.8rem, 3.6vw, 3.0rem);/*2rem, 4vw, 3.2rem**/
            font-weight: 650;
            line-height: 1.08;
            letter-spacing: -0.03em;
            max-width: 760px;
        }

        .hero-lead {
            font-size: 1.08rem;
            color: rgba(255, 255, 255, 0.82);
            max-width: 700px;
            line-height: 1.75;
        }

        .hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: .75rem;
            margin-top: 1.5rem;
        }

        .hero-points span {
            padding: .72rem 1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.10);
            color: #f4f8ff;
            font-size: .94rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.10);
            border: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow: 0 30px 80px rgba(0, 25, 35, 0.24);
            border-radius: 30px;
            backdrop-filter: blur(18px);
        }

        .dashboard-card {
            padding: 1.6rem;
            position: relative;
            isolation: isolate;
        }

        .dashboard-card::after {
            content: "";
            position: absolute;
            inset: 12px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            pointer-events: none;
            z-index: -1;
        }

        .dashboard-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.4rem;
        }

        .mini-stat {
            border-radius: 22px;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.10);
            height: 100%;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .mini-stat small,
        .dashboard-card p,
        .process-card p,
        .feature-card p,
        .target-card p,
        .pricing-card p,
        .section-sub {
            color: #6f8098;
        }

        .stats-strip {
            margin-top: -50px;
            position: relative;
            z-index: 5;
        }

        .stats-box {
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(12px);
            box-shadow: 0 18px 50px rgba(16, 32, 51, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.55);
        }

        .stat-item h3 {
            font-size: 2rem;
            margin-bottom: .2rem;
            font-weight: 800;
            color: var(--text-dark);
        }

        .section-space {
            padding: 110px 0;
        }

        .section-tag {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .12em;
            font-size: .78rem;
            margin-bottom: .9rem;
            display: inline-block;
        }

        .section-title {
            font-size: clamp(1.6rem, 2.5vw, 2.4rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text-dark);
            line-height: 1.15;
        }

        .feature-card,
        .process-card,
        .target-card,
        .pricing-card,
        .cta-box {
            background: rgba(255, 255, 255, 0.96);
            border-radius: 28px;
            border: 1px solid rgba(0, 43, 55, 0.08);
            box-shadow: var(--card-shadow);
            height: 100%;
            transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
        }

        .feature-card:hover,
        .process-card:hover,
        .target-card:hover,
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-shadow-hover);
            border-color: rgba(0, 106, 134, 0.18);
        }

        .feature-card,
        .process-card,
        .target-card,
        .pricing-card {
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 120px;
        }

        .icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 106, 134, 0.08);
            color: #006A86;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .process-number {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #006A86;
            color: #fff;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pricing-card.featured {
            background: linear-gradient(180deg, #102033 0%, #152743 100%);
            color: #fff;
            transform: translateY(-10px);
        }

        .pricing-card.featured:hover {
            transform: translateY(-14px);
            box-shadow: 0 26px 48px rgba(0, 43, 55, 0.18);
        }

        .pricing-card.featured p,
        .pricing-card.featured li,
        .pricing-card.featured .price-note {
            color: rgba(255, 255, 255, 0.78);
        }

        .price {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: .3rem;
        }

        .pricing-list {
            padding-left: 1rem;
            margin: 1rem 0 1.5rem;
        }

        .pricing-list li {
            margin-bottom: .55rem;
        }

        .cta-box {
            padding: 2.6rem;
            background:
                radial-gradient(circle at top right, rgba(235, 133, 0, 0.22), transparent 22%),
                linear-gradient(135deg, #002B37, #006A86);
            color: #fff;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 25px 60px rgba(0, 43, 55, 0.16);
        }

        .cta-box::after {
            content: "";
            position: absolute;
            right: -40px;
            top: -40px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            filter: blur(5px);
        }

        .cta-box p {
            color: rgba(255, 255, 255, 0.82);
        }

        footer {
            background: #081120;
            color: rgba(255, 255, 255, 0.72);
            padding: 28px 0;
        }

        @media (max-width: 991.98px) {
            .hero {
                min-height: auto;
                padding-top: 110px;
                padding-bottom: 80px;
            }

            .stats-strip {
                margin-top: 0;
            }

            .pricing-card.featured,
            .pricing-card.featured:hover {
                transform: none;
            }
        }

        /* CTA MODERN */
        .cta-box-modern {
            padding: 2.8rem;
            border-radius: 32px;
            background: linear-gradient(135deg, #002B37, #006A86);
            color: #fff;
            box-shadow: 0 30px 70px rgba(0, 43, 55, 0.18);
            position: relative;
            overflow: hidden;
        }

        .cta-eyebrow {
            text-transform: uppercase;
            font-size: .75rem;
            letter-spacing: .12em;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 700;
        }

        .cta-title {
            font-size: clamp(1.6rem, 2.5vw, 2.4rem);
            font-weight: 800;
            margin: .6rem 0 1rem;
        }

        .cta-text {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        .cta-pill {
            padding: .55rem .9rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            font-size: .85rem;
        }

        .btn-cta-xl {
            background: linear-gradient(135deg, #EB8500, #d97706);
            border: none;
            color: #fff;
            padding: 0.9rem 1.6rem;
            border-radius: 999px;
            font-weight: 700;
            box-shadow: 0 18px 35px rgba(235, 133, 0, 0.35);
        }

        .btn-cta-xl:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #f39818, #c96f00);
        }

        /* FOOTER MODERN */
        .footer-modern {
            background: #081120;
            color: rgba(255, 255, 255, 0.75);
            padding: 60px 0 30px;
        }

        .footer-brand {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: .6rem;
        }

        .footer-title {
            font-weight: 700;
            margin-bottom: .6rem;
            color: #fff;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: .4rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .btn-footer {
            background: #fff;
            color: #002B37;
            border-radius: 999px;
            padding: .7rem 1.2rem;
            font-weight: 700;
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            font-size: .85rem;
        }
        .section-soft-top {
            background: linear-gradient(360deg, rgba(0,106,134,.04), rgba(255,255,255,1));
        }
        .section-soft {
            background: linear-gradient(180deg, rgba(0,106,134,.04), rgba(255,255,255,1));
        }
        .dkOrange{
            color: #EB8500;
        }
        .dkBlue{
            color: #4285F4;
        }
        .dkGrun{
            color: #34A853;
        }
        

        