:root {
    --navy: #2a1003;
    --navy2: #4a1b04;
    --blue: #ff6b00;
    --cyan: #ffb347;
    --purple: #ff8a00;
    --ink: #241005;
    --muted: #6b625c;
    --line: #f3e4d7;
    --soft: #fff8f2;
    --white: #fff;

    --shadow:
        0 22px 70px
        rgba(120, 55, 10, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--ink);

    font-family: Inter, sans-serif;

    background: #fff;

    overflow-x: hidden;
}

a {
    transition: 0.25s;
}

h1,
h2,
h3 {
    font-family: "Plus Jakarta Sans", sans-serif;

    letter-spacing: -1px;
}

p {
    line-height: 1.8;
}

.container {
    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: auto;
}


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

.hero {
    min-height: 780px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(255, 145, 0, 0.38),
            transparent 27%
        ),
        radial-gradient(
            circle at 12% 80%,
            rgba(255, 91, 0, 0.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #2a1003 0%,
            #6b2600 52%,
            #3d1603 100%
        );

    padding: 145px 0 80px;
}

.hero:after {
    content: "";

    position: absolute;

    inset: auto 0 0;

    height: 180px;

    background:
        linear-gradient(
            transparent,
            #fff
        );

    opacity: 0.08;
}


/* =========================================
   HERO ORBS
========================================= */

.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(3px);

    opacity: 0.55;
}

.hero-orb-one {
    width: 330px;
    height: 330px;

    background:
        radial-gradient(
            circle,
            #ff9d2e,
            transparent 65%
        );

    left: -180px;
    top: 160px;
}

.hero-orb-two {
    width: 500px;
    height: 500px;

    background:
        radial-gradient(
            circle,
            #ff5a00,
            transparent 62%
        );

    right: -250px;
    bottom: -260px;
}


/* =========================================
   HERO GRID
========================================= */

.hero-grid {
    display: grid;

    grid-template-columns:
        1.02fr
        0.98fr;

    align-items: center;

    gap: 70px;

    position: relative;

    z-index: 2;
}

.hero-copy {
    color: #fff;
}


/* =========================================
   HERO TYPOGRAPHY
========================================= */

.eyebrow,
.section-kicker {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 10px;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    font-weight: 800;

    color: #ffad42;
}

.pulse-dot {
    width: 7px;
    height: 7px;

    background: #ff8a00;

    border-radius: 50%;

    box-shadow:
        0 0 0 6px
        rgba(255, 138, 0, 0.12);

    animation: pulse 1.8s infinite;
}

.hero h1 {
    font-size: clamp(
        42px,
        5.1vw,
        70px
    );

    line-height: 1.06;

    margin: 20px 0 22px;

    max-width: 720px;
}

.hero h1 span,
.section-heading span,
.section-head-center span,
.definition-copy h2 span,
.process-intro h2 span,
.cta-content h2 span {
    background:
        linear-gradient(
            90deg,
            #ffb347,
            #ff6b00
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}

.hero-lead {
    font-size: 15px;

    color: #f3d9c2;

    max-width: 650px;

    margin-bottom: 30px;
}


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

.hero-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 20px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 800;

    font-size: 12px;

    border: 1px solid transparent;
}

.btn-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #ff6b00,
            #ff9d00
        );

    box-shadow:
        0 12px 30px
        rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 17px 35px
        rgba(255, 107, 0, 0.4);
}

.btn-ghost {
    color: #fff1e6;

    border-color:
        rgba(255, 255, 255, 0.18);

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

    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background:
        rgba(255, 255, 255, 0.13);

    transform: translateY(-3px);
}


/* =========================================
   HERO PROOF
========================================= */

.hero-proof {
    display: flex;

    gap: 30px;

    margin-top: 45px;
}

.hero-proof > div {
    border-left:
        1px solid
        rgba(255, 255, 255, 0.18);

    padding-left: 14px;
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    font-size: 11px;

    color: #fff;
}

.hero-proof span {
    font-size: 10px;

    color: #c7a991;

    margin-top: 5px;
}


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

.hero-visual {
    position: relative;

    min-height: 510px;

    display: grid;

    place-items: center;
}

.dashboard-card {
    width: min(
        460px,
        100%
    );

    padding: 26px;

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

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.04)
        );

    box-shadow:
        0 35px 100px
        rgba(0, 0, 0, 0.3);

    backdrop-filter: blur(20px);

    transform: rotate(2deg);

    animation:
        float 6s ease-in-out infinite;
}

.dash-top {
    display: flex;

    justify-content: space-between;
}

.live-chip {
    font-size: 9px;

    letter-spacing: 1px;

    color: #ffb347;

    background:
        rgba(255, 138, 0, 0.1);

    border:
        1px solid
        rgba(255, 173, 66, 0.25);

    padding: 7px 10px;

    border-radius: 30px;
}

.dash-more {
    color: #d3bda9;
}

.dash-title {
    color: #fff;

    font:
        700 20px
        "Plus Jakarta Sans";

    margin: 25px 0;
}


/* =========================================
   METRIC
========================================= */

.metric-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

.metric {
    padding: 16px;

    border-radius: 16px;

    background:
        rgba(45, 15, 2, 0.4);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.metric span,
.metric small {
    display: block;

    color: #c6ad96;

    font-size: 9px;
}

.metric strong {
    display: block;

    color: #fff;

    font:
        700 22px
        "Plus Jakarta Sans";

    margin: 7px 0;
}

.metric small {
    color: #ffad42;
}


/* =========================================
   CHART
========================================= */

.chart {
    height: 155px;

    margin: 14px 0;

    padding: 15px;

    border-radius: 18px;

    background:
        rgba(40, 14, 2, 0.3);

    position: relative;
}

.chart-label {
    font-size: 9px;

    color: #c4ab94;
}

.chart-bars {
    height: 105px;

    display: flex;

    align-items: end;

    gap: 8px;

    margin-top: 10px;
}

.chart-bars i {
    flex: 1;

    border-radius:
        6px 6px 2px 2px;

    background:
        linear-gradient(
            to top,
            #ff6b00,
            #ffb347
        );

    opacity: 0.85;
}


/* ==========================================
   VIDEO SECTION
========================================= */

.video-section {
    position: relative;

    overflow: hidden;
}

.video-section .section-head-center {
    max-width: 760px;

    margin: 0 auto 45px;
}

.video-wrapper {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;
}

.video-card {
    position: relative;

    width: 100%;

    padding: 10px;

    border-radius: 24px;

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

    border:
        1px solid
        rgba(255, 107, 0, 0.14);

    box-shadow:
        0 25px 70px
        rgba(120, 55, 10, 0.12);

    overflow: hidden;
}

.video-card video {
    display: block;

    width: 100%;

    height: auto;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    border-radius: 18px;

    background: #2a1003;
}


/* =========================================
   PLATFORM
========================================= */

.platform-stack {
    display: flex;

    gap: 7px;

    flex-wrap: wrap;
}

.platform-stack span {
    font-size: 9px;

    color: #ead8c8;

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

    padding: 7px 9px;

    border-radius: 8px;
}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 15px;

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

    border-radius: 15px;

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

    backdrop-filter: blur(18px);

    color: #fff;

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.22);

    font-size: 9px;

    line-height: 1.4;

    animation:
        float 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 19px;

    color: #ffad42;
}

.floating-card b {
    font-size: 11px;
}


/* =========================================
   SCROLL NOTE
========================================= */

.scroll-note {
    position: absolute;

    bottom: 28px;

    left: 50%;

    transform:
        translateX(-50%);

    color: #c5aa92;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

    display: flex;

    align-items: center;

    gap: 9px;
}

.scroll-note span {
    width: 22px;
    height: 1px;

    background: #c5aa92;
}


/* =========================================
   STATS
========================================= */

.stats-strip {
    border-bottom:
        1px solid
        var(--line);

    background: #fff;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.stats-grid > div {
    padding: 24px 20px;

    border-right:
        1px solid
        var(--line);

    display: flex;

    align-items: center;

    gap: 13px;
}

.stats-grid > div:first-child {
    border-left:
        1px solid
        var(--line);
}

.stats-grid strong {
    font:
        800 15px
        "Plus Jakarta Sans";

    color: var(--blue);
}

.stats-grid span {
    font-size: 11px;

    color: var(--muted);
}


/* =========================================
   SECTION
========================================= */

.section {
    padding: 115px 0;
}

.split-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    align-items: end;
}

.section-heading h2,
.section-head-center h2 {
    font-size:
        clamp(
            34px,
            4vw,
            53px
        );

    line-height: 1.12;

    margin: 16px 0 0;
}

.problem-copy p {
    font-size: 14px;

    color: #62564e;

    margin: 0 0 15px;
}

.text-link {
    display: inline-flex;

    gap: 8px;

    align-items: center;

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    margin-top: 10px;
}

.text-link:hover {
    gap: 13px;
}


/* =========================================
   ISSUE GRID
========================================= */

.issue-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 60px;
}

.glass-card {
    position: relative;

    padding: 30px;

    border:
        1px solid
        var(--line);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9f4
        );

    box-shadow: var(--shadow);

    transition: 0.3s;
}

.glass-card:hover {
    transform: translateY(-7px);

    border-color: #fed7aa;
}

.glass-card .number {
    position: absolute;

    right: 22px;
    top: 20px;

    color: #e8d4c1;

    font-size: 11px;

    font-weight: 800;
}

.glass-card i {
    display: grid;

    place-items: center;

    width: 45px;
    height: 45px;

    border-radius: 14px;

    color: var(--blue);

    background: #fff1e6;

    font-size: 19px;
}

.glass-card h3 {
    font-size: 18px;

    margin: 25px 0 10px;
}

.glass-card p,
.benefit-card p,
.why-item p {
    font-size: 12px;

    color: var(--muted);

    margin: 0;
}


/* =========================================
   SERVICE SECTION
========================================= */

.service-section {
    background: var(--soft);
}

.section-head-center {
    text-align: center;

    max-width: 720px;

    margin:
        0 auto 50px;
}

.section-head-center p {
    color: var(--muted);

    font-size: 13px;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.service-card {
    min-height: 245px;

    position: relative;

    padding: 24px;

    border-radius: 22px;

    background: #fff;

    border:
        1px solid
        var(--line);

    text-decoration: none;

    color: var(--ink);

    overflow: hidden;

    transition: 0.35s;
}

.service-card:before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffedd5,
            #fed7aa
        );

    right: -55px;
    bottom: -55px;

    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: #fed7aa;
}

.service-card:hover:before {
    transform: scale(1.6);
}

.service-icon {
    width: 45px;
    height: 45px;

    border-radius: 13px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #fff1e6,
            #fff7ed
        );

    color: var(--blue);

    font-size: 18px;
}

.service-index {
    position: absolute;

    right: 20px;
    top: 23px;

    color: #d9c8ba;

    font-size: 10px;
}

.service-card h3 {
    font-size: 17px;

    margin: 28px 0 8px;
}

.service-card p {
    font-size: 11px;

    line-height: 1.7;

    color: var(--muted);

    max-width: 210px;
}

.service-arrow {
    position: absolute;

    right: 20px;
    bottom: 20px;

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: #fff1e6;

    color: var(--blue);

    font-size: 11px;
}


/* =========================================
   DEFINITION
========================================= */

.definition-wrap {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 100px;

    align-items: center;
}

.definition-visual {
    height: 430px;

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;
}

.orbit {
    position: absolute;

    border:
        1px dashed
        #f1c9a8;

    border-radius: 50%;

    animation:
        spin 18s linear infinite;
}

.orbit-a {
    width: 300px;
    height: 300px;
}

.orbit-b {
    width: 420px;
    height: 420px;

    animation-direction: reverse;

    animation-duration: 25s;
}

.core-logo {
    width: 120px;
    height: 120px;

    border-radius: 35px;

    display: grid;

    place-items: center;

    color: #fff;

    font:
        800 30px
        "Plus Jakarta Sans";

    background:
        linear-gradient(
            135deg,
            #ff6b00,
            #ff9d00
        );

    box-shadow:
        0 25px 55px
        rgba(255, 107, 0, 0.32);

    z-index: 2;
}

.core-logo span {
    color: #ffe0b2;
}

.orbit-tag {
    position: absolute;

    padding: 9px 12px;

    border-radius: 10px;

    background: #fff;

    border:
        1px solid
        var(--line);

    box-shadow:
        0 10px 30px
        rgba(120, 55, 10, 0.08);

    font-size: 10px;

    font-weight: 700;

    color: #5e5046;
}

.orbit-tag i {
    color: var(--blue);

    margin-right: 5px;
}

.definition-copy h2,
.process-intro h2 {
    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height: 1.12;

    margin: 15px 0 20px;
}

.definition-copy p {
    font-size: 13px;

    color: var(--muted);
}

.mini-note {
    margin-top: 25px;

    padding: 16px;

    border-radius: 15px;

    background: #fff3e8;

    display: flex;

    gap: 12px;

    color: #6b4327;

    font-size: 11px;

    line-height: 1.6;
}

.mini-note i {
    color: var(--blue);

    font-size: 17px;
}


/* =========================================
   BENEFITS
========================================= */

.benefits-section {
    background: #fffaf6;
}

.benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.benefit-card {
    padding: 27px;

    border-radius: 20px;

    border:
        1px solid
        var(--line);

    background: #fff;

    position: relative;

    transition: 0.3s;
}

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

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

.benefit-card > b {
    position: absolute;

    right: 20px;
    top: 18px;

    color: #e6d3c2;

    font-size: 10px;
}

.benefit-card i {
    color: var(--blue);

    font-size: 22px;
}

.benefit-card h3 {
    font-size: 16px;

    margin: 22px 0 7px;
}


/* =========================================
   PROCESS
========================================= */

.process-section {
    background: #fff;
}

.process-panel {
    padding: 65px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            #2a1003,
            #713000
        );

    color: #fff;

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;

    position: relative;

    overflow: hidden;
}

.process-panel:after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    right: -180px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(255, 138, 0, 0.28),
            transparent 65%
        );
}

.process-intro {
    position: relative;

    z-index: 1;
}

.process-intro p {
    color: #d8bda6;

    font-size: 12px;

    margin-bottom: 25px;
}

.btn-light {
    background:
        rgba(255, 255, 255, 0.1);

    border-color:
        rgba(255, 255, 255, 0.15);

    color: #fff;
}

.btn-light:hover {
    background: #fff;

    color: var(--navy);

    transform: translateY(-2px);
}

.process-list {
    position: relative;

    z-index: 1;
}

.process-item {
    display: grid;

    grid-template-columns:
        50px
        1fr;

    gap: 20px;

    padding: 0 0 25px;

    margin-bottom: 25px;

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

.process-item:last-child {
    border-bottom: 0;

    margin-bottom: 0;
}

.process-item > span {
    width: 40px;
    height: 40px;

    border:
        1px solid
        rgba(255, 173, 66, 0.35);

    border-radius: 12px;

    display: grid;

    place-items: center;

    color: #ffb347;

    font:
        700 11px
        "Plus Jakarta Sans";
}

.process-item h3 {
    font-size: 15px;

    margin: 0 0 6px;
}

.process-item p {
    color: #c6ab93;

    font-size: 11px;

    margin: 0;
}


/* =========================================
   WHY
========================================= */

.why-section {
    background: var(--soft);
}

.why-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    margin-top: 50px;

    border-top:
        1px solid
        var(--line);
}

.why-item {
    display: flex;

    gap: 18px;

    padding: 28px;

    border-bottom:
        1px solid
        var(--line);
}

.why-item:nth-child(odd) {
    border-right:
        1px solid
        var(--line);
}

.why-item > span {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background: #fff;

    color: var(--blue);

    box-shadow:
        0 8px 25px
        rgba(120, 55, 10, 0.06);
}

.why-item h3 {
    font-size: 15px;

    margin: 3px 0 6px;
}


/* =========================================
   PRICING
========================================= */

.pricing-section {
    background: #fff;
}

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 50px;
}

.price-card {
    padding: 32px;

    border-radius: 24px;

    border:
        1px solid
        var(--line);

    position: relative;

    background: #fff;

    transition: 0.3s;
}

.price-card:hover {
    transform: translateY(-6px);

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

.price-card.featured {
    border-color: #fdba74;

    box-shadow:
        0 20px 65px
        rgba(255, 107, 0, 0.14);

    background:
        linear-gradient(
            150deg,
            #fff,
            #fff8f2
        );
}

.popular {
    position: absolute;

    right: 20px;
    top: 20px;

    background: #ffedd5;

    color: #c2410c;

    font-size: 8px;

    font-weight: 800;

    padding: 7px 9px;

    border-radius: 20px;
}

.price-label {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #75685f;
}

.price-card h3 {
    font-size: 22px;

    margin: 16px 0;
}

.price {
    font-size: 11px;

    color: #786c63;
}

.price strong {
    display: block;

    font:
        800 27px
        "Plus Jakarta Sans";

    color: var(--ink);

    margin-top: 5px;
}

.price-card > p {
    font-size: 11px;

    color: var(--muted);

    min-height: 57px;
}

.price-card ul {
    list-style: none;

    padding: 0;

    margin: 22px 0;
}

.price-card li {
    font-size: 11px;

    margin: 11px 0;

    color: #5b5049;
}

.price-card li i {
    color: #22c55e;

    margin-right: 7px;
}

.btn-outline {
    border-color: #ead9cb;

    color: var(--ink);

    width: 100%;
}

.btn-outline:hover {
    border-color: #fdba74;

    color: #ea580c;

    background: #fff7ed;
}


/* =========================================
   FAQ
========================================= */

.faq-section {
    background: #fffaf6;
}

.faq-grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 90px;
}

.faq-section .section-heading p {
    font-size: 13px;

    color: var(--muted);
}

.faq-list details {
    background: #fff;

    border:
        1px solid
        var(--line);

    border-radius: 15px;

    margin-bottom: 10px;

    padding: 0 20px;
}

.faq-list summary {
    cursor: pointer;

    list-style: none;

    padding: 19px 0;

    font-size: 12px;

    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary:after {
    content: "+";

    float: right;

    color: var(--blue);

    font-size: 17px;
}

.faq-list details[open] summary:after {
    content: "−";
}

.faq-list details p {
    font-size: 11px;

    color: var(--muted);

    margin: 0;

    padding: 0 0 18px;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 25px 0 120px;
}

.cta-card {
    min-height: 390px;

    border-radius: 32px;

    overflow: hidden;

    position: relative;

    background:
        linear-gradient(
            125deg,
            #2a1003,
            #8a3500 55%,
            #c54d00
        );

    display: flex;

    align-items: center;

    padding: 65px;

    color: #fff;
}

.cta-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    right: -170px;
    top: -230px;

    background:
        radial-gradient(
            circle,
            rgba(255, 173, 66, 0.38),
            transparent 65%
        );
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.section-kicker.light {
    color: #ffb347;
}

.cta-content h2 {
    font-size:
        clamp(
            35px,
            4vw,
            55px
        );

    line-height: 1.1;

    margin: 15px 0;
}

.cta-content p {
    font-size: 13px;

    color: #e4cbb7;

    max-width: 600px;

    margin-bottom: 27px;
}

.btn-white {
    background: #fff;

    color: #7c2d12;
}

.btn-white:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.18);
}

.cta-orb {
    position: absolute;

    right: 80px;
    bottom: 60px;

    width: 190px;
    height: 190px;

    border-radius: 50%;

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

    display: grid;

    place-items: center;

    transform: rotate(-12deg);

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.1),
            transparent 68%
        );

    color: #fff;
}

.cta-orb i {
    position: absolute;

    top: 25px;
    right: 30px;

    color: #ffb347;
}

.cta-orb span {
    font:
        800 20px/1.1
        "Plus Jakarta Sans";

    text-align: center;

    letter-spacing: -1px;
}


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

.reveal {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: none;
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}


/* =========================================
   KEYFRAMES
========================================= */

@keyframes float {

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

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

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

@keyframes pulse {
    50% {
        box-shadow:
            0 0 0 9px
            rgba(255, 138, 0, 0);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .hero-grid,
    .definition-wrap,
    .process-panel,
    .faq-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero {
        padding-top: 125px;
    }

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

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .split-grid {
        gap: 40px;
    }

    .process-panel {
        padding: 45px;
    }

    .cta-orb {
        right: 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 680px) {

    .container {
        width: calc(100% - 28px);
    }

    .hero {
        min-height: auto;

        padding:
            120px 0 75px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-proof {
        gap: 15px;

        flex-direction: column;
    }

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

    .dashboard-card {
        transform: none;
    }

    .floating-card-a {
        left: -3px;
    }

    .floating-card-b {
        right: -2px;
    }

    .stats-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .stats-grid > div {
        padding: 18px 12px;
    }

    .stats-grid > div:nth-child(odd) {
        border-left:
            1px solid
            var(--line);
    }

    .section {
        padding: 80px 0;
    }

    .split-grid,
    .issue-grid,
    .service-grid,
    .benefit-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .issue-grid {
        margin-top: 35px;
    }

    .service-grid {
        gap: 12px;
    }

    .service-card {
        min-height: 220px;
    }

    .definition-visual {
        height: 350px;

        transform: scale(0.78);
    }

    .process-panel {
        padding: 32px 24px;
    }

    .why-item:nth-child(odd) {
        border-right: 0;
    }

    .cta-card {
        padding: 45px 25px;

        min-height: 450px;
    }

    .cta-orb {
        opacity: 0.35;

        right: -35px;
        bottom: -20px;
    }

    .price-card > p {
        min-height: auto;
    }
}