        :root {
            --cream: #F8FBFF;
            --white: #fff;
            --warm-50: #F1F5FB;
            --warm-100: #DCE5F2;
            --warm-200: #C5D4E8;
            --peach: #38BDF8;
            --coral: #0EA5E9;
            --sunset: #0284C7;
            --sky: #38BDF8;
            --sky-soft: #E0F2FE;
            --blue: #2563EB;
            --blue-soft: #EFF6FF;
            --violet: #8B5CF6;
            --violet-soft: #F5F3FF;
            --emerald: #10B981;
            --emerald-soft: #ECFDF5;
            --rose: #F43F5E;
            --rose-soft: #FFF1F2;
            --amber: #F59E0B;
            --amber-soft: #FFFBEB;
            --ink: #1E293B;
            --ink-soft: #334155;
            --ink-muted: #64748B;
            --ink-faint: #94A3B8;
            --border: #E2E8F0;
            --border-light: #F1F5F9;
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, .05), 0 1px 3px rgba(0, 0, 0, .03);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, .07), 0 2px 6px rgba(0, 0, 0, .03);
            --shadow-xl: 0 16px 50px rgba(0, 0, 0, .08);
            --shadow-glow: 0 8px 30px rgba(14, 165, 233, .25);
            --r: 14px;
            --rl: 20px;
            --rxl: 28px;
            --rf: 100px;
            --fd: 'Bricolage Grotesque', sans-serif;
            --fb: 'Instrument Sans', sans-serif;
            --fm: 'JetBrains Mono', monospace;
            --ease: cubic-bezier(.22, 1, .36, 1);
            --t: .4s var(--ease)
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased
        }

        body {
            font-family: var(--fb);
            background: var(--cream);
            color: var(--ink);
            line-height: 1.65;
            overflow-x: hidden
        }

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

        ::selection {
            background: var(--coral);
            color: #fff
        }

        .wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px
        }

        @media(max-width:600px) {
            .wrap {
                padding: 0 20px
            }
        }

        @keyframes ticker-scroll {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-10px)
            }
        }

        @keyframes float-d {

            0%,
            100% {
                transform: translateY(0) rotate(-2deg)
            }

            50% {
                transform: translateY(-8px) rotate(1deg)
            }
        }

        @keyframes pulse-s {

            0%,
            100% {
                transform: scale(1);
                opacity: .6
            }

            50% {
                transform: scale(1.15);
                opacity: 1
            }
        }

        @keyframes spin-s {
            from {
                transform: rotate(0)
            }

            to {
                transform: rotate(360deg)
            }
        }

        .reveal {
            opacity: 1;
            transform: none;
            transition: opacity .75s var(--ease), transform .75s var(--ease)
        }

        .reveal.in {
            opacity: 1;
            transform: none
        }

        .reveal-d1 {
            transition-delay: .1s
        }

        .reveal-d2 {
            transition-delay: .2s
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            padding: 16px 0;
            transition: all .35s;
            background: rgba(248, 251, 255, .95);
            backdrop-filter: blur(16px) saturate(1.6);
            -webkit-backdrop-filter: blur(16px) saturate(1.6)
        }

        .nav.stuck {
            padding: 10px 0;
            box-shadow: 0 1px 0 var(--border)
        }

        .nav .wrap {
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .nav-brand img {
            height: 36px;
            width: auto;
            display: block
        }

        .nav-brand {
            font-family: var(--fd);
            font-size: 25px;
            font-weight: 300;
            color: var(--ink);
            letter-spacing: -.02em
        }

        .nav-brand b {
            font-weight: 800;
            color: #0284C7
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px
        }

        .nav-links a {
            font-size: 13.5px;
            font-weight: 600;
            color: var(--ink-muted);
            transition: color var(--t)
        }

        .nav-links a:hover {
            color: var(--ink)
        }

        .nav-cta {
            background: var(--coral) !important;
            color: #fff !important;
            padding: 9px 22px;
            border-radius: var(--rf);
            font-weight: 700 !important;
            transition: all var(--t) !important
        }

        .nav-cta:hover {
            background: var(--sunset) !important;
            transform: translateY(-1px);
            box-shadow: var(--shadow-glow)
        }

        @media(max-width:860px) {
            .nav-links {
                display: none
            }
        }

        .ticker {
            background: linear-gradient(135deg, #0284C7, #0EA5E9, #38BDF8);
            color: #fff;
            padding: 11px 0;
            overflow: hidden;
            white-space: nowrap;
            margin-top: 72px
        }

        .ticker-track {
            display: inline-flex;
            animation: ticker-scroll 35s linear infinite
        }

        .ticker-item {
            font-family: var(--fd);
            font-size: 12.5px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            padding: 0 28px;
            display: inline-flex;
            align-items: center;
            gap: 12px
        }

        .ticker-dot {
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, .5);
            border-radius: 50%
        }

        .hero {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background: var(--cream)
        }

        .hero-deco {
            position: absolute;
            border-radius: 50%;
            pointer-events: none
        }

        .hd1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(14, 165, 233, .1) 0%, transparent 70%);
            top: -100px;
            right: 5%;
            animation: float 8s ease-in-out infinite
        }

        .hd2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(56, 189, 248, .07) 0%, transparent 70%);
            bottom: -80px;
            left: 10%;
            animation: float-d 10s ease-in-out infinite
        }

        .hd3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(139, 92, 246, .06) 0%, transparent 70%);
            top: 20%;
            left: 40%;
            animation: float 12s ease-in-out infinite
        }

        .conf {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            animation: float 6s ease-in-out infinite
        }

        .c1 {
            background: var(--coral);
            width: 8px;
            height: 8px;
            top: 15%;
            right: 12%;
            animation-delay: -1s;
            opacity: .5
        }

        .c2 {
            background: var(--sky);
            width: 6px;
            height: 6px;
            top: 30%;
            right: 22%;
            animation-delay: -3s;
            opacity: .4
        }

        .c3 {
            background: var(--violet);
            width: 8px;
            height: 8px;
            top: 70%;
            right: 8%;
            animation-delay: -2s;
            opacity: .35
        }

        .c4 {
            background: var(--emerald);
            width: 10px;
            height: 10px;
            top: 55%;
            left: 6%;
            animation-delay: -4s;
            opacity: .3
        }

        .c5 {
            background: var(--amber);
            width: 6px;
            height: 6px;
            top: 10%;
            left: 20%;
            animation-delay: -5s;
            opacity: .4
        }

        .c6 {
            background: var(--rose);
            width: 8px;
            height: 8px;
            bottom: 20%;
            left: 15%;
            animation-delay: -1.5s;
            opacity: .3
        }

        .hero-ring {
            position: absolute;
            top: 8%;
            right: 3%;
            width: 120px;
            height: 120px;
            border: 3px dashed rgba(14, 165, 233, .18);
            border-radius: 50%;
            animation: spin-s 40s linear infinite;
            pointer-events: none
        }

        .hero .wrap {
            position: relative;
            z-index: 1
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center
        }

        @media(max-width:860px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 48px
            }
        }

        .hero-eyebrow {
            font-family: var(--fm);
            font-size: 12px;
            font-weight: 500;
            color: var(--coral);
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 18px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-50);
            border: 1px solid var(--warm-100);
            padding: 6px 16px;
            border-radius: var(--rf)
        }

        .hero-eyebrow .dot {
            width: 7px;
            height: 7px;
            background: var(--emerald);
            border-radius: 50%;
            animation: pulse-s 2s ease-in-out infinite
        }

        .hero h1 {
            font-family: var(--fd);
            font-size: clamp(44px, 6.5vw, 68px);
            font-weight: 800;
            line-height: 1.02;
            letter-spacing: -.04em;
            color: var(--ink);
            margin-bottom: 24px
        }

        .hero h1 em {
            font-style: normal;
            background: linear-gradient(135deg, #0284C7, #0EA5E9);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .hero-desc {
            font-size: 18px;
            color: var(--ink-muted);
            max-width: 440px;
            margin-bottom: 36px;
            line-height: 1.7
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            border-radius: var(--r);
            font-family: var(--fb);
            font-size: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all var(--t)
        }

        .btn-coral {
            background: linear-gradient(135deg, #0284C7, #0EA5E9);
            color: #fff;
            box-shadow: var(--shadow-glow)
        }

        .btn-coral:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(14, 165, 233, .3)
        }

        .btn-soft {
            background: var(--white);
            color: var(--ink);
            border: 1.5px solid var(--border);
            box-shadow: var(--shadow-sm)
        }

        .btn-soft:hover {
            border-color: var(--ink-faint);
            box-shadow: var(--shadow-md)
        }

        .hero-visual {
            position: relative
        }

        .hero-screen {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            aspect-ratio: 4/3
        }

        .hsb {
            height: 28px;
            background: #D1D5DB;
            display: flex;
            align-items: center;
            padding: 0 14px;
            gap: 7px;
            border-bottom: 1px solid var(--border)
        }

        .sd {
            width: 10px;
            height: 10px;
            border-radius: 50%
        }

        .sd:nth-child(1) {
            background: #F87171
        }

        .sd:nth-child(2) {
            background: #FBBF24
        }

        .sd:nth-child(3) {
            background: #34D399
        }

        .hsbody {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .sr {
            height: 14px;
            border-radius: 6px
        }

        .sr:nth-child(1) {
            width: 55%;
            background: linear-gradient(90deg, var(--warm-100), var(--warm-200))
        }

        .sr:nth-child(2) {
            width: 80%;
            background: var(--border-light)
        }

        .sr:nth-child(3) {
            width: 65%;
            background: var(--border-light)
        }

        .sr:nth-child(4) {
            width: 90%;
            background: var(--border-light)
        }

        .sr:nth-child(5) {
            width: 40%;
            background: linear-gradient(90deg, var(--sky-soft), var(--blue-soft))
        }

        .sr:nth-child(6) {
            width: 72%;
            background: var(--border-light)
        }

        .fc {
            position: absolute;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 14px 18px;
            box-shadow: var(--shadow-lg);
            animation: float 5s ease-in-out infinite
        }

        .fc1 {
            bottom: -16px;
            left: -24px;
            display: flex;
            align-items: center;
            gap: 12px;
            animation-delay: -1s
        }

        .fc1i {
            width: 40px;
            height: 40px;
            background: var(--emerald-soft);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px
        }

        .fc1l {
            font-size: 11px;
            color: var(--ink-faint);
            font-weight: 500
        }

        .fc1v {
            font-family: var(--fd);
            font-size: 20px;
            font-weight: 800;
            color: var(--ink)
        }

        .fc2 {
            top: 30px;
            right: -20px;
            display: flex;
            align-items: center;
            gap: 10px;
            animation-delay: -3s
        }

        .fc2c {
            width: 26px;
            height: 26px;
            background: var(--emerald);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 13px;
            font-weight: 700
        }

        .fc2 span {
            font-size: 13px;
            font-weight: 600;
            color: var(--ink-soft)
        }

        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 72px 0
        }

        @media(max-width:700px) {
            .stats-bar {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        .stat {
            text-align: center;
            padding: 28px 16px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--rl);
            box-shadow: var(--shadow-sm);
            transition: all var(--t)
        }

        .stat:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md)
        }

        .sn {
            font-family: var(--fd);
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -.03em;
            line-height: 1;
            margin-bottom: 6px
        }

        .stat:nth-child(1) .sn {
            color: var(--coral)
        }

        .stat:nth-child(2) .sn {
            color: var(--blue)
        }

        .stat:nth-child(3) .sn {
            color: var(--violet)
        }

        .stat:nth-child(4) .sn {
            color: var(--emerald)
        }

        .sl {
            font-size: 12.5px;
            color: var(--ink-muted);
            font-weight: 500
        }

        .ch {
            padding: 110px 0;
            position: relative
        }

        .ch-w {
            background: var(--warm-50)
        }

        .ch-wh {
            background: var(--white)
        }

        .chnum {
            font-family: var(--fd);
            font-size: 110px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -.05em;
            position: absolute;
            top: 50px;
            right: 40px;
            pointer-events: none;
            user-select: none;
            -webkit-text-stroke: 1.5px var(--border);
            color: transparent;
            opacity: .5
        }

        .chh {
            margin-bottom: 56px
        }

        .chl {
            font-family: var(--fm);
            font-size: 11.5px;
            font-weight: 500;
            letter-spacing: .12em;
            text-transform: uppercase;
            margin-bottom: 14px;
            display: inline-block;
            padding: 4px 14px;
            border-radius: var(--rf)
        }

        .lc {
            color: var(--coral);
            background: var(--warm-50);
            border: 1px solid var(--warm-100)
        }

        .lb {
            color: var(--blue);
            background: var(--blue-soft);
            border: 1px solid #DBEAFE
        }

        .lv {
            color: var(--violet);
            background: var(--violet-soft);
            border: 1px solid #EDE9FE
        }

        .le {
            color: var(--emerald);
            background: var(--emerald-soft);
            border: 1px solid #D1FAE5
        }

        .la {
            color: var(--amber);
            background: var(--amber-soft);
            border: 1px solid #FEF3C7
        }

        .lr {
            color: var(--rose);
            background: var(--rose-soft);
            border: 1px solid #FFE4E6
        }

        .ls {
            color: var(--sky);
            background: var(--sky-soft);
            border: 1px solid #BAE6FD
        }

        .cht {
            font-family: var(--fd);
            font-size: clamp(30px, 4.2vw, 46px);
            font-weight: 700;
            letter-spacing: -.03em;
            line-height: 1.08;
            color: var(--ink);
            margin-bottom: 16px
        }

        .chd {
            font-size: 17px;
            color: var(--ink-muted);
            max-width: 540px;
            line-height: 1.7
        }

        .mg {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 14px
        }

        @media(max-width:1000px) {
            .mg {
                grid-template-columns: repeat(3, 1fr)
            }
        }

        @media(max-width:600px) {
            .mg {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        .mc {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--rl);
            padding: 28px 18px 24px;
            text-align: center;
            transition: all var(--t);
            position: relative;
            overflow: hidden
        }

        .mc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            border-radius: 20px 20px 0 0
        }

        .mc:nth-child(1)::before {
            background: #0EA5E9
        }

        .mc:nth-child(2)::before {
            background: var(--sky)
        }

        .mc:nth-child(3)::before {
            background: var(--amber)
        }

        .mc:nth-child(4)::before {
            background: var(--violet)
        }

        .mc:nth-child(5)::before {
            background: var(--emerald)
        }

        .mc:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg)
        }

        .mi {
            font-size: 28px;
            margin-bottom: 14px;
            display: block
        }

        .mc h3 {
            font-family: var(--fb);
            font-size: 14px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 7px
        }

        .mc p {
            font-size: 13.5px;
            color: var(--ink-muted);
            line-height: 1.5
        }

        .ft {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 72px;
            align-items: center
        }

        .ft.fp {
            direction: rtl
        }

        .ft.fp>* {
            direction: ltr
        }

        @media(max-width:860px) {

            .ft,
            .ft.fp {
                grid-template-columns: 1fr;
                gap: 40px;
                direction: ltr
            }
        }

        .ft h2 {
            font-family: var(--fd);
            font-size: 34px;
            font-weight: 700;
            letter-spacing: -.03em;
            line-height: 1.1;
            color: var(--ink);
            margin-bottom: 6px
        }

        .fsub {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 16px
        }

        .fdesc {
            font-size: 15.5px;
            color: var(--ink-muted);
            margin-bottom: 24px;
            line-height: 1.7
        }

        .fl {
            list-style: none
        }

        .fl li {
            padding: 8px 0;
            font-size: 14px;
            color: var(--ink-soft);
            display: flex;
            align-items: flex-start;
            gap: 11px;
            border-bottom: 1px solid var(--border-light)
        }

        .fl li:last-child {
            border-bottom: none
        }

        .fck {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: #fff;
            margin-top: 2px
        }

        .qb {
            margin-top: 24px;
            padding: 18px 22px;
            border-radius: 0 var(--r) var(--r) 0;
            border-left: 3px solid
        }

        .qb p {
            font-size: 16.5px;
            font-style: italic;
            color: var(--ink-muted);
            line-height: 1.6
        }

        .fv {
            border-radius: 10px;
            aspect-ratio: 4/3;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border)
        }

        .fv span {
            font-size: 13px;
            font-weight: 500;
            color: var(--ink-faint);
            font-family: var(--fm);
            position: relative;
            z-index: 1
        }

        .fv span:has(img) {
            flex: 1;
            display: block;
            overflow: hidden
        }

        .fv img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: top left;
            display: block
        }

        .ac .fsub {
            color: var(--coral)
        }

        .ac .fck {
            background: var(--coral)
        }

        .ac .qb {
            border-color: var(--coral);
            background: var(--warm-50)
        }

        .ac .fv {
            background: linear-gradient(135deg, var(--warm-50), var(--warm-100))
        }

        .ab .fsub {
            color: var(--blue)
        }

        .ab .fck {
            background: var(--blue)
        }

        .ab .qb {
            border-color: var(--blue);
            background: var(--blue-soft)
        }

        .ab .fv {
            background: linear-gradient(135deg, var(--blue-soft), #DBEAFE)
        }

        .av .fsub {
            color: var(--violet)
        }

        .av .fck {
            background: var(--violet)
        }

        .av .qb {
            border-color: var(--violet);
            background: var(--violet-soft)
        }

        .av .fv {
            background: linear-gradient(135deg, var(--violet-soft), #EDE9FE)
        }

        .ae .fsub {
            color: var(--emerald)
        }

        .ae .fck {
            background: var(--emerald)
        }

        .ae .qb {
            border-color: var(--emerald);
            background: var(--emerald-soft)
        }

        .ae .fv {
            background: linear-gradient(135deg, var(--emerald-soft), #D1FAE5)
        }

        .aa .fsub {
            color: var(--amber)
        }

        .aa .fck {
            background: var(--amber)
        }

        .aa .qb {
            border-color: var(--amber);
            background: var(--amber-soft)
        }

        .aa .fv {
            background: linear-gradient(135deg, var(--amber-soft), #FEF3C7)
        }

        .ar .fsub {
            color: var(--rose)
        }

        .ar .fck {
            background: var(--rose)
        }

        .ar .qb {
            border-color: var(--rose);
            background: var(--rose-soft)
        }

        .ar .fv {
            background: linear-gradient(135deg, var(--rose-soft), #FFE4E6)
        }

        .as .fsub {
            color: var(--sky)
        }

        .as .fck {
            background: var(--sky)
        }

        .as .qb {
            border-color: var(--sky);
            background: var(--sky-soft)
        }

        .as .fv {
            background: linear-gradient(135deg, var(--sky-soft), #BAE6FD)
        }

        .cr {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

        @media(max-width:768px) {
            .cr {
                grid-template-columns: 1fr
            }
        }

        .cd {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--rl);
            padding: 32px 24px;
            text-align: center;
            transition: all var(--t)
        }

        .cd:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg)
        }

        .ci {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 22px
        }

        .cd:nth-child(1) .ci {
            background: var(--warm-50)
        }

        .cd:nth-child(2) .ci {
            background: var(--sky-soft)
        }

        .cd:nth-child(3) .ci {
            background: var(--violet-soft)
        }

        .cd h3 {
            font-family: var(--fb);
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 8px
        }

        .cd p {
            font-size: 13.5px;
            color: var(--ink-muted);
            line-height: 1.6
        }

        .hb {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--rl);
            padding: 32px 28px;
            margin-top: 24px;
            box-shadow: var(--shadow-sm)
        }

        .hb h3 {
            font-family: var(--fd);
            font-size: 19px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 10px
        }

        .hb p {
            font-size: 15px;
            color: var(--ink-muted)
        }

        .ch-sun {
            background: linear-gradient(135deg, #0c4a6e, #164e63);
            color: #fff
        }

        .ch-sun .cht {
            color: #fff
        }

        .ch-sun .chd {
            color: #94A3B8
        }

        .ch-sun .cd {
            background: rgba(255, 255, 255, .06);
            border-color: rgba(255, 255, 255, .08)
        }

        .ch-sun .cd:hover {
            border-color: rgba(255, 255, 255, .15)
        }

        .ch-sun .cd h3 {
            color: #fff
        }

        .ch-sun .cd p {
            color: #94A3B8
        }

        .ch-sun .ci {
            background: rgba(14, 165, 233, .18) !important
        }

        .fw {
            max-width: 640px;
            margin: 0 auto;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--rxl);
            padding: 48px 40px;
            box-shadow: var(--shadow-lg)
        }

        @media(max-width:600px) {
            .fw {
                padding: 32px 22px
            }
        }

        .fgr {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px
        }

        @media(max-width:560px) {
            .fgr {
                grid-template-columns: 1fr
            }
        }

        .fg {
            display: flex;
            flex-direction: column
        }

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

        .fg label {
            font-size: 12px;
            font-weight: 600;
            color: var(--ink-muted);
            letter-spacing: .04em;
            text-transform: uppercase;
            margin-bottom: 6px
        }

        .fg input,
        .fg textarea {
            background: var(--cream);
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 12px 16px;
            font-family: var(--fb);
            font-size: 15px;
            color: var(--ink);
            transition: all var(--t)
        }

        .fg input::placeholder,
        .fg textarea::placeholder {
            color: var(--ink-faint)
        }

        .fg input:focus,
        .fg textarea:focus {
            outline: none;
            border-color: var(--coral);
            box-shadow: 0 0 0 3px rgba(14, 165, 233, .12);
            background: var(--white)
        }

        .fg textarea {
            resize: vertical;
            min-height: 110px
        }

        .fsm {
            text-align: center;
            margin-top: 24px
        }

        .bsend {
            background: linear-gradient(135deg, #0284C7, #0EA5E9);
            color: #fff;
            border: none;
            padding: 15px 48px;
            border-radius: var(--r);
            font-family: var(--fb);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--t);
            box-shadow: var(--shadow-glow)
        }

        .bsend:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(14, 165, 233, .3)
        }

        .bsend:disabled {
            opacity: .6;
            cursor: not-allowed;
            transform: none
        }

        .fg-hp {
            position: absolute;
            left: -9999px;
            top: -9999px;
            opacity: 0;
            pointer-events: none
        }

        .form-msg {
            margin-top: 14px;
            font-size: 14px;
            font-weight: 500;
            min-height: 20px
        }

        .form-msg.ok { color: #059669 }
        .form-msg.err { color: #DC2626 }

        /* --- Pricing --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
            margin-bottom: 32px
        }

        .plan {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 32px 28px;
            position: relative
        }

        .plan-featured {
            border-color: var(--coral);
            box-shadow: 0 8px 32px rgba(14,165,233,.15);
            transform: translateY(-6px)
        }

        .plan-badge {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--coral);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .04em;
            padding: 3px 14px;
            border-radius: 20px;
            white-space: nowrap
        }

        .plan-name {
            font-family: var(--fd);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .08em;
            color: var(--ink-muted);
            margin-bottom: 12px
        }

        .plan-price {
            font-family: var(--fd);
            font-size: 18px;
            font-weight: 400;
            color: var(--ink-muted);
            margin-bottom: 20px
        }

        .plan-price span {
            font-size: 38px;
            font-weight: 700;
            color: var(--ink)
        }

        .plan-price small {
            font-size: 14px
        }

        .plan-includes {
            font-size: 13px;
            color: var(--ink-muted);
            margin-bottom: 10px
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .plan-features li {
            font-size: 14.5px;
            color: var(--ink-soft);
            padding-left: 22px;
            position: relative
        }

        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #059669;
            font-weight: 700
        }

        .plan-cta {
            display: block;
            text-align: center;
            width: 100%;
            box-sizing: border-box
        }

        .plan-addons {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap
        }

        .plan-addons-title {
            font-family: var(--fd);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .08em;
            color: var(--ink-muted);
            white-space: nowrap
        }

        .plan-addons-list {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            flex: 1
        }

        .plan-addons-list span {
            font-size: 14.5px;
            font-weight: 600;
            color: var(--ink-soft);
            display: flex;
            align-items: center;
            gap: 8px
        }

        .plan-addons-note {
            font-size: 14px;
            color: var(--ink-muted);
            margin: 0
        }

        @media (max-width: 860px) {
            .pricing-grid {
                grid-template-columns: 1fr
            }
            .plan-featured {
                transform: none
            }
            .plan-addons {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px
            }
        }

        /* --- Closing section --- */
        .closing-section {
            background: #1d3c83;
            border-top: none;
            padding: 80px 0 0
        }

        .closing-top {
            max-width: 1100px;
            margin: 0 auto 64px;
            padding: 0 32px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 48px
        }

        .closing-eyebrow {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--coral);
            margin: 0 0 16px
        }

        .closing-title {
            font-family: var(--fd);
            font-size: 58px;
            font-weight: 800;
            color: #fff;
            line-height: 1.05;
            margin: 0 0 20px;
            letter-spacing: -.02em
        }

        .closing-sub {
            font-size: 17px;
            color: #94A3B8;
            line-height: 1.7;
            max-width: 400px;
            margin: 0
        }

        .closing-logo-wrap {
            text-align: center;
            flex-shrink: 0
        }

        .closing-logo {
            height: 80px;
            width: auto;
            display: block;
            margin: 0 auto 10px;
            
  
        }

        .closing-tagline {
            font-family: var(--fm);
            font-size: 11px;
            color: rgb(255, 255, 255);
            letter-spacing: .08em;
            margin: 0;
            text-align: center
        }

        .closing-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1100px;
            margin: 0 auto;
            background: #eaeff5
        }

        .closing-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 40px 48px;
            text-decoration: none;
            border-top: 1px solid var(--border);
            transition: all .25s;
            position: relative
        }

        .closing-card:first-child {
            border-right: 1px solid var(--border)
        }

        .closing-card-email { background: transparent; cursor: default }
        .closing-card-email:hover { background: transparent }
        .closing-card-email:hover .closing-card-arrow { transform: none; color: var(--ink-faint) }
        .closing-card-web   { background: transparent }

        .closing-card:not(.closing-card-email):hover {
            background: var(--white)
        }

        .closing-card-icon {
            font-size: 28px;
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-style: normal
        }

        .closing-card-email .closing-card-icon {
            background: #EFF6FF;
            color: #0284C7
        }

        .closing-card-web .closing-card-icon {
            background: var(--warm-50);
            color: var(--coral)
        }

        .closing-card-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--ink-muted);
            margin-bottom: 4px
        }

        .closing-card-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--ink);
            font-family: var(--fd)
        }

        .closing-card-arrow {
            margin-left: auto;
            font-size: 32px;
            color: var(--ink-faint);
            transition: transform .2s
        }

        .closing-card:hover .closing-card-arrow {
            transform: translateX(5px);
            color: var(--ink-muted)
        }

        @media (max-width: 860px) {
            .closing-top {
                flex-direction: column;
                align-items: flex-start
            }
            .closing-logo-wrap { text-align: left }
            .closing-tagline { text-align: left }
            .closing-logo { margin-left: 0 }
            .closing-title { font-size: 38px }
            .closing-cards { grid-template-columns: 1fr }
            .closing-card:first-child { border-right: none }
            .closing-card { padding: 28px 24px }
        }

        .footer {
            padding: 24px 0;
            border-top: 1px solid rgba(255,255,255,.08);
            text-align: center;
            background: #ffffff
        }

        .footer-brand {
            font-family: var(--fd);
            font-size: 20px;
            font-weight: 300;
            color: var(--ink);
            margin-bottom: 10px
        }

        .footer-brand b {
            font-weight: 800;
            color: #0284C7
        }

        .footer-links {
            font-size: 14px;
            color: var(--ink-muted)
        }

        .footer-links a {
            color: #0284C7;
            font-weight: 600
        }

        .footer-links a:hover {
            text-decoration: underline
        }

        .footer-tag {
            font-family: var(--fm);
            font-size: 11px;
            color: rgb(46, 46, 46);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-top: 10px
        }

        /* --- Integrazione Screenshot Hero --- */

.hsbody {
    padding: 0; /* Rimuoviamo il padding per far arrivare l'immagine ai bordi */
    overflow: hidden;
    display: block; /* Cambiamo da flex a block per l'immagine */
}

.hero-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Riempie lo spazio senza deformarsi */
    object-position: top; /* Mantiene visibile la parte alta (menu/header dello screen) */
    display: block;
    opacity: 0; /* Opzionale: per animazione ingresso */
    animation: fadeInImg 1s ease forwards 0.5s;
}

@keyframes fadeInImg {
    to { opacity: 1; }
}

/* Assicuriamoci che le card (soci e fattura) siano sopra l'immagine */
.fc {
    z-index: 10;
}

/* Modifica per mobile: evitiamo che lo screenshot diventi troppo piccolo o deformato */
@media (max-width: 860px) {
    .hero-screen {
        aspect-ratio: 16/10; /* Un po' più schiacciato su mobile per non occupare troppo spazio verticale */
    }
}




/* --- Nuova Sezione Prezzi --- */

.pricing-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: var(--r);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 800px; /* Evita schiacciamenti su schermi piccoli */
}

.pricing-table th, .pricing-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-family: 'Instrument Sans', sans-serif;
}

.feature-col {
    text-align: left !important;
    background: #fcfcfc;
    width: 30%;
    font-weight: 600;
    color: var(--dark);
    position: sticky;
    left: 0;
    z-index: 2;
}

.pro-col {
    background: rgba(0, 123, 255, 0.03);
    border-left: 2px solid #007bff;
    border-right: 2px solid #007bff;
}

.pro-col span {
    display: block;
    font-size: 0.65rem;
    background: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    width: fit-content;
    margin: 4px auto 0;
    text-transform: uppercase;
    font-weight: 800;
}

.price-row td {
    padding: 30px 20px;
}

.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--coral);
    font-family: 'Bricolage Grotesque', sans-serif;
}

.annual-row {
    background: #fdfdfd;
    font-weight: 500;
}

.table-notes {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}

/* --- Opzioni Extra --- */

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.option-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--r);
    border: 1px solid #eee;
    position: relative;
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
}

.site-option {
    border: 2px solid var(--coral);
}

.option-badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background: var(--coral);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.option-card h3 {
    margin-bottom: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.option-price {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.option-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.option-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #eee;
}

.option-list li::before {
    content: "✓";
    color: var(--coral);
    margin-right: 12px;
    font-weight: 900;
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    .pricing-table-container {
        margin: 0 -20px; /* Allarga la tabella su mobile */
        border-radius: 0;
    }
}

/* --- Nuova Estetica Pricing Modern --- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.p-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.p-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.p-featured {
    border: 2px solid #0EA5E9;
    transform: scale(1.05);
    z-index: 2;
}

.p-featured:hover { transform: scale(1.05) translateY(-8px); }

.p-featured-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #0EA5E9;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.p-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.b-basic { background: #f1f5f9; color: #475569; }
.b-pro { background: #e0f2fe; color: #0284c7; }
.b-premium { background: #fef2f2; color: #dc2626; }

.p-title {
    font-family: var(--fb);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--ink);
}

.p-price {
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.p-currency { font-size: 1rem; font-weight: 600; color: #64748b; }
.p-amount { font-size: 2.8rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.p-period { font-size: 0.9rem; color: #64748b; }

.p-setup {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Tabella Comparazione */
.comparison-container {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid #eef2f6;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th {
    padding: 25px 15px;
    font-family: var(--fb);
    font-size: 1rem;
    text-align: center;
    border-bottom: 2px solid #f8fafc;
}

.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #f8fafc;
    font-size: 0.95rem;
}

.feat-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--ink-soft);
    width: 35%;
}

.col-highlight {
    background: rgba(14, 165, 233, 0.03);
}

.dot-check::before {
    content: "●";
    color: #0EA5E9;
    font-size: 1.2rem;
}

.dot-null {
    color: #cbd5e1;
}

.pricing-footer-notes {
    margin-top: 25px;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.6;
    padding: 0 20px;
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
    .p-featured { transform: none; }
    .p-featured:hover { transform: translateY(-8px); }
}

/* --- Stili Opzioni Extra Moderne --- */

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.option-card {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    position: relative;
    transition: all 0.3s ease;
}

.site-highlight {
    border: 2px solid #0EA5E9;
    background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%);
}

.option-badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background: #0EA5E9;
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.option-card h3 {
    font-family: var(--fb);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--ink);
}

.option-price {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.opt-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink);
}

.opt-plus { color: #0EA5E9; font-weight: bold; }

.opt-monthly {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.option-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.5;
}

.option-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(14, 165, 233, 0.1);
    padding-top: 20px;
}

.option-list li {
    font-size: 0.9rem;
    color: var(--ink-soft);
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.option-list li::before {
    content: "→";
    color: #0EA5E9;
    margin-right: 10px;
    font-weight: bold;
}

.btn-option {
    display: inline-block;
    padding: 12px 24px;
    background: var(--ink);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-option:hover {
    background: #0EA5E9;
}

@media (max-width: 850px) {
    .options-grid { grid-template-columns: 1fr; }
}