.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 0 !important;

    background:
        radial-gradient(circle at 8% 30%,
            rgba(37, 99, 235, 0.08),
            transparent 30%),
        radial-gradient(circle at 92% 25%,
            rgba(139, 108, 255, 0.08),
            transparent 30%),
        var(--section-bg-2) !important;
}


/* ==========================================================
   BACKGROUND GRID
========================================================== */

.hero-grid {
    position: absolute;
    inset: 0;

    z-index: -3;

    pointer-events: none;

    background-image:
        linear-gradient(rgba(148, 163, 184, 0.15) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(148, 163, 184, 0.15) 1px,
            transparent 1px);

    background-size: 72px 72px;

    -webkit-mask-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.6) 70%,
            transparent);

    mask-image:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.6) 70%,
            transparent);
}


.hero-grid::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.2),
            transparent 65%);

    pointer-events: none;
}


/* ==========================================================
   BACKGROUND GLOWS
========================================================== */

.hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    top: 0;

    z-index: -2;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(37, 99, 235, 0.10),
            transparent 68%);

    filter: blur(70px);

    pointer-events: none;
}


.hero::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -330px;
    top: 30px;

    z-index: -2;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(139, 108, 255, 0.09),
            transparent 68%);

    filter: blur(70px);

    pointer-events: none;
}


/* ==========================================================
   HERO CONTAINER
========================================================== */

.hero-container {
    position: relative;

    width: 100%;
    max-width: var(--container);

    margin: 0 auto;

    padding:
        clamp(195px, 13vh, 190px) 24px 80px !important;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(420px, 540px);

    align-items: center;

    gap: clamp(55px, 7vw, 105px);

    z-index: 2;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content {
    width: 100%;
    max-width: 550px;
}


.hero-content>* {
    position: relative;
    z-index: 5;
}


/* ==========================================================
   HERO BADGE
========================================================== */

.hero-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border:
        1px solid rgba(37, 99, 235, 0.18);

    border-radius: var(--radius-full);

    background:
        rgba(239, 246, 255, 0.88);
    font-family: var(--font-main);



    color: var(--primary);

    font-size: 14px;
    line-height: 1;

    font-weight: var(--fw-semibold);

    cursor: default;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.hero-badge svg {
    width: 18px;
    height: 18px;

    flex-shrink: 2;
}


.hero-badge:hover {
    transform: translateY(1px);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.07);
}


/* ==========================================================
   HERO HEADING
========================================================== */

.hero-content h1 {
    max-width: 650px;

    margin:
        clamp(24px, 3vw, 32px) 0 0;

    color: var(--text-main);

    font-size:
        clamp(48px, 4.6vw, 68px);

    line-height: 1.03;

    letter-spacing: -3px;

    font-weight: var(--fw-extra);

    text-wrap: balance;
}


/* ==========================================================
   GRADIENT TEXT
========================================================== */

.text-gradient {
    background:
        var(--text-gradient-premium);

    background-clip: text;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    color: transparent !important;
}


/* ==========================================================
   TYPING TEXT
========================================================== */

.hero-rotate {
    position: relative;

    display: inline;

    min-width: 0;
}


.hero-rotate::after {
    content: "";

    display: inline-block;

    width: 3px;
    height: .9em;

    margin-left: 5px;

    vertical-align: -0.08em;

    border-radius: var(--radius-full);

    background: var(--primary);

    animation: heroCursorBlink .8s infinite;
}


@keyframes heroCursorBlink {

    0%,
    45% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}


/* ==========================================================
   HERO DESCRIPTION
========================================================== */

.hero-content p {
    max-width: 570px;

    margin: 25px 0 0;

    color: var(--text-muted);

    font-size: 17px;

    line-height: 1.75;

    text-wrap: pretty;
}


/* ==========================================================
   HERO ACTIONS
========================================================== */

.hero-actions {
    margin-top: 34px;

    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}





.hero-actions .header-cta:hover {
    transform: translateY(-2px);

    filter: brightness(1.03);

    box-shadow:
        0 15px 32px rgba(37, 99, 235, 0.24) !important;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: fit-content;
    min-height: 54px;
    padding: 0 24px;

    border: 0;
    border-radius: 14px;

    background: var(--gradient-primary);
    color: var(--text-white);

    font-family: var(--font-main);
    font-size: 14px;
    font-weight: var(--fw-semibold);
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    box-shadow: var(--shadow-primary);

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.28);
}

.header-cta:active {
    transform: translateY(0);
}

.header-cta .cta-btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* SECONDARY BUTTON */

.hero-btn {
    min-height: 50px;

    padding: 0 22px !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(37, 99, 235, 0.18) !important;

    border-radius: 13px !important;

    background:
        rgba(255, 255, 255, 0.82) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    color:
        var(--primary) !important;

    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.04) !important;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.hero-btn:hover {
    transform: translateY(-2px);

    background:
        var(--bg-white) !important;

    border-color:
        rgba(37, 99, 235, 0.30) !important;

    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.07) !important;
}


/* ==========================================================
   HERO TRUST / STATS
========================================================== */

.hero-trust {
    width: fit-content;

    margin-top: 44px;

    padding-top: 24px;

    display: flex !important;
    align-items: stretch !important;

    gap: 0 !important;

    flex-wrap: nowrap !important;

    border-top:
        1px solid rgba(15, 23, 42, 0.08);
}


.hero-trust-item {
    position: relative;

    min-width: 145px;

    padding-right: 25px;
    margin-right: 25px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


.hero-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 4px;
    right: 0;

    width: 1px;
    height: 43px;

    background:
        rgba(15, 23, 42, 0.09);
}


.hero-trust-item:last-child {
    padding-right: 0;
    margin-right: 0;
}


.hero-trust-item strong {
    color: var(--blue-bright);

    font-size: 29px;

    line-height: 1;

    letter-spacing: -1px;

    font-weight: var(--fw-extra);
}


.counter {
    color:
        var(--blue-bright) !important;
}


.hero-trust-item span {
    margin-top: 8px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.3;

    font-weight: var(--fw-medium);

    white-space: nowrap;
}


/* ==========================================================
   HERO VISUAL
========================================================== */

.hero-visual {
    position: relative;

    width: 100%;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* subtle visual glow */

.hero-visual::before {
    content: "";

    position: absolute;

    width: 88%;
    height: 88%;

    z-index: -1;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(37, 99, 235, 0.15),
            rgba(139, 108, 255, 0.08) 45%,
            transparent 70%);

    filter: blur(45px);

    transform: scale(1.08);

    pointer-events: none;
}


/* ==========================================================
   HERO VIDEO
========================================================== */

.hero-video {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: 24px;

    border:
        1px solid rgba(255, 255, 255, 0.75);

    background: var(--bg-soft);

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.12),
        0 8px 25px rgba(37, 99, 235, 0.08);
}


.hero-video-2 {
    display: none;
}

.trust {
    position: relative;
    width: 100%;
    overflow: hidden;

    padding: 28px 0 30px !important;

    background: var(--bg-white) !important;

    border-top: var(--border-light);
    border-bottom: var(--border-light);
}


/* ==========================================================
   TITLE
========================================================== */

.trust-title {
    margin: 0 0 24px;

    text-align: center;

    color: var(--text-muted);

    font-size: 13px;
    line-height: 1.4;
    font-weight: var(--fw-medium);

    letter-spacing: 0.04em;
}


/* ==========================================================
   MARQUEE WRAPPER
========================================================== */

.trust-wrapper {
    position: relative;

    width: 100%;
    overflow: hidden;

    -webkit-mask-image:
        linear-gradient(to right,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);

    mask-image:
        linear-gradient(to right,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);
}


/* ==========================================================
   MOVING TRACK
========================================================== */

.trust-track {
    display: flex;
    align-items: center;

    width: max-content;

    gap: 75px;

    animation: trustScroll 28s linear infinite;

    will-change: transform;
}


/* pause on hover */

.trust-wrapper:hover .trust-track {
    animation-play-state: paused;
}


/* ==========================================================
   SINGLE LOGO
========================================================== */

.trust .logo {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
}


/* ==========================================================
   LOGO LINK
========================================================== */

.trust .logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    text-decoration: none;

    cursor: default;

    opacity: 0.62;

    filter: grayscale(100%);

    transition:
        opacity .3s ease,
        filter .3s ease,
        transform .3s ease;
}


/* ==========================================================
   LOGO IMAGE
========================================================== */

.trust .logo-image {
    display: block;

    width: 36px;
    height: 36px;

    object-fit: contain;

    flex-shrink: 0;
}


/* ==========================================================
   LOGO TEXT
========================================================== */

.trust .logo-text {
    display: flex;
    flex-direction: column;

    justify-content: center;

    min-width: 0;
}


.trust .logo-text span {
    color: var(--text-secondary);

    font-size: 15px;
    line-height: 1.1;

    font-weight: var(--fw-bold);

    letter-spacing: -0.01em;

    white-space: nowrap;
}


.trust .logo-text small {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 8px;
    line-height: 1;

    font-weight: var(--fw-semibold);

    letter-spacing: 0.18em;

    text-transform: uppercase;

    white-space: nowrap;
}


/* ==========================================================
   HOVER
========================================================== */

.trust .logo-hover:hover .logo-link {
    opacity: 1;

    filter: grayscale(0%);

    transform: translateY(-2px);
}


/* ==========================================================
   MARQUEE ANIMATION
========================================================== */

@keyframes trustScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}





.problems-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light) !important
}

.problems-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    top: -260px;
    left: -220px;
    border-radius: 50%;

    filter: blur(90px);
    pointer-events: none
}

.problems-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -260px;
    bottom: -320px;
    border-radius: 50%;

    pointer-events: none
}

.problem-heading {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 0
}

.problem-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(20, 120, 255, .08);
    color: var(--blue-bright);
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: 25px
}

.problem-badge svg {
    width: 18px;
    height: 18px
}

.problem-heading h2 {
    font-size: 3.3rem;
    line-height: 1.08;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    margin-top:24px ;
}

.problem-heading h2 span {
    display: block;
    background: var(--card-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.problem-heading p {
    max-width: 720px;
    margin: auto;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-gray)
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
    gap: 34px
}

.problem-card {
    position: relative;
    overflow: hidden;
    background: var(--card-purple);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 34px;
    transition: .45s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04)
}

.problem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s
}

.problem-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(20, 120, 255, .08), rgba(139, 108, 255, .08));
    transition: .45s
}

.problem-icon svg {
    width: 30px;
    height: 30px;
    color: var(--blue-bright);
    transition: .45s
}

.problem-points {
    margin-top: 50px;
    margin-left: 17px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0
}

.problem-points li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--glass-light);
    font-weight: 500
}

.problem-points li::before {
    content: "✕";
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px)
}

.problem-card h3 {
    font-size: 1.45rem;
    color: var(--glass-light);
    margin-left: 76px;
    margin-top: 11px;
    margin-bottom: 18px
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 32px
}

.mini-ui {
    position: relative;
    margin-top: 30px;
    border-radius: 22px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    padding: 20px;
    min-height: 220px;
    overflow: hidden
}

.problem-footer p {
    max-width: 620px;
    margin: auto;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 35px
}

.problem-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: var(--card-purple);
    transition: .35s
}

.problem-btn svg {
    width: 18px;
    height: 18px
}

.problem-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, .25)
}

.browser-top {
    display: flex;
    gap: 10px;
    margin-bottom: 18px
}

.browser-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.browser-top span:first-child {
    background: #ff5f57
}

.browser-top span:nth-child(2) {
    background: #febc2e
}

.browser-top span:nth-child(3) {
    background: #28c840
}

.address-bar {
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .85);
    margin-bottom: 22px
}

.browser-body {
    display: flex;
    gap: 18px
}

.sidebar {
    width: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.nav-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c7d2fe
}

.nav-dot.active {
    width: 11px;
    height: 11px;
    background: #1478ff
}

.dashboard {
    flex: 1
}

.hero-banner {
    height: 58px;
    border-radius: 16px;
    padding: 12px;
    background: linear-gradient(135deg, #1478ff, #8b6cff)
}

.hero-title {
    width: 70%;
    height: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    margin-bottom: 8px
}

.hero-subtitle {
    width: 50%;
    height: 7px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .55);
    margin-bottom: 10px
}

.hero-button {
    width: 42px;
    height: 10px;
    border-radius: 999px;
    background: #fff
}

.stats {
    margin-top: 18px;
    display: flex;
    gap: 14px
}

.stat-card {
    flex: 1;
    height: 70px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    position: relative
}

.stat-card::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 14px;
    width: 60%;
    height: 7px;
    border-radius: 999px;
    background: #d6e4ff
}

.stat-card::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 14px;
    width: 40px;
    height: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1478ff, #8b6cff)
}

.seo-ui {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.google-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    color: #fff
}

.google-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12)
}

.google-icon svg {
    width: 18px;
    height: 18px;
    color: #fff
}

.map-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.map-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .08)
}

.place-left {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.place-name {
    color: var(--blue-bright);
    font-size: 15px;
    font-weight: 600
}

.stars {
    color: #ffd54a;
    font-size: 12px;
    letter-spacing: 2px
}

.rank {
    color: #36d66d;
    font-weight: 700;
    font-size: 15px
}

.map-divider {
    height: 1px;
    background: rgba(255, 255, 255, .15)
}

.business {
    background: rgba(255, 90, 90, .12);
    border: 1px solid rgba(255, 90, 90, .25)
}

.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 90, 90, .15);
    color: #ff5c5c;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    width: auto;
    height: auto
}

.danger {
    color: #f66;
    font-size: 18px
}

.lead-ui {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lead-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border)
}

.lead-item svg {
    width: 18px;
    height: 18px;
    color: #64748b
}

.lead-item span {
    font-size: .95rem;
    color: var(--text-dark)
}

.lead-item.inactive {
    opacity: .55;
    border-style: dashed
}

.task-ui {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.task-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border)
}

.task-row span {
    font-weight: 500;
    color: var(--text-dark)
}

.status.gray {
    background: #d1d5db
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    margin-bottom: 22px
}

.search-bar svg {
    width: 18px;
    height: 18px;
    color: #64748b
}

.search-bar span {
    color: #94a3b8
}

.ranking {
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 12px;
    font-weight: 600
}

.competitor {
    background: #ecfdf5;
    color: #16a34a
}

.business {
    background: #fef2f2;
    color: #dc2626
}

.problem-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 120, 255, .08), transparent 70%);
    opacity: 0;
    transition: .45s
}

.problems-container {
    padding: 20px !important
}

@keyframes shake {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(-2px)
    }

    50% {
        transform: translateX(2px)
    }

    75% {
        transform: translateX(-2px)
    }

    100% {
        transform: translateX(0)
    }
}

.shape-right {
    position: absolute;
    right: -40px;
    top: 239px;
    width: 26%;
    height: 160px;
    background: linear-gradient(225deg, rgba(20, 120, 255, .08), rgba(20, 120, 255, .03));
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    border-top: 1px solid rgba(20, 120, 255, .1)
}

.shape-left {
    position: absolute;
    left: -40px;
    top: 239px;
    width: 26%;
    height: 160px;
    background: linear-gradient(135deg, rgba(20, 120, 255, .08), rgba(20, 120, 255, .03));
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
    border-left: 1px solid rgba(20, 120, 255, .05)
}

.shape-left::before,
.shape-right::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 120, 255, .12), transparent)
}

.lead-list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.lead-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
    transition: .35s
}

.lead-left {
    display: flex;
    align-items: center;
    gap: 14px
}

.lead-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef4ff
}

.lead-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.3
}

.whatsapp svg {
    color: #22c55e
}

.email svg {
    color: #1478ff
}

.phone svg {
    color: #8b6cff
}

.lost-icon {
    background: #ffecec
}

.lost-icon svg {
    color: #ef4444
}

.lead-content {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lead-content h5 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b
}

.lead-content span {
    font-size: 12px;
    color: #94a3b8
}

.lead-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px
}

.new {
    background: #dcfce7;
    color: #16a34a
}

.lead-badge.open {
    background: #dbeafe;
    color: #2563eb
}

.done {
    background: #ede9fe;
    color: #7c3aed
}

.lost {
    border: 1px dashed rgba(239, 68, 68, .35);
    background: #fff5f5
}

.lost-badge {
    background: #fee2e2;
    color: #dc2626
}

.why-ploutic {
    position: relative;
    padding: 50px 0;

    overflow: hidden;
    animation: sectionFade .9s ease
}

.why-ploutic::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -220px;
    right: -180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 120, 255, .08), transparent 70%);
    pointer-events: none
}

.why-ploutic::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    bottom: -180px;
    left: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 120, 255, .05), transparent 70%)
}

.why-heading {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px
}

.why-heading h2 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--text-dark);
    margin: 20px 0
}

.why-heading p {
    max-width: 700px;
    margin: auto;
    line-height: 1.9;
    color: var(--text-gray)
}

.why-wrapper {
    display: grid;
    gap: 90px;
    align-items: center;
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    width: 100%
}

.why-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    overflow: hidden;
    animation: none !important;
    transform: none !important
}

#serviceImage {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 32px;
    transform: none !important;
    transition: opacity .35s ease, transform .45s ease
}

.why-content {
    width: 100%
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.service-item {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    transition: .35s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    padding: 28px 30px;
    transition: .35s;
    position: relative;
    transition: .35s
}

.service-info {
    flex: 1
}

.service-number {
    width: 48px;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-bright)
}

.service-info h4 {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    transition: .3s
}

.service-item.active {
    border-color: rgba(20, 120, 255, .18);
    box-shadow: 0 15px 35px rgba(15, 23, 42, .06)
}

.service-item.active .service-info h4 {
    color: var(--blue-bright)
}

.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f4f8ff;
    display: flex;
    align-items: center;
    justify-content: center
}

.service-item.active .service-icon {
    transform: rotate(180deg);
    color: var(--blue-bright)
}

.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease, opacity .3s ease;
    opacity: 0;
    padding-left: 95px;
    padding-right: 30px
}

.service-item.active .service-body {
    opacity: 1
}

.service-body p {
    padding-bottom: 28px;
    color: var(--text-gray);
    font-size: 18px;
    line-height: 2;
    max-width: 520px
}

.why-image::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -1
}

.why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none
}

@keyframes imageFloat {
    0% {
        transform: translateY(0)
    }

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

    100% {
        transform: translateY(0)
    }
}

.why-image {
    animation: imageFloat 6s ease-in-out infinite
}

.service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 26px;
    width: 3px;
    height: 0;
    border-radius: 50px;
    background: var(--blue-bright);
    transition: .35s ease
}

.service-item.active::before {
    height: 58px
}

.service-item:hover {
    transform: translateX(6px);
    border-color: #d9e7ff
}

.service-item:hover .service-info h4 {
    color: var(--blue-bright)
}

.service-item:hover .service-number {
    transform: translateX(4px)
}

.service-number {
    transition: .35s
}

.service-icon {
    transition: transform .35s ease, color .35s ease
}

.service-body {
    transition: max-height .45s ease, opacity .35s ease, padding .35s ease
}

.service-item.active .service-body {
    padding-top: 6px
}

#serviceImage {
    border-radius: 32px;
    transition: opacity .35s ease, transform .45s ease, filter .4s ease;
    height: 500px;
    width: 500px
}

.why-wrapper:hover #serviceImage {
    transform: scale(1.02)
}

.btn-primary {
    transition: .35s
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(20, 120, 255, .22)
}

.fade-change {
    opacity: 0;
    transform: translateY(10px)
}

.service-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--blue-bright);
    transition: .4s
}

.service-item.active .service-header::after {
    width: 100%
}

.service-body p {
    animation: fadeText .4s ease
}

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

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

@keyframes sectionFade {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

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

.service-item.active {
    background: linear-gradient(135deg, rgba(20, 120, 255, .05), rgba(255, 255, 255, .96))
}

.service-item.active {
    box-shadow: 0 15px 45px rgba(20, 120, 255, .1), 0 2px 12px rgba(15, 23, 42, .05)
}

.why-image {
    transition: .5s
}

.why-image {
    position: relative
}

.why-image::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 45%;
    height: 300%;
    transform: rotate(25deg);
    background: linear-gradient(transparent, rgba(255, 255, 255, .45), transparent);
    transition: 1.2s
}

.why-image:hover::after {
    left: 130%
}

.service-item {
    transition: transform .35s, background .35s, box-shadow .35s
}

.service-item:hover {
    background: #fff
}

.service-item.active .service-header {
    padding-bottom: 18px
}

.service-number {
    letter-spacing: 2px;
    font-weight: 800
}

.service-icon {
    border-radius: 50%;
    padding: 5px
}

.service-item.active .service-icon {
    background: rgba(20, 120, 255, .08)
}

.service-body p {
    color: #64748b;
    font-size: 1rem
}

#serviceImage {
    will-change: transform
}

.service-item.active~.why-image img {
    transform: scale(1.03)
}

.btn-primary {
    position: relative;
    overflow: hidden
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
    transition: 1s
}

.btn-primary:hover::before {
    left: 140%
}

.why-image img {
    border: 1px solid rgba(255, 255, 255, .45)
}

.why-ploutic .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue-bright);
    opacity: .15
}

.dot.one {
    top: 18%;
    right: 14%
}

.dot.two {
    bottom: 20%;
    left: 10%
}

.dot.three {
    top: 42%;
    left: 4%
}

.ploutic-comparison {
    position: relative;
    padding: 120px 0;
    background: var(--bg-1, #f8fafc);
    overflow: hidden
}

.comparison-heading {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center
}

.comparison-heading h2 {
    margin: 20px 0;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-dark, #0f172a)
}

.comparison-heading h2 span {
    display: block;
    background: linear-gradient(135deg, #2563eb 0, #8b6cff 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.comparison-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray, #64748b);
    font-size: 17px;
    line-height: 1.8
}

.comparison-table {
    position: relative;
    max-width: 1050px;
    margin: 30px auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15, 23, 42, .06)
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    min-height: 86px;
    border-bottom: 1px solid #eaeff5
}

.comparison-row:last-child {
    border-bottom: none
}

.comparison-cell {
    display: flex;
    align-items: center;
    padding: 20px 28px
}

.comparison-table-header {
    min-height: 82px;
    background: #0f172a;
    color: #fff
}

.comparison-table-header .comparison-cell {
    font-size: 15px;
    font-weight: 700
}

.comparison-table-header .provider-column {
    color: #cbd5e1
}

.ploutic-column {
    position: relative;
    background: linear-gradient(135deg, rgba(37, 99, 235, .06), rgba(139, 108, 255, .08), rgba(167, 139, 250, .1));
    border-left: 1px solid rgba(37, 99, 235, .08)
}

.comparison-table-header .ploutic-column {
    background: linear-gradient(135deg, #2563eb 0, #8b6cff 55%, #a78bfa 100%);
    border-left: none
}

.ploutic-table-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 17px;
    font-weight: 700;
    color: #fff
}

.ploutic-table-brand svg {
    width: 19px;
    height: 19px
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0f172a;
    height: 100%
}

.feature-icon {
    border-radius: 12px;
    background: rgba(37, 99, 235, .07);
    color: #2563eb;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    display: block
}

.feature-info span {
    display: flex;
    align-items: center;
    line-height: 1.2;
    margin: 0
}

.status-basic,
.status-ploutic {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600
}

.status-ploutic {
    color: #2563eb
}

.status-ploutic svg {
    width: 19px;
    height: 19px;
    stroke-width: 3
}

.status-basic {
    color: #475569
}

.status-basic svg {
    width: 17px;
    height: 17px
}

.status-addon,
.status-limited,
.status-varies {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600
}

.status-limited {
    color: #d97706;
    background: #fff7ed
}

.status-addon {
    color: #7c3aed;
    background: #f5f3ff
}

.status-varies {
    color: #64748b;
    background: #f1f5f9
}

.comparison-row:not(.comparison-table-header) {
    transition: background .3s ease
}

.comparison-row:not(.comparison-table-header):hover {
    background: #fafcff
}

.comparison-row:not(.comparison-table-header):hover .ploutic-column {
    background: linear-gradient(135deg, rgba(37, 99, 235, .1), rgba(139, 108, 255, .12))
}

.comparison-row .feature-column {
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.comparison-row .feature-column .feature-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    height: auto;
    gap: 12px;
    margin: 0;
    padding: 0
}

.comparison-row .feature-column .feature-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    flex: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: 0 0;
    border-radius: 0
}

.comparison-row .feature-column .feature-icon svg {
    width: 19px;
    height: 19px;
    display: block;
    margin: 0;
    padding: 0
}

.comparison-row .feature-column .feature-info>span {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    line-height: 1.3
}

.ploutic-table-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
    flex-shrink: 0
}

.about {
    padding: 1px 0 !important
}

.about__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: var(--space-xl);
    align-items: center
}

.about__title {
    margin-top: var(--space-md);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15
}

.about__desc {
    margin-top: var(--space-md);
    max-width: 540px
}

.about__features {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm)
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-base);
    font-weight: var(--fw-medium);
    color: var(--text-main)
}

.about-feature__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary)
}

.about-feature__icon svg {
    width: 18px;
    height: 18px
}

.about__content .btn {
    margin-top: var(--space-lg)
}

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

.about-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0
}

.about-shape--1 {
    width: 260px;
    height: 260px;
    top: 0;
    left: 0;
    background: var(--primary-20)
}

.about-shape--2 {
    width: 220px;
    height: 220px;
    bottom: 0;
    right: 0;
    background: var(--primary-10)
}

.about-panel {
    position: relative;
    z-index: 2;
    width: 320px;
    background: var(--bg-white);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-md)
}

.about-panel__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px
}

.about-panel__dot--red {
    background: #ff5f57
}

.about-panel__dot--yellow {
    background: #ffbd2e
}

.about-panel__dot--green {
    background: #28c840
}

.about-panel__bar {
    height: 8px;
    border-radius: 4px;
    background: var(--bg-soft);
    margin-top: var(--space-md)
}

.about-panel__bar--lg {
    width: 70%
}

.about-panel__bar--md {
    width: 45%;
    margin-top: 8px
}

.about-panel__row {
    display: flex;
    gap: 8px;
    margin-top: var(--space-md)
}

.about-panel__block {
    flex: 1;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-light)
}

.about-panel__block:nth-child(2) {
    background: var(--primary-5)
}

.about-panel__block:nth-child(3) {
    background: var(--bg-soft)
}

.about-panel__chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: var(--space-md)
}

.about-panel__chart span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--gradient-primary)
}

.about-panel__chart span:first-child {
    height: 35%
}

.about-panel__chart span:nth-child(2) {
    height: 55%
}

.about-panel__chart span:nth-child(3) {
    height: 40%
}

.about-panel__chart span:nth-child(4) {
    height: 80%
}

.about-panel__chart span:nth-child(5) {
    height: 65%
}

.about-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) var(--space-md)
}

.about-card--growth {
    top: 12px;
    right: -10px
}

.about-card--done {
    bottom: 30px;
    left: -20px
}

.about-card__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary)
}

.about-card__icon svg {
    width: 16px;
    height: 16px
}

.about-card__icon--done {
    background: var(--green-soft);
    color: #16a34a
}

.about-card__value {
    font-size: var(--text-lg);
    font-weight: var(--fw-extra);
    color: var(--text-main);
    line-height: 1
}

.about-card__label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px
}

.about__stats {
    margin-top: var(--space-xl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center
}

.about-stat__value {
    font-size: var(--text-2xl);
    font-weight: var(--fw-extra);
    color: var(--text-main)
}

.about-stat__label {
    margin-top: 4px;
    font-size: var(--text-sm);
    color: var(--text-muted)
}

.health__header {
    max-width: 640px;
    margin: 0 auto var(--space-xl);
    text-align: center
}

.health__title {
    margin-top: var(--space-md);
    font-size: clamp(28px, 4vw, 40px)
}

.health__desc {
    margin-top: var(--space-sm)
}

.health-dashboard {
    background: var(--bg-white);
    border: var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: var(--space-xl) var(--space-lg);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1)
}

.health-dashboard.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.health-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-xl);
    border-bottom: var(--border-light)
}

.health-score__ring {
    position: relative;
    width: 140px;
    height: 140px
}

.health-score__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.health-score__track {
    fill: none;
    stroke: var(--bg-soft);
    stroke-width: 9
}

.health-score__fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 9;
    stroke-linecap: round;
    stroke-dasharray: 326.7;
    stroke-dashoffset: 326.7;
    transition: stroke-dashoffset 1.2s cubic-bezier(.22, 1, .36, 1), stroke 1.2s ease
}

.health-score__value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.health-score__number {
    font-size: clamp(30px, 4vw, 38px);
    font-weight: var(--fw-extra);
    color: var(--text-main);
    line-height: 1
}

.health-score__max {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 2px
}

.health-metrics {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg)
}

.health-metric {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1)
}

.health-metric:hover {
    transform: translateY(-2px)
}

.health-metric__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    color: var(--text-main)
}

.health-metric__icon svg {
    width: 20px;
    height: 20px
}

.health-metric__body {
    flex: 1;
    min-width: 0
}

.health-metric__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}

.health-metric__name {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--text-main)
}

.health-metric__percent {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--text-muted)
}

.health-metric__bar {
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--bg-soft);
    overflow: hidden
}

.health-metric__fill {
    height: 100%;
    width: 0%;
    border-radius: var(--radius-full);
    transition: width 1.1s cubic-bezier(.22, 1, .36, 1)
}

.health-metric__fill--red {
    background: #ef4444
}

.health-metric__fill--orange {
    background: #f97316
}

.health-metric__fill--yellow {
    background: #eab308
}

.health-metric__fill--blue {
    background: var(--primary)
}

.health-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: var(--fw-semibold);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity .5s ease
}

.is-visible .health-badge {
    opacity: 1
}

.health-badge--poor {
    color: #dc2626;
    background: #fef2f2
}

.health-badge--low {
    color: #c2410c;
    background: #fff7ed
}

.health-badge--weak {
    color: #a16207;
    background: #fefce8
}

.health-badge--average {
    color: var(--primary);
    background: var(--primary-light)
}

.health__cta {
    margin-top: var(--space-xl);
    text-align: center
}

.health__cta-text {
    margin-top: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-muted)
}

.business-challenges {
    padding: 80px 0;
    background: var(--bg-soft)
}

.business-challenges__header {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    text-align: center
}

.business-challenges__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: #b45309;
    background: #fff7ed;
    padding: 5px 12px;
    border-radius: var(--radius-full)
}

.business-challenges__eyebrow svg {
    width: 13px;
    height: 13px
}

.business-challenges__title {
    margin-top: var(--space-md);
    font-size: clamp(26px, 3.4vw, 36px);
    line-height: 1.2
}

.business-challenges__description {
    margin-top: var(--space-sm);
    font-size: var(--text-base)
}

.business-system {
    display: flex;
    justify-content: center;
    margin-top: 120px
}

.business-system__canvas {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 1120px;
    height: 530px;
    overflow: hidden;
    border: var(--glass-border-light);
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .12) 0, rgba(255, 255, 255, .04) 28%, transparent 55%), radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .08), transparent 30%), radial-gradient(circle at 85% 80%, rgba(255, 255, 255, .07), transparent 30%), var(--card-purple);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .35s ease, border-color .35s ease, box-shadow .35s ease;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .12), inset 0 1px 0 rgba(255, 255, 255, .15)
}

.business-system__center:hover {
    transform: translate(-50%, -50%) scale(1.035);
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .45);
    box-shadow: 0 24px 55px rgba(24, 32, 90, .2), 0 0 35px rgba(255, 255, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .28)
}

.business-system__canvas::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black 0%, rgba(0, 0, 0, .75) 40%, transparent 85%);
    opacity: .65
}

.business-system__center::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .16) 0, rgba(255, 255, 255, .07) 35%, transparent 70%);
    pointer-events: none;
    z-index: -1
}

.business-system__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.business-system__line {
    fill: none;
    stroke: rgba(255, 255, 255, .65);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 7 8
}

.business-system__warning-dot {
    fill: #fff;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, .8)) drop-shadow(0 0 10px rgba(255, 255, 255, .45))
}

@media (prefers-reduced-motion:no-preference) {
    .business-system__line {
        animation: systemLineFlow 12s linear infinite
    }

    .business-system__warning-dot {
        animation: warningPulse 2.2s ease-in-out infinite
    }
}

@keyframes systemLineFlow {
    to {
        stroke-dashoffset: -120
    }
}

@keyframes warningPulse {

    0%,
    100% {
        opacity: .45;
        transform: scale(.9)
    }

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

.business-system__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 230px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 7px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 22px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(30, 41, 59, .14), inset 0 1px 0 rgba(255, 255, 255, .25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.business-system__center-label {
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-white)
}

.business-system__center-gaps {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-lg);
    font-weight: var(--fw-extra);
    color: var(--text-white)
}

.business-system__center-gaps svg {
    width: 17px;
    height: 17px;
    color: var(--text-white)
}

.business-system__center-sub {
    font-size: 11px;
    color: var(--text-white)
}

.business-system__module {
    position: absolute;
    z-index: 3;
    width: 200px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(145deg, rgba(255, 255, 255, .16) 0, rgba(255, 255, 255, .09) 100%);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(24, 32, 90, .13), inset 0 1px 0 rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease
}

.business-system__module:hover {
    transform: translateY(-4px);
    background: linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .11));
    border-color: rgba(255, 255, 255, .42);
    box-shadow: 0 20px 45px rgba(24, 32, 90, .18), inset 0 1px 0 rgba(255, 255, 255, .22)
}

.business-system__icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8
}

.business-system__module-title {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em
}

.business-system__module-problem {
    margin-top: 6px;
    font-size: 12.5px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, .78)
}

.business-system__status {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10.5px;
    line-height: 1;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22)
}

.business-system__status svg {
    width: 11px;
    height: 11px;
    stroke-width: 2
}

.business-system__module--visibility {
    top: 28px;
    left: 24px
}

.business-system__module--website {
    top: 28px;
    right: 24px
}

.business-system__module--leads {
    bottom: 28px;
    left: 24px
}

.business-system__module--operations {
    bottom: 28px;
    right: 24px
}

.business-system__icon {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 8px 20px rgba(30, 41, 59, .08)
}

.business-system__icon::before {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .13), transparent 70%);
    pointer-events: none
}

.business-system__module:hover .business-system__icon {
    background: var(--primary-10)
}

.business-system__status svg {
    width: 11px;
    height: 11px
}

.business-diagnostic {
    display: none;
    background: var(--card-purple);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 45px rgba(24, 32, 90, .14), inset 0 1px 0 rgba(255, 255, 255, .12);
    overflow: hidden
}

.business-diagnostic__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 26px 20px;
    text-align: center;
    background: rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.business-diagnostic__center .business-system__center-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255, 255, 255, .72)
}

.business-diagnostic__center .business-system__center-gaps {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 20px;
    font-weight: 800;
    color: #fff
}

.business-diagnostic__center .business-system__center-gaps svg {
    width: 17px;
    height: 17px
}

.business-diagnostic__center .business-system__center-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .72)
}

.business-diagnostic__row {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 16px;
    background: #f5f3ff;
    border-bottom: 1px solid #e4dfff;
    transition: background .25s ease, transform .25s ease
}

.business-diagnostic__row:last-child {
    border-bottom: none
}

.business-diagnostic__row:hover {
    background: #efecff
}

.business-diagnostic__row .business-system__icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #fff;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .25)
}

.business-diagnostic__row .business-system__icon svg {
    width: 18px;
    height: 18px
}

.business-diagnostic__row-body {
    flex: 1;
    min-width: 0
}

.business-diagnostic__row .business-system__module-title {
    display: block;
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff
}

.business-diagnostic__row .business-system__module-problem {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .72)
}

.business-diagnostic__row .business-system__status {
    flex-shrink: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    border-radius: var(--radius-full);
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22)
}

.business-diagnostic__row .business-system__status svg {
    width: 10px;
    height: 10px
}

.customer-journey {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg)
}

.customer-journey__start {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em
}

.business-diagnostic__row .business-system__icon {
    background: #e9e5ff;
    border: 1px solid #d8d1ff;
    color: #6254d9
}

.business-diagnostic__row .business-system__module-title {
    color: #1e1b2e
}

.business-diagnostic__row .business-system__module-problem {
    color: #68637a
}

.business-diagnostic__row .business-system__status {
    background: #e9e5ff;
    border: 1px solid #d8d1ff;
    color: #6254d9
}

.customer-journey__start-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-secondary)
}

.customer-journey__start-icon svg {
    width: 13px;
    height: 13px
}

.customer-journey__track {
    width: 100%;
    max-width: var(--container);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0
}

.customer-journey__connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-30);
    margin-top: 20px;
    padding: 0 var(--space-xs)
}

.customer-journey__connector svg {
    width: 18px;
    height: 18px
}

.customer-journey__stage {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--space-sm)
}

.customer-journey__number {
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    color: var(--primary);
    letter-spacing: .04em
}

.customer-journey__icon {
    margin-top: var(--space-xs);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    border: var(--border-light)
}

.customer-journey__icon svg {
    width: 20px;
    height: 20px
}

.customer-journey__label {
    margin-top: var(--space-sm);
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: .05em
}

.customer-journey__problem {
    margin-top: 8px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    max-width: 200px
}

.customer-journey__result {
    margin-top: var(--space-sm);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: var(--fw-semibold);
    color: #b45309;
    background: #fff7ed;
    padding: 4px 10px;
    border-radius: var(--radius-full)
}

.customer-journey__result svg {
    width: 12px;
    height: 12px
}

.faq {
    background: var(--bg-white)
}

.faq__header {
    max-width: 640px;
    margin: 0 auto var(--space-xl);
    text-align: center
}

.faq__title {
    margin-top: var(--space-md);
    font-size: clamp(28px, 4vw, 40px)
}

.faq__desc {
    margin-top: var(--space-sm)
}

.faq__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-xl);
    align-items: start;
    margin-top: 70px
}

.faq-support {
    position: sticky;
    top: var(--space-lg);
    background: var(--bg-white);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm)
}

.faq-support__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary)
}

.faq-support__icon svg {
    width: 22px;
    height: 22px
}

.faq-support__title {
    margin-top: var(--space-md);
    font-size: var(--text-xl)
}

.faq-support__desc {
    margin-top: var(--space-sm);
    font-size: var(--text-sm)
}

.faq-support__btn {
    margin-top: var(--space-lg);
    width: 100%
}

.faq-support__response {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 4px
}

.faq-support__response-label {
    font-size: 12px;
    color: var(--text-muted)
}

.faq-support__response-value {
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    color: var(--text-main)
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm)
}

.faq-item {
    border: var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-ls)
}

.faq-item.is-open {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary)
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: 0 0;
    border: none;
    text-align: left;
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    color: var(--text-main);
    cursor: pointer
}

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-main);
    position: relative;
    transition: background .3s ease, color .3s ease, transform .3s ease
}

.faq-item__icon svg {
    width: 14px;
    height: 14px;
    transition: transform .3s ease
}

.faq-item.is-open .faq-item__icon {
    background: var(--primary);
    color: var(--text-white);
    transform: rotate(180deg)
}

.faq-item__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.faq-item__answer {
    padding: 0 var(--space-lg) var(--space-md);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7
}

.legal-page {
    background: #fff;
    color: #111827
}

.legal-container {
    width: min(100% - 40px, 900px);
    margin-inline: auto
}

.legal-hero {
    padding: 200px 0 70px;
    text-align: center;
    background: radial-gradient(circle at 50% 0, rgba(37, 99, 235, .08), transparent 45%), #f8fafc;
    border-bottom: 1px solid #e5e7eb
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 999px
}

.legal-badge svg {
    width: 15px;
    height: 15px
}

.legal-title {
    margin: 0;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.035em;
    color: #0f172a
}

.legal-intro {
    max-width: 680px;
    margin: 20px auto 0;
    font-size: 17px;
    line-height: 1.7;
    color: #64748b
}

.legal-meta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b
}

.legal-meta svg {
    width: 14px;
    height: 14px
}

.legal-content {
    padding: 70px 0 90px
}

.legal-toc {
    margin-bottom: 60px;
    padding: 26px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px
}

.legal-toc h2 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 750;
    color: #0f172a
}

.legal-toc__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 30px
}

.legal-toc__links a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #475569;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease
}

.legal-toc__links a:hover {
    color: #2563eb;
    transform: translateX(3px)
}

.legal-article {
    max-width: 820px;
    margin-inline: auto
}

.legal-section {
    padding-top: 10px;
    margin-bottom: 48px;
    scroll-margin-top: 120px
}

.legal-section h2 {
    margin: 0 0 16px;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 750;
    letter-spacing: -.02em;
    color: #0f172a
}

.legal-section p {
    margin: 0 0 15px;
    font-size: 15.5px;
    line-height: 1.8;
    color: #475569
}

.legal-section ul {
    margin: 18px 0;
    padding-left: 22px
}

.legal-section li {
    margin-bottom: 9px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #475569
}

.legal-section strong {
    color: #1e293b
}

.legal-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 65px;
    padding: 25px 28px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px
}

.legal-contact__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    background: #eff6ff;
    border-radius: 12px
}

.legal-contact__icon svg {
    width: 20px;
    height: 20px
}

.legal-contact__content {
    flex: 1
}

.legal-contact__content h2 {
    margin: 0 0 5px;
    font-size: 17px;
    font-weight: 750;
    color: #0f172a
}

.legal-contact__content p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: #64748b
}

.legal-contact__button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 650;
    color: #fff;
    background: #2563eb;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease
}

.legal-contact__button:hover {
    transform: translateY(-1px);
    opacity: .92
}

.legal-contact__button svg {
    width: 15px;
    height: 15px
}


/* ==========================================================
   ABOUT PAGE HERO
========================================================== */

.about-page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding-top: 145px;

    background: var(--bg-white);
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.about-page-hero__content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 920px;

    margin: 0 auto;
    padding: 0 20px 72px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* ==========================================================
   TITLE
========================================================== */

.about-page-hero__title {
    max-width: 900px;

    margin: 22px auto 0;

    font-family: var(--font-main);

    font-size: clamp(46px, 5.3vw, 74px);
    line-height: 1.03;

    font-weight: var(--fw-extra);
    letter-spacing: -0.05em;

    color: var(--text-main);
}

.about-page-hero__title span {
    display: block;

    background: var(--text-gradient-premium);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.about-page-hero__desc {
    width: 100%;
    max-width: 660px;

    margin: 24px auto 0;

    font-family: var(--font-main);

    font-size: 18px;
    line-height: 1.7;

    font-weight: var(--fw-normal);

    color: var(--text-muted);
}




.about-page-hero__visual {
    position: relative;
    isolation: isolate;

    width: 110%;
    min-height: 610px;

    margin-left: -5%;

    padding: 150px 7% 135px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--card-purple);

    border-radius:
        50% 50% 0 0 / 130px 130px 0 0;
}


/* Disable old overlays */

.about-page-hero__visual::before,
.about-page-hero__visual::after {
    display: none;
}


/* ==========================================================
   BACKGROUND GRID
========================================================== */

.about-page-hero__grid {
    position: absolute;
    inset: 0;

    z-index: -3;

    pointer-events: none;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px);

    background-size: 52px 52px;

    opacity: 0.7;

    -webkit-mask-image:
        radial-gradient(circle at center,
            #000 0%,
            rgba(0, 0, 0, 0.75) 45%,
            transparent 88%);

    mask-image:
        radial-gradient(circle at center,
            #000 0%,
            rgba(0, 0, 0, 0.75) 45%,
            transparent 88%);
}


/* ==========================================================
   BACKGROUND ORBS
========================================================== */

.about-page-hero__orb {
    position: absolute;

    z-index: -2;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(5px);
}


.about-page-hero__orb--one {
    width: 420px;
    height: 420px;

    top: -100px;
    left: -120px;

    background: var(--blue-glow);

    opacity: 0.9;
}


.about-page-hero__orb--two {
    width: 500px;
    height: 500px;

    right: -160px;
    bottom: -170px;

    background: var(--purple-glow);

    opacity: 0.9;
}


.about-page-hero__orb--three {
    width: 350px;
    height: 350px;

    top: 40px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.06) 40%,
            transparent 70%);
}


/* ==========================================================
   GLASS IMPACT CARD
========================================================== */

.about-impact {
    position: relative;

    z-index: 5;

    width: min(100%, 1000px);

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.30);

    border-radius: var(--radius-lg);

    background:
        rgba(255, 255, 255, 0.14);

    -webkit-backdrop-filter:
        var(--backdrop-blur);

    backdrop-filter:
        var(--backdrop-blur);

    box-shadow:
        0 35px 90px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}


/* ==========================================================
   IMPACT ROW
========================================================== */

.about-impact__row {
    position: relative;

    min-height: 150px;

    padding: 0 44px;

    display: grid;

    grid-template-columns:
        155px minmax(0, 1fr) 190px;

    align-items: center;

    gap: 0;

    background:
        rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.22);

    transition:
        background 0.3s ease;
}


.about-impact__row:last-child {
    border-bottom: none;
}


.about-impact__row--primary {
    background:
        rgba(255, 255, 255, 0.12);
}


/* ==========================================================
   NUMBER
========================================================== */

.about-impact__number {
    height: 72px;

    padding-right: 30px;

    display: flex;
    align-items: center;

    border-right:
        1px solid rgba(255, 255, 255, 0.30);
}


.about-impact__number span {
    font-family: var(--font-main);

    font-size: clamp(52px, 4vw, 64px);
    line-height: 0.9;

    font-weight: 650;

    letter-spacing: -0.06em;

    color: #ffffff;
}


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

.about-impact__content {
    min-width: 0;

    padding: 0 34px;
}


/* Build / Grow / Simplify */

.about-impact__label {
    display: block;

    margin: 0 0 9px;

    font-family: var(--font-main);

    font-size: 21px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.3px;

    color: #ffffff;
}


/* MAIN FONT SIZE FIX */

.about-impact__content p {
    width: 100%;

    max-width: 390px;

    margin: 0;

    font-family: var(--font-main);

    font-size: 15px;
    line-height: 1.6;

    font-weight: 400;

    color:
        rgba(255, 255, 255, 0.80);
}


/* ==========================================================
   RIGHT TAG
========================================================== */

.about-impact__tag {
    justify-self: start;

    min-height: 38px;

    padding: 9px 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border:
        1px solid rgba(255, 255, 255, 0.32);

    border-radius: var(--radius-full);

    background:
        rgba(255, 255, 255, 0.13);

    -webkit-backdrop-filter:
        var(--backdrop-blur-sm);

    backdrop-filter:
        var(--backdrop-blur-sm);

    font-family: var(--font-main);

    font-size: 13px;
    line-height: 1;

    font-weight: 600;

    color: #ffffff;

    white-space: nowrap;
}


.about-impact__tag svg {
    width: 15px;
    height: 15px;

    flex-shrink: 0;

    color: #ffffff;
}


/* ==========================================================
   PRIMARY ROW
========================================================== */

.about-impact__row--primary .about-impact__number {
    border-right-color:
        rgba(255, 255, 255, 0.30);
}


.about-impact__row--primary .about-impact__number span,

.about-impact__row--primary .about-impact__label {
    color: #ffffff;
}


.about-impact__row--primary .about-impact__content p {
    color:
        rgba(255, 255, 255, 0.80);
}


.about-impact__row--primary .about-impact__tag {
    border-color:
        rgba(255, 255, 255, 0.32);

    background:
        rgba(255, 255, 255, 0.13);

    color: #ffffff;
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) and (pointer: fine) {

    .about-impact__row:hover {
        background:
            rgba(255, 255, 255, 0.16);
    }


    .about-impact__row:hover .about-impact__tag {
        background:
            rgba(255, 255, 255, 0.20);

        border-color:
            rgba(255, 255, 255, 0.42);
    }
}


/* ==========================================================
   FLOATING BOTTOM PILL
========================================================== */

.about-page-hero__float {
    position: absolute;

    left: 50%;
    bottom: 52px;

    z-index: 6;

    transform: translateX(-50%);

    padding: 10px 15px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    border:
        1px solid rgba(255, 255, 255, 0.32);

    border-radius: var(--radius-full);

    background:
        rgba(255, 255, 255, 0.14);

    -webkit-backdrop-filter:
        var(--backdrop-blur);

    backdrop-filter:
        var(--backdrop-blur);

    box-shadow: var(--shadow-sm);

    font-family: var(--font-main);

    font-size: 12px;

    font-weight: 600;

    color: #ffffff;

    white-space: nowrap;
}


.about-page-hero__float span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.16);
}


.about-page-hero__float svg {
    width: 14px;
    height: 14px;

    color: #ffffff;
}




/* ==========================================================
   WHO WE ARE
========================================================== */

.who-we-are {
    position: relative;
    isolation: isolate;

    padding: var(--space-section) 24px;

    overflow: hidden;

    background: var(--bg-white);
}


/* ==========================================================
   CONTAINER
========================================================== */

.who-we-are__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);

    margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.who-we-are__header {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 64px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* ==========================================================
   TITLE
========================================================== */

.who-we-are__title {
    max-width: 850px;

    margin: 20px auto 0;

    font-family: var(--font-main);

    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.06;

    font-weight: var(--fw-extra);
    letter-spacing: -0.045em;

    color: var(--text-main);
}

.who-we-are__title span {
    display: block;

    background: var(--text-gradient-premium);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* ==========================================================
   INTRO
========================================================== */

.who-we-are__intro {
    width: 100%;
    max-width: 670px;

    margin: 22px auto 0;

    font-family: var(--font-main);

    font-size: 17px;
    line-height: 1.7;

    font-weight: var(--fw-normal);

    color: var(--text-muted);
}


/* ==========================================================
   MAIN GRID
========================================================== */

.who-we-are__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.03fr) minmax(0, 0.97fr);

    align-items: stretch;

    gap: 28px;
}


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

.who-we-are__visual {
    position: relative;
    isolation: isolate;

    min-height: 610px;

    overflow: hidden;

    border: var(--border-light);
    border-radius: var(--radius-xl);

    background: var(--bg-soft);

    box-shadow: var(--shadow-md);
}


/* IMAGE */

.who-we-are__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: var(--transition-slow);
}


/* IMAGE OVERLAY */

.who-we-are__visual-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(180deg,
            transparent 45%,
            rgba(15, 23, 42, 0.10) 68%,
            rgba(15, 23, 42, 0.48) 100%);
}


.who-we-are__visual-badge {
    position: absolute;
    z-index: 3;

    left: 28px;
    right: 28px;
    bottom: 28px;

    min-height: 82px;
    padding: 16px 18px;

    display: flex;
    align-items: center;
    gap: 14px;

    /* Very transparent */
    background: rgba(255, 255, 255, 0.06);

    /* Apple-like thin glass edge */
    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 18px;

    /* Main glass effect */
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);

    /* Very subtle depth */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.20),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 8px 30px rgba(15, 23, 42, 0.08);
}


/* ==========================================================
   GLASS ICON
========================================================== */

.who-we-are__visual-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.18);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16);

    color: #fff;
}

.who-we-are__visual-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}


/* ==========================================================
   TEXT
========================================================== */

.who-we-are__visual-badge span {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
    line-height: 1.2;
    font-weight: var(--fw-medium);

    color: rgba(255, 255, 255, 0.68);
}

.who-we-are__visual-badge strong {
    display: block;

    font-size: 15px;
    line-height: 1.4;
    font-weight: var(--fw-semibold);

    color: rgba(255, 255, 255, 0.96);
}

/* ==========================================================
   RIGHT FOCUS PANEL
========================================================== */

.who-we-are__focus {
    padding: 42px;

    display: flex;
    flex-direction: column;

    border: var(--border-light);
    border-radius: var(--radius-xl);

    background:
        linear-gradient(145deg,
            var(--bg-white) 0%,
            var(--primary-soft) 100%);

    box-shadow: var(--shadow-sm);
}


/* ==========================================================
   FOCUS HEADER
========================================================== */

.who-we-are__focus-head {
    margin-bottom: 28px;
}

.who-we-are__eyebrow {
    display: inline-flex;

    margin-bottom: 13px;

    font-family: var(--font-main);

    font-size: var(--text-sm);

    font-weight: var(--fw-bold);

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--primary);
}

.who-we-are__focus-head h3 {
    max-width: 470px;

    margin: 0;

    font-family: var(--font-main);

    font-size: clamp(32px, 2.5vw, 36px);
    line-height: 1.15;

    font-weight: var(--fw-bold);
    letter-spacing: -0.035em;

    color: var(--text-main);
}

.who-we-are__focus-head p {
    max-width: 500px;

    margin: 14px 0 0;

    font-family: var(--font-main);

    font-size: var(--text-base);
    line-height: 1.65;

    color: var(--text-muted);
}


/* ==========================================================
   FOCUS ITEMS
========================================================== */

.who-focus-item {
    position: relative;

    min-height: 116px;

    padding: 22px 58px 22px 0;

    display: grid;

    grid-template-columns:
        48px minmax(0, 1fr);

    align-items: start;

    gap: 16px;

    border-top: var(--border-light);

    transition: var(--transition);
}


/* ICON */

.who-focus-item__icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--blue-soft);

    border: var(--border-primary);

    color: var(--primary);

    transition: var(--transition);
}

.who-focus-item__icon svg {
    width: 20px;
    height: 20px;
}


/* CONTENT */

.who-focus-item__content {
    min-width: 0;
}

.who-focus-item__content h4 {
    margin: 1px 0 7px;

    font-family: var(--font-main);

    font-size: var(--text-base);
    line-height: 1.25;

    font-weight: var(--fw-bold);

    color: var(--text-main);
}

.who-focus-item__content p {
    max-width: 390px;

    margin: 0;

    font-family: var(--font-main);

    font-size: var(--text-sm);
    line-height: 1.6;

    color: var(--text-muted);
}


/* NUMBER */

.who-focus-item__number {
    position: absolute;

    top: 25px;
    right: 0;

    font-family: var(--font-main);

    font-size: 14px;
    line-height: 1;

    font-weight: var(--fw-bold);

    color: var(--text-light);
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

    .who-we-are__visual:hover .who-we-are__image {
        transform: scale(1.025);
    }

    .who-focus-item:hover {
        padding-left: 5px;
        cursor: pointer;
    }

    .who-focus-item:hover .who-focus-item__icon {
        color: var(--text-white);

        background: var(--card-purple);
        cursor: pointer;

        border-color: transparent;

        box-shadow: var(--shadow-primary);
    }
}

.our-story {
    position: relative;
    isolation: isolate;

    padding: var(--space-section) 24px;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            var(--bg-white) 0%,
            var(--primary-soft) 100%);
}


/* SUBTLE BACKGROUND GLOW */

.our-story::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 10%;
    right: -220px;

    z-index: -1;

    border-radius: 50%;

    background: var(--blue-glow);

    opacity: 0.45;

    pointer-events: none;
}


/* ==========================================================
   CONTAINER
========================================================== */

.our-story__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);

    margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.our-story__header {
    width: 100%;
    max-width: 880px;

    margin: 0 auto 64px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* ==========================================================
   TITLE
========================================================== */

.our-story__title {
    max-width: 850px;

    margin: 20px auto 0;

    font-family: var(--font-main);

    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.06;

    font-weight: var(--fw-extra);
    letter-spacing: -0.045em;

    color: var(--text-main);
}

.our-story__title span {
    display: block;

    background: var(--text-gradient-premium);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.our-story__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.92fr) minmax(0, 1.08fr);

    align-items: stretch;

    gap: 56px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.our-story__content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 38px 0;
}


/* EYEBROW */

.our-story__eyebrow {
    display: inline-flex;
    align-self: flex-start;

    margin-bottom: 16px;

    font-family: var(--font-main);

    font-size: 16px;
    line-height: 1;

    font-weight: var(--fw-bold);

    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: var(--primary);
}


/* CONTENT HEADING */

.our-story__content h3 {
    max-width: 520px;

    margin: 0;

    font-family: var(--font-main);

    font-size: clamp(33px, 3vw, 43px);
    line-height: 1.12;

    font-weight: var(--fw-bold);
    letter-spacing: -0.04em;

    color: var(--text-main);
}


/* ==========================================================
   STORY COPY
========================================================== */

.our-story__copy {
    max-width: 570px;

    margin-top: 28px;
}

.our-story__copy p {
    margin: 0;

    font-family: var(--font-main);

    font-size: var(--text-lg);
    line-height: 1.8;

    font-weight: var(--fw-normal);

    color: var(--text-muted);
}

.our-story__copy p+p {
    margin-top: 17px;
}


/* ==========================================================
   STATEMENT
========================================================== */

.our-story__statement {
    width: 100%;
    max-width: 560px;

    margin-top: 34px;
    padding: 16px;

    display: flex;
    align-items: center;

    gap: 14px;

    border: var(--border-primary);
    border-radius: var(--radius-md);

    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, 0.06),
            rgba(139, 108, 255, 0.06));
}


/* STATEMENT ICON */

.our-story__statement-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--gradient-primary);

    box-shadow: var(--shadow-primary);

    color: var(--text-white);
}

.our-story__statement-icon svg {
    width: 20px;
    height: 20px;
}


/* STATEMENT TEXT */

.our-story__statement span {
    display: block;

    margin-bottom: 4px;

    font-family: var(--font-main);

    font-size: 12px;

    font-weight: var(--fw-semibold);

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: var(--text-muted);
}

.our-story__statement strong {
    display: block;

    font-family: var(--font-main);

    font-size: var(--text-sm);
    line-height: 1.4;

    font-weight: var(--fw-bold);

    color: var(--text-main);
}


/* ==========================================================
   RIGHT VISUAL
========================================================== */

.our-story__visual {
    position: relative;
    isolation: isolate;

    min-height: 610px;

    overflow: hidden;

    border: var(--border-light);
    border-radius: var(--radius-xl);

    background: var(--bg-soft);

    box-shadow: var(--shadow-md);
}


/* IMAGE */

.our-story__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: var(--transition-slow);
}


/* OVERLAY */

.our-story__overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(180deg,
            rgba(15, 23, 42, 0.02) 20%,
            rgba(15, 23, 42, 0.08) 55%,
            rgba(15, 23, 42, 0.48) 100%);

    pointer-events: none;
}


/* ==========================================================
   TOP VISUAL LABEL
========================================================== */

.our-story__visual-label {
    position: absolute;

    z-index: 3;

    top: 24px;
    left: 24px;

    padding: 8px 12px 8px 8px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-full);

    background: rgba(255, 255, 255, 0.07);

    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 25px rgba(15, 23, 42, 0.08);

    font-family: var(--font-main);

    font-size: 15px;

    font-weight: var(--fw-semibold);

    color: var(--text-white);
}


/* LABEL ICON */

.our-story__visual-label-icon {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.18);
}

.our-story__visual-label-icon svg {
    width: 12px;
    height: 12px;
}


/* ==========================================================
   BOTTOM JOURNEY GLASS
========================================================== */

.our-story__journey {
    position: absolute;

    z-index: 3;

    left: 24px;
    right: 24px;
    bottom: 24px;

    min-height: 100px;

    padding: 17px 18px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);

    align-items: center;

    gap: 12px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-md);

    background: rgba(255, 255, 255, 0.07);

    -webkit-backdrop-filter: blur(22px) saturate(140%);
    backdrop-filter: blur(22px) saturate(140%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 12px 35px rgba(15, 23, 42, 0.10);
}


/* JOURNEY ITEM */

.our-story__journey-item {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 9px;
}


/* NUMBER */

.our-story__journey-number {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.20);

    font-family: var(--font-main);

    font-size: 12px;

    font-weight: var(--fw-bold);

    color: var(--text-white);
}


/* JOURNEY TEXT */

.our-story__journey-item small {
    display: block;

    margin-bottom: 2px;

    font-family: var(--font-main);

    font-size: 12px;

    color: rgba(255, 255, 255, 0.62);
}

.our-story__journey-item strong {
    display: block;

    font-family: var(--font-main);

    font-size: 14px;
    line-height: 1.3;

    font-weight: var(--fw-semibold);

    color: var(--text-white);

    white-space: nowrap;
}


/* ARROW */

.our-story__journey-arrow {
    width: 15px;
    height: 15px;

    color: rgba(255, 255, 255, 0.50);
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

    .our-story__visual:hover .our-story__image {
        transform: scale(1.025);
    }
}

.mission-vision {
    position: relative;
    isolation: isolate;

    padding: var(--space-section) 24px;

    overflow: hidden;

    background: var(--bg-white);
}


/* BACKGROUND DECORATION */

.mission-vision::before {
    content: "";

    position: absolute;

    z-index: -1;

    width: 520px;
    height: 520px;

    top: -260px;
    left: -220px;

    border-radius: 50%;

    background: var(--blue-glow);

    opacity: 0.35;

    pointer-events: none;
}


/* ==========================================================
   CONTAINER
========================================================== */

.mission-vision__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);

    margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.mission-vision__header {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 64px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* TITLE */

.mission-vision__title {
    max-width: 850px;

    margin: 20px auto 0;

    font-family: var(--font-main);

    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.06;

    font-weight: var(--fw-extra);

    letter-spacing: -0.045em;

    color: var(--text-main);
}

.mission-vision__title span {
    display: block;

    background: var(--text-gradient-premium);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* INTRO */

.mission-vision__intro {
    width: 100%;
    max-width: 650px;

    margin: 20px auto 0;

    font-family: var(--font-main);

    font-size: 17px;
    line-height: 1.7;

    font-weight: var(--fw-normal);

    color: var(--text-muted);
}


/* ==========================================================
   CARDS GRID
========================================================== */

.mission-vision__grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    align-items: stretch;

    gap: 24px;
}


/* ==========================================================
   BASE CARD
========================================================== */

.mv-card {
    position: relative;
    isolation: isolate;

    min-height: 530px;

    padding: 38px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: var(--radius-xl);

    transition: var(--transition);
}


/* ==========================================================
   MISSION CARD
========================================================== */

.mv-card--mission {
    background:
        linear-gradient(145deg,
            var(--bg-white) 0%,
            var(--primary-soft) 55%,
            var(--blue-soft) 100%);

    border: var(--border-primary);

    box-shadow: var(--shadow-md);
}


/* SUBTLE DECORATION */

.mv-card--mission::before {
    content: "";

    position: absolute;

    z-index: -1;

    width: 300px;
    height: 300px;

    right: -140px;
    bottom: -150px;

    border-radius: 50%;

    background: var(--blue-glow);

    opacity: 0.45;

    pointer-events: none;
}


/* ==========================================================
   VISION CARD
========================================================== */

.mv-card--vision {
    color: var(--text-white);

    border: 1px solid rgba(255, 255, 255, 0.14);

    background:
        linear-gradient(135deg,
            #2563EB 0%,
            #4267E9 45%,
            #8B6CFF 100%);

    box-shadow:
        0 28px 70px rgba(37, 99, 235, 0.20);
}


/* VISION GLOW */

.mv-card__glow {
    position: absolute;

    z-index: -1;

    width: 340px;
    height: 340px;

    top: -150px;
    right: -120px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0.07) 40%,
            transparent 70%);

    pointer-events: none;
}


/* EXTRA VISION DECORATION */

.mv-card--vision::after {
    content: "";

    position: absolute;

    z-index: -1;

    width: 280px;
    height: 280px;

    left: -130px;
    bottom: -150px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(56, 189, 248, 0.22),
            transparent 68%);

    pointer-events: none;
}


/* ==========================================================
   CARD TOP
========================================================== */

.mv-card__top {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* NUMBER */

.mv-card__number {
    font-family: var(--font-main);

    font-size: 40px;
    line-height: 1;

    font-weight: var(--fw-bold);

    letter-spacing: 0.08em;

    color: var(--text-light);
}

.mv-card--vision .mv-card__number {
    color: rgba(255, 255, 255, 0.60);
}


/* ==========================================================
   ICON
========================================================== */

.mv-card__icon {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
}

.mv-card__icon svg {
    width: 23px;
    height: 23px;

    stroke-width: 1.8;
}


/* MISSION ICON */

.mv-card__icon--mission {
    color: var(--primary);

    background: var(--blue-soft);

    border: var(--border-primary);
}


/* VISION ICON */

.mv-card__icon--vision {
    color: var(--text-white);

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.22);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}


/* ==========================================================
   CARD CONTENT
========================================================== */

.mv-card__content {
    margin-top: 72px;
}


/* EYEBROW */

.mv-card__eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    font-family: var(--font-main);

    font-size: var(--text-sm);
    line-height: 1;

    font-weight: var(--fw-bold);

    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: var(--primary);
}

.mv-card--vision .mv-card__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}


/* HEADING */

.mv-card__content h3 {
    width: 100%;
    max-width: 530px;

    margin: 0;

    font-family: var(--font-main);

    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.1;

    font-weight: var(--fw-bold);

    letter-spacing: -0.04em;

    color: var(--text-main);
}

.mv-card--vision .mv-card__content h3 {
    color: var(--text-white);
}


/* DESCRIPTION */

.mv-card__content p {
    width: 100%;
    max-width: 510px;

    margin: 22px 0 0;

    font-family: var(--font-main);

    font-size: var(--text-base);
    line-height: 1.75;

    font-weight: var(--fw-normal);

    color: var(--text-muted);
}

.mv-card--vision .mv-card__content p {
    color: rgba(255, 255, 255, 0.74);
}


/* ==========================================================
   CARD BOTTOM
========================================================== */

.mv-card__bottom {
    width: 100%;

    margin-top: auto;
    padding-top: 36px;
}


/* PRINCIPLE PILL */

.mv-card__principle {
    width: fit-content;
    max-width: 100%;

    padding: 9px 13px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    border-radius: var(--radius-full);

    font-family: var(--font-main);

    font-size: 15px;
    line-height: 1.3;

    font-weight: var(--fw-semibold);
}


/* MISSION PILL */

.mv-card--mission .mv-card__principle {
    color: var(--primary-dark);

    background: rgba(37, 99, 235, 0.07);

    border: var(--border-primary);
}


/* VISION PILL */

.mv-card--vision .mv-card__principle {
    color: rgba(255, 255, 255, 0.92);

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.20);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}


/* PILL ICON */

.mv-card__principle svg {
    width: 14px;
    height: 14px;

    flex-shrink: 0;
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

    .mv-card:hover {
        transform: translateY(-6px);
    }

    .mv-card--mission:hover {
        box-shadow: var(--shadow-lg);
    }

    .mv-card--vision:hover {
        box-shadow:
            0 34px 85px rgba(37, 99, 235, 0.27);
    }
}

.our-principles {
    position: relative;
    isolation: isolate;

    padding: var(--space-section) 24px;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            var(--bg-white) 0%,
            var(--primary-soft) 100%);
}


/* BACKGROUND GLOW */

.our-principles::before {
    content: "";

    position: absolute;
    z-index: -1;

    width: 520px;
    height: 520px;

    top: 20%;
    left: -280px;

    border-radius: 50%;

    background: var(--blue-glow);

    opacity: 0.3;

    pointer-events: none;
}


/* ==========================================================
   CONTAINER
========================================================== */

.our-principles__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);

    margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.our-principles__header {
    width: 100%;
    max-width: 880px;

    margin: 0 auto 64px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.our-principles__title {
    width: 100%;
    max-width: 820px;

    margin: 20px auto 0;

    font-family: var(--font-main);

    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.06;

    font-weight: var(--fw-extra);

    letter-spacing: -0.045em;

    color: var(--text-main);
}


.our-principles__title span {
    display: block;

    background: var(--text-gradient-premium);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


.our-principles__intro {
    width: 100%;
    max-width: 660px;

    margin: 20px auto 0;

    font-family: var(--font-main);

    font-size: 17px;
    line-height: 1.7;

    font-weight: var(--fw-normal);

    color: var(--text-muted);
}


/* ==========================================================
   BENTO GRID

   DESKTOP:
   01 BIG   | 02 SMALL
   03 SMALL | 04 BIG
========================================================== */

.principles-grid {
    display: grid;

    grid-template-columns: repeat(12, minmax(0, 1fr));

    grid-template-rows:
        minmax(340px, auto) minmax(340px, auto);

    gap: 20px;

    align-items: stretch;
}


/* 01 — BIG */

.principle-card--simple {
    grid-column: 1 / span 8;
    grid-row: 1;
}


/* 02 — SMALL */

.principle-card--business {
    grid-column: 9 / span 4;
    grid-row: 1;
}


/* 03 — SMALL */

.principle-card--real {
    grid-column: 1 / span 4;
    grid-row: 2;
}


/* 04 — BIG */

.principle-card--improve {
    grid-column: 5 / span 8;
    grid-row: 2;
}


/* ==========================================================
   BASE CARD
========================================================== */

.principle-card {
    position: relative;
    isolation: isolate;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    padding: 30px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: var(--border-light);
    border-radius: var(--radius-xl);

    background: rgba(255, 255, 255, 0.78);

    box-shadow: var(--shadow-sm);

    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    transition: var(--transition);
}


/* ==========================================================
   01 — KEEP IT SIMPLE
========================================================== */

.principle-card--simple {
    padding: 36px;

    background:
        linear-gradient(135deg,
            var(--bg-white) 0%,
            var(--blue-soft) 100%);

    border: var(--border-primary);

    box-shadow: var(--shadow-md);
}


.principle-card--simple::before {
    content: "";

    position: absolute;
    z-index: -1;

    width: 320px;
    height: 320px;

    right: -150px;
    bottom: -170px;

    border-radius: 50%;

    background: var(--blue-glow);

    opacity: 0.55;

    pointer-events: none;
}


/* ==========================================================
   02 — BUSINESS FIRST
========================================================== */

.principle-card--business {
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.97),
            var(--primary-soft));
}


/* ==========================================================
   03 — BUILD FOR REAL USE
========================================================== */

.principle-card--real {
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.97),
            var(--bg-soft));
}


/* ==========================================================
   04 — KEEP IMPROVING
========================================================== */

.principle-card--improve {
    padding: 36px;

    background:
        linear-gradient(145deg,
            var(--primary) 0%,
            #4267E9 50%,
            var(--purple) 100%);

    border: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 24px 55px rgba(37, 99, 235, 0.18);
}


.principle-card--improve::before {
    content: "";

    position: absolute;
    z-index: -1;

    width: 300px;
    height: 300px;

    top: -140px;
    right: -120px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.20),
            transparent 68%);

    pointer-events: none;
}


/* SECOND GLOW */

.principle-card--improve::after {
    content: "";

    position: absolute;
    z-index: -1;

    width: 260px;
    height: 260px;

    left: -120px;
    bottom: -150px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(56, 189, 248, 0.18),
            transparent 68%);

    pointer-events: none;
}


/* ==========================================================
   CARD TOP
========================================================== */

.principle-card__top {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* NUMBER */

.principle-card__number {
    font-family: var(--font-main);

    font-size: 30px;
    line-height: 1;

    font-weight: var(--fw-bold);

    letter-spacing: 0.1em;

    color: var(--text-light);
}


.principle-card--improve .principle-card__number {
    color: rgba(255, 255, 255, 0.60);
}


/* ==========================================================
   ICON
========================================================== */

.principle-card__icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: var(--primary);

    background: var(--blue-soft);

    border: var(--border-primary);

    transition: var(--transition);
}


.principle-card__icon svg {
    width: 20px;
    height: 20px;

    stroke-width: 1.8;
}


/* 01 BIG ICON */

.principle-card--simple .principle-card__icon {
    width: 54px;
    height: 54px;

    flex-basis: 54px;

    border-radius: 16px;

    color: var(--text-white);

    background: var(--gradient-primary);

    border-color: transparent;

    box-shadow: var(--shadow-primary);
}


/* 04 BIG GLASS ICON */

.principle-card--improve .principle-card__icon {
    width: 54px;
    height: 54px;

    flex-basis: 54px;

    border-radius: 16px;

    color: var(--text-white);

    background: rgba(255, 255, 255, 0.09);

    border: 1px solid rgba(255, 255, 255, 0.20);

    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.17);
}


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

.principle-card__content {
    margin-top: 0;

    padding-top: 46px;
}


/* BIG CARDS */

.principle-card--simple .principle-card__content,
.principle-card--improve .principle-card__content {
    padding-top: 52px;
}


/* SMALL CARDS */

.principle-card--business .principle-card__content,
.principle-card--real .principle-card__content {
    padding-top: 42px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.principle-card__eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    font-family: var(--font-main);

    font-size: 14px;
    line-height: 1;

    font-weight: var(--fw-bold);

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--primary);
}


.principle-card--improve .principle-card__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}


/* ==========================================================
   HEADINGS
========================================================== */

.principle-card__content h3 {
    width: 100%;

    margin: 0;

    font-family: var(--font-main);

    font-weight: var(--fw-bold);

    letter-spacing: -0.035em;

    color: var(--text-main);
}


/* LARGE CARDS */

.principle-card--simple .principle-card__content h3,
.principle-card--improve .principle-card__content h3 {
    max-width: 570px;

    font-size: clamp(31px, 3vw, 43px);
    line-height: 1.08;
}


/* SMALL CARDS */

.principle-card--business .principle-card__content h3,
.principle-card--real .principle-card__content h3 {
    max-width: 390px;

    font-size: 26px;
    line-height: 1.12;
}


/* WHITE TEXT ON 04 */

.principle-card--improve .principle-card__content h3 {
    color: var(--text-white);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.principle-card__content p {
    width: 100%;

    margin: 14px 0 0;

    font-family: var(--font-main);

    font-size: 16px;
    line-height: 1.7;

    font-weight: var(--fw-normal);

    color: var(--text-muted);
}


/* BIG DESCRIPTION */

.principle-card--simple .principle-card__content p,
.principle-card--improve .principle-card__content p {
    max-width: 590px;

    font-size: var(--text-base);
}


/* SMALL DESCRIPTION */

.principle-card--business .principle-card__content p,
.principle-card--real .principle-card__content p {
    max-width: 390px;
}


/* 04 DESCRIPTION */

.principle-card--improve .principle-card__content p {
    color: rgba(255, 255, 255, 0.74);
}


/* ==========================================================
   01 FOOTER PILLS
========================================================== */

.principle-card__footer {
    margin-top: 24px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.principle-card__footer span {
    padding: 8px 11px;

    display: inline-flex;
    align-items: center;

    gap: 5px;

    border-radius: var(--radius-full);

    border: var(--border-primary);

    background: rgba(255, 255, 255, 0.58);

    font-family: var(--font-main);

    font-size: 15px;

    font-weight: var(--fw-semibold);

    color: var(--primary-dark);
}


.principle-card__footer svg {
    width: 11px;
    height: 11px;
}


/* ==========================================================
   04 GROWTH BARS
========================================================== */

.principle-card__growth {
    height: 36px;

    margin-top: 22px;

    display: flex;
    align-items: flex-end;

    gap: 6px;
}


.principle-card__growth span {
    width: 6px;

    border-radius: var(--radius-full);

    background: rgba(255, 255, 255, 0.72);
}


.principle-card__growth span:nth-child(1) {
    height: 10px;
}


.principle-card__growth span:nth-child(2) {
    height: 17px;
}


.principle-card__growth span:nth-child(3) {
    height: 25px;
}


.principle-card__growth span:nth-child(4) {
    height: 34px;
}


/* ==========================================================
   HOVER — DESKTOP ONLY
========================================================== */

@media (hover: hover) {

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

        box-shadow: var(--shadow-md);
    }


    .principle-card--simple:hover {
        box-shadow: var(--shadow-lg);
    }


    .principle-card--business:hover .principle-card__icon,
    .principle-card--real:hover .principle-card__icon {
        color: var(--text-white);

        background: var(--gradient-primary);

        border-color: transparent;
    }


    .principle-card--improve:hover {
        box-shadow:
            0 30px 70px rgba(37, 99, 235, 0.24);
    }
}

.why-ploutic-about {
    position: relative;
    isolation: isolate;

    padding: var(--space-section) 24px;

    overflow: hidden;

    background: var(--bg-white);
}


/* SUBTLE BACKGROUND GLOW */

.why-ploutic-about::before {
    content: "";

    position: absolute;
    z-index: -1;

    width: 600px;
    height: 600px;

    top: 50%;
    left: -350px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: var(--blue-glow);

    opacity: 0.28;

    pointer-events: none;
}


/* ==========================================================
   CONTAINER
========================================================== */

.why-ploutic-about__container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr) minmax(0, 1.15fr);

    gap: clamp(60px, 8vw, 120px);

    align-items: center;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.why-ploutic-about__content {
    width: 100%;
    max-width: 540px;
}


/* TITLE */

.why-ploutic-about__title {
    width: 100%;
    max-width: 560px;

    margin: 22px 0 0;

    font-family: var(--font-main);

    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1.05;

    font-weight: var(--fw-extra);

    letter-spacing: -0.05em;

    color: var(--text-main);
}


.why-ploutic-about__title span {
    display: block;

    background: var(--text-gradient-premium);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* DESCRIPTION */

.why-ploutic-about__description {
    width: 100%;
    max-width: 520px;

    margin: 24px 0 0;

    font-family: var(--font-main);

    font-size: 18px;
    line-height: 1.75;

    font-weight: var(--fw-normal);

    color: var(--text-muted);
}


/* CTA */

.why-ploutic-about__actions {
    margin-top: 32px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}


/* ==========================================================
   RIGHT REASONS CONTAINER
========================================================== */

.why-ploutic-about__reasons {
    position: relative;

    width: 100%;

    padding: 10px 28px;

    overflow: hidden;

    border: var(--border-light);
    border-radius: var(--radius-xl);

    background: rgba(255, 255, 255, 0.68);

    box-shadow:
        0 24px 70px rgba(15, 23, 42, 0.06);

    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
}


/* SUBTLE INNER GLOW */

.why-ploutic-about__reasons::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -170px;
    right: -130px;

    border-radius: 50%;

    background: var(--blue-glow);

    opacity: 0.45;

    pointer-events: none;
}


/* ==========================================================
   INDIVIDUAL REASON
========================================================== */

.why-ploutic-reason {
    position: relative;

    width: 100%;

    padding: 30px 4px;

    display: grid;

    grid-template-columns:
        42px minmax(0, 1fr) 36px;

    gap: 20px;

    align-items: start;

    border-bottom: var(--border-light);

    transition:
        background 0.3s ease,
        padding 0.3s ease,
        transform 0.3s ease;
}


/* REMOVE LAST BORDER */

.why-ploutic-reason:last-child {
    border-bottom: none;
}


/* ==========================================================
   NUMBER
========================================================== */

.why-ploutic-reason__number {
    padding-top: 7px;

    font-family: var(--font-main);

    font-size: 16px;
    line-height: 1;

    font-weight: var(--fw-bold);

    letter-spacing: 0.1em;

    color: var(--text-light);
}


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

.why-ploutic-reason__content {
    min-width: 0;
}


/* HEADING WRAPPER */

.why-ploutic-reason__heading {
    display: flex;
    align-items: center !important;

    gap: 13px;
}


/* ==========================================================
   ICON
========================================================== */

.why-ploutic-reason__icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--primary);

    background: var(--blue-soft);

    border: var(--border-primary);

    transition: var(--transition);
}


.why-ploutic-reason__icon svg {
    width: 18px;
    height: 18px;

    stroke-width: 1.8;
}


/* ==========================================================
   HEADING
========================================================== */

.why-ploutic-reason h3 {
    margin: 0;

    font-family: var(--font-main);

    font-size: 21px;
    line-height: 1.25;

    font-weight: var(--fw-bold);

    letter-spacing: -0.025em;

    color: var(--text-main);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.why-ploutic-reason p {
    width: 100%;
    max-width: 470px;

    margin: 11px 0 0;

    font-family: var(--font-main);

    font-size: 14px;
    line-height: 1.65;

    font-weight: var(--fw-normal);

    color: var(--text-muted);
}


/* ==========================================================
   ARROW
========================================================== */

.why-ploutic-reason__arrow {
    width: 44px;
    height: 44px;

    margin-top: 3px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--text-light);

    background: transparent;

    transition: var(--transition);
}


.why-ploutic-reason__arrow svg {
    width: 16px;
    height: 16px;

    stroke-width: 1.8;
}


/* ==========================================================
   HOVER
========================================================== */

@media (hover: hover) {

    .why-ploutic-reason:hover {
        padding-left: 14px;
        padding-right: 14px;

        border-radius: 18px;
        cursor: pointer;

        background: var(--blue-soft);
    }


    .why-ploutic-reason:hover .why-ploutic-reason__icon {
        color: var(--text-white);

        background: var(--card-purple);

        border-color: transparent;

        box-shadow:
            0 10px 25px rgba(37, 99, 235, 0.18);
    }


    .why-ploutic-reason:hover .why-ploutic-reason__arrow {
        color: var(--primary);

        background: rgba(37, 99, 235, 0.08);

        transform: rotate(45deg);
    }
}


@media (min-width: 1400px) {

    .hero-container {
        max-width: 1320px;

        grid-template-columns:
            minmax(0, 630px) minmax(0, 550px);
    }

    .hero-content h1 {
        font-size: 68px;
    }
}

@media (max-width:1240px) {
    .hero-container {
        grid-template-columns:
            minmax(0, 1fr) minmax(350px, 440px);

        gap: 45px;

        padding-left: 28px !important;
        padding-right: 28px !important;
    }


    .hero-content h1 {
        font-size:
            clamp(44px, 5vw, 58px);

        letter-spacing: -2.4px;
    }


    .hero-content p {
        font-size: 16px;
    }


    .hero-trust-item {
        min-width: 125px;

        padding-right: 18px;
        margin-right: 18px;
    }

    .business-system__center {
        grid-area: unset;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 230px;
        max-width: calc(100% - 40px);
        margin: 0;
        transform: translate(-50%, -50%);
        justify-self: auto;
        align-self: auto;
        padding: 20px 18px;
        box-sizing: border-box;
        text-align: center;
        z-index: 5
    }



    .hero-video-2 {
        display: block !important
    }

    trust {
        padding: 28px 0
    }

    .trust-track {
        gap: 60px
    }

    .trust-track span {
        font-size: 14px
    }

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

    .problem-heading h2 {
        font-size: 2.8rem
    }

    .shape-left,
    .shape-right {
        width: 22%;
        height: 120px
    }

    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .why-image {
        position: relative;
        top: 0;
        align-items: center;
        justify-content: center;
        text-align: center
    }

    #serviceImage {
        align-items: center;
        justify-content: center
    }

    .why-heading {
        max-width: 720px;
        margin-bottom: 60px
    }

    .why-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center
    }

    .why-image {
        width: 100%;
        max-width: 470px;
        margin: 0 auto
    }

    #serviceImage {
        width: 100%;
        height: auto;
        display: block
    }

    .service-header {
        padding: 24px 24px;
        gap: 18px
    }

    .service-header:hover {
        padding-left: 24px
    }

    .service-number {
        min-width: 42px;
        flex-shrink: 0;
        font-size: 16px
    }

    .service-info {
        flex: 1;
        min-width: 0
    }

    .service-info h4 {
        font-size: 20px;
        line-height: 1.3
    }

    .service-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0
    }

    .service-body {
        padding-left: 84px;
        padding-right: 24px
    }

    .service-body p {
        font-size: 16px;
        line-height: 1.8
    }

    .about-page-hero__visual {
        min-height: 570px;

        padding:
            135px 6% 120px;
    }


    .about-impact {
        width: min(100%, 900px);
    }


    .about-impact__row {
        min-height: 142px;

        padding: 0 32px;

        grid-template-columns:
            125px minmax(0, 1fr) 170px;
    }


    .about-impact__number {
        height: 66px;

        padding-right: 24px;
    }


    .about-impact__number span {
        font-size: 54px;
    }


    .about-impact__content {
        padding: 0 27px;
    }


    .about-impact__label {
        font-size: 19px;
    }


    .about-impact__content p {
        max-width: 350px;

        font-size: 14px;
        line-height: 1.6;
    }


    .about-impact__tag {
        min-height: 36px;

        padding: 8px 12px;

        font-size: 12px;
    }
}

@media (max-width:1024px) {
    .hero {
        min-height: auto;
    }


    .hero-container {
        max-width: 760px;

        padding:
            150px 24px 70px !important;

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .hero-content {
        max-width: 680px;

        margin: 0 auto;

        text-align: center;
    }


    .hero-badge {
        margin: 0 auto;
    }


    .hero-content h1 {
        max-width: 680px;

        margin-left: auto;
        margin-right: auto;

        font-size:
            clamp(46px, 8vw, 64px);
    }


    .hero-content p {
        max-width: 590px;

        margin-left: auto;
        margin-right: auto;
    }


    .hero-actions {
        justify-content: center;
    }


    .hero-trust {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-visual {
        max-width: 570px;

        margin: 0 auto;
    }


    .hero-video {
        aspect-ratio: 4 / 4.4;
    }

    .about__grid {
        grid-template-columns: 1fr
    }

    .about__visual {
        height: 420px;
        order: initial
    }

    .about__content {
        text-align: center
    }

    .about__desc {
        margin-left: auto;
        margin-right: auto
    }

    .about__features {
        align-items: start
    }

    .about-feature {
        max-width: 320px
    }

    .business-system__canvas {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas: "visibility website" "leads operations";
        gap: 100px 24px;
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 32px;
        align-items: stretch
    }

    .business-system__lines {
        display: none
    }

    .business-system__module {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        height: 100%;
        min-height: 150px
    }

    .business-system__module--visibility {
        grid-area: visibility
    }

    .business-system__module--website {
        grid-area: website
    }

    .business-system__module--leads {
        grid-area: leads
    }

    .business-system__module--operations {
        grid-area: operations
    }

    .business-system__center {
        grid-area: unset;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 230px;
        max-width: calc(100% - 40px);
        margin: 0;
        transform: translate(-50%, -50%);
        justify-self: auto;
        align-self: auto;
        padding: 20px 18px;
        box-sizing: border-box;
        text-align: center;
        z-index: 5
    }

    .business-system__icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0
    }

    .business-system__icon svg {
        width: 19px;
        height: 19px
    }

    .business-system__module-title {
        margin-top: 14px
    }

    .business-system__module-problem {
        margin-top: 6px
    }

    .business-system__status {
        margin-top: auto;
        padding-top: 14px
    }

    .customer-journey__track {
        flex-wrap: wrap;
        gap: var(--space-lg) 0
    }

    .customer-journey__stage {
        flex: 0 0 42%
    }

    .customer-journey__connector {
        flex: 0 0 auto;
        transform: rotate(0)
    }

    .customer-journey__connector:nth-child(6) {
        display: none
    }

    .faq__grid {
        grid-template-columns: 1fr
    }

    .faq-support {
        position: static
    }

    .about-page-hero {
        padding-top: 130px;
    }

    .about-page-hero__content {
        padding-bottom: 60px;
    }

    .about-page-hero__title {
        max-width: 760px;

        font-size: clamp(44px, 7vw, 62px);
    }

    .about-page-hero__visual {
        min-height: 530px;

        padding:
            90px 30px 110px;
    }

    .about-impact {
        width: min(100%, 760px);
    }

    .about-impact__row {
        min-height: 125px;

        padding: 0 28px;

        grid-template-columns:
            130px minmax(0, 1fr) 150px;
    }

    .about-impact__number {
        height: 58px;

        padding-right: 22px;
    }

    .about-impact__number span {
        font-size: 50px;
    }

    .about-impact__content {
        padding: 0 24px;
    }

    .who-we-are {
        padding:
            90px 24px;
    }

    .who-we-are__header {
        margin-bottom: 50px;
    }

    .who-we-are__grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .who-we-are__visual {
        min-height: 540px;
    }

    .who-we-are__focus {
        padding: 36px;
    }

    .our-story {
        padding: 90px 24px;
    }

    .our-story__header {
        margin-bottom: 50px;
    }

    .our-story__grid {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .our-story__content {
        max-width: 720px;

        padding: 0;
    }

    .our-story__visual {
        min-height: 570px;
    }

    .mission-vision {
        padding: 90px 24px;
    }

    .mission-vision__header {
        margin-bottom: 50px;
    }

    .mission-vision__grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        min-height: 470px;
    }

    .mv-card__content {
        margin-top: 58px;
    }

    .mv-card__content h3,
    .mv-card__content p {
        max-width: 650px;
    }

    .our-principles {
        padding: 90px 24px;
    }


    .our-principles__header {
        margin-bottom: 50px;
    }


    .principles-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-template-rows: auto;

        gap: 16px;
    }


    /* 01 FULL */

    .principle-card--simple {
        grid-column: 1 / -1;
        grid-row: auto;
    }


    /* 02 LEFT */

    .principle-card--business {
        grid-column: 1;
        grid-row: auto;
    }


    /* 03 RIGHT */

    .principle-card--real {
        grid-column: 2;
        grid-row: auto;
    }


    /* 04 FULL */

    .principle-card--improve {
        grid-column: 1 / -1;
        grid-row: auto;
    }


    .principle-card,
    .principle-card--simple,
    .principle-card--business,
    .principle-card--real,
    .principle-card--improve {
        min-height: 0;
    }


    .principle-card--simple,
    .principle-card--improve {
        min-height: 350px;
    }


    .principle-card--business,
    .principle-card--real {
        min-height: 310px;
    }


    .principle-card--simple .principle-card__content h3,
    .principle-card--improve .principle-card__content h3 {
        max-width: 600px;
    }

    .why-ploutic-about {
        padding: 90px 24px;
    }


    .why-ploutic-about__container {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .why-ploutic-about__content {
        max-width: 700px;
    }


    .why-ploutic-about__title {
        max-width: 700px;
    }


    .why-ploutic-about__description {
        max-width: 620px;
    }


    .why-ploutic-about__reasons {
        max-width: 100%;
    }


    .why-ploutic-reason p {
        max-width: 650px;
    }

}

@media (max-width:768px) {
    .hero-container {
        width: 100%;

        padding:
            160px 18px 55px !important;

        gap: 42px;
    }


    .hero-grid {
        background-size: 48px 48px;
    }

    .badge-none {
        display: none !important;
    }


    .hero-badge {
        padding: 8px 12px;

        gap: 7px;

        font-size: 13px;
    }


    .hero-badge svg {
        width: 16px;
        height: 16px;
    }


    .hero-content h1 {
        margin-top: 22px;

        font-size:
            clamp(38px, 11vw, 50px);

        line-height: 1.04;

        letter-spacing: -2px;
    }


    .hero-content p {
        margin-top: 20px;

        font-size: 15px;

        line-height: 1.7;
    }


    .hero-actions {
        width: 100%;

        margin-top: 28px;

        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .hero-actions .header-cta,
    .hero-btn {
        width: 100%;

        min-height: 50px;

        margin: 0;

        justify-content: center;
    }

    .hero-btn {
        width: 70% !important;
        min-height: 50px;
        margin: 0 auto !important;
        justify-content: center;
    }


    /* STATS */

    .hero-trust {
        width: 100%;

        margin-top: 35px;
        padding-top: 22px;

        display: grid !important;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 0 !important;
    }


    .hero-trust-item {
        min-width: 0;

        margin: 0;
        padding: 0 8px;

        align-items: center;

        text-align: center;
    }


    .hero-trust-item:not(:last-child)::after {
        top: 2px;
        right: 0;

        height: 40px;
    }


    .hero-trust-item strong {
        font-size: 25px;
    }


    .hero-trust-item span {
        margin-top: 6px;

        font-size: 10px;

        white-space: normal;
    }


    /* VIDEO */

    .hero-visual {
        width: 100%;

        max-width: 100%;
    }


    .hero-video {
        width: 100%;

        aspect-ratio: 4 / 4.6;

        border-radius: 18px;

        box-shadow:
            0 20px 50px rgba(15, 23, 42, 0.11);
    }

    .faq__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important
    }

    .faq__accordion {
        order: 1 !important;
        width: 100% !important
    }

    .faq-support {
        order: 2 !important;
        width: 100% !important
    }

    .hero-screen {
        width: 280px
    }

    .hero-mini-card {
        display: none
    }

    .hero-icon {
        width: 48px;
        height: 48px
    }

    .hero-icon svg {
        width: 20px;
        height: 20px
    }

    .hero-icon-2,
    .hero-icon-4 {
        display: none
    }

    .integration-badge {
        display: none
    }

    .hero-rotate {
        display: block;
        width: 100%;
        min-width: 0;
        text-align: center;
        margin: 0 auto
    }

    .ploutic-comparison {
        padding: 80px 0
    }

    .comparison-heading {
        margin-bottom: 50px
    }

    .comparison-heading h2 {
        font-size: 36px;
        letter-spacing: -1px
    }

    .comparison-table {
        border-radius: 20px
    }

    .comparison-row {
        grid-template-columns: 1.4fr .8fr .8fr
    }

    .comparison-cell {
        padding: 18px 16px
    }

    .feature-icon {
        display: none
    }

    .feature-info {
        font-size: 14px
    }

    .hero-content h1 {
        text-align: center
    }

    .hero-visual {
        display: none
    }

    .trust {
        padding: 24px 0
    }

    .trust-track {
        gap: 40px;

    }

    .trust-track span {
        font-size: 13px
    }

    .problems-section {
        padding: 70px 0
    }

    .problem-heading {
        margin-bottom: 40px
    }

    .problem-heading h2 {
        font-size: 2.2rem;
        line-height: 1.15
    }

    .problem-heading p {
        font-size: 1rem
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 55px
    }

    .problem-card {
        padding: 26px
    }

    .problem-card h3 {
        font-size: 1.35rem
    }

    .problem-points {
        margin-top: 32px
    }

    .mini-ui {
        min-height: 200px;
        padding: 18px
    }

    .shape-left,
    .shape-right {
        display: none
    }

    .why-ploutic {
        padding: 50px 0
    }

    .why-heading {
        margin-bottom: 50px
    }

    .why-wrapper {
        gap: 40px
    }

    .service-header {
        padding: 22px 0
    }

    .service-info h4 {
        font-size: 1.15rem
    }

    .service-body {
        padding-left: 46px
    }

    .why-ploutic {
        padding: 40px 0
    }

    .why-heading {
        max-width: 600px;
        margin-bottom: 45px;
        padding: 0 16px
    }

    .why-heading h2 {
        font-size: 36px;
        line-height: 1.15
    }

    .why-heading p {
        font-size: 16px;
        line-height: 1.7
    }

    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: stretch
    }

    .why-image {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        aspect-ratio: 1/1;
        animation: none
    }

    .business-diagnostic {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        overflow: hidden !important;
        border-radius: 20px !important
    }

    .business-diagnostic__center {
        padding: 18px 16px !important;
        gap: 6px !important
    }

    .business-diagnostic__row {
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 15px 16px !important;
        gap: 12px !important;
        box-sizing: border-box !important;
        display: grid !important;
        grid-template-columns: 40px 1fr !important;
        grid-template-areas: "icon text" "icon status" !important;
        column-gap: 13px !important;
        row-gap: 8px !important;
        align-items: start !important
    }

    .business-diagnostic__row-body {
        grid-area: text !important;
        transform: none !important
    }

    .business-diagnostic__row .business-system__icon {
        width: 40px !important;
        height: 40px !important;
        grid-area: icon !important;
        flex: 0 0 40px !important;
        align-self: center !important
    }

    .business-diagnostic__row .business-system__module-title {
        font-size: 14px !important;
        line-height: 1.25 !important
    }

    .business-diagnostic__row .business-system__module-problem {
        margin-top: 3px !important;
        font-size: 12px !important;
        line-height: 1.35 !important
    }

    .business-diagnostic__row .business-system__status {
        flex: 0 0 auto !important;
        padding: 5px 7px !important;
        font-size: 9px !important;
        white-space: nowrap !important;
        grid-area: status !important;
        justify-self: start !important;
        margin: 0 !important
    }

    #serviceImage {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .why-content {
        width: 100%
    }

    .service-list {
        width: 100%
    }

    .service-item {
        width: 100%;
        margin-bottom: 14px;
        transform: none !important;
        overflow: hidden
    }

    .service-item:hover {
        transform: none !important
    }

    .service-header {
        width: 100%;
        padding: 22px 22px;
        gap: 16px
    }

    .service-header:hover {
        padding-left: 22px
    }

    .service-number {
        width: auto;
        min-width: 40px;
        flex-shrink: 0;
        font-size: 16px
    }

    .service-info {
        flex: 1;
        min-width: 0
    }

    .service-info h4 {
        font-size: 19px;
        line-height: 1.3
    }

    .service-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0
    }

    .service-body {
        padding-left: 78px;
        padding-right: 24px
    }

    .service-body p {
        padding-bottom: 24px;
        font-size: 16px;
        line-height: 1.8
    }

    .service-item::before {
        left: 0;
        top: 22px;
        width: 3px
    }

    .service-item.active::before {
        height: 55px
    }

    .legal-container {
        width: min(100% - 32px, 900px)
    }

    .legal-hero {
        padding: 180px 0 55px
    }

    .legal-title {
        font-size: 38px
    }

    .legal-intro {
        font-size: 15px;
        line-height: 1.65
    }

    .legal-content {
        padding: 50px 0 70px
    }

    .legal-toc {
        margin-bottom: 45px;
        padding: 22px
    }

    .legal-toc__links {
        grid-template-columns: 1fr;
        gap: 7px
    }

    .legal-section {
        margin-bottom: 38px
    }

    .legal-section h2 {
        font-size: 21px
    }

    .legal-section li,
    .legal-section p {
        font-size: 15px
    }

    .legal-contact {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px
    }

    .legal-contact__button {
        width: 100%
    }

    .who-we-are {
        padding:
            75px 16px;
    }


    /* HEADER */

    .who-we-are__header {
        max-width: 100%;

        margin-bottom: 38px;
    }

    .who-we-are__title {
        max-width: 100%;

        margin-top: 16px;

        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.08;

        letter-spacing: -0.04em;
    }

    .who-we-are__intro {
        max-width: 100%;

        margin-top: 18px;

        font-size: 14px;
        line-height: 1.65;
    }


    /* GRID */

    .who-we-are__grid {
        gap: 18px;
    }


    .who-we-are__visual {
        width: 100%;

        min-height: 0;
        height: 470px;

        position: relative;

        overflow: hidden;

        border-radius: var(--radius-lg);

        background: var(--bg-soft);
    }

    .who-we-are__image {
        position: absolute;
        inset: 0;

        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;

        /*
           IMPORTANT:
           50% = horizontal center
           45% = slightly upper focus
        */
        object-position: 50% 45%;

        transform: none;
    }

    .who-we-are__visual-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;

        min-height: 68px;

        padding: 11px 12px;

        gap: 11px;

        border-radius: 13px;

        background: rgba(255, 255, 255, 0.10);

        border: 1px solid rgba(255, 255, 255, 0.26);

        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);

        box-shadow:
            0 10px 30px rgba(15, 23, 42, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .who-we-are__visual-overlay {
        position: absolute;
        inset: 0;

        z-index: 1;

        background:
            linear-gradient(180deg,
                transparent 45%,
                rgba(15, 23, 42, 0.04) 65%,
                rgba(15, 23, 42, 0.38) 100%);

        pointer-events: none;
    }

    .who-we-are__visual-icon {
        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.14);

        border: 1px solid rgba(255, 255, 255, 0.24);
    }

    .who-we-are__visual-icon svg {
        width: 18px;
        height: 18px;
    }


    /* TEXT */

    .who-we-are__visual-badge span {
        margin-bottom: 3px;

        font-size: 11px;

        color: rgba(255, 255, 255, 0.72);
    }

    .who-we-are__visual-badge strong {
        font-size: 12px;
        line-height: 1.35;

        color: var(--text-white);
    }


    /* RIGHT PANEL */

    .who-we-are__focus {
        padding:
            28px 20px;

        border-radius: var(--radius-lg);
    }

    .who-we-are__focus-head {
        margin-bottom: 22px;
    }

    .who-we-are__eyebrow {
        margin-bottom: 10px;

        font-size: 13px;
    }

    .who-we-are__focus-head h3 {
        font-size: 25px;
        line-height: 1.15;
    }

    .who-we-are__focus-head p {
        margin-top: 12px;

        font-size: 14px;
        line-height: 1.6;
    }


    /* FOCUS ITEMS */

    .who-focus-item {
        min-height: auto;

        padding:
            20px 34px 20px 0;

        grid-template-columns:
            42px minmax(0, 1fr);

        gap: 13px;
    }

    .who-focus-item__icon {
        width: 40px;
        height: 40px;

        border-radius: 11px;
    }

    .who-focus-item__icon svg {
        width: 18px;
        height: 18px;
    }

    .who-focus-item__content h4 {
        margin-top: 0;

        font-size: 16px;
    }

    .who-focus-item__content p {
        font-size: 13px;
        line-height: 1.55;
    }

    .who-focus-item__number {
        top: 23px;

        font-size: 12px;
    }

    .our-story {
        padding: 75px 16px;
    }


    /* HEADER */

    .our-story__header {
        margin-bottom: 38px;
    }

    .our-story__title {
        display: none;
    }




    /* GRID */

    .our-story__grid {
        gap: 32px;
    }


    /* CONTENT */

    .our-story__content h3 {
        font-size: 27px;
        line-height: 1.14;
    }

    .our-story__copy {
        margin-top: 22px;
    }

    .our-story__copy p {
        font-size: 15px;
        line-height: 1.7;
    }

    .our-story__copy p+p {
        margin-top: 14px;
    }


    /* STATEMENT */

    .our-story__statement {
        margin-top: 26px;

        padding: 13px;

        gap: 11px;
    }

    .our-story__statement-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        border-radius: 10px;
    }

    .our-story__statement-icon svg {
        width: 18px;
        height: 18px;
    }

    .our-story__statement span {
        font-size: 10px;
    }

    .our-story__statement strong {
        font-size: 13px;
    }


    /* VISUAL */

    .our-story__visual {
        width: 100%;

        min-height: 0;
        height: 500px;

        border-radius: var(--radius-lg);
    }

    .our-story__image {
        object-fit: cover;

        /*
           Change this if your image subject
           needs a different mobile crop.
        */
        object-position: 50% 45%;
    }


    /* TOP LABEL */

    .our-story__visual-label {
        top: 14px;
        left: 14px;

        font-size: 12px;
    }


    /* JOURNEY */

    .our-story__journey {
        left: 14px;
        right: 14px;
        bottom: 14px;

        min-height: auto;

        padding: 14px;

        grid-template-columns: 1fr;

        gap: 0;

        border-radius: 14px;
    }

    .our-story__journey-item {
        padding: 10px 0;
    }

    .our-story__journey-item:first-child {
        padding-top: 2px;
    }

    .our-story__journey-item:last-child {
        padding-bottom: 2px;
    }

    .our-story__journey-number {
        width: 29px;
        height: 29px;

        flex-basis: 29px;
    }

    .our-story__journey-item small {
        font-size: 10px;
    }

    .our-story__journey-item strong {
        font-size: 13px;

        white-space: normal;
    }


    /* Convert horizontal arrows to vertical */

    .our-story__journey-arrow {
        width: 13px;
        height: 13px;

        margin-left: 8px;

        transform: rotate(90deg);
    }

    .mission-vision {
        padding: 75px 16px;
    }


    /* HEADER */

    .mission-vision__header {
        max-width: 100%;

        margin-bottom: 38px;
    }

    .mission-vision__title {
        max-width: 100%;

        margin-top: 16px;

        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.08;

        letter-spacing: -0.04em;
    }

    .mission-vision__intro {
        max-width: 100%;

        margin-top: 17px;

        font-size: 14px;
        line-height: 1.65;
    }


    /* GRID */

    .mission-vision__grid {
        gap: 16px;
    }


    /* CARD */

    .mv-card {
        min-height: 430px;

        padding: 24px;

        border-radius: var(--radius-lg);
    }


    /* TOP */

    .mv-card__number {
        font-size: 29px;
    }

    .mv-card__icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;

        border-radius: 13px;
    }

    .mv-card__icon svg {
        width: 20px;
        height: 20px;
    }


    /* CONTENT */

    .mv-card__content {
        margin-top: 50px;
    }

    .mv-card__eyebrow {
        margin-bottom: 13px;

        font-size: 12px;
    }

    .mv-card__content h3 {
        font-size: 28px;
        line-height: 1.12;

        letter-spacing: -0.035em;
    }

    .mv-card__content p {
        margin-top: 17px;

        font-size: 14px !important;
        line-height: 1.7;
    }


    /* BOTTOM */

    .mv-card__bottom {
        padding-top: 28px;
    }

    .mv-card__principle {
        padding: 8px 10px;

        font-size: 12px;
    }

    .mv-card__principle svg {
        width: 12px;
        height: 12px;
    }


    /* MOBILE HOVER RESET */

    .mv-card:hover {
        transform: none;
    }

    .our-principles {
        padding: 75px 16px;
    }


    /* ========================
       HEADER
    ======================== */

    .our-principles__header {
        max-width: 100%;

        margin-bottom: 38px;
    }


    .our-principles__title {
        max-width: 100%;

        margin-top: 16px;

        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.08;

        letter-spacing: -0.04em;
    }


    .our-principles__intro {
        max-width: 100%;

        margin-top: 17px;

        font-size: 14px;
        line-height: 1.65;
    }


    /* ========================
       GRID -> SINGLE COLUMN
    ======================== */

    .principles-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;

        gap: 14px;
    }


    .principle-card--simple,
    .principle-card--business,
    .principle-card--real,
    .principle-card--improve {
        grid-column: 1;
        grid-row: auto;
    }


    /* ========================
       CARDS
    ======================== */

    .principle-card,
    .principle-card--simple,
    .principle-card--business,
    .principle-card--real,
    .principle-card--improve {
        width: 100%;

        min-width: 0;
        min-height: 0;

        height: auto;

        padding: 22px;

        border-radius: var(--radius-lg);
    }


    /* ========================
       ICONS
    ======================== */

    .principle-card__icon,
    .principle-card--simple .principle-card__icon,
    .principle-card--improve .principle-card__icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;

        border-radius: 13px;
    }


    .principle-card__icon svg {
        width: 18px;
        height: 18px;
    }


    .principle-card__number {
        font-size: 20px;
    }


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

    .principle-card__content,
    .principle-card--simple .principle-card__content,
    .principle-card--business .principle-card__content,
    .principle-card--real .principle-card__content,
    .principle-card--improve .principle-card__content {
        margin-top: 0;

        padding-top: 36px;
    }


    .principle-card__eyebrow {
        margin-bottom: 10px;

        font-size: 12px;
    }


    /* ALL MOBILE HEADINGS */

    .principle-card--simple .principle-card__content h3,
    .principle-card--business .principle-card__content h3,
    .principle-card--real .principle-card__content h3,
    .principle-card--improve .principle-card__content h3 {
        max-width: 100%;

        font-size: 25px;
        line-height: 1.12;

        letter-spacing: -0.035em;
    }


    /* ALL MOBILE DESCRIPTIONS */

    .principle-card__content p,
    .principle-card--simple .principle-card__content p,
    .principle-card--business .principle-card__content p,
    .principle-card--real .principle-card__content p,
    .principle-card--improve .principle-card__content p {
        max-width: 100%;

        margin-top: 12px;

        font-size: 15px;
        line-height: 1.65;
    }


    /* ========================
       PILLS
    ======================== */

    .principle-card__footer {
        margin-top: 20px;

        gap: 6px;
    }


    .principle-card__footer span {
        padding: 7px 9px;

        font-size: 13px;
    }


    /* ========================
       GROWTH BARS
    ======================== */

    .principle-card__growth {
        margin-top: 20px;
    }


    /* NO MOBILE MOVEMENT */

    .principle-card:hover {
        transform: none;
    }

    .why-ploutic-about {
        padding: 75px 16px;
    }


    /* CONTAINER */

    .why-ploutic-about__container {
        gap: 42px;
    }


    /* TITLE */

    .why-ploutic-about__title {
        margin-top: 17px;

        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.08;

        letter-spacing: -0.04em;
    }


    /* DESCRIPTION */

    .why-ploutic-about__description {
        margin-top: 18px;

        font-size: 15px;
        line-height: 1.7;
    }


    /* CTA */

    .why-ploutic-about__actions {
        margin-top: 25px;
    }


    /* REASONS CONTAINER */

    .why-ploutic-about__reasons {
        padding: 4px 18px;

        border-radius: var(--radius-lg);
    }


    /* REASON */

    .why-ploutic-reason {
        padding: 24px 0;

        grid-template-columns:
            30px minmax(0, 1fr);

        gap: 12px;
    }


    /* NUMBER */

    .why-ploutic-reason__number {
        padding-top: 5px;

        font-size: 12px;
    }


    /* ARROW */

    .why-ploutic-reason__arrow {
        display: none;
    }

    /* HEADING */

    .why-ploutic-reason__heading {
        gap: 10px;
    }

    .why-ploutic-reason__icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        border-radius: 10px;
    }


    .why-ploutic-reason__icon svg {
        width: 16px;
        height: 16px;
    }


    .why-ploutic-reason h3 {
        font-size: 17px;
        line-height: 1.25;
    }


    /* DESCRIPTION */

    .why-ploutic-reason p {
        margin-top: 10px;

        font-size: 13px;
        line-height: 1.65;
    }

    .home-hero-margin {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }


    /* DISABLE MOBILE HOVER */

    .why-ploutic-reason:hover {
        padding-left: 0;
        padding-right: 0;

        background: transparent;
    }

    .header-cta {
        width: 80% !important;
        max-width: 320px;
        min-height: 52px;
        text-align: center !important;
        justify-content: center !important;
        align-items: center;
        margin: 0 auto;



        padding: 0 20px;

        display: flex;
    }

    .about-impact {
        max-width: 90%;
    }


}

@media (max-width:640px) {

    .about__stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-panel {
        width: 260px
    }

    .about-card {
        padding: 8px 12px
    }

    .about-card__value {
        font-size: var(--text-base)
    }

    .health-dashboard {
        padding: var(--space-lg) var(--space-md)
    }

    .health-metric {
        align-items: flex-start
    }

    .health-metric__icon {
        width: 36px;
        height: 36px
    }

    .health-badge {
        margin-top: 4px
    }

    .business-challenges {
        padding: 56px 0
    }

    .business-system {
        display: none
    }

    .business-diagnostic {
        display: block
    }

    .customer-journey__track {
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .customer-journey__stage {
        flex: none;
        align-items: center;
        padding: var(--space-md) 0;
        position: relative
    }

    .customer-journey__stage:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 2px;
        height: var(--space-lg);
        background: var(--bg-soft);
        transform: translateX(-50%)
    }

    .customer-journey__connector {
        display: none
    }

    .customer-journey__problem {
        max-width: 260px
    }

    .faq-item__question {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--text-sm)
    }

    .faq-item__answer {
        padding: 0 var(--space-md) var(--space-sm)
    }

    .about-page-hero {
        padding-top: 105px;
    }


    .about-page-hero__content {
        width: 100%;
        max-width: 100%;

        padding: 0 20px 55px;

        text-align: center;
    }

    .about-page-hero__title {
        max-width: 100%;

        margin-top: 18px;

        font-size: clamp(38px, 10vw, 46px);
        line-height: 1.07;

        letter-spacing: -0.045em;
    }

    .about-page-hero__desc {
        max-width: 520px;

        margin: 18px auto 0;

        font-size: 15px;
        line-height: 1.65;

        color: var(--text-muted);
    }


    /* =========================
       PURPLE VISUAL
    ========================= */

    .about-page-hero__visual {
        position: relative;

        width: 106%;
        min-height: auto;

        margin-left: -3%;

        padding: 90px 0 80px;

        display: flex;
        align-items: center;
        justify-content: center;

        overflow: hidden;

        background: var(--card-purple);

        border-radius:
            50% 50% 0 0 / 70px 70px 0 0;
    }


    /* =========================
       GLASS CARD
    ========================= */

    .about-impact {
        width: calc(100% - 32px);
        max-width: 80%;

        margin: 0 auto;

        overflow: hidden;

        border:
            1px solid rgba(255, 255, 255, 0.30);

        border-radius: 18px;

        background:
            rgba(255, 255, 255, 0.14);

        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);

        box-shadow:
            0 20px 50px rgba(15, 23, 42, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }


    /* =========================
       EACH ROW
    ========================= */

    .about-impact__row,
    .about-impact__row--primary {
        min-height: 142px;

        padding: 22px 18px;

        display: grid;

        grid-template-columns:
            58px minmax(0, 1fr);

        grid-template-areas:
            "number content"
            "number tag";

        align-items: center;

        column-gap: 16px;
        row-gap: 11px;

        background:
            rgba(255, 255, 255, 0.08);

        border-bottom:
            1px solid rgba(255, 255, 255, 0.22);
    }

    .about-impact__row--primary {
        background:
            rgba(255, 255, 255, 0.11);
    }

    .about-impact__row:last-child {
        border-bottom: none;
    }


    /* =========================
       NUMBER
       01 / 02 / 03
    ========================= */

    .about-impact__number,
    .about-impact__row--primary .about-impact__number {
        grid-area: number;

        width: 100%;
        height: 100%;

        min-height: 92px;

        padding: 0 15px 0 0;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        border-right:
            1px solid rgba(255, 255, 255, 0.32);
    }

    .about-impact__number span,
    .about-impact__row--primary .about-impact__number span {
        font-family: var(--font-main);

        font-size: 36px;
        line-height: 1;

        font-weight: var(--fw-semibold);

        letter-spacing: -0.055em;

        color: var(--text-white);
    }


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

    .about-impact__content {
        grid-area: content;

        width: 100%;
        min-width: 0;

        padding: 0;
    }


    /* Build / Grow / Simplify */

    .about-impact__label,
    .about-impact__row--primary .about-impact__label {
        display: block;

        margin: 0 0 6px;

        font-family: var(--font-main);

        font-size: 18px;
        line-height: 1.2;

        font-weight: var(--fw-bold);

        color: var(--text-white);
    }


    /* Description */

    .about-impact__content p,
    .about-impact__row--primary .about-impact__content p {
        width: 100%;
        max-width: 100%;

        margin: 0;

        font-family: var(--font-main);

        font-size: 14px;
        line-height: 1.5;

        font-weight: var(--fw-normal);

        color:
            rgba(255, 255, 255, 0.86);
    }


    /* =========================
       TAG / PILL
    ========================= */

    .about-impact__tag,
    .about-impact__row--primary .about-impact__tag {
        grid-area: tag;

        justify-self: start;

        min-height: 33px;

        margin: 0;

        padding: 8px 11px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 6px;

        border:
            1px solid rgba(255, 255, 255, 0.30);

        border-radius: var(--radius-full);

        background:
            rgba(255, 255, 255, 0.13);

        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);

        font-family: var(--font-main);

        font-size: 11px;
        line-height: 1;

        font-weight: var(--fw-semibold);

        color: var(--text-white);

        white-space: nowrap;
    }

    .about-impact__tag svg,
    .about-impact__row--primary .about-impact__tag svg {
        width: 13px;
        height: 13px;

        flex-shrink: 0;

        color: var(--text-white);
    }


    /* =========================
       BOTTOM FLOATING PILL
    ========================= */

    .about-page-hero__float {
        position: absolute;

        left: 50%;
        bottom: 30px;

        z-index: 6;

        transform: translateX(-50%);

        min-height: 37px;

        padding: 8px 12px;

        display: inline-flex;
        align-items: center;

        gap: 7px;

        border:
            1px solid rgba(255, 255, 255, 0.30);

        border-radius: var(--radius-full);

        background:
            rgba(255, 255, 255, 0.13);

        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);

        font-size: 10.5px;
        line-height: 1;

        font-weight: var(--fw-semibold);

        color: var(--text-white);

        white-space: nowrap;
    }

    .about-page-hero__float span {
        width: 23px;
        height: 23px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-page-hero__float svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width:480px) {
    .hero {
        padding: 95px 0 50px
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.1
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.8
    }

    .hero-badge {
        font-size: 13px;
        padding: 10px 16px
    }

    .hero-actions {
        gap: 14px
    }

    .hero-trust {
        flex-direction: row;
        gap: 18px
    }

    .hero-trust-item {
        align-items: center
    }

    .hero-trust-item strong {
        font-size: 21px;
        font-weight: 800
    }

    .hero-trust-item span {
        margin-top: 4px;
        font-size: 13px
    }

    .hero-visual {
        height: 380px
    }

    .problems-section {
        padding: 55px 0
    }

    .problem-heading h2 {
        font-size: 1.85rem
    }

    .problem-heading p {
        font-size: .95rem;
        line-height: 1.8
    }

    .problem-badge {
        padding: 8px 15px;
        font-size: .8rem
    }

    .problem-card {
        padding: 22px;
        border-radius: 22px
    }

    .cta-float-icon {
        width: 54px;
        height: 54px
    }

    .problem-card h3 {
        margin-left: 64px;
        font-size: 22px;
        line-height: 1.2
    }

    .problem-points {
        margin-left: 0;
        margin-top: 32px;
        gap: 12px
    }

    .problem-points li {
        font-size: .92rem;
        margin-left: 15px
    }

    .mini-ui {
        margin-top: 22px;
        padding: 16px;
        min-height: 180px;
        border-radius: 18px
    }

    .browser-top {
        gap: 7px
    }

    .browser-top span {
        width: 8px;
        height: 8px
    }

    .address-bar {
        height: 10px;
        margin-bottom: 16px
    }

    .sidebar {
        width: 42px;
        border-radius: 12px
    }

    .hero-banner {
        height: 48px
    }

    .stat-card {
        height: 58px
    }

    .lead-card {
        padding: 12px 14px
    }

    .lead-icon {
        width: 36px;
        height: 36px
    }

    .lead-content h5 {
        font-size: 13px
    }

    .lead-content span {
        font-size: 11px
    }

    .lead-badge {
        font-size: 10px;
        padding: 5px 9px
    }

    .google-header {
        font-size: 15px
    }

    .place-name {
        font-size: 13px
    }

    .rank {
        font-size: 13px
    }

    .service-number {
        min-width: 28px;
        font-size: .8rem
    }

    .service-info h4 {
        font-size: 1rem
    }

    .service-body {
        padding-left: 30px
    }

    .why-ploutic {
        padding: 30px 0
    }

    .why-heading {
        margin-bottom: 38px;
        padding: 0 8px
    }

    .why-heading h2 {
        font-size: 29px;
        line-height: 1.18;
        margin: 16px 0
    }

    .why-heading p {
        font-size: 14px;
        line-height: 1.7
    }

    .why-wrapper {
        gap: 38px
    }

    .why-image {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1/1;
        border-radius: 24px;
        margin: 0 auto
    }

    #serviceImage {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px
    }

    .service-list {
        gap: 0
    }

    .service-item {
        width: 100%;
        margin-bottom: 12px;
        border-radius: 16px;
        transform: none !important
    }

    .service-item:hover {
        transform: none !important
    }

    .service-header {
        padding: 19px 16px;
        gap: 10px
    }

    .service-header:hover {
        padding-left: 16px
    }

    .service-number {
        min-width: 32px;
        font-size: 14px;
        letter-spacing: 0
    }

    .service-info h4 {
        font-size: 16px;
        line-height: 1.3
    }

    .service-icon {
        width: 34px;
        height: 34px;
        padding: 6px;
        flex-shrink: 0
    }

    .service-body {
        padding-left: 58px;
        padding-right: 18px
    }

    .service-body p {
        padding-bottom: 20px;
        font-size: 14px;
        line-height: 1.75
    }

    .service-item::before {
        left: 0;
        top: 18px;
        width: 3px;
        border-radius: 0 10px 10px 0
    }

    .service-item.active::before {
        height: 48px
    }

    .ploutic-comparison {
        padding: 65px 0
    }

    .comparison-heading {
        margin-bottom: 38px
    }

    .comparison-heading h2 {
        font-size: 29px;
        line-height: 1.2
    }

    .comparison-heading p {
        font-size: 14px
    }

    .comparison-table {
        border-radius: 16px;
        overflow-x: auto
    }

    .comparison-row {
        min-width: 620px;
        grid-template-columns: 1.4fr .9fr .9fr
    }

    .comparison-cell {
        padding: 16px
    }

    .legal-container {
        width: calc(100% - 32px)
    }

    .legal-hero {
        padding: 170px 0 45px
    }

    .legal-title {
        font-size: 34px
    }

    .legal-intro {
        margin-top: 16px
    }

    .legal-meta {
        margin-top: 18px
    }

    .legal-content {
        padding: 40px 0 60px
    }

    .legal-toc {
        padding: 19px;
        border-radius: 14px
    }

    .legal-section {
        margin-bottom: 34px
    }

    .legal-section h2 {
        font-size: 20px
    }

    .legal-contact {
        margin-top: 45px;
        border-radius: 14px
    }
}

@media (max-width:380px) {
    .hero-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }


    .hero-content h1 {
        font-size:
            clamp(35px, 10.5vw, 42px);

        letter-spacing: -1.6px;
    }


    .hero-trust-item {
        padding-left: 5px;
        padding-right: 5px;
    }


    .hero-trust-item strong {
        font-size: 23px;
    }


    .hero-trust-item span {
        font-size: 9px;
    }

    .about-page-hero__visual {
        width: 120%;

        margin-left: -10%;

        padding:
            90px 10% 82px;

        border-radius:
            50% 50% 50% 50% / 65px 65px 20px 20px;
    }


    /* =====================================================
       ABOUT IMPACT CARD ROW
    ===================================================== */

    .about-impact__row,
    .about-impact__row--primary {
        min-height: 138px;

        padding:
            20px 14px;

        grid-template-columns:
            50px minmax(0, 1fr);

        column-gap: 13px;
        row-gap: 10px;
    }


    /* =====================================================
       NUMBER — 01 / 02 / 03
    ===================================================== */

    .about-impact__number,
    .about-impact__row--primary .about-impact__number {
        min-height: 88px;

        padding-right: 11px;
    }

    .about-impact__number span,
    .about-impact__row--primary .about-impact__number span {
        font-size: 30px;
        line-height: 1;

        font-weight: var(--fw-semibold);
    }


    /* =====================================================
       BUILD / GROW / SIMPLIFY
    ===================================================== */

    .about-impact__label,
    .about-impact__row--primary .about-impact__label {
        margin-bottom: 5px;

        font-size: 16px;
        line-height: 1.2;

        font-weight: var(--fw-bold);
    }


    /* =====================================================
       DESCRIPTION
    ===================================================== */

    .about-impact__content p,
    .about-impact__row--primary .about-impact__content p {
        width: 100%;
        max-width: 100%;

        font-size: 12.5px;
        line-height: 1.5;

        color: rgba(255, 255, 255, 0.86);
    }


    /* =====================================================
       IMPACT TAG
    ===================================================== */

    .about-impact__tag,
    .about-impact__row--primary .about-impact__tag {
        min-height: 31px;

        padding:
            7px 9px;

        gap: 5px;

        font-size: 10px;
        line-height: 1;

        white-space: nowrap;
    }

    .about-impact__tag svg,
    .about-impact__row--primary .about-impact__tag svg {
        width: 11px;
        height: 11px;
    }


    /* =====================================================
       WHO WE ARE
    ===================================================== */

    .who-we-are {
        padding:
            65px 14px;
    }

    .who-we-are__title {
        font-size: 31px;
    }

    .who-we-are__visual {
        min-height: 390px;
    }

    .who-we-are__focus {
        padding:
            25px 17px;
    }

    .who-we-are__focus-head h3 {
        font-size: 23px;
    }

    .who-focus-item {
        grid-template-columns:
            38px minmax(0, 1fr);

        gap: 11px;
    }

    .who-focus-item__icon {
        width: 37px;
        height: 37px;
    }


    /* =====================================================
       OUR STORY
    ===================================================== */

    .our-story {
        padding:
            65px 14px;
    }

    .our-story__title {
        font-size: 31px;
    }

    .our-story__content h3 {
        font-size: 24px;
    }

    .our-story__visual {
        height: 470px;
    }


    /* =====================================================
       MISSION & VISION
    ===================================================== */

    .mission-vision {
        padding:
            65px 14px;
    }

    .mission-vision__title {
        font-size: 31px;
    }

    .mv-card {
        min-height: 410px;

        padding: 21px;
    }

    .mv-card__content {
        margin-top: 42px;
    }

    .mv-card__content h3 {
        font-size: 25px;
    }

    .mv-card__content p {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .mv-card__principle {
        white-space: normal;
    }


    /* =====================================================
       OUR PRINCIPLES
    ===================================================== */

    .our-principles {
        padding:
            65px 14px;
    }

    .our-principles__title {
        font-size: 31px;
    }



    .principle-card,
    .principle-card--simple,
    .principle-card--business,
    .principle-card--real,
    .principle-card--improve {
        padding: 20px;
    }

    .principle-card--simple .principle-card__content h3,
    .principle-card--business .principle-card__content h3,
    .principle-card--real .principle-card__content h3,
    .principle-card--improve .principle-card__content h3 {
        font-size: 23px;
    }

    .principle-card__content,
    .principle-card--simple .principle-card__content,
    .principle-card--business .principle-card__content,
    .principle-card--real .principle-card__content,
    .principle-card--improve .principle-card__content {
        padding-top: 30px;
    }

    .principle-card__footer span {
        white-space: normal;
    }


    /* =====================================================
       WHY PLOUTIC
    ===================================================== */

    .why-ploutic-about {
        padding:
            65px 14px;
    }

    .why-ploutic-about__title {
        font-size: 31px;
    }

    .why-ploutic-about__reasons {
        padding:
            3px 14px;
    }

    .why-ploutic-reason {
        grid-template-columns:
            25px minmax(0, 1fr);

        gap: 9px;
    }

    .why-ploutic-reason__heading {
        align-items: flex-start;
    }

    .why-ploutic-reason h3 {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion:reduce) {

    .customer-journey__connector,
    .customer-journey__stage {
        transition: none
    }

    .hero-rotate::after {
        animation: none;
    }

    .hero-badge,
    .hero-btn,
    .hero-actions .header-cta {
        transition: none;
    }
}