@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* =========================
   ROOT / GLOBAL SYSTEM
========================= */

:root {
    --brand: #0b85da;
    --brand-dark: #0672bd;
    --brand-soft: #eef8ff;
    --brand-softer: #f5fbff;

    --dark: #080808;
    --title: #031b5b;
    --text: #1f2933;
    --muted: #5f6673;
    --light-muted: #8b95a1;

    --white: #ffffff;
    --gray-bg: #f7f8fa;
    --soft-bg: #f8fafc;
    --border: #e2e5e9;

    --container: 1536px;
    --font-main: 'Poppins', sans-serif;

    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-2xl: 42px;
    --radius-pill: 999px;

    --shadow-xs: 0 8px 22px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 12px 32px rgba(15, 23, 42, 0.055);
    --shadow-md: 0 18px 54px rgba(15, 23, 42, 0.065);
    --shadow-lg: 0 24px 72px rgba(15, 23, 42, 0.08);
    --shadow-brand: 0 18px 42px rgba(11, 133, 218, 0.22);

    --ease: 0.25s ease;
}

/* =========================
   RESET / BASE
========================= */

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

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.no-scroll {
    overflow: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

img {
    display: block;
    height: auto;
}

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

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

button {
    border: 0;
    cursor: pointer;
}

section {
    width: 100%;
    max-width: 100%;
}

.home-hero,
.crm-banner,
.solutions-showcase,
.steer-universe,
.keep-platform {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.home-hero__container,
.crm-banner__container,
.solutions-showcase__container,
.steer-universe__container,
.keep-platform__container {
    width: 100%;
    max-width: min(var(--container), 100%);
    margin: 0 auto;
}

.home-hero__grid,
.crm-banner__grid,
.solutions-panel__grid,
.steer-universe__map,
.keep-platform__layout,
.keep-platform__left,
.keep-platform__right,
.keep-platform__visual,
.keep-platform__steps,
.keep-platform__step {
    min-width: 0;
}

/* =========================
   SHARED BUTTON SYSTEM
========================= */

.btn,
.home-hero__button,
.home-hero__contact-button,
.crm-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 60px;
    padding: 16px 30px;
    border-radius: var(--radius-pill);
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform var(--ease),
        background-color var(--ease),
        color var(--ease),
        border-color var(--ease),
        box-shadow var(--ease);
}

.btn:hover,
.home-hero__button:hover,
.home-hero__contact-button:hover,
.crm-banner__button:hover {
    transform: translateY(-2px);
}

.btn--primary,
.home-hero__button,
.crm-banner__button {
    background: var(--brand);
    color: var(--white);
    box-shadow: var(--shadow-brand);
}

.btn--primary:hover,
.home-hero__button:hover,
.crm-banner__button:hover {
    background: var(--brand-dark);
    color: var(--white);
}

.btn--white,
.home-hero__contact-button {
    background: var(--white);
    color: var(--brand);
}

.btn--white:hover,
.home-hero__contact-button:hover {
    background: #f2f9ff;
    color: var(--brand);
}

.home-hero__button svg,
.home-hero__contact-button svg,
.crm-banner__button svg,
.home-hero__arrow svg,
.home-hero__contact-icon svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.home-hero__button path,
.home-hero__contact-button path,
.crm-banner__button path,
.home-hero__arrow path,
.home-hero__contact-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================
   HOME HERO
========================= */

.home-hero {
    padding: 88px 0 20px;
    background: var(--gray-bg);
    border-radius: 0 0 32px 32px;
    overflow: hidden;
}

.home-hero__container {
    padding: 0 16px;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.home-hero__slider {
    grid-column: span 3;
    position: relative;
}

.home-hero__slides {
    position: relative;
    min-height: 540px;
}

.home-hero__slide {
    display: none;
    grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.28fr);
    gap: 40px;
    align-items: center;
    min-height: 540px;
}

.home-hero__slide.is-active {
    display: grid;
    animation: heroFade 0.45s ease both;
}

.home-hero__content {
    padding-bottom: 96px;
}

.home-hero__content h1 {
    max-width: 600px;
    margin: 0;
    color: var(--dark);
    font-size: clamp(38px, 4vw, 64px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.home-hero__content p {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.34vw, 22px);
    line-height: 1.72;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.home-hero__button {
    min-width: 300px;
    margin-top: 44px;
}

.home-hero__image {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-lg);
    background: var(--brand-soft);
    overflow: hidden;
}

.home-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__controls {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 22px;
}

.home-hero__arrow {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d9dde3;
    border-radius: var(--radius-pill);
    background: var(--white);
    color: #252525;
    transition: var(--ease);
}

.home-hero__arrow:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
}

.home-hero__arrow.is-active-arrow {
    border-color: #111111;
}

.home-hero__counter {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    min-width: 94px;
    color: #737780;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.home-hero__counter strong {
    color: #111111;
    font-size: 27px;
    font-weight: 700;
}

.home-hero__contact-card {
    grid-column: span 1;
    position: relative;
    min-height: 540px;
    padding: 32px;
    border-radius: var(--radius-xl);
    background: var(--brand);
    color: var(--white);
    overflow: hidden;
}

.home-hero__contact-card::before {
    content: "";
    position: absolute;
    top: -74px;
    right: -72px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.home-hero__contact-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-bottom: 112px;
}

.home-hero__contact-photo {
    width: 100px;
    height: 100px;
    border-radius: 999px 0 0 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
}

.home-hero__contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__contact-icon {
    width: 128px;
    height: 100px;
    margin-left: -1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 999px 999px 0;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.home-hero__contact-icon svg {
    width: 36px;
    height: 36px;
}

.home-hero__contact-content {
    position: relative;
    z-index: 2;
}

.home-hero__contact-content span {
    display: block;
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.home-hero__contact-content h2 {
    max-width: 350px;
    margin: 0;
    font-size: clamp(24px, 2.2vw, 40px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.home-hero__contact-button {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 44px;
}

/* =========================
   CRM BANNER
========================= */

.crm-banner {
    padding: 90px 0;
    background: transparent;
}

.crm-banner__container {
    padding: 0 24px;
}

.crm-banner__grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.crm-banner__content {
    max-width: 760px;
}

.crm-banner__title {
    margin: 0;
    color: var(--title);
    font-size: clamp(42px, 6vw, 92px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.crm-banner__title-main {
    color: var(--title);
}

.crm-banner__title-highlight {
    color: var(--brand);
}

.crm-banner__text {
    max-width: 780px;
    margin: 34px 0 0;
    color: var(--light-muted);
    font-size: clamp(18px, 1.7vw, 28px);
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.crm-banner__button {
    min-width: 280px;
    margin-top: 56px;
}

.crm-banner__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-banner__visual img {
    width: 100%;
    max-width: 920px;
    height: auto;
    object-fit: contain;
}

/* =========================
   SOLUTIONS TABS - FULL CSS WITH ANIMATED VISUAL
========================= */

.solutions-showcase {
    position: relative;
    width: 100%;
    padding: 90px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, 0.055), transparent 34%),
        var(--white);
    overflow: hidden;
}

.solutions-showcase__container {
    width: 100%;
    max-width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.solutions-showcase__heading {
    max-width: 940px;
    margin: 0 auto 42px;
    text-align: center;
}

.solutions-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 15px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.solutions-showcase__title {
    margin: 0;
    color: var(--title);
    font-size: clamp(34px, 3.3vw, 54px);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.solutions-showcase__intro {
    max-width: 820px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Tabs */

.solutions-showcase__tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 28px;
    margin-bottom: 34px;
}

.solutions-showcase__tab {
    position: relative;
    padding: 10px 0;
    background: transparent;
    border: 0;
    color: var(--title);
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: color 0.25s ease;
}

.solutions-showcase__tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: transparent;
    transform: scaleX(0.3);
    opacity: 0;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        background-color 0.25s ease;
}

.solutions-showcase__tab:hover,
.solutions-showcase__tab.is-active {
    color: var(--brand);
}

.solutions-showcase__tab.is-active::after {
    background: var(--brand);
    transform: scaleX(1);
    opacity: 1;
}

/* Panels */

.solutions-showcase__panels {
    min-width: 0;
}

.solutions-panel {
    display: none;
}

.solutions-panel.is-active {
    display: block;
    animation: solutionsFade 0.35s ease both;
}

.solutions-panel__grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(226, 229, 233, 0.9);
    box-shadow: var(--shadow-md);
    min-width: 0;
}

.solutions-panel__content {
    min-width: 0;
}

.solutions-panel__kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.solutions-panel__title {
    max-width: 660px;
    margin: 0;
    color: var(--title);
    font-size: clamp(28px, 2.4vw, 44px);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.solutions-panel__text {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.solutions-panel__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.solutions-card {
    min-width: 0;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: var(--soft-bg);
    border: 1px solid rgba(226, 229, 233, 0.9);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.solutions-card:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 133, 218, 0.26);
    box-shadow: 0 12px 32px rgba(11, 133, 218, 0.08);
}

.solutions-card__title {
    margin: 0 0 8px;
    color: var(--title);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.solutions-card__text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

/* Visual wrapper */

.solutions-panel__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

/* Animated visual */

.solutions-visual {
    position: relative;
    width: min(100%, 540px);
    padding: 28px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(226, 229, 233, 0.94);
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.solutions-visual::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(11, 133, 218, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 133, 218, 0.055) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 78%);
    mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 78%);
    pointer-events: none;
}

.solutions-visual::after {
    content: "";
    position: absolute;
    left: -46%;
    top: -24%;
    width: 86%;
    height: 150%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(11, 133, 218, 0.04) 48%,
        rgba(11, 133, 218, 0.10) 50%,
        rgba(11, 133, 218, 0.04) 52%,
        transparent 100%
    );
    transform: rotate(16deg);
    animation: solutionsVisualGlow 5.8s ease-in-out infinite;
    pointer-events: none;
}

.solutions-visual__orbit {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 360px;
    border-radius: 32px;
}

.solutions-visual__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1px solid rgba(11, 133, 218, 0.14);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.solutions-visual__ring--one {
    width: 78%;
    height: 78%;
    animation: solutionsRingPulse 3.6s ease-in-out infinite;
}

.solutions-visual__ring--two {
    width: 58%;
    height: 58%;
    animation: solutionsRingPulse 3.6s ease-in-out infinite 0.4s;
}

.solutions-visual__ring--three {
    width: 38%;
    height: 38%;
    animation: solutionsRingPulse 3.6s ease-in-out infinite 0.8s;
}

.solutions-visual__center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 220px;
    min-height: 220px;
    padding: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.94);
    box-shadow:
        0 24px 58px rgba(15, 23, 42, 0.10),
        0 0 0 14px rgba(11, 133, 218, 0.055);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transform: translate(-50%, -50%);
    animation: solutionsCenterFloat 4.8s ease-in-out infinite;
}

.solutions-visual__icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: var(--brand);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 38px rgba(11, 133, 218, 0.22);
}

.solutions-visual__icon svg {
    width: 32px;
    height: 32px;
}

.solutions-visual__icon path,
.solutions-visual__icon rect,
.solutions-visual__icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solutions-visual__center span {
    color: var(--brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.solutions-visual__center strong {
    color: var(--title);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.solutions-visual__node {
    position: absolute;
    z-index: 5;
    min-width: 112px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.94);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    animation: solutionsNodeFloat 4.6s ease-in-out infinite;
}

.solutions-visual__node i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(11, 133, 218, 0.10);
    flex: 0 0 auto;
}

.solutions-visual__node span {
    color: var(--title);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.solutions-visual__node--1 {
    left: 50%;
    top: 3%;
    transform: translateX(-50%);
}

.solutions-visual__node--2 {
    right: 0;
    top: 45%;
    animation-delay: 0.35s;
}

.solutions-visual__node--3 {
    left: 50%;
    bottom: 3%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
}

.solutions-visual__node--4 {
    left: 0;
    top: 45%;
    animation-delay: 1.05s;
}

.solutions-visual__signal {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 42%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(11, 133, 218, 0),
        rgba(11, 133, 218, 0.55),
        rgba(11, 133, 218, 0)
    );
    transform-origin: left center;
    overflow: hidden;
}

.solutions-visual__signal::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 40%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    animation: solutionsSignalFlow 1.8s linear infinite;
}

.solutions-visual__signal--one {
    transform: rotate(-90deg);
}

.solutions-visual__signal--two {
    transform: rotate(28deg);
}

.solutions-visual__signal--three {
    transform: rotate(150deg);
}

.solutions-visual__bottom {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.solutions-visual__bottom div {
    min-width: 0;
    padding: 16px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.solutions-visual__bottom span {
    display: block;
    margin-bottom: 6px;
    color: var(--light-muted);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
}

.solutions-visual__bottom strong {
    display: block;
    color: var(--title);
    font-size: 14px;
    line-height: 1.38;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Animations */

@keyframes solutionsFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes solutionsVisualGlow {
    0% {
        transform: translateX(-20%) rotate(16deg);
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    70% {
        opacity: 0.75;
    }

    100% {
        transform: translateX(180%) rotate(16deg);
        opacity: 0;
    }
}

@keyframes solutionsRingPulse {
    0%,
    100% {
        opacity: 0.45;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.035);
    }
}

@keyframes solutionsCenterFloat {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-6px);
    }
}

@keyframes solutionsNodeFloat {
    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -6px;
    }
}

@keyframes solutionsSignalFlow {
    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(280%);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .solutions-showcase {
        padding: 78px 0;
    }

    .solutions-panel__grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 38px;
    }

    .solutions-panel__content {
        text-align: center;
    }

    .solutions-panel__title,
    .solutions-panel__text {
        margin-left: auto;
        margin-right: auto;
    }

    .solutions-panel__cards {
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .solutions-panel__visual {
        min-height: 500px;
    }

    .solutions-visual {
        width: min(100%, 520px);
    }
}

@media (max-width: 768px) {
    .solutions-showcase {
        padding: 58px 0;
    }

    .solutions-showcase__container {
        padding: 0 14px;
    }

    .solutions-showcase__heading {
        margin-bottom: 30px;
    }

    .solutions-showcase__eyebrow {
        font-size: 13px;
    }

    .solutions-showcase__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.04em;
    }

    .solutions-showcase__intro {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .solutions-showcase__tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        margin: 0 -14px 26px;
        padding: 0 14px 10px;
        scrollbar-width: none;
    }

    .solutions-showcase__tabs::-webkit-scrollbar {
        display: none;
    }

    .solutions-showcase__tab {
        flex: 0 0 auto;
        padding: 10px 14px;
        border-radius: 999px;
        background: #f8fafc;
        border: 1px solid rgba(226, 229, 233, 0.92);
        font-size: 14px;
    }

    .solutions-showcase__tab::after {
        display: none;
    }

    .solutions-showcase__tab.is-active {
        background: var(--brand);
        border-color: var(--brand);
        color: #ffffff;
    }

    .solutions-panel__grid {
        gap: 28px;
        padding: 18px;
        border-radius: 26px;
    }

    .solutions-panel__title {
        font-size: 27px;
        line-height: 1.16;
    }

    .solutions-panel__text {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .solutions-panel__cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
    }

    .solutions-card {
        padding: 16px;
        border-radius: 16px;
    }

    .solutions-card__title {
        font-size: 15.5px;
    }

    .solutions-card__text {
        font-size: 13.5px;
    }

    .solutions-panel__visual {
        min-height: auto;
    }

    .solutions-visual {
        width: 100%;
        padding: 18px;
        border-radius: 26px;
    }

    .solutions-visual::before {
        inset: 16px;
        border-radius: 20px;
        background-size: 28px 28px;
    }

    .solutions-visual__orbit {
        min-height: 330px;
    }

    .solutions-visual__center {
        width: 180px;
        min-height: 180px;
        padding: 20px;
    }

    .solutions-visual__icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .solutions-visual__icon svg {
        width: 28px;
        height: 28px;
    }

    .solutions-visual__center strong {
        font-size: 13px;
    }

    .solutions-visual__node {
        min-width: auto;
        padding: 9px 10px;
    }

    .solutions-visual__node span {
        font-size: 11px;
    }

    .solutions-visual__bottom {
        grid-template-columns: 1fr;
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .solutions-showcase {
        padding: 46px 0;
    }

    .solutions-panel__grid {
        padding: 14px;
        border-radius: 22px;
    }

    .solutions-showcase__title {
        font-size: 29px;
    }

    .solutions-showcase__intro {
        font-size: 14.5px;
    }

    .solutions-panel__title {
        font-size: 24px;
    }

    .solutions-visual {
        padding: 14px;
        border-radius: 22px;
    }

    .solutions-visual__orbit {
        min-height: 300px;
    }

    .solutions-visual__center {
        width: 158px;
        min-height: 158px;
        padding: 16px;
    }

    .solutions-visual__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .solutions-visual__center span {
        font-size: 10.5px;
    }

    .solutions-visual__center strong {
        font-size: 12px;
    }

    .solutions-visual__node {
        gap: 6px;
        padding: 8px 9px;
    }

    .solutions-visual__node i {
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 5px rgba(11, 133, 218, 0.10);
    }

    .solutions-visual__node span {
        font-size: 10px;
    }

    .solutions-visual__node--2 {
        right: -2px;
    }

    .solutions-visual__node--4 {
        left: -2px;
    }

    .solutions-visual__bottom div {
        padding: 14px;
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .solutions-panel.is-active,
    .solutions-visual::after,
    .solutions-visual__ring,
    .solutions-visual__center,
    .solutions-visual__node,
    .solutions-visual__signal::before {
        animation: none !important;
    }
}

/* =========================
   STEER UNIVERSE
========================= */

.steer-universe {
    padding: 96px 0;
    background: var(--white);
}

.steer-universe__container {
    padding: 0 24px;
}

.steer-universe__heading {
    max-width: 840px;
    margin: 0 auto 46px;
    text-align: center;
}

.steer-universe__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.steer-universe__title {
    margin: 0;
    color: #050505;
    font-size: clamp(36px, 4vw, 66px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.steer-universe__title span {
    display: block;
}

.steer-universe__intro {
    max-width: 760px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.steer-universe__map {
    position: relative;
    min-height: 660px;
    margin-top: 8px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 50% 50%, rgba(11, 133, 218, 0.09), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    overflow: hidden;
}

.steer-universe__map::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 133, 218, 0.10), transparent 68%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.steer-universe__map::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0) 86%, #ffffff 100%),
        linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0) 86%, #ffffff 100%);
    pointer-events: none;
}

.steer-universe__svg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.universe-line {
    fill: none;
    stroke: rgba(11, 133, 218, 0.34);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 9 15;
    animation: universeLineMove 3.2s linear infinite;
}

.line-b,
.line-d,
.line-f {
    animation-direction: reverse;
}

.universe-dot {
    fill: var(--brand);
    filter: drop-shadow(0 0 10px rgba(11, 133, 218, 0.42));
    opacity: 0;
}

.dot-a {
    offset-path: path("M640 260 C500 92 365 70 220 82");
    animation: universeDotMove 5s linear infinite;
}

.dot-b {
    offset-path: path("M640 260 C780 92 915 70 1060 82");
    animation: universeDotMove 5.2s linear infinite;
}

.dot-c {
    offset-path: path("M640 260 C460 250 330 250 170 250");
    animation: universeDotMove 4.6s linear infinite;
}

.dot-d {
    offset-path: path("M640 260 C820 250 950 250 1110 250");
    animation: universeDotMove 4.8s linear infinite;
}

.dot-e {
    offset-path: path("M640 260 C500 428 365 450 220 438");
    animation: universeDotMove 5.4s linear infinite;
}

.dot-f {
    offset-path: path("M640 260 C780 428 915 450 1060 438");
    animation: universeDotMove 5.6s linear infinite;
}

.steer-universe__center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: rgba(11, 133, 218, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.steer-universe__center::before {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    background: rgba(11, 133, 218, 0.10);
}

.steer-universe__logo {
    position: relative;
    z-index: 2;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 58px rgba(11, 133, 218, 0.26);
}

.steer-universe__logo span {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.steer-universe__node {
    position: absolute;
    z-index: 5;
    width: 300px;
    min-height: 116px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(226, 229, 233, 0.82);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.steer-universe__node:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 133, 218, 0.26);
    box-shadow: 0 24px 58px rgba(11, 133, 218, 0.10);
}

.steer-universe__node--mesai {
    left: 48px;
    top: 42px;
}

.steer-universe__node--satis {
    left: 20px;
    top: 248px;
}

.steer-universe__node--masraf {
    left: 48px;
    bottom: 42px;
}

.steer-universe__node--stok {
    right: 48px;
    top: 42px;
}

.steer-universe__node--zimmet {
    right: 20px;
    top: 248px;
}

.steer-universe__node--arac {
    right: 48px;
    bottom: 42px;
}

.steer-universe__node-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--white);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.075);
}

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

.steer-universe__node-icon path,
.steer-universe__node-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.steer-universe__node-content h3 {
    margin: 0;
    color: var(--title);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.steer-universe__node-content p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.58;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.steer-universe__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.steer-universe__summary div {
    padding: 24px;
    border-radius: 24px;
    background: var(--soft-bg);
    border: 1px solid rgba(226, 229, 233, 0.9);
    text-align: center;
}

.steer-universe__summary strong {
    display: block;
    color: var(--brand);
    font-size: 25px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.steer-universe__summary span {
    display: block;
    margin-top: 8px;
    color: var(--title);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* =========================
   KEEP PLATFORM - PROFESSIONAL STABLE UI
========================= */

.keep-platform {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, 0.08), transparent 34%),
        var(--white);
    overflow: hidden;
}

.keep-platform__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.keep-platform__heading {
    max-width: 920px;
    margin: 0 auto 56px;
    text-align: center;
}

.keep-platform__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.keep-platform__title {
    margin: 0;
    color: #050505;
    font-size: clamp(38px, 4.4vw, 24px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.keep-platform__title span {
    display: block;
    color: var(--brand);
}

.keep-platform__intro {
    max-width: 780px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Desktop shell */

.keep-platform__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 32px;
    align-items: stretch;
    min-width: 0;
}

.keep-platform__main,
.keep-platform__side {
    min-width: 0;
}

/* Detail panel */

.keep-platform__main {
    position: relative;
    min-height: 620px;
    border-radius: 36px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(226, 229, 233, 0.94);
    box-shadow: 0 24px 72px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.keep-platform__main::before {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(11, 133, 218, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 133, 218, 0.055) 1px, transparent 1px);
    background-size: 38px 38px;
    -webkit-mask-image: radial-gradient(circle at 50% 46%, #000 0%, transparent 75%);
    mask-image: radial-gradient(circle at 50% 46%, #000 0%, transparent 75%);
    pointer-events: none;
}

.keep-platform__detail {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 46px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(0.985);
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s ease;
}

.keep-platform__detail.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.keep-platform__detail-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 34px;
}

.keep-platform__detail-icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: var(--brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 18px 44px rgba(11, 133, 218, 0.24),
        0 0 0 12px rgba(11, 133, 218, 0.065);
    flex: 0 0 auto;
}

.keep-platform__detail-icon svg {
    width: 34px;
    height: 34px;
}

.keep-platform__detail-icon path,
.keep-platform__detail-icon circle,
.keep-platform__module-icon path,
.keep-platform__module-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.keep-platform__detail-top span {
    display: block;
    margin-bottom: 7px;
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.keep-platform__detail-top strong {
    display: block;
    color: #031b5b;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.keep-platform__detail h3 {
    max-width: 760px;
    margin: 0;
    color: #031b5b;
    font-size: clamp(34px, 3.2vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.keep-platform__detail p {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.keep-platform__detail ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.keep-platform__detail li {
    min-height: 92px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 229, 233, 0.88);
    color: #1f2933;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.keep-platform__detail li b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 13px;
}

.keep-platform__metric {
    margin-top: auto;
    display: inline-flex;
    align-items: flex-end;
    gap: 14px;
    padding-top: 34px;
}

.keep-platform__metric span {
    color: var(--brand);
    font-size: clamp(48px, 5vw, 86px);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.07em;
}

.keep-platform__metric small {
    max-width: 180px;
    padding-bottom: 8px;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

/* Module selector */

.keep-platform__side {
    padding: 26px;
    border-radius: 36px;
    background: #f8fafc;
    border: 1px solid rgba(226, 229, 233, 0.92);
}

.keep-platform__side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding: 6px 6px 18px;
    border-bottom: 1px solid rgba(226, 229, 233, 0.9);
}

.keep-platform__side-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.keep-platform__side-head strong {
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: right;
}

.keep-platform__module-list {
    display: grid;
    gap: 12px;
}

.keep-platform__module {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 42px 54px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(226, 229, 233, 0.92);
    color: #031b5b;
    text-align: left;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease;
}

.keep-platform__module:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 133, 218, 0.28);
    box-shadow: 0 16px 38px rgba(11, 133, 218, 0.08);
}

.keep-platform__module.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
    box-shadow: 0 18px 44px rgba(11, 133, 218, 0.20);
}

.keep-platform__module-number {
    color: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    opacity: 0.7;
}

.keep-platform__module-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.keep-platform__module.is-active .keep-platform__module-icon {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.keep-platform__module-icon svg {
    width: 27px;
    height: 27px;
}

.keep-platform__module-text {
    min-width: 0;
}

.keep-platform__module-text strong {
    display: block;
    color: inherit;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.keep-platform__module-text small {
    display: block;
    margin-top: 5px;
    color: inherit;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
    opacity: 0.68;
}

.keep-platform__module-metric {
    color: inherit;
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    white-space: nowrap;
}

/* =========================
   MOBILE / TABLET PROFESSIONAL UI
========================= */

@media (max-width: 1200px) {
    .keep-platform {
        padding: 78px 0;
    }

    .keep-platform__shell {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .keep-platform__side {
        order: -1;
        padding: 22px;
        border-radius: 30px;
        background:
            linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        box-shadow: 0 18px 54px rgba(15, 23, 42, 0.055);
    }

    .keep-platform__side-head {
        margin-bottom: 18px;
        padding: 0 0 16px;
    }

    .keep-platform__module-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
    }

    .keep-platform__module {
        min-height: 138px;
        grid-template-columns: 1fr;
        justify-items: center;
        align-content: center;
        text-align: center;
        gap: 8px;
        padding: 14px 10px;
        border-radius: 20px;
    }

    .keep-platform__module-number {
        font-size: 12px;
    }

    .keep-platform__module-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .keep-platform__module-icon svg {
        width: 24px;
        height: 24px;
    }

    .keep-platform__module-text strong {
        font-size: 13.5px;
        line-height: 1.25;
    }

    .keep-platform__module-text small {
        display: none;
    }

    .keep-platform__module-metric {
        font-size: 15px;
    }

    .keep-platform__main {
        min-height: 560px;
        border-radius: 30px;
    }

    .keep-platform__detail {
        padding: 36px;
    }

    .keep-platform__detail ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .keep-platform {
        padding: 58px 0;
        background:
            radial-gradient(circle at 50% 0%, rgba(11, 133, 218, 0.07), transparent 30%),
            #ffffff;
    }

    .keep-platform__container {
        padding: 0 14px;
    }

    .keep-platform__heading {
        margin-bottom: 32px;
        text-align: center;
    }

    .keep-platform__eyebrow {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .keep-platform__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.045em;
    }

    .keep-platform__intro {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.75;
    }

    .keep-platform__shell {
        gap: 16px;
    }

    .keep-platform__side {
        padding: 16px;
        border-radius: 24px;
        background: #f8fafc;
        border: 1px solid rgba(226, 229, 233, 0.92);
        box-shadow: none;
    }

    .keep-platform__side-head {
        align-items: center;
        margin-bottom: 14px;
        padding: 0 0 14px;
    }

    .keep-platform__side-head span {
        min-height: 38px;
        padding: 0 15px;
        font-size: 18px;
    }

    .keep-platform__side-head strong {
        max-width: 150px;
        font-size: 13px;
        line-height: 1.35;
    }

    .keep-platform__module-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .keep-platform__module {
        min-height: 128px;
        padding: 14px 10px;
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
    }

    .keep-platform__module:hover {
        transform: none;
    }

    .keep-platform__module-icon {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .keep-platform__module-icon svg {
        width: 23px;
        height: 23px;
    }

    .keep-platform__module-text strong {
        font-size: 13.5px;
        line-height: 1.25;
    }

    .keep-platform__module-metric {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 28px;
        padding: 0 10px;
        border-radius: 999px;
        background: rgba(11, 133, 218, 0.08);
        color: var(--brand);
        font-size: 13px;
        letter-spacing: -0.03em;
    }

    .keep-platform__module.is-active .keep-platform__module-metric {
        background: rgba(255, 255, 255, 0.16);
        color: #ffffff;
    }

    .keep-platform__main {
        min-height: auto;
        border-radius: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
    }

    .keep-platform__main::before {
        display: none;
    }

    .keep-platform__detail {
        position: relative;
        inset: auto;
        display: none;
        padding: 24px;
        border-radius: 24px;
        background:
            linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        border: 1px solid rgba(226, 229, 233, 0.94);
        box-shadow: 0 18px 48px rgba(15, 23, 42, 0.055);
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .keep-platform__detail.is-active {
        display: flex;
        transform: none;
    }

    .keep-platform__detail-top {
        gap: 14px;
        margin-bottom: 24px;
    }

    .keep-platform__detail-icon {
        width: 60px;
        height: 60px;
        border-radius: 20px;
        box-shadow:
            0 14px 34px rgba(11, 133, 218, 0.20),
            0 0 0 9px rgba(11, 133, 218, 0.055);
    }

    .keep-platform__detail-icon svg {
        width: 24px;
        height: 24px;
    }

    .keep-platform__detail-top span {
        font-size: 12.5px;
    }

    .keep-platform__detail-top strong {
        font-size: 18px;
    }

    .keep-platform__detail h3 {
        font-size: 27px;
        line-height: 1.16;
        letter-spacing: -0.045em;
    }

    .keep-platform__detail p {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .keep-platform__detail ul {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .keep-platform__detail li {
        min-height: auto;
        padding: 14px;
        font-size: 14px;
        border-radius: 16px;
    }

    .keep-platform__metric {
        width: 100%;
        margin-top: 0;
        padding-top: 24px;
        justify-content: space-between;
        align-items: center;
    }

    .keep-platform__metric span {
        font-size: 48px;
    }

    .keep-platform__metric small {
        max-width: 150px;
        padding-bottom: 0;
        font-size: 13px;
        text-align: right;
    }
}

@media (max-width: 480px) {
    .keep-platform {
        padding: 46px 0;
    }

    .keep-platform__container {
        padding: 0 14px;
    }

    .keep-platform__title {
        font-size: 24px;
    }

    .keep-platform__intro {
        font-size: 14.5px;
    }

    .keep-platform__side {
        padding: 14px;
        border-radius: 22px;
    }

    .keep-platform__side-head {
        align-items: flex-start;
    }

    .keep-platform__side-head span {
        font-size: 17px;
    }

    .keep-platform__side-head strong {
        font-size: 12.5px;
    }

    .keep-platform__module-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .keep-platform__module {
        min-height: auto;
        grid-template-columns: 34px 44px minmax(0, 1fr) auto;
        justify-items: stretch;
        text-align: left;
        padding: 13px;
        border-radius: 16px;
    }

    .keep-platform__module-number {
        align-self: center;
        font-size: 12px;
    }

    .keep-platform__module-text strong {
        font-size: 14px;
    }

    .keep-platform__module-text small {
        display: block;
        font-size: 12px;
    }

    .keep-platform__module-icon {
        width: 44px;
        height: 44px;
    }

    .keep-platform__module-metric {
        min-height: 26px;
        padding: 0 8px;
        font-size: 13px;
    }

    .keep-platform__detail {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .keep-platform__detail-top {
        align-items: flex-start;
    }

    .keep-platform__detail-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .keep-platform__detail h3 {
        font-size: 23px;
    }

    .keep-platform__detail p {
        font-size: 14.5px;
    }

    .keep-platform__detail li {
        font-size: 13.5px;
    }

    .keep-platform__metric span {
        font-size: 42px;
    }

    .keep-platform__metric small {
        font-size: 12.5px;
    }
}
/* =========================
   KEYFRAMES
========================= */

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes solutionsFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes universeLineMove {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -46;
    }
}

@keyframes universeDotMove {
    from {
        offset-distance: 0%;
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    to {
        offset-distance: 100%;
        opacity: 0;
    }
}

@keyframes keepPlatformFlow {
    from {
        transform: translateX(-110%);
    }

    to {
        transform: translateX(180%);
    }
}

@keyframes keepPlatformFlowVertical {
    from {
        transform: translateY(-110%);
    }

    to {
        transform: translateY(180%);
    }
}

/* =========================
   RESPONSIVE - 1280
========================= */

@media (max-width: 1280px) {
    .home-hero {
        padding-top: 72px;
    }

    .home-hero__grid {
        gap: 24px;
    }

    .home-hero__content h1 {
        font-size: clamp(36px, 4.2vw, 56px);
    }

    .home-hero__image {
        height: 480px;
    }

    .home-hero__contact-card {
        padding: 28px;
    }

    .home-hero__contact-top {
        margin-bottom: 92px;
    }

    .crm-banner,
    .solutions-showcase {
        padding: 80px 0;
    }

    .crm-banner__grid,
    .solutions-panel__grid {
        gap: 36px;
    }

    .solutions-panel__grid {
        padding: 40px;
    }

    .solutions-panel__visual {
        min-height: 480px;
    }

    .steer-universe {
        padding: 84px 0;
    }

    .steer-universe__map {
        min-height: 680px;
    }

    .steer-universe__node {
        width: 280px;
    }

    .steer-universe__node--mesai,
    .steer-universe__node--masraf {
        left: 24px;
    }

    .steer-universe__node--satis {
        left: 14px;
    }

    .steer-universe__node--stok,
    .steer-universe__node--arac {
        right: 24px;
    }

    .steer-universe__node--zimmet {
        right: 14px;
    }
}

/* =========================
   RESPONSIVE - 1200
========================= */

@media (max-width: 1200px) {
    .keep-platform {
        padding: 72px 0;
    }

    .keep-platform__container {
        padding: 0 18px;
    }

    .keep-platform__heading {
        margin-bottom: 36px;
    }

    .keep-platform__layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .keep-platform__left {
        position: relative;
        top: auto;
    }

    .keep-platform__visual {
        min-height: auto;
        padding: 18px;
        border-radius: 24px;
    }

    .keep-platform__visual::before {
        inset: 16px;
        border-radius: 20px;
        background-size: 28px 28px;
    }

    .keep-platform__brand {
        width: 100%;
        justify-content: center;
        min-height: 44px;
        margin-bottom: 14px;
        padding: 0 16px;
        box-shadow: 0 12px 28px rgba(11, 133, 218, 0.18);
    }

    .keep-platform__brand span {
        font-size: 22px;
    }

    .keep-platform__brand strong {
        font-size: 12px;
    }

    .keep-platform__visual-panels {
        min-height: 110px;
    }

    .keep-platform__visual-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .keep-platform__visual-panel span {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .keep-platform__visual-panel strong {
        font-size: 34px;
    }

    .keep-platform__visual-panel p {
        margin-top: 6px;
        font-size: 13px;
    }

    .keep-platform__flow {
        display: none;
    }

    .keep-platform__nav {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 8px;
        margin-top: 10px;
    }

    .keep-platform__nav-item {
        min-width: 0;
        min-height: 48px;
        padding: 9px 6px;
        border-radius: 14px;
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .keep-platform__nav-item span {
        display: block;
        margin: 0 0 3px;
        font-size: 11px;
    }

    .keep-platform__right {
        min-height: auto;
    }

    .keep-platform__steps {
        position: relative;
        top: auto;
        height: auto;
        display: grid;
        gap: 16px;
    }

    .keep-platform__step {
        position: relative;
        inset: auto;
        height: auto;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 26px;
        border-radius: 24px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        overflow: visible;
    }

    .keep-platform__step.is-active {
        transform: none;
        border-color: rgba(11, 133, 218, 0.36);
        box-shadow: 0 22px 60px rgba(11, 133, 218, 0.13);
    }

    .keep-platform__step-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .keep-platform__step-icon svg {
        width: 28px;
        height: 28px;
    }

    .keep-platform__step-content span {
        margin-bottom: 12px;
        font-size: 13px;
    }

    .keep-platform__step-content h3 {
        font-size: 26px;
        line-height: 1.18;
        letter-spacing: -0.04em;
    }

    .keep-platform__step-content p {
        margin-top: 14px;
        font-size: 15.5px;
        line-height: 1.72;
    }

    .keep-platform__step-content ul {
        gap: 10px;
        margin-top: 20px;
    }

    .keep-platform__step-content li {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =========================
   RESPONSIVE - 1100
========================= */

@media (max-width: 1100px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__slider,
    .home-hero__contact-card {
        grid-column: span 1;
    }

    .home-hero__slides,
    .home-hero__slide {
        min-height: auto;
    }

    .home-hero__contact-card {
        min-height: auto;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 28px;
        align-items: center;
    }

    .home-hero__contact-top {
        margin-bottom: 0;
    }

    .home-hero__contact-button {
        width: auto;
        min-width: 210px;
        margin-top: 0;
    }

    .steer-universe__map {
        min-height: auto;
        padding: 28px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        border: 1px solid rgba(226, 229, 233, 0.9);
        box-shadow: var(--shadow-md);
    }

    .steer-universe__map::before,
    .steer-universe__map::after,
    .steer-universe__svg {
        display: none;
    }

    .steer-universe__center {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        min-height: 150px;
        border-radius: 30px;
        transform: none;
    }

    .steer-universe__center::before {
        display: none;
    }

    .steer-universe__logo {
        width: 112px;
        height: 112px;
    }

    .steer-universe__node,
    .steer-universe__node--mesai,
    .steer-universe__node--satis,
    .steer-universe__node--masraf,
    .steer-universe__node--stok,
    .steer-universe__node--zimmet,
    .steer-universe__node--arac {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        min-height: auto;
        transform: none;
    }

    .steer-universe__node:hover,
    .steer-universe__node--arac:hover {
        transform: translateY(-3px);
    }

    .steer-universe__summary {
        grid-template-columns: 1fr;
    }
}

/* =========================
   RESPONSIVE - 1024
========================= */

@media (max-width: 1024px) {
    .crm-banner {
        padding: 64px 0;
    }

    .crm-banner__grid,
    .solutions-panel__grid {
        grid-template-columns: 1fr;
    }

    .crm-banner__content {
        max-width: 100%;
        order: 1;
    }

    .crm-banner__visual {
        order: 2;
    }

    .solutions-showcase {
        padding: 64px 0;
    }

    .solutions-showcase__container,
    .crm-banner__container {
        padding: 0 16px;
    }

    .solutions-showcase__tabs {
        gap: 10px 20px;
    }

    .solutions-panel__visual {
        order: 1;
        min-height: auto;
    }

    .solutions-panel__content {
        order: 2;
    }

    .solutions-panel__image-wrap {
        width: min(100%, 460px);
    }

    .solutions-panel__floating-card.is-top {
        top: 12px;
        right: 24px;
    }

    .solutions-panel__floating-card.is-bottom {
        left: 24px;
        bottom: 12px;
    }
}

/* =========================
   RESPONSIVE - 900
========================= */

@media (max-width: 900px) {
    .home-hero {
        padding: 40px 0 24px;
        border-radius: 0 0 26px 26px;
    }

    .home-hero__slide {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-hero__content {
        padding-bottom: 0;
        order: 2;
    }

    .home-hero__image {
        order: 1;
        height: 420px;
        border-radius: 28px;
    }

    .home-hero__controls {
        position: static;
        margin-top: 28px;
    }

    .home-hero__contact-card {
        grid-template-columns: 1fr;
    }

    .home-hero__contact-top {
        justify-content: center;
    }

    .home-hero__contact-content {
        text-align: center;
    }

    .home-hero__contact-content h2 {
        max-width: 100%;
    }

    .home-hero__contact-button {
        width: 100%;
    }
}

/* =========================
   RESPONSIVE - 768
========================= */

@media (max-width: 768px) {
    .crm-banner,
    .solutions-showcase,
    .steer-universe,
    .keep-platform {
        padding: 54px 0;
    }

    .home-hero__container,
    .crm-banner__container,
    .solutions-showcase__container,
    .steer-universe__container,
    .keep-platform__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .crm-banner__title {
        font-size: clamp(38px, 10vw, 56px);
        line-height: 1.08;
    }

    .crm-banner__text {
        margin-top: 22px;
        font-size: 18px;
        line-height: 1.75;
    }

    .crm-banner__button {
        width: 100%;
        min-width: 0;
        margin-top: 34px;
        font-size: 16px;
        white-space: normal;
    }

    .solutions-showcase__heading,
    .steer-universe__heading,
    .keep-platform__heading {
        margin-bottom: 32px;
    }

    .solutions-showcase__eyebrow,
    .steer-universe__eyebrow,
    .keep-platform__eyebrow {
        font-size: 13px;
    }

    .solutions-showcase__title {
        font-size: 30px;
        line-height: 1.2;
    }

    .steer-universe__title,
    .keep-platform__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.045em;
    }

    .solutions-showcase__intro,
    .steer-universe__intro,
    .keep-platform__intro {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.75;
    }

    .solutions-showcase__tabs {
        gap: 10px;
        margin-bottom: 24px;
    }

    .solutions-showcase__tab {
        padding: 11px 14px;
        border-radius: var(--radius-pill);
        background: var(--soft-bg);
        font-size: 15.5px;
    }

    .solutions-showcase__tab::after {
        display: none;
    }

    .solutions-showcase__tab.is-active {
        background: var(--brand-soft);
        color: var(--brand);
    }

    .solutions-panel__grid {
        padding: 24px;
        border-radius: 24px;
    }

    .solutions-panel__title {
        font-size: 26px;
        line-height: 1.22;
    }

    .solutions-panel__text {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .solutions-panel__cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
    }

    .solutions-panel__image-wrap {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .solutions-panel__floating-card {
        position: static;
        max-width: 100%;
        margin-top: 14px;
    }

    .solutions-panel__visual {
        display: block;
        text-align: left;
    }

    .steer-universe__map {
        padding: 20px;
        border-radius: 28px;
    }

    .steer-universe__center {
        min-height: 132px;
        border-radius: 24px;
    }

    .steer-universe__logo {
        width: 94px;
        height: 94px;
    }

    .steer-universe__logo span {
        font-size: 25px;
    }

    .steer-universe__node {
        grid-template-columns: 50px 1fr;
        gap: 13px;
        padding: 15px;
        border-radius: 20px;
    }

    .steer-universe__node-icon {
        width: 50px;
        height: 50px;
    }

    .steer-universe__node-content h3 {
        font-size: 16.5px;
    }

    .steer-universe__node-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .steer-universe__summary div {
        padding: 20px;
    }

    .keep-platform::before {
        top: 80px;
        width: min(520px, 92vw);
        height: 380px;
    }

    .keep-platform__container {
        padding: 0 14px;
    }

    .keep-platform__heading {
        margin-bottom: 30px;
    }

    .keep-platform__title {
        font-size: 32px;
        line-height: 1.15;
    }

    .keep-platform__intro {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .keep-platform__visual {
        padding: 16px;
        border-radius: 22px;
    }

    .keep-platform__nav {
        gap: 6px;
    }

    .keep-platform__nav-item {
        min-height: 44px;
        padding: 8px 4px;
        font-size: 11px;
        border-radius: 12px;
    }

    .keep-platform__nav-item span {
        font-size: 10px;
    }

    .keep-platform__step {
        padding: 24px;
        border-radius: 22px;
    }

    .keep-platform__step-content h3 {
        font-size: 24px;
    }
}

/* =========================
   RESPONSIVE - 640
========================= */

@media (max-width: 640px) {
    .home-hero {
        padding-top: 24px;
        background: var(--white);
    }

    .home-hero__container {
        padding: 0 14px;
    }

    .home-hero__grid {
        gap: 22px;
    }

    .home-hero__content h1 {
        font-size: 33px;
        line-height: 1.14;
    }

    .home-hero__content p {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.7;
    }

    .home-hero__button {
        width: 100%;
        min-width: 0;
        margin-top: 28px;
        padding: 17px 22px;
        font-size: 15.5px;
        white-space: normal;
    }

    .home-hero__image {
        height: 320px;
        border-radius: 24px;
    }

    .home-hero__controls {
        width: 100%;
        justify-content: space-between;
    }

    .home-hero__arrow {
        width: 56px;
        height: 56px;
    }

    .home-hero__counter {
        justify-content: center;
        min-width: auto;
        font-size: 19px;
    }

    .home-hero__counter strong {
        font-size: 24px;
    }

    .home-hero__contact-card {
        padding: 24px;
        border-radius: 28px;
    }

    .home-hero__contact-photo {
        width: 88px;
        height: 88px;
    }

    .home-hero__contact-icon {
        width: 110px;
        height: 88px;
    }

    .home-hero__contact-content span {
        font-size: 15px;
    }

    .home-hero__contact-content h2 {
        font-size: 27px;
    }

    .home-hero__contact-button {
        min-height: 56px;
        font-size: 16px;
        white-space: normal;
    }
}

/* =========================
   RESPONSIVE - 480
========================= */

@media (max-width: 480px) {
    .crm-banner,
    .solutions-showcase,
    .steer-universe,
    .keep-platform {
        padding: 42px 0;
    }

    .home-hero__container,
    .crm-banner__container,
    .solutions-showcase__container,
    .steer-universe__container,
    .keep-platform__container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .crm-banner__title {
        font-size: 34px;
    }

    .crm-banner__text {
        font-size: 16px;
    }

    .crm-banner__button {
        min-height: 54px;
        font-size: 15.5px;
        padding: 14px 20px;
    }

    .solutions-showcase__title {
        font-size: 26px;
    }

    .solutions-showcase__tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .solutions-showcase__tab {
        width: 100%;
        text-align: center;
    }

    .solutions-panel__grid {
        padding: 18px;
        border-radius: 20px;
    }

    .solutions-card {
        padding: 16px;
    }

    .solutions-card__title {
        font-size: 16px;
    }

    .solutions-card__text {
        font-size: 13.5px;
    }

    .steer-universe__title,
    .keep-platform__title {
        font-size: 24px;
    }

    .steer-universe__map {
        padding: 16px;
        border-radius: 22px;
        gap: 12px;
    }

    .steer-universe__center {
        min-height: 118px;
        border-radius: 20px;
    }

    .steer-universe__logo {
        width: 82px;
        height: 82px;
    }

    .steer-universe__logo span {
        font-size: 22px;
    }

    .steer-universe__node {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .keep-platform__brand {
        min-height: 42px;
    }

    .keep-platform__brand span {
        font-size: 20px;
    }

    .keep-platform__brand strong {
        font-size: 11px;
    }

    .keep-platform__visual-panels {
        min-height: 100px;
    }

    .keep-platform__visual-panel {
        padding: 15px;
    }

    .keep-platform__visual-panel strong {
        font-size: 30px;
    }

    .keep-platform__nav {
        gap: 5px;
    }

    .keep-platform__nav-item {
        min-height: 42px;
        padding: 7px 3px;
        font-size: 10px;
        letter-spacing: -0.03em;
    }

    .keep-platform__nav-item span {
        font-size: 9.5px;
    }

    .keep-platform__step {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .keep-platform__step-content h3 {
        font-size: 22px;
    }

    .keep-platform__step-content p {
        font-size: 14.5px;
    }

    .keep-platform__step-content li {
        font-size: 13.5px;
    }

    .keep-platform__step-content li b {
        width: 21px;
        height: 21px;
        font-size: 12px;
    }
}

/* =========================
   RESPONSIVE - 420
========================= */

@media (max-width: 420px) {
    .home-hero__image {
        height: 260px;
    }

    .home-hero__content h1 {
        font-size: 24px;
    }

    .home-hero__arrow {
        width: 52px;
        height: 52px;
    }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================
   BARCODE FEATURE SECTION
========================= */

.barcode-feature {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(11, 133, 218, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
}

.barcode-feature__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.barcode-feature__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 56px;
    align-items: center;
    min-width: 0;
}

.barcode-feature__content {
    min-width: 0;
}

.barcode-feature__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.barcode-feature__title {
    max-width: 820px;
    margin: 0;
    color: #050505;
    
    line-height: 1.53;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.barcode-feature__title span {
    display: block;
    color: var(--brand);
}

.barcode-feature__text {
    max-width: 780px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.barcode-feature__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 38px;
}

.barcode-feature__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 62px;
    padding: 18px 32px;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(11, 133, 218, 0.22);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.barcode-feature__button:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(11, 133, 218, 0.26);
}

.barcode-feature__button svg {
    width: 22px;
    height: 22px;
}

.barcode-feature__button path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.barcode-feature__mini-note {
    max-width: 330px;
}

.barcode-feature__mini-note strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.barcode-feature__mini-note span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.barcode-feature__seo-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
}

.barcode-feature__seo-list article {
    min-width: 0;
    padding: 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
}

.barcode-feature__seo-list b {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--brand);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.barcode-feature__seo-list strong {
    display: block;
    color: #031b5b;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.barcode-feature__seo-list span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 400;
}

/* Visual */

.barcode-feature__visual {
    position: relative;
    min-width: 0;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.barcode-feature__phone {
    position: relative;
    z-index: 2;
    width: min(100%, 390px);
    min-height: 620px;
    padding: 16px;
    border-radius: 46px;
    background: #07111f;
    box-shadow:
        0 34px 90px rgba(15, 23, 42, 0.18),
        0 0 0 12px rgba(11, 133, 218, 0.045);
}

.barcode-feature__phone-top {
    display: flex;
    justify-content: center;
    padding: 8px 0 14px;
}

.barcode-feature__phone-top span {
    width: 92px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.barcode-feature__screen {
    min-height: 560px;
    padding: 18px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 12%, rgba(11, 133, 218, 0.20), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}

.barcode-feature__scan-area {
    position: relative;
    min-height: 310px;
    padding: 28px;
    border-radius: 28px;
    background: #031b5b;
    overflow: hidden;
}

.barcode-feature__scan-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 30px 30px;
}

.barcode-feature__scan-corners i {
    position: absolute;
    width: 42px;
    height: 42px;
    border-color: rgba(255, 255, 255, 0.85);
    border-style: solid;
}

.barcode-feature__scan-corners i:nth-child(1) {
    left: 28px;
    top: 28px;
    border-width: 3px 0 0 3px;
    border-radius: 12px 0 0 0;
}

.barcode-feature__scan-corners i:nth-child(2) {
    right: 28px;
    top: 28px;
    border-width: 3px 3px 0 0;
    border-radius: 0 12px 0 0;
}

.barcode-feature__scan-corners i:nth-child(3) {
    left: 28px;
    bottom: 28px;
    border-width: 0 0 3px 3px;
    border-radius: 0 0 0 12px;
}

.barcode-feature__scan-corners i:nth-child(4) {
    right: 28px;
    bottom: 28px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 12px 0;
}

.barcode-feature__scan-line {
    position: absolute;
    left: 36px;
    right: 36px;
    top: 92px;
    height: 2px;
    background: #44c7ff;
    box-shadow: 0 0 18px rgba(68, 199, 255, 0.78);
    animation: barcodeScanLine 2.4s ease-in-out infinite;
}

.barcode-feature__barcode {
    position: absolute;
    left: 50%;
    bottom: 86px;
    z-index: 2;
    width: 190px;
    height: 72px;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(-50%);
}

.barcode-feature__barcode span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: #07111f;
}

.barcode-feature__barcode span:nth-child(1) { width: 4px; }
.barcode-feature__barcode span:nth-child(2) { width: 9px; }
.barcode-feature__barcode span:nth-child(3) { width: 5px; }
.barcode-feature__barcode span:nth-child(4) { width: 12px; }
.barcode-feature__barcode span:nth-child(5) { width: 4px; }
.barcode-feature__barcode span:nth-child(6) { width: 8px; }
.barcode-feature__barcode span:nth-child(7) { width: 5px; }
.barcode-feature__barcode span:nth-child(8) { width: 13px; }
.barcode-feature__barcode span:nth-child(9) { width: 6px; }
.barcode-feature__barcode span:nth-child(10) { width: 10px; }

.barcode-feature__scan-area small {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 34px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
}

.barcode-feature__product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.barcode-feature__product-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.barcode-feature__product-card strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.barcode-feature__product-card p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

.barcode-feature__product-card b {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.barcode-feature__screen-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.barcode-feature__screen-actions span {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--brand);
    color: var(--white);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.barcode-feature__screen-actions span:last-child {
    background: var(--brand-soft);
    color: var(--brand);
}

.barcode-feature__floating-card {
    position: absolute;
    z-index: 3;
    width: 230px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

.barcode-feature__floating-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.barcode-feature__floating-card strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.barcode-feature__floating-card--top {
    right: 12px;
    top: 76px;
}

.barcode-feature__floating-card--bottom {
    left: 0;
    bottom: 92px;
}

/* Animations */

@keyframes barcodeScanLine {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.65;
    }

    50% {
        transform: translateY(130px);
        opacity: 1;
    }
}

/* =========================
   BARCODE FEATURE RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .barcode-feature {
        padding: 78px 0;
    }

    .barcode-feature__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .barcode-feature__content {
        text-align: center;
    }

    .barcode-feature__title,
    .barcode-feature__text {
        margin-left: auto;
        margin-right: auto;
    }

    .barcode-feature__actions {
        justify-content: center;
    }

    .barcode-feature__visual {
        min-height: 620px;
    }
}

@media (max-width: 768px) {
    .barcode-feature {
        padding: 58px 0;
    }

    .barcode-feature__container {
        padding: 0 14px;
    }

    .barcode-feature__grid {
        gap: 34px;
    }

    .barcode-feature__eyebrow {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .barcode-feature__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.045em;
    }

    .barcode-feature__text {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.75;
    }

    .barcode-feature__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .barcode-feature__button {
        width: 100%;
        min-height: 58px;
        padding: 17px 22px;
        font-size: 15.5px;
    }

    .barcode-feature__mini-note {
        max-width: 100%;
        text-align: center;
    }

    .barcode-feature__seo-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
        text-align: left;
    }

    .barcode-feature__seo-list article {
        padding: 18px;
        border-radius: 18px;
    }

    .barcode-feature__visual {
        min-height: auto;
        padding: 0 8px;
    }

    .barcode-feature__phone {
        width: 100%;
        max-width: 360px;
        min-height: auto;
        padding: 13px;
        border-radius: 38px;
    }

    .barcode-feature__screen {
        min-height: auto;
        padding: 14px;
        border-radius: 28px;
    }

    .barcode-feature__scan-area {
        min-height: 270px;
        padding: 22px;
        border-radius: 24px;
    }

    .barcode-feature__barcode {
        width: 170px;
        height: 64px;
        bottom: 78px;
    }

    .barcode-feature__floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .barcode-feature {
        padding: 46px 0;
    }

    .barcode-feature__title {
        font-size: 24px;
    }

    .barcode-feature__text {
        font-size: 14.5px;
    }

    .barcode-feature__phone {
        max-width: 330px;
        border-radius: 34px;
    }

    .barcode-feature__screen {
        border-radius: 25px;
    }

    .barcode-feature__scan-area {
        min-height: 245px;
    }

    .barcode-feature__scan-line {
        left: 30px;
        right: 30px;
    }

    .barcode-feature__barcode {
        width: 150px;
        height: 58px;
    }

    .barcode-feature__product-card {
        padding: 15px;
        border-radius: 18px;
    }

    .barcode-feature__product-card strong {
        font-size: 14px;
    }

    .barcode-feature__screen-actions span {
        min-height: 42px;
        font-size: 12px;
    }
}

/* =========================
   SHIFT CONTROL SECTION 
========================= */

.shift-control {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background:
        radial-gradient(circle at 22% 24%, rgba(11, 133, 218, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
}

.shift-control__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.shift-control__grid {
    display: grid;
    grid-template-columns: minmax(500px, 0.9fr) minmax(0, 1.1fr);
    gap: 68px;
    align-items: center;
    min-width: 0;
}

.shift-control__visual,
.shift-control__content {
    min-width: 0;
}

/* =========================
   LEFT VISUAL
========================= */

.shift-control__visual {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shift-control__dashboard {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    padding: 26px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, 0.12), transparent 34%),
        #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.94);
    box-shadow: 0 30px 84px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.shift-control__dashboard::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(11, 133, 218, 0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 133, 218, 0.052) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
    mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
    pointer-events: none;
}

.shift-control__dashboard::after {
    content: "";
    position: absolute;
    left: -40%;
    top: -20%;
    width: 80%;
    height: 140%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(11, 133, 218, 0.04) 48%,
        rgba(11, 133, 218, 0.10) 50%,
        rgba(11, 133, 218, 0.04) 52%,
        transparent 100%
    );
    transform: rotate(16deg);
    animation: shiftDashboardGlow 5.5s ease-in-out infinite;
    pointer-events: none;
}

.shift-control__dashboard-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.shift-control__dashboard-top span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
}

.shift-control__dashboard-top strong {
    display: block;
    color: #031b5b;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.shift-control__dashboard-top small {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 13px 0 28px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.shift-control__dashboard-top small::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    transform: translateY(-50%);
    animation: shiftLivePulse 1.7s ease-in-out infinite;
}

.shift-control__calendar {
    position: relative;
    z-index: 2;
    padding: 18px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(226, 229, 233, 0.92);
}

.shift-control__calendar-head {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.shift-control__calendar-head span {
    color: #718096;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

.shift-control__calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.shift-control__day {
    position: relative;
    min-height: 88px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 12px 8px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.9);
    text-align: center;
    overflow: hidden;
    animation: shiftDayFloat 4.8s ease-in-out infinite;
}

.shift-control__day:nth-child(2) {
    animation-delay: 0.25s;
}

.shift-control__day:nth-child(3) {
    animation-delay: 0.5s;
}

.shift-control__day:nth-child(4) {
    animation-delay: 0.75s;
}

.shift-control__day:nth-child(5) {
    animation-delay: 1s;
}

.shift-control__day::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 10px;
    height: 3px;
    border-radius: 999px;
    background: rgba(11, 133, 218, 0.18);
}

.shift-control__day b {
    position: relative;
    z-index: 2;
    color: #031b5b;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.shift-control__day span {
    position: relative;
    z-index: 2;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.25;
    font-weight: 600;
}

.shift-control__day.is-ok {
    border-color: rgba(11, 133, 218, 0.22);
}

.shift-control__day.is-ok::before {
    background: rgba(11, 133, 218, 0.28);
}

.shift-control__day.is-warning {
    background: #fff8ed;
    border-color: rgba(245, 158, 11, 0.34);
}

.shift-control__day.is-warning::before {
    background: rgba(245, 158, 11, 0.46);
}

.shift-control__day.is-danger {
    background: #fff1f1;
    border-color: rgba(239, 68, 68, 0.30);
    animation:
        shiftDayFloat 4.8s ease-in-out infinite,
        shiftDangerPulse 2.2s ease-in-out infinite;
}

.shift-control__day.is-danger::before {
    background: rgba(239, 68, 68, 0.50);
}

.shift-control__alert-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(239, 68, 68, 0.18);
    box-shadow: 0 16px 42px rgba(239, 68, 68, 0.075);
    animation: shiftAlertIn 4s ease-in-out infinite;
}

.shift-control__alert-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #fff1f1;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shiftAlertIconPulse 2.1s ease-in-out infinite;
}

.shift-control__alert-icon svg {
    width: 27px;
    height: 27px;
}

.shift-control__alert-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shift-control__alert-card span {
    display: block;
    margin-bottom: 5px;
    color: #ef4444;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.shift-control__alert-card strong {
    display: block;
    color: #031b5b;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.shift-control__alert-card p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.shift-control__status-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.shift-control__status-row div {
    padding: 16px 12px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(226, 229, 233, 0.92);
    text-align: center;
}

.shift-control__status-row b {
    display: block;
    color: var(--brand);
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.shift-control__status-row span {
    display: block;
    margin-top: 7px;
    color: #031b5b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.shift-control__status-row .is-alert b {
    color: #ef4444;
}

.shift-control__floating {
    position: absolute;
    z-index: 3;
    width: 240px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    animation: shiftFloatingMove 4.5s ease-in-out infinite;
}

.shift-control__floating span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.shift-control__floating strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.shift-control__floating--top {
    left: 0;
    top: 74px;
}

.shift-control__floating--bottom {
    right: 4px;
    bottom: -15px;
    animation-delay: 0.7s;
}

/* =========================
   RIGHT CONTENT
========================= */

.shift-control__content {
    width: 100%;
    max-width: 100%;
}

.shift-control__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.shift-control__title {
    max-width: 920px;
    margin: 0;
    color: #050505;
    
    line-height: 1.53;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.shift-control__title span {
    display: block;
    color: var(--brand);
}

.shift-control__text {
    max-width: 880px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* Feature cards - text fixed */

.shift-control__features {
    width: 100%;
    max-width: 920px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}

.shift-control__features article {
    min-width: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 6px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.shift-control__features article:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 133, 218, 0.26);
    box-shadow: 0 16px 42px rgba(11, 133, 218, 0.08);
}

.shift-control__features article:nth-child(3) {
    grid-column: 1 / -1;
}

.shift-control__features article > b {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.shift-control__features article > strong {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    width: 100%;
}

.shift-control__features article > span {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.shift-control__features b {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    flex: 0 0 auto;
}

.shift-control__features strong {
    display: block;
    color: #031b5b;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.shift-control__features span {
    display: block;
    margin-top: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.68;
    font-weight: 400;
}

.shift-control__features article:nth-child(3) span {
    max-width: 760px;
}

.shift-control__actions {
    max-width: 920px;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 38px;
}

.shift-control__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 62px;
    padding: 18px 32px;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 18px 42px rgba(11, 133, 218, 0.22);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.shift-control__button:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(11, 133, 218, 0.26);
}

.shift-control__button svg {
    width: 22px;
    height: 22px;
}

.shift-control__button path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.shift-control__note {
    max-width: 330px;
}

.shift-control__note strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.shift-control__note span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes shiftDashboardGlow {
    0% {
        transform: translateX(-20%) rotate(16deg);
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    70% {
        opacity: 0.75;
    }

    100% {
        transform: translateX(180%) rotate(16deg);
        opacity: 0;
    }
}

@keyframes shiftLivePulse {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(11, 133, 218, 0.32);
    }

    50% {
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 0 0 7px rgba(11, 133, 218, 0);
    }
}

@keyframes shiftDayFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes shiftDangerPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.08);
    }
}

@keyframes shiftAlertIconPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@keyframes shiftAlertIn {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes shiftFloatingMove {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* =========================
   RESPONSIVE - TABLET
========================= */

@media (max-width: 1200px) {
    .shift-control {
        padding: 78px 0;
    }

    .shift-control__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .shift-control__content {
        max-width: 100%;
        text-align: center;
    }

    .shift-control__title,
    .shift-control__text {
        margin-left: auto;
        margin-right: auto;
    }

    .shift-control__features {
        max-width: 860px;
        grid-template-columns: 1fr;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .shift-control__features article:nth-child(3) {
        grid-column: auto;
    }

    .shift-control__features article:nth-child(3) span {
        max-width: 100%;
    }

    .shift-control__actions {
        max-width: 860px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .shift-control__visual {
        min-height: 620px;
    }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */

@media (max-width: 768px) {
    .shift-control {
        padding: 58px 0;
    }

    .shift-control__container {
        padding: 0 14px;
    }

    .shift-control__grid {
        gap: 34px;
    }

    .shift-control__visual {
        min-height: auto;
        order: 2;
    }

    .shift-control__content {
        order: 1;
        text-align: center;
    }

    .shift-control__dashboard {
        width: 100%;
        padding: 16px;
        border-radius: 26px;
        box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
    }

    .shift-control__dashboard::before {
        inset: 16px;
        border-radius: 20px;
        background-size: 28px 28px;
    }

    .shift-control__dashboard-top {
        margin-bottom: 18px;
    }

    .shift-control__dashboard-top strong {
        font-size: 22px;
    }

    .shift-control__calendar {
        padding: 14px;
        border-radius: 20px;
    }

    .shift-control__calendar-head,
    .shift-control__calendar-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
    }

    .shift-control__day {
        min-height: 76px;
        padding: 10px 5px;
        border-radius: 13px;
    }

    .shift-control__day b {
        font-size: 12px;
    }

    .shift-control__day span {
        font-size: 9.5px;
    }

    .shift-control__alert-card {
        grid-template-columns: 46px minmax(0, 1fr);
        padding: 15px;
        border-radius: 18px;
        text-align: left;
    }

    .shift-control__alert-icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .shift-control__alert-card strong {
        font-size: 14.5px;
    }

    .shift-control__alert-card p {
        font-size: 12.5px;
    }

    .shift-control__status-row {
        gap: 8px;
    }

    .shift-control__status-row div {
        padding: 14px 8px;
        border-radius: 15px;
    }

    .shift-control__status-row b {
        font-size: 22px;
    }

    .shift-control__status-row span {
        font-size: 10.5px;
    }

    .shift-control__floating {
        display: none;
    }

    .shift-control__eyebrow {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .shift-control__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.045em;
    }

    .shift-control__text {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.75;
    }

    .shift-control__features {
        gap: 12px;
        margin-top: 30px;
    }

    .shift-control__features article {
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 5px;
        padding: 17px;
        border-radius: 18px;
    }

    .shift-control__features article > b {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .shift-control__features article > strong {
        grid-column: 2;
        grid-row: 1;
    }

    .shift-control__features article > span {
        grid-column: 2;
        grid-row: 2;
    }

    .shift-control__features b {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .shift-control__features strong {
        font-size: 15.5px;
    }

    .shift-control__features span {
        font-size: 13.5px;
    }

    .shift-control__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .shift-control__button {
        width: 100%;
        min-height: 58px;
        padding: 17px 22px;
        font-size: 15.5px;
        white-space: normal;
    }

    .shift-control__note {
        max-width: 100%;
        text-align: center;
    }
}

/* =========================
   RESPONSIVE - SMALL MOBILE
========================= */

@media (max-width: 480px) {
    .shift-control {
        padding: 46px 0;
    }

    .shift-control__title {
        font-size: 24px;
    }

    .shift-control__text {
        font-size: 14.5px;
    }

    .shift-control__dashboard {
        padding: 13px;
        border-radius: 22px;
    }

    .shift-control__dashboard-top {
        gap: 10px;
    }

    .shift-control__dashboard-top strong {
        font-size: 20px;
    }

    .shift-control__dashboard-top small {
        min-height: 30px;
        padding: 0 10px 0 24px;
        font-size: 10.5px;
    }

    .shift-control__dashboard-top small::before {
        left: 10px;
        width: 7px;
        height: 7px;
    }

    .shift-control__calendar {
        padding: 11px;
    }

    .shift-control__day {
        min-height: 68px;
    }

    .shift-control__calendar-head span {
        font-size: 10px;
    }

    .shift-control__day b {
        font-size: 11px;
    }

    .shift-control__day span {
        font-size: 8.5px;
    }

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

    .shift-control__status-row div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .shift-control__status-row span {
        margin-top: 0;
        font-size: 12px;
    }

    .shift-control__features article {
        grid-template-columns: 1fr;
    }

    .shift-control__features article > b,
    .shift-control__features article > strong,
    .shift-control__features article > span {
        grid-column: 1;
        grid-row: auto;
    }

    .shift-control__features b {
        width: 40px;
        height: 40px;
    }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
    .shift-control__dashboard::after,
    .shift-control__dashboard-top small::before,
    .shift-control__day,
    .shift-control__day.is-danger,
    .shift-control__alert-card,
    .shift-control__alert-icon,
    .shift-control__floating {
        animation: none !important;
    }
}

/* =========================
   LOCATION ATTENDANCE SECTION
========================= */

.location-attendance {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(11, 133, 218, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
}

.location-attendance__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.location-attendance__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 60px;
    align-items: center;
    min-width: 0;
}

.location-attendance__content,
.location-attendance__visual {
    min-width: 0;
}

/* Content */

.location-attendance__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.location-attendance__title {
    max-width: 850px;
    margin: 0;
    color: #050505;
    
    line-height: 1.53;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.location-attendance__title span {
    display: block;
    color: var(--brand);
}

.location-attendance__text {
    max-width: 820px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.location-attendance__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 860px;
    margin-top: 38px;
}

.location-attendance__features article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.location-attendance__features article:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 133, 218, 0.26);
    box-shadow: 0 16px 42px rgba(11, 133, 218, 0.08);
}

.location-attendance__features b {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.location-attendance__features strong {
    display: block;
    color: #031b5b;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.location-attendance__features span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.68;
    font-weight: 400;
}

.location-attendance__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 38px;
}

.location-attendance__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 62px;
    padding: 18px 32px;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 18px 42px rgba(11, 133, 218, 0.22);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.location-attendance__button:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(11, 133, 218, 0.26);
}

.location-attendance__button svg {
    width: 22px;
    height: 22px;
}

.location-attendance__button path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.location-attendance__note {
    max-width: 340px;
}

.location-attendance__note strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.location-attendance__note span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

/* Visual */

.location-attendance__visual {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-attendance__map-card {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    padding: 26px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, 0.12), transparent 34%),
        #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.94);
    box-shadow: 0 30px 84px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.location-attendance__map-card::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(11, 133, 218, 0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 133, 218, 0.052) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
    mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
    pointer-events: none;
}

.location-attendance__map-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.location-attendance__map-top span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
}

.location-attendance__map-top strong {
    display: block;
    color: #031b5b;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.location-attendance__map-top small {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 13px 0 28px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.location-attendance__map-top small::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    transform: translateY(-50%);
    animation: locationLivePulse 1.7s ease-in-out infinite;
}

.location-attendance__map {
    position: relative;
    z-index: 2;
    min-height: 330px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 50%, rgba(11, 133, 218, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef8ff 100%);
    border: 1px solid rgba(226, 229, 233, 0.92);
    overflow: hidden;
}

.location-attendance__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(3, 27, 91, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 27, 91, 0.055) 1px, transparent 1px);
    background-size: 34px 34px;
}

.location-attendance__area {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px dashed rgba(11, 133, 218, 0.48);
    background: rgba(11, 133, 218, 0.08);
    transform: translate(-50%, -50%);
    animation: locationAreaPulse 2.8s ease-in-out infinite;
}

.location-attendance__area span {
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    background: rgba(11, 133, 218, 0.07);
}

.location-attendance__pin {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    color: #031b5b;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.location-attendance__pin i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 6px rgba(11, 133, 218, 0.12);
}

.location-attendance__pin--store {
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
}

.location-attendance__pin--user {
    left: 62%;
    top: 58%;
    transform: translate(-50%, -50%);
    animation: locationUserMove 3.8s ease-in-out infinite;
}

.location-attendance__route {
    position: absolute;
    left: 50%;
    top: 49%;
    width: 96px;
    height: 2px;
    background: linear-gradient(90deg, rgba(11, 133, 218, 0.0), rgba(11, 133, 218, 0.68));
    transform: rotate(34deg);
    transform-origin: left center;
}

.location-attendance__check-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 133, 218, 0.18);
    box-shadow: 0 16px 42px rgba(11, 133, 218, 0.075);
}

.location-attendance__check-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: locationCheckPulse 2.4s ease-in-out infinite;
}

.location-attendance__check-icon svg {
    width: 28px;
    height: 28px;
}

.location-attendance__check-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.location-attendance__check-card span {
    display: block;
    margin-bottom: 5px;
    color: var(--brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.location-attendance__check-card strong {
    display: block;
    color: #031b5b;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.location-attendance__check-card p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.location-attendance__stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.location-attendance__stats div {
    padding: 16px 12px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(226, 229, 233, 0.92);
    text-align: center;
}

.location-attendance__stats b {
    display: block;
    color: var(--brand);
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.location-attendance__stats span {
    display: block;
    margin-top: 7px;
    color: #031b5b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.location-attendance__floating {
    position: absolute;
    z-index: 3;
    width: 245px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    animation: locationFloatingMove 4.5s ease-in-out infinite;
}

.location-attendance__floating span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.location-attendance__floating strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.location-attendance__floating--top {
    right: 0;
    top: 74px;
}

.location-attendance__floating--bottom {
    left: 0;
    bottom: -75px;
    animation-delay: 0.7s;
}

/* Animations */

@keyframes locationLivePulse {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(11, 133, 218, 0.32);
    }

    50% {
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 0 0 7px rgba(11, 133, 218, 0);
    }
}

@keyframes locationAreaPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.95;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.06);
        opacity: 0.75;
    }
}

@keyframes locationUserMove {
    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-44%, -58%);
    }
}

@keyframes locationCheckPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 133, 218, 0.20);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(11, 133, 218, 0);
    }
}

@keyframes locationFloatingMove {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* Responsive */

@media (max-width: 1200px) {
    .location-attendance {
        padding: 78px 0;
    }

    .location-attendance__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .location-attendance__content {
        text-align: center;
    }

    .location-attendance__title,
    .location-attendance__text {
        margin-left: auto;
        margin-right: auto;
    }

    .location-attendance__features {
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .location-attendance__actions {
        justify-content: center;
    }

    .location-attendance__visual {
        min-height: 620px;
    }
}

@media (max-width: 768px) {
    .location-attendance {
        padding: 58px 0;
    }

    .location-attendance__container {
        padding: 0 14px;
    }

    .location-attendance__grid {
        gap: 34px;
    }

    .location-attendance__content {
        order: 1;
    }

    .location-attendance__visual {
        order: 2;
        min-height: auto;
    }

    .location-attendance__eyebrow {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .location-attendance__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.045em;
    }

    .location-attendance__text {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.75;
    }

    .location-attendance__features {
        gap: 12px;
        margin-top: 30px;
    }

    .location-attendance__features article {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding: 17px;
        border-radius: 18px;
    }

    .location-attendance__features b {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .location-attendance__features strong {
        font-size: 15.5px;
    }

    .location-attendance__features span {
        font-size: 13.5px;
    }

    .location-attendance__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .location-attendance__button {
        width: 100%;
        min-height: 58px;
        padding: 17px 22px;
        font-size: 15.5px;
        white-space: normal;
    }

    .location-attendance__note {
        max-width: 100%;
        text-align: center;
    }

    .location-attendance__map-card {
        width: 100%;
        padding: 16px;
        border-radius: 26px;
        box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
    }

    .location-attendance__map-card::before {
        inset: 16px;
        border-radius: 20px;
        background-size: 28px 28px;
    }

    .location-attendance__map-top {
        margin-bottom: 18px;
    }

    .location-attendance__map-top strong {
        font-size: 22px;
    }

    .location-attendance__map {
        min-height: 280px;
        border-radius: 22px;
    }

    .location-attendance__area {
        width: 180px;
        height: 180px;
    }

    .location-attendance__pin {
        padding: 8px 10px;
        font-size: 11px;
    }

    .location-attendance__check-card {
        grid-template-columns: 46px minmax(0, 1fr);
        padding: 15px;
        border-radius: 18px;
        text-align: left;
    }

    .location-attendance__check-icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .location-attendance__check-card strong {
        font-size: 14.5px;
    }

    .location-attendance__check-card p {
        font-size: 12.5px;
    }

    .location-attendance__stats {
        gap: 8px;
    }

    .location-attendance__stats div {
        padding: 14px 8px;
        border-radius: 15px;
    }

    .location-attendance__stats b {
        font-size: 22px;
    }

    .location-attendance__stats span {
        font-size: 10.5px;
    }

    .location-attendance__floating {
        display: none;
    }
}

@media (max-width: 480px) {
    .location-attendance {
        padding: 46px 0;
    }

    .location-attendance__title {
        font-size: 24px;
    }

    .location-attendance__text {
        font-size: 14.5px;
    }

    .location-attendance__map-card {
        padding: 13px;
        border-radius: 22px;
    }

    .location-attendance__map-top {
        gap: 10px;
    }

    .location-attendance__map-top strong {
        font-size: 19px;
    }

    .location-attendance__map-top small {
        min-height: 30px;
        padding: 0 10px 0 24px;
        font-size: 10.5px;
    }

    .location-attendance__map-top small::before {
        left: 10px;
        width: 7px;
        height: 7px;
    }

    .location-attendance__map {
        min-height: 250px;
    }

    .location-attendance__area {
        width: 150px;
        height: 150px;
    }

    .location-attendance__pin--user {
        left: 65%;
        top: 60%;
    }

    .location-attendance__stats {
        grid-template-columns: 1fr;
    }

    .location-attendance__stats div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .location-attendance__stats span {
        margin-top: 0;
        font-size: 12px;
    }

    .location-attendance__features article {
        grid-template-columns: 1fr;
    }

    .location-attendance__features b {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .location-attendance__map-top small::before,
    .location-attendance__area,
    .location-attendance__pin--user,
    .location-attendance__check-icon,
    .location-attendance__floating {
        animation: none !important;
    }
}

/* =========================
   TARGET MANAGEMENT SECTION
========================= */

.target-management {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background:
        radial-gradient(circle at 82% 22%, rgba(11, 133, 218, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
}

.target-management__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.target-management__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 60px;
    align-items: center;
    min-width: 0;
}

.target-management__content,
.target-management__visual {
    min-width: 0;
}

/* Content */

.target-management__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.target-management__title {
    max-width: 880px;
    margin: 0;
    color: #050505;
    
    line-height: 1.53;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.target-management__title span {
    display: block;
    color: var(--brand);
}

.target-management__text {
    max-width: 820px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.target-management__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 880px;
    margin-top: 38px;
}

.target-management__features article {
    min-width: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.target-management__features article:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 133, 218, 0.26);
    box-shadow: 0 16px 42px rgba(11, 133, 218, 0.08);
}

.target-management__features b {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.target-management__features strong {
    display: block;
    color: #031b5b;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.target-management__features span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.68;
    font-weight: 400;
}

.target-management__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 38px;
}

.target-management__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 62px;
    padding: 18px 32px;
    border-radius: 999px;
    background: var(--brand);
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 18px 42px rgba(11, 133, 218, 0.22);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.target-management__button:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(11, 133, 218, 0.26);
}

.target-management__button svg {
    width: 22px;
    height: 22px;
}

.target-management__button path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.target-management__note {
    max-width: 340px;
}

.target-management__note strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.target-management__note span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

/* Visual */

.target-management__visual {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-management__panel {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    padding: 26px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, 0.12), transparent 34%),
        #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.94);
    box-shadow: 0 30px 84px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.target-management__panel::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(11, 133, 218, 0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 133, 218, 0.052) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
    mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
    pointer-events: none;
}

.target-management__panel::after {
    content: "";
    position: absolute;
    left: -44%;
    top: -24%;
    width: 84%;
    height: 148%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(11, 133, 218, 0.04) 48%,
        rgba(11, 133, 218, 0.10) 50%,
        rgba(11, 133, 218, 0.04) 52%,
        transparent 100%
    );
    transform: rotate(16deg);
    animation: targetPanelGlow 5.8s ease-in-out infinite;
    pointer-events: none;
}

.target-management__panel-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.target-management__panel-top span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
}

.target-management__panel-top strong {
    display: block;
    color: #031b5b;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.target-management__panel-top small {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 13px 0 28px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.target-management__panel-top small::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    transform: translateY(-50%);
    animation: targetLivePulse 1.7s ease-in-out infinite;
}

/* Progress */

.target-management__progress-card {
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(226, 229, 233, 0.92);
}

.target-management__progress-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.target-management__progress-head span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.target-management__progress-head strong {
    display: block;
    color: #031b5b;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.target-management__progress-head b {
    color: var(--brand);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.target-management__progress-bar {
    position: relative;
    height: 12px;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(11, 133, 218, 0.12);
    overflow: hidden;
}

.target-management__progress-bar i {
    display: block;
    width: 84%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), #44c7ff);
    animation: targetProgressFill 3.6s ease-in-out infinite;
}

.target-management__progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
}

.target-management__progress-meta span,
.target-management__progress-meta strong {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.target-management__progress-meta span {
    color: var(--muted);
}

.target-management__progress-meta strong {
    color: #031b5b;
}

/* Goal list */

.target-management__goal-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.target-management__goal {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
    animation: targetGoalFloat 4.8s ease-in-out infinite;
}

.target-management__goal:nth-child(2) {
    animation-delay: 0.3s;
}

.target-management__goal:nth-child(3) {
    animation-delay: 0.6s;
}

.target-management__goal span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.target-management__goal strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.target-management__goal small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.target-management__goal b {
    color: var(--brand);
    font-size: 19px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.target-management__goal.is-active {
    border-color: rgba(11, 133, 218, 0.24);
}

.target-management__goal.is-support {
    background: #fffdf7;
    border-color: rgba(245, 158, 11, 0.24);
}

.target-management__goal.is-support span,
.target-management__goal.is-support b {
    color: #f59e0b;
}

.target-management__goal.is-support span {
    background: #fff8ed;
}

/* Stats */

.target-management__stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.target-management__stats div {
    padding: 16px 12px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(226, 229, 233, 0.92);
    text-align: center;
}

.target-management__stats b {
    display: block;
    color: var(--brand);
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.target-management__stats span {
    display: block;
    margin-top: 7px;
    color: #031b5b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.target-management__floating {
    position: absolute;
    z-index: 3;
    width: 245px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 229, 233, 0.92);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    animation: targetFloatingMove 4.5s ease-in-out infinite;
}

.target-management__floating span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.target-management__floating strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.target-management__floating--top {
    right: 0;
    top: 74px;
}

.target-management__floating--bottom {
    left: 0;
    bottom: -75px;
    animation-delay: 0.7s;
}

/* Animations */

@keyframes targetPanelGlow {
    0% {
        transform: translateX(-20%) rotate(16deg);
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    70% {
        opacity: 0.75;
    }

    100% {
        transform: translateX(180%) rotate(16deg);
        opacity: 0;
    }
}

@keyframes targetLivePulse {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(11, 133, 218, 0.32);
    }

    50% {
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 0 0 7px rgba(11, 133, 218, 0);
    }
}

@keyframes targetProgressFill {
    0%,
    100% {
        width: 76%;
    }

    50% {
        width: 84%;
    }
}

@keyframes targetGoalFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes targetFloatingMove {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* Responsive */

@media (max-width: 1200px) {
    .target-management {
        padding: 78px 0;
    }

    .target-management__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .target-management__content {
        text-align: center;
    }

    .target-management__title,
    .target-management__text {
        margin-left: auto;
        margin-right: auto;
    }

    .target-management__features {
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .target-management__actions {
        justify-content: center;
    }

    .target-management__visual {
        min-height: 620px;
    }
}

@media (max-width: 768px) {
    .target-management {
        padding: 58px 0;
    }

    .target-management__container {
        padding: 0 14px;
    }

    .target-management__grid {
        gap: 34px;
    }

    .target-management__content {
        order: 1;
    }

    .target-management__visual {
        order: 2;
        min-height: auto;
    }

    .target-management__eyebrow {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .target-management__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.045em;
    }

    .target-management__text {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.75;
    }

    .target-management__features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .target-management__features article {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding: 17px;
        border-radius: 18px;
    }

    .target-management__features b {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .target-management__features strong {
        font-size: 15.5px;
    }

    .target-management__features span {
        font-size: 13.5px;
    }

    .target-management__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .target-management__button {
        width: 100%;
        min-height: 58px;
        padding: 17px 22px;
        font-size: 15.5px;
        white-space: normal;
    }

    .target-management__note {
        max-width: 100%;
        text-align: center;
    }

    .target-management__panel {
        width: 100%;
        padding: 16px;
        border-radius: 26px;
        box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
    }

    .target-management__panel::before {
        inset: 16px;
        border-radius: 20px;
        background-size: 28px 28px;
    }

    .target-management__panel-top {
        margin-bottom: 18px;
    }

    .target-management__panel-top strong {
        font-size: 22px;
    }

    .target-management__progress-card {
        padding: 16px;
        border-radius: 20px;
    }

    .target-management__progress-head strong {
        font-size: 17px;
    }

    .target-management__progress-head b {
        font-size: 26px;
    }

    .target-management__goal {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 14px;
        border-radius: 17px;
    }

    .target-management__goal span {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .target-management__goal strong {
        font-size: 14px;
    }

    .target-management__goal small {
        font-size: 11.5px;
    }

    .target-management__goal b {
        font-size: 17px;
    }

    .target-management__stats {
        gap: 8px;
    }

    .target-management__stats div {
        padding: 14px 8px;
        border-radius: 15px;
    }

    .target-management__stats b {
        font-size: 22px;
    }

    .target-management__stats span {
        font-size: 10.5px;
    }

    .target-management__floating {
        display: none;
    }
}

@media (max-width: 480px) {
    .target-management {
        padding: 46px 0;
    }

    .target-management__title {
        font-size: 24px;
    }

    .target-management__text {
        font-size: 14.5px;
    }

    .target-management__panel {
        padding: 13px;
        border-radius: 22px;
    }

    .target-management__panel-top {
        gap: 10px;
    }

    .target-management__panel-top strong {
        font-size: 19px;
    }

    .target-management__panel-top small {
        min-height: 30px;
        padding: 0 10px 0 24px;
        font-size: 10.5px;
    }

    .target-management__panel-top small::before {
        left: 10px;
        width: 7px;
        height: 7px;
    }

    .target-management__progress-head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .target-management__progress-head b {
        font-size: 24px;
    }

    .target-management__progress-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .target-management__goal {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .target-management__goal b {
        grid-column: 2;
        margin-top: 4px;
    }

    .target-management__stats {
        grid-template-columns: 1fr;
    }

    .target-management__stats div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .target-management__stats span {
        margin-top: 0;
        font-size: 12px;
    }

    .target-management__features article {
        grid-template-columns: 1fr;
    }

    .target-management__features b {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .target-management__panel::after,
    .target-management__panel-top small::before,
    .target-management__progress-bar i,
    .target-management__goal,
    .target-management__floating {
        animation: none !important;
    }
}

/* =========================
   STEER SEO HUB - COMPACT
   Replace old STEER SEO HUB + FAQ CSS with this block
========================= */
.steer-seo-panel__keyword-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0 12px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(11, 133, 218, 0.08);
    color: var(--brand);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.steer-seo-panel__keyword-title::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px rgba(11, 133, 218, 0.10);
}

@media (max-width: 768px) {
    .steer-seo-panel__keyword-title {
        margin-top: 16px;
        font-size: 12px;
        padding: 7px 12px;
    }
}


.steer-seo-hub,
.steer-seo-faq {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.steer-seo-hub {
    padding: 105px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, .075), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.steer-seo-faq {
    padding: 95px 0;
    background: #fff;
}

.steer-seo-hub__container,
.steer-seo-faq__container {
    width: 100%;
    max-width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.steer-seo-hub__heading,
.steer-seo-faq__heading {
    max-width: 1040px;
    margin: 0 auto 42px;
    text-align: center;
}

.steer-seo-faq__heading {
    max-width: 920px;
    margin-bottom: 38px;
}

.steer-seo-hub__eyebrow,
.steer-seo-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.01em;
}

.steer-seo-hub__title,
.steer-seo-faq__title {
    margin: 0;
    color: #050505;
    font-size: clamp(38px, 4.4vw, 72px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -.06em;
}

.steer-seo-faq__title {
    font-size: clamp(34px, 3.6vw, 58px);
}

.steer-seo-hub__title span {
    display: block;
    color: var(--brand);
}

.steer-seo-hub__intro,
.steer-seo-faq__intro {
    max-width: 900px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    letter-spacing: -.02em;
}

.steer-seo-hub__tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.steer-seo-hub__tab {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(226, 229, 233, .92);
    color: var(--title);
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.02em;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
    transition: var(--ease);
}

.steer-seo-hub__tab:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 133, 218, .26);
    color: var(--brand);
    box-shadow: 0 12px 30px rgba(11, 133, 218, .08);
}

.steer-seo-hub__tab.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    box-shadow: 0 18px 42px rgba(11, 133, 218, .20);
}

.steer-seo-panel {
    display: none;
}

.steer-seo-panel.is-active {
    display: block;
    animation: steerSeoFade .35s ease both;
}

.steer-seo-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
    gap: 28px;
    align-items: flex-start;
    padding: 34px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid rgba(226, 229, 233, .92);
    box-shadow: 0 24px 72px rgba(15, 23, 42, .07);
}

.steer-seo-panel__content,
.steer-seo-panel__side {
    min-width: 0;
}

.steer-seo-panel__kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 14px;
    font-weight: 800;
}

.steer-seo-panel__title {
    max-width: 900px;
    margin: 0;
    color: var(--title);
    font-size: clamp(28px, 2.7vw, 46px);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -.045em;
}

.steer-seo-panel__lead {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: var(--brand-soft);
    color: #031b5b;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 700;
}

.steer-seo-panel__text {
    max-width: 940px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.82;
    letter-spacing: -.02em;
}

.steer-seo-panel__text p {
    margin: 0 0 18px;
}

.steer-seo-panel__text p:last-child {
    margin-bottom: 0;
}

.steer-seo-panel__text strong {
    color: #031b5b;
    font-weight: 800;
}

.steer-seo-panel__text em {
    color: var(--brand);
    font-style: normal;
    font-weight: 700;
}

.steer-seo-panel__more {
    display: none;
}

.steer-seo-panel.is-expanded .steer-seo-panel__more {
    display: block;
    animation: steerSeoMore .32s ease both;
}

.steer-seo-panel__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 18px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(11, 133, 218, .18);
    transition: var(--ease);
}

.steer-seo-panel__toggle:hover {
    transform: translateY(-2px);
    background: var(--brand-dark);
    box-shadow: 0 20px 44px rgba(11, 133, 218, .24);
}

.steer-seo-panel__side {
    position: sticky;
    top: 110px;
}

.steer-seo-panel__summary {
    padding: 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, .12), transparent 36%),
        #f8fbff;
    border: 1px solid rgba(226, 229, 233, .92);
}

.steer-seo-panel__summary span,
.steer-seo-panel__keywords span {
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
}

.steer-seo-panel__summary strong {
    display: block;
    margin-top: 8px;
    color: #031b5b;
    font-size: 24px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -.045em;
}

.steer-seo-panel__summary p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.steer-seo-panel__keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.steer-seo-panel__keywords span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(226, 229, 233, .92);
    color: #031b5b;
    font-size: 12.5px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .035);
}

.steer-seo-faq__list {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.steer-seo-faq__item {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(226, 229, 233, .92);
    box-shadow: 0 12px 34px rgba(15, 23, 42, .045);
    overflow: hidden;
}

.steer-seo-faq__question {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    background: transparent;
    color: #031b5b;
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 800;
    text-align: left;
}

.steer-seo-faq__question b {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    flex: 0 0 auto;
    transition: var(--ease);
}

.steer-seo-faq__answer {
    display: none;
    padding: 0 24px 22px;
}

.steer-seo-faq__answer p {
    max-width: 860px;
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.75;
}

.steer-seo-faq__item.is-open .steer-seo-faq__answer {
    display: block;
    animation: steerSeoMore .25s ease both;
}

.steer-seo-faq__item.is-open .steer-seo-faq__question b {
    transform: rotate(45deg);
    background: var(--brand);
    color: #fff;
}

@keyframes steerSeoFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes steerSeoMore {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .steer-seo-hub {
        padding: 78px 0;
    }

    .steer-seo-panel__grid {
        grid-template-columns: 1fr;
    }

    .steer-seo-panel__side {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .steer-seo-hub,
    .steer-seo-faq {
        padding: 58px 0;
    }

    .steer-seo-hub__container,
    .steer-seo-faq__container {
        padding: 0 14px;
    }

    .steer-seo-hub__heading {
        margin-bottom: 30px;
    }

    .steer-seo-hub__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -.045em;
    }

    .steer-seo-hub__intro,
    .steer-seo-faq__intro {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.7;
    }

    .steer-seo-hub__tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        margin: 0 -14px 24px;
        padding: 0 14px 10px;
        scrollbar-width: none;
    }

    .steer-seo-hub__tabs::-webkit-scrollbar {
        display: none;
    }

    .steer-seo-hub__tab {
        flex: 0 0 auto;
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .steer-seo-panel__grid {
        padding: 20px;
        border-radius: 26px;
    }

    .steer-seo-panel__title {
        font-size: 26px;
        line-height: 1.18;
    }

    .steer-seo-panel__text {
        font-size: 15px;
        line-height: 1.75;
    }

    .steer-seo-panel__summary {
        padding: 20px;
        border-radius: 22px;
    }

    .steer-seo-panel__summary strong {
        font-size: 21px;
    }

    .steer-seo-faq__title {
        font-size: 30px;
    }

    .steer-seo-faq__question {
        min-height: 64px;
        padding: 18px;
        font-size: 15px;
    }

    .steer-seo-faq__answer {
        padding: 0 18px 18px;
    }

    .steer-seo-faq__answer p {
        font-size: 14.5px;
    }
}

@media (max-width: 480px) {
    .steer-seo-hub,
    .steer-seo-faq {
        padding: 46px 0;
    }

    .steer-seo-hub__title {
        font-size: 29px;
    }

    .steer-seo-panel__grid {
        padding: 16px;
        border-radius: 22px;
    }

    .steer-seo-panel__title {
        font-size: 23px;
    }

    .steer-seo-panel__text {
        font-size: 14.5px;
    }

    .steer-seo-panel__toggle {
        width: 100%;
    }

    .steer-seo-panel__keywords span {
        font-size: 12px;
    }
}

/* =========================
   DEALER PANEL SECTION
========================= */

.dealer-panel {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(11, 133, 218, .10), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    overflow: hidden;
}

.dealer-panel__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.dealer-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
    gap: 62px;
    align-items: center;
    min-width: 0;
}

.dealer-panel__content,
.dealer-panel__visual {
    min-width: 0;
}

/* Content */

.dealer-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.01em;
}

.dealer-panel__title {
    max-width: 900px;
    margin: 0;
    color: #050505;
    font-size: 24px;
    line-height: 1.53;
    font-weight: 800;
    letter-spacing: -.06em;
}

.dealer-panel__title span {
    display: block;
    color: var(--brand);
}

.dealer-panel__text {
    max-width: 840px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.78;
    letter-spacing: -.02em;
}

.dealer-panel__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 900px;
    margin-top: 38px;
}

.dealer-panel__features article {
    min-width: 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(226, 229, 233, .92);
    box-shadow: 0 12px 34px rgba(15, 23, 42, .045);
    transition: var(--ease);
}

.dealer-panel__features article:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 133, 218, .26);
    box-shadow: 0 16px 42px rgba(11, 133, 218, .08);
}

.dealer-panel__features b {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}

.dealer-panel__features strong {
    display: block;
    color: #031b5b;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -.025em;
}

.dealer-panel__features span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.68;
}

.dealer-panel__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 38px;
}

.dealer-panel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 62px;
    padding: 18px 32px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.02em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 18px 42px rgba(11, 133, 218, .22);
    transition: var(--ease);
}

.dealer-panel__button:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(11, 133, 218, .26);
}

.dealer-panel__button svg {
    width: 22px;
    height: 22px;
}

.dealer-panel__button path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dealer-panel__note {
    max-width: 340px;
}

.dealer-panel__note strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.dealer-panel__note span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

/* Visual */

.dealer-panel__visual {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-panel__flow-card {
    position: relative;
    z-index: 2;
    width: min(100%, 580px);
    padding: 26px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, .12), transparent 34%),
        #fff;
    border: 1px solid rgba(226, 229, 233, .94);
    box-shadow: 0 30px 84px rgba(15, 23, 42, .10);
    overflow: hidden;
}

.dealer-panel__flow-card::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    background-image:
        linear-gradient(rgba(11, 133, 218, .052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 133, 218, .052) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
    mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
    pointer-events: none;
}

.dealer-panel__flow-card::after {
    content: "";
    position: absolute;
    left: -44%;
    top: -24%;
    width: 84%;
    height: 148%;
    background: linear-gradient(90deg, transparent 0%, rgba(11, 133, 218, .04) 48%, rgba(11, 133, 218, .10) 50%, rgba(11, 133, 218, .04) 52%, transparent 100%);
    transform: rotate(16deg);
    animation: dealerPanelGlow 5.8s ease-in-out infinite;
    pointer-events: none;
}

.dealer-panel__top,
.dealer-panel__flow,
.dealer-panel__order-box,
.dealer-panel__status-list {
    position: relative;
    z-index: 2;
}

.dealer-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.dealer-panel__top span,
.dealer-panel__order-head span,
.dealer-panel__order-list span,
.dealer-panel__floating span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.dealer-panel__top strong {
    display: block;
    color: #031b5b;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.045em;
}

.dealer-panel__top small {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px 0 28px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.dealer-panel__top small::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    transform: translateY(-50%);
    animation: dealerLivePulse 1.7s ease-in-out infinite;
}

/* Flow */

.dealer-panel__flow {
    display: grid;
    grid-template-columns: 1fr 38px 1fr 38px 1fr;
    gap: 10px;
    align-items: center;
    padding: 18px;
    border-radius: 26px;
    background: #f8fafc;
    border: 1px solid rgba(226, 229, 233, .92);
}

.dealer-panel__step {
    min-height: 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(226, 229, 233, .92);
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .035);
    animation: dealerStepFloat 4.6s ease-in-out infinite;
}

.dealer-panel__step.is-approval {
    animation-delay: .35s;
}

.dealer-panel__step.is-warehouse {
    animation-delay: .7s;
}

.dealer-panel__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-panel__icon svg {
    width: 28px;
    height: 28px;
}

.dealer-panel__icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dealer-panel__step span {
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
}

.dealer-panel__step strong {
    color: #031b5b;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
}

.dealer-panel__line {
    position: relative;
    height: 3px;
    border-radius: 999px;
    background: rgba(11, 133, 218, .14);
    overflow: hidden;
}

.dealer-panel__line i {
    position: absolute;
    inset: 0;
    width: 55%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    animation: dealerLineFlow 1.7s linear infinite;
}

/* Order box */

.dealer-panel__order-box {
    margin-top: 16px;
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(226, 229, 233, .92);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .055);
}

.dealer-panel__order-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.dealer-panel__order-head strong {
    color: #031b5b;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.dealer-panel__order-head b {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    background: #fff8ed;
    color: #f59e0b;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.dealer-panel__progress {
    height: 12px;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(11, 133, 218, .12);
    overflow: hidden;
}

.dealer-panel__progress i {
    display: block;
    width: 66%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), #44c7ff);
    animation: dealerProgress 3.4s ease-in-out infinite;
}

.dealer-panel__order-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.dealer-panel__order-list div,
.dealer-panel__status-list div {
    min-width: 0;
    padding: 14px;
    border-radius: 17px;
    background: #f8fafc;
    border: 1px solid rgba(226, 229, 233, .92);
}

.dealer-panel__order-list strong {
    display: block;
    color: #031b5b;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

/* Status */

.dealer-panel__status-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.dealer-panel__status-list div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    animation: dealerStatusFloat 4.8s ease-in-out infinite;
}

.dealer-panel__status-list div:nth-child(2) {
    animation-delay: .3s;
}

.dealer-panel__status-list div:nth-child(3) {
    animation-delay: .6s;
}

.dealer-panel__status-list span {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.dealer-panel__status-list strong {
    color: #031b5b;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}

.dealer-panel__status-list small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.dealer-panel__status-list .is-active {
    border-color: rgba(11, 133, 218, .25);
    background: #fff;
}

/* Floating */

.dealer-panel__floating {
    position: absolute;
    z-index: 3;
    width: 245px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(226, 229, 233, .92);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .10);
    animation: dealerFloating 4.5s ease-in-out infinite;
}

.dealer-panel__floating strong {
    display: block;
    color: #031b5b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.dealer-panel__floating--top {
    right: 0;
    top: -75px;
}

.dealer-panel__floating--bottom {
    left: 0;
    bottom: -75px;
    animation-delay: .7s;
}

/* Animations */

@keyframes dealerPanelGlow {
    0% {
        transform: translateX(-20%) rotate(16deg);
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    70% {
        opacity: .75;
    }

    100% {
        transform: translateX(180%) rotate(16deg);
        opacity: 0;
    }
}

@keyframes dealerLivePulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(11, 133, 218, .32);
    }

    50% {
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 0 0 7px rgba(11, 133, 218, 0);
    }
}

@keyframes dealerStepFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes dealerLineFlow {
    from {
        transform: translateX(-110%);
    }

    to {
        transform: translateX(190%);
    }
}

@keyframes dealerProgress {
    0%, 100% {
        width: 54%;
    }

    50% {
        width: 72%;
    }
}

@keyframes dealerStatusFloat,
@keyframes dealerFloating {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Responsive */

@media (max-width: 1200px) {
    .dealer-panel {
        padding: 78px 0;
    }

    .dealer-panel__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .dealer-panel__content {
        text-align: center;
    }

    .dealer-panel__title,
    .dealer-panel__text {
        margin-left: auto;
        margin-right: auto;
    }

    .dealer-panel__features {
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .dealer-panel__actions {
        justify-content: center;
    }

    .dealer-panel__visual {
        min-height: 660px;
    }
}
    .dealer-panel__content {
        order: 2;
    }

    .dealer-panel__visual {
        order: 1;
    }

@media (max-width: 768px) {
    .dealer-panel {
        padding: 58px 0;
    }

    .dealer-panel__container {
        padding: 0 14px;
    }

    .dealer-panel__grid {
        gap: 34px;
    }

    .dealer-panel__content {
        order: 1;
    }

    .dealer-panel__visual {
        order: 2;
        min-height: auto;
    }

    .dealer-panel__eyebrow {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .dealer-panel__title {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -.045em;
    }

    .dealer-panel__text {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.75;
    }

    .dealer-panel__features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }

    .dealer-panel__features article {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding: 17px;
        border-radius: 18px;
    }

    .dealer-panel__features b {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .dealer-panel__features strong {
        font-size: 15.5px;
    }

    .dealer-panel__features span {
        font-size: 13.5px;
    }

    .dealer-panel__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .dealer-panel__button {
        width: 100%;
        min-height: 58px;
        padding: 17px 22px;
        font-size: 15.5px;
        white-space: normal;
    }

    .dealer-panel__note {
        max-width: 100%;
        text-align: center;
    }

    .dealer-panel__flow-card {
        width: 100%;
        padding: 16px;
        border-radius: 26px;
    }

    .dealer-panel__flow-card::before {
        inset: 16px;
        border-radius: 20px;
        background-size: 28px 28px;
    }

    .dealer-panel__top strong {
        font-size: 21px;
    }

    .dealer-panel__flow {
        grid-template-columns: 1fr;
        padding: 14px;
        border-radius: 20px;
    }

    .dealer-panel__step {
        min-height: auto;
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        text-align: left;
        justify-items: flex-start;
        padding: 14px;
        border-radius: 18px;
    }

    .dealer-panel__icon {
        grid-row: 1 / span 2;
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .dealer-panel__step span,
    .dealer-panel__step strong {
        grid-column: 2;
    }

    .dealer-panel__line {
        width: 3px;
        height: 28px;
        margin: 0 auto;
    }

    .dealer-panel__line i {
        width: 100%;
        height: 55%;
        animation: dealerLineVertical 1.7s linear infinite;
    }

    .dealer-panel__order-box {
        padding: 16px;
        border-radius: 20px;
    }

    .dealer-panel__order-list {
        grid-template-columns: 1fr;
    }

    .dealer-panel__floating {
        display: none;
    }
}

@media (max-width: 480px) {
    .dealer-panel {
        padding: 46px 0;
    }

    .dealer-panel__title {
        font-size: 24px;
    }

    .dealer-panel__text {
        font-size: 14.5px;
    }

    .dealer-panel__flow-card {
        padding: 13px;
        border-radius: 22px;
    }

    .dealer-panel__top {
        gap: 10px;
    }

    .dealer-panel__top strong {
        font-size: 18px;
    }

    .dealer-panel__top small {
        min-height: 30px;
        padding: 0 10px 0 24px;
        font-size: 10.5px;
    }

    .dealer-panel__features article {
        grid-template-columns: 1fr;
    }

    .dealer-panel__features b {
        width: 40px;
        height: 40px;
    }

    .dealer-panel__order-head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dealer-panel__status-list div {
        grid-template-columns: 38px minmax(0, 1fr);
    }
}

@keyframes dealerLineVertical {
    from {
        transform: translateY(-110%);
    }

    to {
        transform: translateY(190%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dealer-panel__flow-card::after,
    .dealer-panel__top small::before,
    .dealer-panel__step,
    .dealer-panel__line i,
    .dealer-panel__progress i,
    .dealer-panel__status-list div,
    .dealer-panel__floating {
        animation: none !important;
    }
}

/* =========================
   STEER HEADER & FOOTER - STABLE
========================= */

.steer-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 229, 233, 0.86);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.035);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.steer-header *,
.steer-footer * {
    box-sizing: border-box;
}

.steer-header a,
.steer-footer a {
    text-decoration: none;
}

.steer-header button {
    font-family: var(--font-main, 'Poppins', sans-serif);
}

.steer-header__container,
.steer-footer__container {
    width: 100%;
    max-width: min(var(--container, 1536px), 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.steer-header__container {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

/* Brand */

.steer-header__brand,
.steer-footer__logo {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #031b5b;
}

.steer-header__brand-mark,
.steer-footer__logo span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 14px;
    background: var(--brand, #0b85da);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(11, 133, 218, 0.18);
}

.steer-header__brand-text {
    min-width: 0;
}

.steer-header__brand-text strong,
.steer-footer__logo strong {
    display: block;
    color: #031b5b;
    font-size: 19px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.steer-header__brand-text small {
    display: block;
    margin-top: 3px;
    color: var(--muted, #5f6673);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
}

/* Desktop Nav */

.steer-header__nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.steer-header__link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #031b5b;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.015em;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease;
}

.steer-header__link:hover,
.steer-header__link.is-active,
.steer-header__trigger[aria-expanded="true"] {
    background: var(--brand-soft, #eef8ff);
    color: var(--brand, #0b85da);
}

.steer-header__trigger svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    transition: transform 0.22s ease;
}

.steer-header__trigger path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.steer-header__trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.steer-header__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.steer-header__demo {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--brand, #0b85da);
    color: #fff;
    font-size: 13.5px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 14px 32px rgba(11, 133, 218, 0.18);
    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease;
}

.steer-header__demo:hover {
    background: var(--brand-dark, #0672bd);
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(11, 133, 218, 0.22);
}

/* Mega Menu */

.steer-header__dropdown {
    position: static;
}

.steer-mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: min(1160px, calc(100vw - 48px));
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
}

.steer-header__dropdown.is-open .steer-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.steer-mega-menu__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 22px;
    padding: 22px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(226, 229, 233, 0.96);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.14);
}

.steer-mega-menu__intro {
    min-width: 0;
    padding: 22px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, 0.12), transparent 42%),
        #f8fbff;
    border: 1px solid rgba(226, 229, 233, 0.9);
}

.steer-mega-menu__intro span,
.steer-footer__cta span,
.steer-footer__column > span {
    display: block;
    margin-bottom: 10px;
    color: var(--brand, #0b85da);
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.steer-mega-menu__intro strong {
    display: block;
    color: #031b5b;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.steer-mega-menu__intro p {
    margin: 13px 0 0;
    color: var(--muted, #5f6673);
    font-size: 13.5px;
    line-height: 1.65;
}

.steer-mega-menu__columns {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.steer-mega-menu__group {
    min-width: 0;
}

.steer-mega-menu__group > span {
    display: block;
    margin: 0 0 9px;
    color: #031b5b;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.steer-mega-menu__group a,
.steer-mega-menu__sector-grid a {
    min-width: 0;
    display: block;
    padding: 12px 13px;
    border-radius: 16px;
    color: #031b5b;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.steer-mega-menu__group a:hover,
.steer-mega-menu__group a.is-active,
.steer-mega-menu__sector-grid a:hover,
.steer-mega-menu__sector-grid a.is-active {
    background: var(--brand-soft, #eef8ff);
    transform: translateY(-1px);
}

.steer-mega-menu__group a strong,
.steer-mega-menu__sector-grid a strong {
    display: block;
    color: #031b5b;
    font-size: 13.5px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.steer-mega-menu__group a small,
.steer-mega-menu__sector-grid a small {
    display: block;
    margin-top: 5px;
    color: var(--muted, #5f6673);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
}

.steer-mega-menu__sector-grid {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

/* Mobile Header */

.steer-header__mobile-button {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    border: 1px solid rgba(226, 229, 233, 0.95);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}

.steer-header__mobile-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #031b5b;
    transition:
        transform 0.22s ease,
        opacity 0.22s ease;
}

.steer-header.is-mobile-open .steer-header__mobile-button span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.steer-header.is-mobile-open .steer-header__mobile-button span:nth-child(2) {
    opacity: 0;
}

.steer-header.is-mobile-open .steer-header__mobile-button span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.steer-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(226, 229, 233, 0.88);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.steer-header.is-mobile-open .steer-mobile-menu {
    display: block;
}

.steer-mobile-menu__inner {
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    padding: 14px;
}

.steer-mobile-menu__link,
.steer-mobile-menu__cta,
.steer-mobile-menu__accordion > button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #031b5b;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
}

.steer-mobile-menu__link:hover,
.steer-mobile-menu__accordion.is-open > button {
    background: var(--brand-soft, #eef8ff);
    color: var(--brand, #0b85da);
}

.steer-mobile-menu__cta {
    justify-content: center;
    margin-top: 12px;
    background: var(--brand, #0b85da);
    color: #fff;
}

.steer-mobile-menu__accordion b {
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    transition: transform 0.22s ease;
}

.steer-mobile-menu__accordion.is-open b {
    transform: rotate(45deg);
}

.steer-mobile-menu__panel {
    display: none;
    padding: 8px 0 12px 12px;
}

.steer-mobile-menu__accordion.is-open .steer-mobile-menu__panel {
    display: grid;
    gap: 4px;
}

.steer-mobile-menu__panel span {
    display: block;
    margin: 10px 0 4px;
    color: var(--brand, #0b85da);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.steer-mobile-menu__panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--muted, #5f6673);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.steer-mobile-menu__panel a:hover {
    background: #f8fbff;
    color: #031b5b;
}

/* =========================
   FOOTER
========================= */

.steer-footer {
    position: relative;
    width: 100%;
    padding: 72px 0 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(11, 133, 218, 0.13), transparent 36%),
        linear-gradient(180deg, #081526 0%, #06101d 100%);
    color: #fff;
    overflow: hidden;
}

.steer-footer__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.steer-footer__cta span,
.steer-footer__column > span {
    color: #70c8ff;
}

.steer-footer__cta strong {
    display: block;
    max-width: 860px;
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.steer-footer__cta p {
    max-width: 760px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14.5px;
    line-height: 1.7;
}

.steer-footer__cta a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--brand, #0b85da);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    transition:
        transform 0.22s ease,
        background-color 0.22s ease;
}

.steer-footer__cta a:hover {
    background: var(--brand-dark, #0672bd);
    transform: translateY(-1px);
}

.steer-footer__cta svg {
    width: 20px;
    height: 20px;
}

.steer-footer__cta path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.steer-footer__main {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(230px, 0.9fr) minmax(210px, 0.72fr) minmax(180px, 0.55fr);
    gap: 34px;
    padding: 54px 0 40px;
}

.steer-footer__brand {
    min-width: 0;
}

.steer-footer__logo span {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
}

.steer-footer__logo strong {
    color: #fff;
    font-size: 20px;
}

.steer-footer__brand p {
    max-width: 430px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.75;
}

.steer-footer__contact {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.steer-footer__contact a,
.steer-footer__contact span,
.steer-footer__column a {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13.5px;
    line-height: 1.45;
    font-weight: 600;
    transition: color 0.22s ease;
}

.steer-footer__contact a:hover,
.steer-footer__column a:hover {
    color: #fff;
}

.steer-footer__column {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 10px;
}

.steer-footer__column > span {
    margin-bottom: 7px;
}

.steer-footer__bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.steer-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    line-height: 1.5;
}

.steer-footer__bottom div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.steer-footer__bottom a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.22s ease;
}

.steer-footer__bottom a:hover {
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1280px) {
    .steer-header__container {
        gap: 16px;
    }

    .steer-header__link {
        padding: 0 10px;
        font-size: 13px;
    }

    .steer-header__demo {
        padding: 0 15px;
        font-size: 13px;
    }

    .steer-mega-menu {
        width: min(1060px, calc(100vw - 36px));
    }

    .steer-mega-menu__inner {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

@media (max-width: 1180px) {
    .steer-header__container {
        min-height: 74px;
        grid-template-columns: auto auto;
    }

    .steer-header__nav,
    .steer-header__demo {
        display: none;
    }

    .steer-header__actions {
        justify-self: end;
    }

    .steer-header__mobile-button {
        display: block;
    }

    .steer-footer__main {
        grid-template-columns: 1.1fr 1fr;
    }
}

@media (max-width: 768px) {
    .steer-header__container,
    .steer-footer__container {
        padding: 0 14px;
    }

    .steer-header__container {
        min-height: 70px;
    }

    .steer-header__brand {
        gap: 10px;
    }

    .steer-header__brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 13px;
        font-size: 16px;
    }

    .steer-header__brand-text strong {
        font-size: 17px;
    }

    .steer-header__brand-text small {
        display: none;
    }

    .steer-header__mobile-button {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .steer-mobile-menu__inner {
        max-height: calc(100vh - 70px);
    }

    .steer-footer {
        padding-top: 46px;
    }

    .steer-footer__cta {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 24px;
    }

    .steer-footer__cta strong {
        font-size: 25px;
        line-height: 1.22;
    }

    .steer-footer__cta p {
        font-size: 14px;
    }

    .steer-footer__cta a {
        width: 100%;
    }

    .steer-footer__main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 42px 0 32px;
    }

    .steer-footer__brand p {
        max-width: 100%;
    }

    .steer-footer__bottom {
        display: grid;
        justify-items: flex-start;
        gap: 12px;
    }

    .steer-footer__bottom div {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .steer-header__container {
        min-height: 66px;
    }

    .steer-header__brand-text strong {
        font-size: 16px;
    }

    .steer-mobile-menu__inner {
        max-height: calc(100vh - 66px);
        padding: 12px;
    }

    .steer-mobile-menu__link,
    .steer-mobile-menu__cta,
    .steer-mobile-menu__accordion > button {
        min-height: 46px;
        font-size: 13.5px;
    }

    .steer-footer__cta {
        padding: 20px;
        border-radius: 22px;
    }

    .steer-footer__cta strong {
        font-size: 22px;
    }

    .steer-footer__column a,
    .steer-footer__contact a,
    .steer-footer__contact span {
        font-size: 13px;
    }
}

/* =========================
   HEADER DROPDOWN FIX
========================= */

.steer-header {
    position: sticky;
    top: 0;
    z-index: 99999;
}

.steer-header__dropdown {
    position: static;
}

/* Masaüstü hover ile mega menü açılır */
@media (min-width: 1181px) {
    .steer-header__dropdown:hover .steer-mega-menu,
    .steer-header__dropdown:focus-within .steer-mega-menu,
    .steer-header__dropdown.is-open .steer-mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .steer-header__dropdown:hover .steer-header__trigger,
    .steer-header__dropdown:focus-within .steer-header__trigger,
    .steer-header__dropdown.is-open .steer-header__trigger {
        background: var(--brand-soft, #eef8ff);
        color: var(--brand, #0b85da);
    }

    .steer-header__dropdown:hover .steer-header__trigger svg,
    .steer-header__dropdown:focus-within .steer-header__trigger svg,
    .steer-header__dropdown.is-open .steer-header__trigger svg {
        transform: rotate(180deg);
    }
}

/* Mega menü kapalı varsayılan */
.steer-mega-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Mobilde masaüstü mega menü görünmesin */
@media (max-width: 1180px) {
    .steer-mega-menu {
        display: none !important;
    }

    .steer-header__nav,
    .steer-header__demo {
        display: none !important;
    }

    .steer-header__mobile-button {
        display: block !important;
    }
}

/* =========================
   MOBILE MENU FIX
========================= */

.steer-mobile-menu {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(226, 229, 233, 0.88);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

/* Menü header içindeyse */
.steer-header.is-mobile-open .steer-mobile-menu {
    display: block !important;
}

/* Menü header dışındaysa */
body.steer-mobile-open .steer-mobile-menu {
    display: block !important;
}

.steer-mobile-menu__accordion.is-open .steer-mobile-menu__panel {
    display: grid !important;
}

.steer-mobile-menu__panel {
    display: none;
}