/* =========================================================
   Tooto.ai — Shared Styles
   Brand blue #1656F5 · light bg #F4F8FC · navy footer #000F2C
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/* ---------- Tokens ---------- */
:root {
    --blue-700: #0c3fd6;
    --blue-600: #1b28d6;
    --blue-500: #1b28d6;
    --blue-300: #8db4f8;
    --blue-100: #e3edff;
    --blue-50: #f0f5ff;

    --ink-900: #0c1a36; /* headings */
    --ink-700: #1f2d4d;
    --ink-500: #5b6a85; /* body */
    --ink-400: #8794ab;
    --line: #e6ebf5;

    --bg: #ffffff;
    --bg-soft: #f4f8fc;
    --bg-tint: #eef4ff;

    --navy-900: #000f2c;
    --navy-800: #061734;
    --navy-700: #0e2447;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;

    --shadow-sm: 0 4px 16px rgba(18, 46, 110, .06);
    --shadow: 0 14px 40px rgba(18, 46, 110, .10);
    --shadow-lg: 0 30px 70px rgba(18, 46, 110, .16);
    --shadow-blue: 0 18px 40px rgba(22, 86, 245, .28);

    --maxw: 1200px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* ---------- Lenis smooth scroll ---------- */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: "Inter", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
    font-family: "Noto Sans SC", sans-serif;
    font-optical-sizing: auto;
    color: var(--ink-500);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease),
    background .3s var(--ease), color .3s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn .arrow {
    transition: transform .3s var(--ease);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    color: #fff;
    box-shadow: var(--shadow-blue);
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .6s var(--ease);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 50px rgba(22, 86, 245, .4);
}

.btn-primary:hover::after {
    transform: translateX(120%);
}

.btn-ghost {
    background: #fff;
    color: var(--ink-900);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    border-color: var(--blue-300);
    color: var(--blue-600);
    box-shadow: var(--shadow);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---------- Navbar ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
    padding: 18px 0;
}

.nav.scrolled {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 6px 24px rgba(18, 46, 110, .07);
    padding: 12px 0;
}

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

.logo {
    font-family: "Ubuntu", sans-serif;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 300;
    color: var(--ink-900);
    letter-spacing: -.5px;
}

.logo .dot {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    box-shadow: var(--shadow-blue);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.logo b {
    font-weight: 700;
}

.logo .logo-img {
    width: 32px;
    height: 32px;
    margin-inline-end: 12px;
}

.nav-links {
    display: flex;
    gap: 34px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-700);
    position: relative;
    padding: 6px 0;
    transition: color .25s var(--ease);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: var(--blue-600);
    border-radius: 2px;
    transition: width .3s var(--ease);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--blue-600);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink-900);
    border-radius: 2px;
    transition: .3s var(--ease);
}

/* mobile drawer (native <dialog>) */
.drawer {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    position: fixed;
    inset: 0 0 0 auto;
    height: 100dvh;
    max-height: 100dvh;
    width: min(84vw, 330px);
    max-width: 100%;
    background: #fff;
    color: var(--ink-700);
    box-shadow: -24px 0 70px rgba(12, 26, 54, .22);
    transform: translateX(100%);
    transition: transform .42s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.drawer[open] {
    display: flex;
    flex-direction: column;
}

.drawer.show {
    transform: translateX(0);
}

.drawer::backdrop {
    background: rgba(8, 18, 40, .5);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .42s var(--ease);
}

.drawer.show::backdrop {
    opacity: 1;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
}

.drawer-close {
    font-size: 28px;
    line-height: 1;
    color: var(--ink-500);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    transition: .25s var(--ease);
}

.drawer-close:hover {
    background: var(--bg-soft);
    color: var(--ink-900);
    transform: rotate(90deg);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    padding: 6px 22px;
    flex: 1;
}

.drawer-links a {
    padding: 15px 2px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-700);
    border-bottom: 1px solid var(--line);
    transition: color .25s var(--ease), padding-left .25s var(--ease);
}

.drawer-links a:hover, .drawer-links a.active {
    color: var(--blue-600);
    padding-left: 8px;
}

.drawer-foot {
    padding: 18px 22px 26px;
}

body.drawer-open {
    overflow: hidden;
}

/* ---------- Section primitives ---------- */
section {
    position: relative;
}

.section {
    padding: 96px 0;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-600);
    background: var(--blue-50);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

h1, h2, h3, h4 {
    color: var(--ink-900);
    line-height: 1.2;
    font-weight: 800;
}

.section-title {
    font-size: clamp(28px, 3.4vw, 40px);
    letter-spacing: -.6px;
}
.tooto-brand{
    font-family: "Ubuntu", sans-serif;
    color: #000000;
}
.tooto-brand b{
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
}
.section-title .u {
    position: relative;
    color: var(--blue-600);
    font-weight: 800;
}
.section-title .u b{
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
}
.section-title .u u{
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    text-decoration: none;
}
.section-sub {
    margin-top: 16px;
    font-size: 17px;
    color: var(--ink-500);
}

/* ---------- Generic cards ---------- */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--blue-300);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    color: var(--blue-600);
    transition: transform .4s var(--ease);
}

.card:hover .card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.card-icon svg {
    width: 26px;
    height: 26px;
}

.card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14.5px;
    color: var(--ink-500);
}

/* feature list with checks */
.feat-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--ink-700);
    padding: 7px 0;
}

.feat-list li svg {
    flex: 0 0 18px;
    margin-top: 3px;
    color: var(--blue-600);
}

/* ---------- Hero (shared) ---------- */
.hero {
    position: relative;
    padding: 150px 0 90px;
    background: radial-gradient(900px 620px at 72% 40%, rgba(110, 155, 255, .22), transparent 62%),
    radial-gradient(680px 520px at 10% 16%, rgba(141, 180, 248, .16), transparent 56%),
    linear-gradient(180deg, #fcfdff 0%, #eef4ff 52%, var(--bg-soft) 100%);
    overflow: hidden;
}

/* fine light rays radiating from the artwork focal point */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: repeating-conic-gradient(from 0deg at 72% 44%,
    rgba(22, 86, 245, .07) 0deg .12deg, transparent .12deg 2.5deg);
    -webkit-mask-image: radial-gradient(60% 66% at 72% 44%, #000 5%, transparent 72%);
    mask-image: radial-gradient(60% 66% at 72% 44%, #000 5%, transparent 72%);
    opacity: .85;
}

/* concentric ground glow rings beneath the artwork */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-radial-gradient(ellipse 58% 40% at 72% 88%,
    transparent 0 28px, rgba(22, 86, 245, .06) 28px 29.6px, transparent 29.6px 58px);
    -webkit-mask-image: radial-gradient(48% 32% at 72% 88%, #000, transparent 72%);
    mask-image: radial-gradient(48% 32% at 72% 88%, #000, transparent 72%);
}

.hero .page-width {
    position: relative;
    z-index: 2;
}

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

.sol-hero-grid {
    grid-template-columns: .82fr 1.18fr;
}

.hero-title {
    font-size: clamp(40px, 5.4vw, 66px);
    letter-spacing: -1.5px;
    line-height: 1.08;
}

.hero-title .ai {
    color: var(--blue-600);
    position: relative;
}

.hero-sub {
    margin: 24px 0 32px;
    font-size: 18px;
    max-width: 520px;
    color: var(--ink-500);
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-700);
    font-weight: 500;
}

.hero-trust svg {
    color: var(--blue-600);
    width: 18px;
    height: 18px;
}

/* floating decoration blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
    z-index: 1;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

.reveal[data-d="1"] {
    transition-delay: .08s;
}

.reveal[data-d="2"] {
    transition-delay: .16s;
}

.reveal[data-d="3"] {
    transition-delay: .24s;
}

.reveal[data-d="4"] {
    transition-delay: .32s;
}

.reveal[data-d="5"] {
    transition-delay: .40s;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

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

/* ---------- Keyframes ---------- */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

@keyframes floatX {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-12px) translateX(8px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: .45;
    }
    50% {
        opacity: .8;
    }
}

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

@keyframes drawRing {
    from {
        stroke-dashoffset: 264;
    }
}

@keyframes barRise {
    from {
        transform: scaleY(0);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   HOME — hero workflow visual
   ========================================================= */
.hero-visual {
    position: relative;
    height: 480px;
}

.glass {
    position: absolute;
    background: linear-gradient(160deg, rgba(255, 255, 255, .9), rgba(244, 249, 255, .78));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 18px;
    box-shadow: 0 20px 46px rgba(18, 46, 110, .14);
}

/* glowing base under the artwork */
.viz-glow {
    position: absolute;
    bottom: -4px;
    right: 26px;
    width: 250px;
    height: 54px;
    z-index: 1;
    background: radial-gradient(50% 62% at 50% 50%, rgba(46, 107, 255, .55), transparent 70%);
    filter: blur(10px);
    animation: pulseGlow 4s var(--ease) infinite;
}

/* AI workflow panel */
.viz-flow {
    top: 24px;
    left: 0;
    width: 332px;
    padding: 18px 14px 18px;
    z-index: 3;
}

.viz-flow .tag {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 14px;
}

.flow-nodes {
    display: flex;
    align-items: center;
    gap: 3px;
}

.fnode {
    flex: 1;
    text-align: center;
    font-size: 9.5px;
    font-weight: 600;
    color: var(--ink-500);
}

.fnode .ic {
    width: 36px;
    height: 36px;
    margin: 0 auto 6px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink-700);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease);
}

.fnode .ic svg {
    width: 17px;
    height: 17px;
}

.fnode.hot {
    color: var(--blue-600);
    font-weight: 700;
}

.fnode.hot .ic {
    background: linear-gradient(150deg, var(--blue-500), var(--blue-700));
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-blue);
    transform: scale(1.14);
}

.flow-line {
    flex: 0 0 7px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--blue-300) 0 3px, transparent 3px 6px);
}

/* Agent panel */
.viz-agent {
    top: 8px;
    right: 0;
    width: 222px;
    padding: 16px;
    z-index: 4;
    animation: float 6s var(--ease) infinite;
}

.viz-agent .ttl {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 12px;
}

.agent-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
}

.agent-row .av {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    flex: 0 0 26px;
}

.agent-row .av svg {
    width: 14px;
    height: 14px;
}

.agent-row .nm {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-700);
}

.agent-row .st {
    font-size: 9px;
    font-weight: 600;
    color: #16a34a;
    background: rgba(34, 197, 94, .12);
    padding: 2px 7px 2px 6px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.agent-row .st::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #16a34a;
}

.agent-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--blue-600);
    padding-top: 9px;
    margin-top: 5px;
    border-top: 1px solid var(--line);
}

/* knowledge base */
.viz-kb {
    bottom: 20px;
    left: 0;
    width: 200px;
    padding: 16px;
    z-index: 3;
    animation: floatX 7s var(--ease) infinite;
}

.viz-kb .ttl {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-900);
    margin-bottom: 12px;
}

.viz-kb .ttl svg {
    width: 15px;
    height: 15px;
    color: var(--blue-600);
}

.viz-kb .lbl {
    font-size: 10.5px;
    color: var(--ink-400);
    margin-bottom: 2px;
}

.viz-kb .num {
    font-size: 24px;
    font-weight: 800;
    color: var(--ink-900);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.viz-kb .num small {
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
}

.viz-kb .spark {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 32px;
    margin-top: 10px;
}

.viz-kb .spark i {
    flex: 1;
    background: linear-gradient(180deg, #4f86ff, var(--blue-300));
    border-radius: 2px;
    transform-origin: bottom;
    animation: barRise .9s var(--ease) both;
}

/* dark business dashboard */
.viz-board {
    bottom: 6px;
    right: 6px;
    width: 276px;
    padding: 18px;
    z-index: 4;
    background: linear-gradient(155deg, #18294a, #0a1730);
    border: 1px solid rgba(120, 150, 210, .22);
    box-shadow: 0 28px 64px rgba(8, 20, 50, .42);
    animation: float 7.5s var(--ease) .5s infinite;
}

.viz-board .ttl {
    font-size: 12.5px;
    color: #aebbd6;
    margin-bottom: 16px;
    font-weight: 600;
}

.board-stats {
    display: flex;
    gap: 12px;
}

.bstat {
    flex: 1;
}

.bstat .l {
    font-size: 9.5px;
    color: #8294b8;
    margin-bottom: 5px;
}

.bstat .v {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.3px;
}

.bstat .mini {
    height: 26px;
    margin-top: 9px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.bstat .mini i {
    flex: 1;
    border-radius: 2px;
    background: linear-gradient(180deg, #5b8bff, #2e6bff);
    transform-origin: bottom;
    animation: barRise 1s var(--ease) both;
}

.board-line {
    width: 100%;
    height: 26px;
    margin-top: 9px;
    overflow: visible;
}

.board-line path {
    fill: none;
    stroke: #5b8bff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawLine 1.4s var(--ease) .3s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.board-ring {
    width: 42px;
    height: 42px;
    margin-top: 2px;
}

.board-ring circle {
    fill: none;
    stroke-width: 9;
}

.board-ring .bg {
    stroke: rgba(255, 255, 255, .13);
}

.board-ring .fg {
    stroke: #2e6bff;
    stroke-linecap: round;
    stroke-dasharray: 214;
    animation: drawRing2 1.6s var(--ease) forwards;
}

@keyframes drawRing2 {
    from {
        stroke-dashoffset: 214;
    }
    to {
        stroke-dashoffset: 4;
    }
}

/* =========================================================
   Problem cards row
   ========================================================= */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

/* service module cards w/ isometric-ish icon */
.svc-card {
    text-align: left;
}

.svc-ic {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #fff, var(--blue-50));
    border: 1px solid var(--line);
    color: var(--blue-600);
    box-shadow: 0 10px 24px rgba(22, 86, 245, .12);
    transition: transform .4s var(--ease);
}

.svc-card:hover .svc-ic {
    transform: translateY(-6px) rotate(6deg);
}

/* why-choose mini */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    text-align: center;
    padding: 28px 18px;
    border-radius: var(--radius);
    transition: background .35s var(--ease);
}

.why-item:hover {
    background: var(--bg-soft);
}

.why-ic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
    box-shadow: var(--shadow-blue);
}

.why-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 14px;
}

/* band cta */
.band {
    background: linear-gradient(180deg, #fff, var(--bg-soft));
}

/* =========================================================
   SOLUTIONS — glass layered pyramid
   ========================================================= */
.sol-art {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 6px;
    min-height: 440px;
}

.pyramid {
    position: relative;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pyr {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -18px;
}

.layer .slab {
    display: block;
    height: 62px;
    border-radius: 18px;
    transform: perspective(700px) rotateX(55deg);
    background: linear-gradient(180deg, rgba(150, 186, 255, .5), rgba(223, 234, 255, .24));
    border: 1px solid rgba(255, 255, 255, .85);
    box-shadow: 0 26px 34px rgba(46, 107, 255, .16), inset 0 2px 0 rgba(255, 255, 255, .9);
    backdrop-filter: blur(3px);
}

.layer.la .slab {
    width: 120px;
}

.layer.lb .slab {
    width: 192px;
}

.layer.lc .slab {
    width: 262px;
}

.layer.ld .slab {
    width: 332px;
}

.layer .cube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -82%);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(150deg, #4f86ff, var(--blue-700));
    box-shadow: var(--shadow-blue), inset 0 1px 2px rgba(255, 255, 255, .4);
    animation: float 5s var(--ease) infinite;
}

.layer.lb .cube {
    animation-delay: .3s;
}

.layer.lc .cube {
    animation-delay: .6s;
}

.layer.ld .cube {
    animation-delay: .9s;
}

.layer .cube svg {
    width: 25px;
    height: 25px;
}

.pyr-glow {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 96px;
    z-index: -1;
    background: repeating-radial-gradient(ellipse 50% 50% at 50% 50%, transparent 0 15px, rgba(46, 107, 255, .13) 15px 16.5px, transparent 16.5px 32px);
    -webkit-mask-image: radial-gradient(50% 60% at 50% 50%, #000, transparent 72%);
    mask-image: radial-gradient(50% 60% at 50% 50%, #000, transparent 72%);
}

/* right-side numbered steps */
.pyr-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pyr-step {
    position: relative;
    padding-left: 20px;
}

.pyr-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(46, 107, 255, .15);
}

.pyr-step .pn {
    font-size: 13px;
    font-weight: 800;
    color: var(--blue-300);
}

.pyr-step h4 {
    font-size: 16px;
    color: var(--ink-900);
    margin: 1px 0 4px;
}

.pyr-step p {
    font-size: 12.5px;
    color: var(--ink-500);
    line-height: 1.55;
}

/* steps list right of pyramid / generic numbered list */
.steplist {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.step-row {
    display: flex;
    gap: 18px;
}

.step-row .no {
    font-size: 26px;
    font-weight: 800;
    color: var(--blue-300);
    flex: 0 0 auto;
    line-height: 1;
}

.step-row h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.step-row p {
    font-size: 14px;
}

/* horizontal process with connector */
.process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.process::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--blue-300) 0 6px, transparent 6px 12px);
    z-index: 0;
}

.pstep {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pstep .pic {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid var(--blue-100);
    color: var(--blue-600);
    box-shadow: var(--shadow-sm);
    transition: .35s var(--ease);
}

.pstep:hover .pic {
    background: var(--blue-600);
    color: #fff;
    border-color: var(--blue-600);
    transform: translateY(-5px);
}

.pstep .pno {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 6px;
}

.pstep h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.pstep p {
    font-size: 13px;
}

/* industry image cards */
.ind-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: #fff;
    isolation: isolate;
}

.ind-card .ph {
    position: absolute;
    inset: 0;
    z-index: -2;
    transition: transform .6s var(--ease);
}

.ind-card:hover .ph {
    transform: scale(1.08);
}

.ind-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(2, 12, 33, .15), rgba(2, 12, 33, .85));
}

.ind-card .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    margin-bottom: 14px;
}

.ind-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.ind-card p {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    margin-bottom: 16px;
}

.ind-card .lnk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.ind-card .lnk .arrow {
    transition: transform .3s var(--ease);
}

.ind-card:hover .lnk .arrow {
    transform: translateX(5px);
}

.ph-1 {
    background: linear-gradient(135deg, #1b3a6b, #0c1f44);
}

.ph-2 {
    background: linear-gradient(135deg, #2a4d7a, #14315c);
}

.ph-3 {
    background: linear-gradient(135deg, #234a72, #102b50);
}

/* =========================================================
   PRICING
   ========================================================= */
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--blue-300);
}

.price-card.featured {
    border: 1.5px solid var(--blue-500);
    box-shadow: 0 24px 60px rgba(22, 86, 245, .22);
    background: linear-gradient(180deg, #fbfdff, #fff);
}

.price-card.featured::before {
    content: "推荐";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 100px;
    box-shadow: var(--shadow-blue);
}

.price-ic {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    color: var(--blue-600);
}

.price-card.featured .price-ic {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: #fff;
}

.price-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink-900);
}

.price-tagline {
    font-size: 13px;
    color: var(--ink-400);
    margin: 6px 0 18px;
    min-height: 36px;
}

.price-amt {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-600);
    letter-spacing: -.5px;
}

.price-amt small {
    font-size: 14px;
    color: var(--ink-400);
    font-weight: 600;
}

.price-card .feat-list {
    margin: 22px 0 26px;
    flex: 1;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.price-card .btn {
    margin-top: auto;
}

/* form */
.form-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.form-aside {
    background: linear-gradient(160deg, var(--blue-600), var(--blue-700));
    color: #fff;
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
}

.form-aside::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    bottom: -80px;
    right: -60px;
}

.form-aside h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 14px;
}

.form-aside > p {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    margin-bottom: 30px;
}

.form-aside .ci {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.form-aside .ci .ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .14);
    flex: 0 0 42px;
}

.form-aside .ci .lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
}

.form-aside .ci .val {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.form-body {
    background: #fff;
    padding: 44px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: 8px;
}

.field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink-900);
    background: var(--bg-soft);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}

.field textarea {
    resize: vertical;
    min-height: 96px;
}

.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(46, 107, 255, .12);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--ink-500);
    margin: 4px 0 22px;
}

.form-check a {
    color: var(--blue-600);
    font-weight: 600;
}

/* AI cube (pricing hero) — isometric 3D */
.cube-wrap {
    position: relative;
    height: 440px;
    display: grid;
    place-items: center;
    perspective: 1200px;
}

.cube-scene {
    position: absolute;
    left: 50%;
    top: 44%;
    z-index: 2;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) rotateX(-24deg) rotateY(-36deg);
    animation: cubeFloat 7s var(--ease) infinite;
}

@keyframes cubeFloat {
    0%, 100% {
        transform: translate(-50%, -50%) rotateX(-24deg) rotateY(-36deg) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) rotateX(-24deg) rotateY(-36deg) translateY(-12px);
    }
}

/* the AI cube (3 visible faces) */
.c3d {
    position: absolute;
    left: 0;
    top: 0;
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
    transform-style: preserve-3d;
    transform: translateY(-52px);
}

.c3d .f {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 20px;
}

.c3d .front {
    transform: translateZ(70px);
    background: linear-gradient(155deg, #5b8bff, #1641c9);
    display: grid;
    place-items: center;
    color: #fff;
    font: 800 52px/1 "Inter", sans-serif;
    letter-spacing: 1px;
    box-shadow: inset 0 3px 16px rgba(255, 255, 255, .45);
    overflow: hidden;
}

.c3d .top {
    transform: rotateX(90deg) translateZ(70px);
    background: linear-gradient(155deg, #a6c4ff, #5b8bff);
}

.c3d .right {
    transform: rotateY(90deg) translateZ(70px);
    background: linear-gradient(155deg, #1846cf, #0a2f93);
}

.c3d .front::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, .45) 50%, transparent 60%);
    background-size: 250% 100%;
    animation: shine 4.5s linear infinite;
}

@keyframes shine {
    to {
        background-position: -250% 0;
    }
}

/* pedestal tiers (3D boxes) */
.ped {
    position: absolute;
    left: 0;
    top: 0;
    transform-style: preserve-3d;
}

.ped i {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
}

.ped1 {
    transform: translateY(34px);
}

.ped2 {
    transform: translateY(60px);
}

.ped1 .pt {
    width: 170px;
    height: 170px;
    margin: -85px;
    border-radius: 14px;
    transform: rotateX(90deg) translateZ(13px);
    background: linear-gradient(135deg, #ffffff, #e8f0ff);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8);
}

.ped1 .pf {
    width: 170px;
    height: 26px;
    margin: -13px -85px;
    transform: translateZ(85px);
    background: linear-gradient(180deg, #dde8ff, #c3d5ff);
    box-shadow: 0 -1px 0 rgba(46, 107, 255, .45);
}

.ped1 .pr {
    width: 170px;
    height: 26px;
    margin: -13px -85px;
    transform: rotateY(90deg) translateZ(85px);
    background: linear-gradient(180deg, #caddff, #a7c4f2);
    box-shadow: 0 -1px 0 rgba(46, 107, 255, .45);
}

.ped2 .pt {
    width: 220px;
    height: 220px;
    margin: -110px;
    border-radius: 16px;
    transform: rotateX(90deg) translateZ(14px);
    background: linear-gradient(135deg, #f4f8ff, #dde9ff);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.ped2 .pf {
    width: 220px;
    height: 28px;
    margin: -14px -110px;
    transform: translateZ(110px);
    background: linear-gradient(180deg, #cfddff, #aec6f5);
    box-shadow: 0 -1px 0 rgba(46, 107, 255, .4);
}

.ped2 .pr {
    width: 220px;
    height: 28px;
    margin: -14px -110px;
    transform: rotateY(90deg) translateZ(110px);
    background: linear-gradient(180deg, #bcd2ff, #93b4ea);
    box-shadow: 0 -1px 0 rgba(46, 107, 255, .4);
}

/* floating glass info cards */
.cube-card {
    position: absolute;
    z-index: 5;
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: var(--shadow);
    font-weight: 700;
    color: var(--ink-900);
}

.cube-card .s {
    font-size: 10.5px;
    color: var(--ink-400);
    font-weight: 600;
    margin-bottom: 7px;
}

.cc-1 {
    top: 64px;
    left: 6px;
    animation: floatX 7s var(--ease) infinite;
}

.cc-2 {
    top: 150px;
    right: 0;
    animation: float 6.5s var(--ease) .4s infinite;
}

.minibars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 26px;
}

.minibars i {
    width: 7px;
    background: linear-gradient(180deg, var(--blue-500), var(--blue-300));
    border-radius: 2px;
}

.cardline {
    width: 100px;
    height: 30px;
    display: block;
}

.cardline path {
    fill: none;
    stroke: var(--blue-500);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ghost cubes + ground glow */
.ghost {
    position: absolute;
    z-index: 1;
    border-radius: 9px;
    background: rgba(173, 201, 255, .32);
    border: 1px solid rgba(255, 255, 255, .6);
    backdrop-filter: blur(2px);
}

.cube-glow {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: 370px;
    height: 92px;
    z-index: 0;
    background: repeating-radial-gradient(ellipse 50% 50% at 50% 50%, transparent 0 15px, rgba(46, 107, 255, .14) 15px 16.5px, transparent 16.5px 32px);
    -webkit-mask-image: radial-gradient(50% 60% at 50% 50%, #000, transparent 72%);
    mask-image: radial-gradient(50% 60% at 50% 50%, #000, transparent 72%);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .grid-4, .why-grid, .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process::before {
        display: none;
    }
}

@media (max-width: 880px) {
    .nav-links, .nav-cta .btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual, .pyramid, .cube-wrap {
        height: 380px;
    }

    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }

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

    .sol-hero-grid {
        grid-template-columns: 1fr !important;
    }

    .sol-art {
        grid-template-columns: 1fr;
        gap: 8px;
        min-height: auto;
    }

    .pyramid {
        transform: scale(.86);
    }

    .pyr-steps {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 64px 0;
    }

    .grid-4, .why-grid, .price-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .hero-visual {
        transform: scale(.84);
        transform-origin: top center;
        height: 420px;
    }

    .pyramid {
        transform: scale(.74);
        height: 320px;
    }

    .cube-wrap {
        transform: scale(.82);
    }
}


.site-footer {
    width: 100%;
    background: #ffffff;
}

.site-footer__surface {
    position: relative;
    overflow: hidden;
    padding: 112px 0 96px;
    color: #ffffff;
    background-image: linear-gradient(337deg, #010535 54%, #1B28D6 88%, #82B5FD 122%);
    background-position: bottom;
}

.site-footer--connected-background {
    margin-top: -1px;
    background: #000542;
}

.site-footer--connected-background .site-footer__surface {
    padding-top: 0;
    background: #000542;
}

.site-footer--with-testimonials .site-footer__surface {
    padding-top: 100px;
}

.site-footer__wheel {
    position: absolute;
    right: 72px;
    top: 78px;
    z-index: 1;
    width: 112px;
    height: 112px;
    opacity: 0.78;
    pointer-events: none;
}

.site-footer__wheel-ring,
.site-footer__wheel-core {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    user-select: none;
}

.site-footer__wheel-core {
    width: 26px;
    height: 26px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.site-footer__wheel-ring {
    animation: footer-wheel-spin 22s linear infinite;
    transform-origin: 50% 50%;
}

.site-footer__cta-wrap {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.site-footer--with-testimonials .site-footer__cta-wrap {
    margin-top: 100px;
}

.site-footer__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 430px;
    padding: 78px 32px 72px;
    border-radius: 56px;
    background: linear-gradient(250deg, #4E71FD 36.91%, #000542 165.21%);
    text-align: center;
}

.site-footer__cta-eyebrow {
    margin: 0;
    color: #00ffc8;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.site-footer__cta-title {
    max-width: 940px;
    margin: 14px 0 0;
    color: #ffffff;
    font-size: clamp(48px, 5.2vw, 64px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.04em;
}

.site-footer__cta-copy {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.33;
}

.site-footer__cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 50px;
    margin-top: 30px;
    padding: 11px 62px 11px 40px;
    border-radius: 56px;
    color: #ffffff;
    background: linear-gradient(178deg, #23e79e 33.86%, #21dc97 68.53%, #1eca8b 159.79%);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition:
            transform 180ms ease,
            box-shadow 180ms ease;
}

.site-footer__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 255, 200, 0.16);
}

.site-footer__cta-arrow {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #111111;
    background: #ffffff;
}

.site-footer__links {
    position: relative;
    z-index: 2;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 24px;
}
.site-footer__brand span{
    font-size: 52px;
}
.site-footer__brand span b {
    font-weight: 700;
}
.site-footer__logo {
    display: block;
    height: 72px;
    width: auto;
    margin-inline-end: 12px;
}

.site-footer__divider {
    display: none;
    height: 1px;
    margin: 62px 0 52px;
    background: rgba(255, 255, 255, 0.2);
}

.site-footer__content {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 136px;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

.site-footer__contact p {
    margin: 0;
}

.site-footer__socials {
    display: flex;
    gap: 20px;
    margin-top: 48px;
}

.site-footer__social {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    text-decoration: none;
    transition:
            transform 180ms ease,
            box-shadow 180ms ease;
}

.site-footer__social--button {
    padding: 0;
    border: none;
    cursor: pointer;
    appearance: none;
}

.site-footer__social:hover,
.site-footer__social--button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.site-footer__social:focus-visible,
.site-footer__social--button:focus-visible {
    outline: 2px solid rgba(0, 255, 200, 0.9);
    outline-offset: 3px;
}

.site-footer__social img {
    width: 28px;
    height: 20px;
    object-fit: contain;
    @media (max-width: 768px) {
        width: 20px;
        height: 14px;
    }
}

.site-footer__nav {
    display: grid;
    /*grid-template-columns: minmax(180px, 0.9fr) minmax(200px, 1.45fr) minmax(180px, 0.55fr);*/
    grid-template-columns: 1fr 1fr 1fr;
    gap: 68px;
    align-items: start;
}

.site-footer__nav-group {
    min-width: 0;
}

.site-footer__nav h3 {
    margin: 0 0 26px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.site-footer__nav-link-list {
    display: grid;
    gap: 14px;
}

.site-footer__nav-link-list--split {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 38px;
    row-gap: 14px;
}

.site-footer__nav-link {
    position: relative;
    display: flex;
    max-width: max-content;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.48;
    text-decoration: none;
    transition:
            color 180ms ease,
            transform 180ms ease,
            text-shadow 180ms ease;
}

.site-footer__nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 180ms ease;
}

.site-footer__nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(0, 255, 200, 0.2);
}

.site-footer__nav-link:focus-visible {
    outline: none;
    color: #ffffff;
    text-shadow: 0 0 18px rgba(0, 255, 200, 0.2);
}

.site-footer__nav-link:hover::after {
    transform: scaleX(1);
}

.site-footer__nav-link:focus-visible::after {
    transform: scaleX(1);
}

.site-footer__nav-link + .site-footer__nav-link {
    /* margin-top: 14px; */
}

.site-footer__copyright {
    position: relative;
    z-index: 2;
    margin: 72px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.site-footer__map {
    position: absolute;
    left: 2%;
    right: 2%;
    bottom: -54px;
    z-index: 1;
    height: 360px;
    background-position: center bottom;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    background-size: cover;
    opacity: 1;
    pointer-events: none;
    will-change: transform;
    mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.88) 20%, rgba(0, 0, 0, 0.95) 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.88) 20%, rgba(0, 0, 0, 0.95) 82%, transparent 100%);
}

@keyframes footer-wheel-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1120px) {
    .site-footer__surface {
        padding: 92px 0 78px;
    }

    .site-footer__cta {
        min-height: 360px;
        padding: 60px 28px 58px;
    }

    .site-footer__content {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .site-footer__nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 64px;
    }

    .site-footer__nav-group--products {
        grid-column: 1 / -1;
    }

    .site-footer__nav-link-list--split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-footer {
    }

    .site-footer--connected-background {
        padding: 0;
    }

    .site-footer__surface {
        min-height: auto;
        padding: 24px 0;
    }

    .site-footer--connected-background .site-footer__surface {
        padding: 0 0 58px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .site-footer--with-testimonials .site-footer__surface {
        min-height: auto;
        padding-top: 64px;
    }

    .site-footer__wheel {
        right: 18px;
        top: 24px;
        width: 78px;
        height: 78px;
        opacity: 0.42;
    }

    .site-footer--with-testimonials .site-footer__cta-wrap {
        margin-top: 28px;
    }

    .site-footer__cta {
        min-height: auto;
        padding: 48px 20px 50px;
        border-radius: 28px;
    }

    .site-footer__cta-title {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1.18;
    }

    .site-footer__desktop-break {
        display: none;
    }

    .site-footer__cta-copy {
        font-size: 17px;
    }

    .site-footer__links {
        /*margin-top: 78px;*/
    }

    .site-footer__logo {
        height: 54px;
    }

    .site-footer__divider {
        margin: 42px 0 38px;
    }

    .site-footer__contact {
        font-size: 14px;
    }

    .site-footer__socials {
        margin-top: 42px;
        gap: 14px;
    }

    .site-footer__social {
        width: 32px;
        height: 32px;
    }

    .site-footer__nav-group--solutions {
        grid-column: 1;
        grid-row: 1;
    }

    .site-footer__nav-group--products {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .site-footer__nav-group--about {
        grid-column: 1;
        grid-row: 2;
    }

    .site-footer__nav {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .site-footer__nav-link-list--split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 12px;
    }

    .site-footer__copyright {
        margin-top: 86px;
    }

    .site-footer__map {
        left: -18%;
        right: -18%;
        bottom: -42px;
        height: 250px;
    }
}

@media (max-width: 640px) {
    .site-footer__cta-wrap.page-width,
    .site-footer__links.page-width {
        /*width: min(calc(100% - 40px), 1440px);*/
    }

    .testimonials-section {
        padding: 0;
    }

    .site-footer__wheel {
        width: 64px;
        height: 64px;
    }

    .site-footer--with-testimonials .site-footer__cta-wrap {
        margin-top: 42px;
    }

    .site-footer__cta {
        padding: 38px 18px 40px;
        border-radius: 28px;
    }

    .site-footer__cta-eyebrow {
        font-size: 13px;
    }

    .site-footer__cta-title {
        margin-top: 6px;
        font-size: 24px;
        line-height: 1.12;
        letter-spacing: 0.01em;
    }

    .site-footer__cta-copy {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.55;
    }

    .site-footer__cta-button {
        min-width: auto;
        min-height: 44px;
        margin-top: 22px;
        padding: 10px 58px 10px 20px;
        font-size: 14px;
    }

    .site-footer__cta-arrow {
        width: 44px;
        height: 44px;
    }

    .site-footer__links {
        /*margin-top: 64px;*/
    }

    .site-footer__logo {
        height: 32px;
    }

    .site-footer__divider {
        margin: 30px 0 26px;
    }

    .site-footer__content {
        gap: 36px;
    }

    .site-footer__contact {
        gap: 6px;
        font-size: 13px;
        line-height: 1.6;
    }

    .site-footer__socials {
        margin-top: 26px;
    }

    .site-footer__nav {
        gap: 24px;
    }

    .site-footer__nav-link-list--split {
        grid-template-columns: 1fr;
    }

    .site-footer__nav h3 {
        margin-bottom: 18px;
        font-size: 17px;
    }

    .site-footer__nav-link {
        font-size: 13px;
    }

    .site-footer__nav-link + .site-footer__nav-link {
        /* margin-top: 10px; */
    }

    .site-footer__copyright {
        margin-top: 54px;
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .site-footer__map {
        left: -24%;
        right: -24%;
        bottom: -28px;
        height: 210px;
        opacity: 1;
    }
}
.page-width {
    --section-gutter: 20px;
    --section-content-max: 1280px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(var(--section-gutter, 20px), 1fr) minmax(0, var(--section-content-max, 1200px)) minmax(var(--section-gutter, 20px), 1fr);
}

.page-width > * {
    grid-column: 2;
}


@media (max-width: 768px) {
    .form-aside{
        padding: 20px;
        padding-top: 42px;
    }
    .form-body{
        padding: 20px;
    }
    .site-footer__brand span{
        font-size: 26px;
    }
}
