:root {
    --navy: #244855;
    --navy-soft: #3a6570;
    --ink: #874f41;
    --blue-heading: #fbe9d0;
    --accent-pink: #e64833;
    --mint-bg: #fbe9d0;
    --mint-card: #90aead;
    --blue-panel: #d8e4df;
    --green: #e64833;
    --green-deep: #874f41;
    --white: #ffffff;
    --muted: #6f7f80;
    --stroke: #d8cec0;
    --shadow: 0 24px 60px rgba(36, 72, 85, 0.16);
    --glass-white: rgba(255, 255, 255, 0.18);
    --glass-strong: rgba(255, 255, 255, 0.72);
    --glass-soft: rgba(251, 233, 208, 0.2);
    --glass-line: rgba(255, 255, 255, 0.28);
    --glass-blur: blur(18px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--ink);
    background: #fff;
}

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

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

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 6px;
    border: 2px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(251, 233, 208, 0.08));
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.button-outline-light {
    border-color: rgba(251, 233, 208, 0.85);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.button-solid {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(251, 233, 208, 0.1));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    color: var(--white);
}

.button-green {
    background: var(--green);
    color: #fff7f0;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 20px 0 146px;
    background: var(--navy);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 20;
    flex-wrap: wrap;
}

.brand {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-panel {
    display: contents;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

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

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

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

.nav-item {
    position: relative;
}

.nav-item.has-mega-dropdown {
    position: static;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.98rem;
    font-weight: 500;
}

.nav-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-item.has-dropdown:hover > .nav-link,
.nav-item.has-dropdown.open > .nav-link,
.nav-item.has-dropdown:focus-within > .nav-link {
    color: var(--accent-pink);
}

.caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.nav-item.open .caret,
.nav-item:focus-within .caret,
.nav-item.has-dropdown:hover .caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-item.has-mega-dropdown > .nav-dropdown {
    left: 0;
    right: 0;
    transform: translateY(12px);
}

.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown.open > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-item.has-mega-dropdown:hover > .nav-dropdown,
.nav-item.has-mega-dropdown.open > .nav-dropdown,
.nav-item.has-mega-dropdown:focus-within > .nav-dropdown {
    transform: translateY(0);
}

.nav-dropdown-mega {
    width: 100%;
    max-width: 100%;
}

.nav-dropdown-list {
    width: 360px;
}

.mega-menu,
.dropdown-card-list {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
    box-shadow: 0 28px 80px rgba(3, 9, 39, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.36);
    backdrop-filter: var(--glass-blur);
}

.mega-menu {
    display: grid;
    grid-template-columns: 1.08fr 1.08fr 1.2fr;
    overflow: hidden;
}

.mega-column {
    min-height: 530px;
    padding: 34px 38px 30px;
}

.mega-column + .mega-column {
    border-left: 1px solid rgba(12, 20, 62, 0.06);
}

.mega-column-featured {
    position: relative;
    background: linear-gradient(180deg, rgba(144, 174, 173, 0.2) 0%, rgba(255, 255, 255, 0.32) 100%);
}

.mega-column h3 {
    margin: 0 0 24px;
    color: #12205b;
    font-size: 1rem;
    font-weight: 700;
}

.dropdown-card-list {
    display: grid;
    gap: 6px;
    padding: 30px;
}

.dropdown-list {
    display: grid;
    gap: 18px;
}

.dropdown-link {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 16px;
    color: #14245e;
    font-size: 1.05rem;
    font-weight: 500;
    min-width: 0;
}

.dropdown-link:hover {
    color: var(--accent-pink);
}

.dropdown-link-featured {
    padding-right: 8px;
}

.dropdown-label {
    line-height: 1.15;
    min-width: 0;
}

.dropdown-icon,
.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(216, 228, 223, 0.56));
    color: #132148;
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.dropdown-icon svg,
.dropdown-arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dropdown-arrow {
    color: #182460;
}

.bear-illustration {
    position: absolute;
    right: 22px;
    bottom: 8px;
    width: 220px;
    height: 180px;
}

.bear-body,
.bear-face,
.bear-ear,
.bear-eye,
.bear-snout,
.bear-paw,
.bear-grass {
    position: absolute;
}

.bear-body {
    right: 34px;
    bottom: 10px;
    width: 100px;
    height: 118px;
    border-radius: 48px 48px 38px 38px;
    background: #4c4b74;
}

.bear-face {
    right: 46px;
    top: 28px;
    width: 76px;
    height: 70px;
    border-radius: 50%;
    background: #5d5a8c;
}

.bear-ear {
    top: 20px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #4a466d;
}

.bear-ear-left { right: 100px; }
.bear-ear-right { right: 48px; }

.bear-eye {
    top: 58px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
}

.bear-eye-left { right: 92px; }
.bear-eye-right { right: 68px; }

.bear-snout {
    right: 64px;
    top: 70px;
    width: 36px;
    height: 24px;
    border-radius: 999px;
    background: #f2edf6;
}

.bear-snout::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a2447;
}

.bear-paw {
    left: 72px;
    top: 76px;
    width: 28px;
    height: 48px;
    border-radius: 20px;
    background: #4f4c77;
    transform: rotate(28deg);
}

.bear-paw::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f2edf6;
}

.bear-grass {
    bottom: 0;
    width: 94px;
    height: 56px;
    border-radius: 60% 60% 0 0;
    background: #6abd45;
}

.bear-grass-left { left: 0; }
.bear-grass-right { right: 0; width: 120px; background: #79c74c; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
    align-items: center;
    padding-top: 72px;
}

.eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid var(--accent-pink);
    border-radius: 8px;
    color: var(--blue-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-copy h1 {
    margin: 22px 0 20px;
    color: var(--blue-heading);
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-copy h1 span {
    color: var(--accent-pink);
}

.hero-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

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

.dashboard-card {
    position: absolute;
    right: 26px;
    top: 88px;
    display: grid;
    grid-template-columns: 92px 1fr;
    width: min(100%, 560px);
    min-height: 320px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.62));
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: var(--glass-blur);
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 16px;
    background: linear-gradient(180deg, #fbfbfd, #f4f7fb);
}

.dash-logo {
    font-size: 0.76rem;
    font-weight: 700;
    color: #4d5179;
}

.dash-line {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: #e1e7f0;
}

.dash-line.active {
    width: 72%;
    background: #2858bf;
}

.dashboard-content {
    padding: 14px;
    background: linear-gradient(180deg, #f9fbff, #eef5fd);
}

.dashboard-banner {
    height: 42px;
    border-radius: 9px;
    background: linear-gradient(90deg, #2250b8 0%, #2e73db 60%, #58bb34 100%);
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.mini-cards span {
    height: 54px;
    border-radius: 8px;
    background: #fff;
    box-shadow: inset 0 0 0 1px #e6edf8;
}

.chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 108px;
    margin-top: 16px;
    padding: 18px 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 0 0 1px #e6edf8;
}

.bar {
    width: 20px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, #f0ca43, #275fdf);
}

.h1 { height: 32px; }
.h2 { height: 54px; }
.h3 { height: 70px; }
.h4 { height: 45px; }
.h5 { height: 82px; }
.h6 { height: 64px; }
.h7 { height: 88px; }
.h8 { height: 58px; }

.dashboard-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.table-lines {
    height: 74px;
    border-radius: 10px;
    background:
        linear-gradient(#cbd8ec, #cbd8ec) 12px 18px / calc(100% - 24px) 2px no-repeat,
        linear-gradient(#dfe7f4, #dfe7f4) 12px 32px / calc(100% - 24px) 2px no-repeat,
        linear-gradient(#dfe7f4, #dfe7f4) 12px 46px / calc(100% - 24px) 2px no-repeat,
        linear-gradient(#dfe7f4, #dfe7f4) 12px 60px / calc(100% - 24px) 2px no-repeat,
        #fff;
    box-shadow: inset 0 0 0 1px #e6edf8;
}

.hero-hills {
    position: absolute;
    inset: auto 0 0;
    height: 190px;
    pointer-events: none;
}

.hill {
    position: absolute;
    bottom: -14px;
    border-radius: 50% 50% 0 0;
    background: #10b286;
}

.hill-left {
    right: 180px;
    width: 290px;
    height: 96px;
    background: #16ab7f;
}

.hill-right {
    right: -40px;
    width: 370px;
    height: 150px;
    background: #07a880;
}

.leaf {
    position: absolute;
    bottom: 14px;
    width: 90px;
    height: 22px;
    border-radius: 999px 999px 0 999px;
    background: #0a5967;
    transform-origin: right center;
}

.leaf-a { right: 72px; transform: rotate(-58deg); }
.leaf-b { right: 120px; transform: rotate(-22deg); }
.leaf-c { right: 22px; transform: rotate(-72deg); }

.fox {
    position: absolute;
}

.fox-floating {
    right: 340px;
    top: 18px;
    width: 170px;
    height: 130px;
    transform: rotate(8deg);
    animation: drift 4s ease-in-out infinite;
}

.fox-sitting {
    position: relative;
    width: 160px;
    height: 170px;
    margin: 0 auto;
}

.fox-body,
.fox-head,
.fox-tail,
.fox-ear,
.fox-leg,
.fox-paw {
    position: absolute;
}

.fox-body {
    left: 44px;
    bottom: 16px;
    width: 62px;
    height: 88px;
    background: #f47a36;
    border-radius: 45px 45px 34px 34px;
}

.fox-body::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 24px;
    width: 30px;
    height: 44px;
    background: #fff5ee;
    border-radius: 18px;
}

.fox-head {
    left: 78px;
    top: 18px;
    width: 64px;
    height: 52px;
    background: #ff8b46;
    border-radius: 42px 42px 34px 34px;
}

.fox-head::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 22px;
    width: 30px;
    height: 18px;
    background: #fff3e3;
    border-radius: 0 14px 14px 10px;
    transform: skewX(-16deg);
}

.fox-head::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 26px;
    width: 12px;
    height: 12px;
    background: #4b2d2f;
    border-radius: 50% 40% 60% 50%;
}

.fox-tail {
    left: 8px;
    top: 22px;
    width: 76px;
    height: 34px;
    background: #ff8a42;
    border-radius: 999px;
    transform: rotate(-40deg);
}

.fox-tail::before {
    content: "";
    position: absolute;
    left: 2px;
    top: -3px;
    width: 26px;
    height: 28px;
    background: #fff3d8;
    border-radius: 999px 999px 999px 10px;
}

.fox-ear {
    width: 18px;
    height: 22px;
    background: #572124;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.fox-ear-left { left: 87px; top: 6px; }
.fox-ear-right { left: 116px; top: 4px; }

.fox-leg {
    width: 18px;
    height: 34px;
    background: #532425;
    border-radius: 999px;
    bottom: 44px;
}

.fox-leg-left { left: 46px; transform: rotate(24deg); }
.fox-leg-right { left: 112px; transform: rotate(-30deg); }

.fox-paw {
    width: 18px;
    height: 32px;
    background: #fff5ee;
    border-radius: 999px;
    bottom: 10px;
}

.fox-paw-left { left: 56px; }
.fox-paw-right { left: 88px; }

.logo-strip {
    padding: 26px 0;
    background: #fff;
}

.logo-row {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: logo-marquee 24s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    min-width: 210px;
    text-align: center;
    color: #202436;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.06em;
}

.logo-item:nth-child(5n + 1) { color: #f54b2a; }
.logo-item:nth-child(5n + 2) { font-size: 2rem; font-weight: 700; }
.logo-item:nth-child(5n + 3) { font-size: 2.6rem; }
.logo-item:nth-child(5n + 4) { color: var(--accent-pink); font-family: Georgia, serif; }
.logo-item:nth-child(5n + 5) { color: var(--navy); letter-spacing: 0.24em; font-size: 2.1rem; }

.logo-row:hover .logo-track {
    animation-play-state: paused;
}

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

.solutions {
    background: linear-gradient(180deg, #fcf0df 0%, var(--mint-bg) 100%);
    padding: 42px 0 0;
}

.solutions h2,
.features h2,
.faq-section h2 {
    margin: 0;
    text-align: center;
    color: var(--navy);
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

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

.solution-card {
    border-radius: 24px;
    padding: 28px 30px 26px;
    min-height: 290px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 18px 40px rgba(36, 72, 85, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(14px);
    transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solution-card.is-featured {
    background: linear-gradient(180deg, rgba(144, 174, 173, 0.66), rgba(144, 174, 173, 0.44));
}

.solution-card.is-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58));
}

.icon-box,
.tab-icon,
.point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #fff;
    color: var(--navy);
}

.icon-box svg,
.tab-icon svg,
.point-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-card h3 {
    margin: 22px 0 14px;
    font-size: 1.8rem;
    color: var(--navy);
}

.solution-card p {
    margin: 0 0 22px;
    font-size: 1.08rem;
    line-height: 1.65;
}

.learn-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border: 1px solid var(--navy);
    border-radius: 4px;
    color: var(--navy);
    font-weight: 500;
}

.forest-band {
    position: relative;
    margin-top: 26px;
    padding: 92px 0 56px;
    background:
        radial-gradient(120px 70px at 5% 100%, #1e6c54 98%, transparent 100%),
        radial-gradient(180px 90px at 95% 100%, #1f7758 98%, transparent 100%),
        linear-gradient(180deg, transparent 0 40%, #2a915e 40% 58%, #23774b 58% 100%);
}

.forest-band::before,
.forest-band::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 90px;
    background:
        radial-gradient(circle at 10% 100%, #1d7a56 0 45%, transparent 46%),
        radial-gradient(circle at 30% 100%, #2aa168 0 32%, transparent 33%),
        radial-gradient(circle at 50% 100%, #26895f 0 35%, transparent 36%),
        radial-gradient(circle at 70% 100%, #30a05f 0 32%, transparent 33%),
        radial-gradient(circle at 90% 100%, #29895f 0 35%, transparent 36%);
}

.forest-band::after {
    height: 120px;
    opacity: 0.9;
    filter: saturate(1.05);
}

.features {
    padding: 52px 0 34px;
    background: #fff;
}

.tab-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 30px;
}

.tab-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 82px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #ccd5e1;
    border-radius: 10px;
    box-shadow: none;
    cursor: pointer;
    text-align: left;
    color: #111;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tab-card.active {
    background: #ddebfa;
    border-color: #9fc4ee;
    box-shadow: inset 0 0 0 1px #9fc4ee;
}

.tab-card.active .tab-icon {
    background: #ffffff;
    color: #ff4f86;
}

.tab-card.active span {
    color: #09152f;
    font-weight: 600;
}

.tab-card span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.tab-card:focus-visible {
    outline: 3px solid rgba(75, 116, 255, 0.28);
    outline-offset: 2px;
}

.tab-card:hover {
    border-color: #b8c9dc;
}

.feature-panels {
    margin-top: 14px;
}

.automation-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding: 26px 24px 24px;
    border-radius: 10px;
    background: #ddebfa;
    border: 0;
    box-shadow: none;
}

.automation-panel:not(.active) {
    display: none;
}

.automation-copy > p {
    margin: 0;
    max-width: 640px;
    color: #09152f;
    font-size: 1.02rem;
    line-height: 1.6;
}

.point-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.point-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 16px;
    align-items: start;
}

.point-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #ff4f86;
    color: #fff;
    box-shadow: none;
}

.point-item h3,
.footer-column h3 {
    margin: 0 0 6px;
}

.point-item h3 {
    color: #11204d;
    font-size: 1.02rem;
    font-weight: 600;
}

.point-item p {
    margin: 0;
    color: #09152f;
    font-size: 1rem;
    line-height: 1.45;
}

.automation-art {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.feature-scene-svg {
    width: min(100%, 470px);
    height: auto;
    display: block;
}

.automation-art-campaign .feature-scene-svg,
.automation-art-analytics .feature-scene-svg,
.automation-art-payout .feature-scene-svg,
.automation-art-automation .feature-scene-svg,
.automation-art-fraud .feature-scene-svg {
    overflow: visible;
}

.control {
    position: absolute;
    right: 28px;
    width: 180px;
    height: 90px;
    border: 2px solid rgba(67, 86, 118, 0.55);
    background:
        radial-gradient(circle at 30% 32%, #fff 0 5px, transparent 6px),
        radial-gradient(circle at 68% 52%, #34d39b 0 6px, transparent 7px),
        radial-gradient(circle at 82% 72%, #fff 0 6px, transparent 7px),
        linear-gradient(#55637d, #55637d) 18px 28px / calc(100% - 36px) 2px no-repeat,
        linear-gradient(#55637d, #55637d) 18px 46px / calc(100% - 36px) 2px no-repeat,
        linear-gradient(#55637d, #55637d) 18px 64px / calc(100% - 36px) 2px no-repeat;
}

.control-top { top: 58px; }
.control-bottom { bottom: 38px; }

.connector {
    position: absolute;
    inset: 140px auto auto 20px;
    width: 250px;
    height: 110px;
    border-left: 2px solid #55637d;
    border-bottom: 2px solid #55637d;
    border-right: 2px solid #55637d;
}

.connector::before,
.connector::after {
    content: "";
    position: absolute;
    top: -2px;
    width: 52px;
    border-top: 2px solid #55637d;
}

.connector::before { left: 0; }
.connector::after { right: 0; }

.connector span {
    position: absolute;
    top: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #46536d;
}

.connector span:nth-child(1) { left: 34px; }
.connector span:nth-child(2) { left: 64px; }
.connector span:nth-child(3) { left: 96px; }

.connector span.active {
    background: #4871ff;
    border-color: #4871ff;
}

.penguin {
    position: absolute;
    left: 50px;
    bottom: 18px;
    width: 180px;
    height: 220px;
}

.penguin-head {
    position: absolute;
    left: 30px;
    top: 0;
    width: 118px;
    height: 108px;
    background: #4f5077;
    border-radius: 54% 54% 48% 48%;
}

.penguin-head::before,
.penguin-head::after {
    content: "";
    position: absolute;
    top: 44px;
    width: 12px;
    height: 12px;
    background: #22233f;
    border-radius: 50%;
}

.penguin-head::before { left: 28px; }
.penguin-head::after { right: 28px; }

.penguin-body {
    position: absolute;
    left: 18px;
    bottom: 10px;
    width: 145px;
    height: 150px;
    background: #595987;
    border-radius: 48% 48% 44% 44%;
}

.penguin-belly {
    position: absolute;
    left: 38px;
    bottom: 24px;
    width: 105px;
    height: 124px;
    background: #f6f4ff;
    border-radius: 48%;
}

.penguin-belly::before {
    content: "";
    position: absolute;
    left: 44px;
    top: 68px;
    width: 18px;
    height: 24px;
    background: linear-gradient(180deg, transparent 0 35%, #575686 35% 100%);
    clip-path: polygon(50% 0, 0 100%, 42% 100%, 50% 72%, 58% 100%, 100% 100%);
}

.penguin-wing {
    position: absolute;
    bottom: 44px;
    width: 30px;
    height: 84px;
    background: #4d4c72;
    border-radius: 20px;
}

.wing-left {
    left: 8px;
    transform: rotate(16deg);
}

.wing-right {
    right: 10px;
    transform: rotate(-16deg);
}

.penguin-feet {
    position: absolute;
    left: 62px;
    bottom: 0;
    width: 58px;
    height: 18px;
}

.penguin-feet::before,
.penguin-feet::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 22px;
    height: 14px;
    background: #f2a053;
    border-radius: 0 0 999px 999px;
}

.penguin-feet::before { left: 0; }
.penguin-feet::after { right: 0; }

.accolades {
    padding: 36px 0 42px;
}

.accolades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 56px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.accolades-grid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 90px;
    background:
        radial-gradient(circle at 8% 100%, #9bd032 0 32%, transparent 33%),
        radial-gradient(circle at 18% 100%, #87c42c 0 32%, transparent 33%),
        radial-gradient(circle at 30% 100%, #9bd032 0 35%, transparent 36%),
        radial-gradient(circle at 42% 100%, #87c42c 0 32%, transparent 33%),
        radial-gradient(circle at 58% 100%, #9bd032 0 35%, transparent 36%),
        radial-gradient(circle at 70% 100%, #87c42c 0 32%, transparent 33%),
        radial-gradient(circle at 82% 100%, #9bd032 0 35%, transparent 36%),
        radial-gradient(circle at 94% 100%, #87c42c 0 32%, transparent 33%);
}

.accolades h2 {
    margin: 0;
    color: var(--blue-heading);
    font-size: clamp(3rem, 4vw, 4.6rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.score-board {
    display: inline-grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 28px;
    border: 1px solid var(--accent-pink);
    border-radius: 6px;
    overflow: hidden;
    background: var(--accent-pink);
}

.score-board div {
    min-width: 118px;
    padding: 14px 18px;
    background: var(--navy-soft);
    text-align: center;
}

.score-board strong {
    display: block;
    font-size: 2rem;
}

.score-board span {
    color: var(--mint-bg);
}

.award-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.85);
}

.award-row span {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.92rem;
}

.quote-dots {
    display: grid;
    gap: 14px;
    position: absolute;
    left: -30px;
    top: 72px;
}

.quote-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(137, 147, 207, 0.34);
}

.quote-dots .active {
    background: var(--accent-pink);
}

.quote-card {
    margin-bottom: 16px;
    padding: 26px 24px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.quote-card p {
    margin: 0 0 12px;
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.quote-card strong {
    color: var(--mint-bg);
    font-size: 1.06rem;
}

.hedgehog {
    width: 180px;
    height: 130px;
    margin-top: 40px;
    background:
        radial-gradient(circle at 50% 68%, #fff 0 24%, transparent 25%),
        radial-gradient(circle at 40% 64%, #2e2d57 0 3.8%, transparent 4%),
        radial-gradient(circle at 60% 64%, #2e2d57 0 3.8%, transparent 4%),
        radial-gradient(circle at 50% 77%, #2e2d57 0 5%, transparent 5.2%),
        linear-gradient(180deg, transparent 0 58%, #f6f6fb 58% 100%);
    position: relative;
}

.hedgehog::before {
    content: "";
    position: absolute;
    inset: -10px 0 0;
    background: #67679c;
    clip-path: polygon(4% 84%, 12% 38%, 18% 64%, 28% 14%, 34% 50%, 42% 8%, 49% 44%, 56% 8%, 64% 50%, 72% 14%, 82% 64%, 88% 38%, 96% 84%, 100% 100%, 0 100%);
    border-radius: 30px;
    z-index: -1;
}

.hedgehog::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 66px;
    width: 128px;
    height: 54px;
    background: #fff;
    border-radius: 60px 60px 38px 38px;
}

.cta-banner {
    padding: 38px 0 46px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 24px;
    padding: 34px 42px 0;
    border-radius: 12px;
    background: var(--mint-bg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.44);
    box-shadow: 0 22px 48px rgba(36, 72, 85, 0.08);
    backdrop-filter: var(--glass-blur);
}

.cta-copy p {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.cta-copy h2 {
    margin: 6px 0 0;
    color: var(--navy);
    font-size: clamp(3rem, 4vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0 30px;
}

.mini-badge {
    width: 102px;
    padding: 14px 10px;
    text-align: center;
    background: #fff;
    border: 1px solid #e1e5f1;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}

.badge-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
    border-radius: 50%;
    background: #ff7340;
    color: #fff;
    font-weight: 700;
}

.mini-badge strong,
.mini-badge small {
    display: block;
}

.mini-badge strong {
    font-size: 0.92rem;
    line-height: 1.1;
}

.mini-badge small {
    margin-top: 4px;
    color: #54617f;
    font-size: 0.72rem;
}

.cta-art {
    position: relative;
    min-height: 300px;
}

.ui-stack {
    position: absolute;
    left: 20px;
    top: 42px;
    width: 320px;
}

.window,
.search,
.panel {
    border: 2px solid rgba(88, 95, 118, 0.46);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
}

.window {
    height: 92px;
    background:
        radial-gradient(circle at 22px 16px, #c7d5ff 0 3px, transparent 4px),
        radial-gradient(circle at 34px 16px, #6fd5a7 0 3px, transparent 4px),
        linear-gradient(#dde6f9, #dde6f9) 24px 34px / 64px 36px no-repeat,
        linear-gradient(#d2d9e6, #d2d9e6) 104px 34px / 150px 3px no-repeat,
        linear-gradient(#e1e8f3, #e1e8f3) 104px 48px / 126px 3px no-repeat;
}

.search,
.panel {
    margin-top: 12px;
    height: 48px;
}

.search {
    margin-left: 96px;
    background:
        radial-gradient(circle at 22px 24px, transparent 0 6px, #7f8794 6px 7px, transparent 8px),
        linear-gradient(#aab5cb, #aab5cb) 34px 23px / 120px 2px no-repeat,
        rgba(255, 255, 255, 0.92);
}

.panel {
    background:
        radial-gradient(circle at 24px 24px, transparent 0 6px, #7f8794 6px 7px, transparent 8px),
        linear-gradient(#aab5cb, #aab5cb) 44px 23px / 122px 2px no-repeat,
        rgba(255, 255, 255, 0.92);
}

.person-figure {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
    height: 290px;
}

.person-head {
    position: absolute;
    right: 44px;
    top: 24px;
    width: 86px;
    height: 90px;
    background: #f4c2a1;
    border-radius: 44px;
}

.person-head::before {
    content: "";
    position: absolute;
    inset: -10px -10px 38px;
    background: #2f2734;
    border-radius: 48px 48px 18px 18px;
}

.person-body {
    position: absolute;
    right: 12px;
    bottom: 0;
    width: 170px;
    height: 190px;
    background: linear-gradient(180deg, #4f87bb 0 64%, #f3b5aa 64% 100%);
    border-radius: 60px 60px 16px 16px;
}

.person-thumb {
    position: absolute;
    right: 92px;
    top: 96px;
    width: 34px;
    height: 72px;
    background: #f4c2a1;
    border-radius: 16px;
    transform: rotate(-20deg);
}

.faq-section {
    padding: 10px 0 60px;
}

.faq-wrap {
    max-width: 1120px;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 14px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(216, 228, 223, 0.64));
    border: 1px solid rgba(255, 255, 255, 0.42);
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(36, 72, 85, 0.06);
    backdrop-filter: blur(12px);
    transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
    .solution-card:hover,
    .tab-card:hover,
    .faq-item:hover {
        transform: scale(1.02);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 22px 46px rgba(36, 72, 85, 0.14);
    }

    .quote-card:hover {
        transform: scale(1.02);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 22px 46px rgba(36, 72, 85, 0.14);
        color: #143543;
    }

    .quote-card:hover p {
        color: #143543;
    }

    .quote-card:hover strong {
        color: var(--accent-pink);
    }
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 40px;
    border: 0;
    background: transparent;
    color: #2764ff;
    font-size: 1.18rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 40px 0;
    color: #162448;
    font-size: 1.06rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
    padding-bottom: 26px;
}

.faq-toggle {
    min-width: 28px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1;
}

.site-footer {
    position: relative;
    padding: 10px 0 30px;
    border-top: 1px solid #eceff5;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(251, 233, 208, 0.58));
    backdrop-filter: blur(12px);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-footer {
    color: #121933;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #d8d1ea;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 26px 0 30px;
    margin-top: 18px;
    border-top: 1px solid #eceff5;
}

.footer-column a {
    display: block;
    margin-top: 10px;
    color: #273451;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid #eceff5;
    color: #4e5875;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-policies,
.compliance-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.floating-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25255d;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 20px 40px rgba(37, 37, 93, 0.3);
}

@keyframes drift {
    0%, 100% { transform: rotate(8deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-10px); }
}

@media (max-width: 1360px) {
    .hero {
        padding-bottom: 124px;
    }

    .hero-grid {
        grid-template-columns: 0.96fr 1.04fr;
        gap: 28px;
        padding-top: 48px;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 4.9vw, 4.8rem);
        line-height: 0.98;
    }

    .hero-copy p {
        max-width: 560px;
        font-size: 1.06rem;
    }

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

    .dashboard-card {
        top: 74px;
        right: 0;
        width: min(100%, 500px);
        min-height: 286px;
    }

    .fox-floating {
        right: 280px;
        top: 8px;
        width: 144px;
        height: 110px;
    }
}

@media (max-width: 1200px) {
    .automation-panel,
    .cta-grid,
    .accolades-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .automation-art,
    .cta-art {
        min-height: auto;
    }

    .quote-dots {
        display: none;
    }

    .tab-row,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu {
        grid-template-columns: 1fr 1fr;
    }

    .mega-column-featured {
        grid-column: 1 / -1;
        min-height: 320px;
        padding-bottom: 170px;
    }

    .mega-column {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
        gap: 30px;
        align-items: center;
        padding-top: 48px;
    }

    .hero-copy h1,
    .hero-copy p {
        max-width: 100%;
    }

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

    .dashboard-card {
        position: absolute;
        right: 0;
        top: 74px;
        width: min(100%, 470px);
        min-height: 276px;
    }

    .fox-floating {
        position: absolute;
        right: 248px;
        top: 12px;
        width: 132px;
        height: 102px;
    }
}

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

    .hero-visual {
        display: grid;
        justify-items: center;
        gap: 14px;
        min-height: auto;
    }

    .dashboard-card,
    .fox-floating {
        position: relative;
        right: auto;
        top: auto;
    }
}

@media (max-width: 1024px) {
    .solution-grid,
    .tab-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        align-items: center;
        row-gap: 16px;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        margin-left: auto;
    }

    .nav-panel {
        display: none;
        width: 100%;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(36, 72, 85, 0.8), rgba(58, 101, 112, 0.72));
        box-shadow: 0 20px 50px rgba(4, 11, 40, 0.28);
        backdrop-filter: blur(18px);
    }

    .navbar.nav-open .nav-panel {
        display: block;
    }

    .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .nav-actions {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        margin-top: 18px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item.has-mega-dropdown {
        position: relative;
    }

    .nav-link,
    .nav-link-button {
        justify-content: space-between;
        width: 100%;
    }

    .nav-dropdown,
    .nav-item.has-dropdown:hover > .nav-dropdown,
    .nav-item.has-dropdown:focus-within > .nav-dropdown {
        position: static;
        width: 100%;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
    }

    .nav-item.has-dropdown.open > .nav-dropdown,
    .nav-item.has-dropdown.mobile-open > .nav-dropdown {
        display: block;
    }

    .nav-dropdown-mega,
    .nav-dropdown-list {
        width: 100%;
    }

    .dropdown-card-list,
    .mega-menu {
        border-radius: 20px;
    }

    .mega-menu {
        grid-template-columns: 1fr;
    }

    .mega-column {
        min-height: auto;
    }

    .mega-column + .mega-column {
        border-left: 0;
        border-top: 1px solid rgba(12, 20, 62, 0.06);
    }

    .mega-column-featured {
        grid-column: auto;
        padding-bottom: 160px;
    }

    .hero {
        padding-bottom: 110px;
    }

    .hero-grid {
        padding-top: 40px;
    }

    .solution-grid,
    .tab-row {
        grid-template-columns: 1fr;
    }

    .faq-question,
    .faq-answer p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1280px);
    }

    .brand {
        font-size: 1.7rem;
    }

    .nav-panel {
        padding: 14px;
        border-radius: 18px;
    }

    .nav-actions .button {
        flex: 1 1 140px;
    }

    .hero-copy p,
    .automation-copy > p,
    .solution-card p,
    .point-item p,
    .quote-card p {
        font-size: 1rem;
    }

    .dashboard-card {
        grid-template-columns: 74px 1fr;
    }

    .mini-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-bottom {
        grid-template-columns: 1fr;
    }

    .dropdown-card-list,
    .mega-column {
        padding: 22px;
    }

    .dropdown-link {
        grid-template-columns: 46px 1fr auto;
        gap: 12px;
        font-size: 1rem;
    }

    .dropdown-link-featured {
        align-items: start;
    }

    .dropdown-icon {
        width: 46px;
        height: 46px;
    }

    .bear-illustration {
        right: 8px;
        width: 190px;
        transform: scale(0.9);
        transform-origin: bottom right;
    }

    .automation-panel,
    .accolades-grid,
    .cta-grid {
        padding: 22px;
    }

    .person-figure {
        position: relative;
        margin-left: auto;
    }
}
