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

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

:root {

    --bg: #f7f7f5;
    --surface: #ffffff;
    --surface-soft: #f1f1ed;

    --text: #151515;
    --muted: #8d8d8a;
    --muted-dark: #666663;

    --border: #e5e5e0;
    --border-dark: #d8d8d2;

    --accent: #6257f5;
    --accent-soft: #eeecff;

    --shadow:
        0 20px 60px rgba(0, 0, 0, .055);

    --shadow-hover:
        0 28px 70px rgba(0, 0, 0, .09);

    --radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(98, 87, 245, .055),
            transparent 38%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Inter",
        "Segoe UI",
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   NAVBAR
========================================================= */

.nav {

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

    height: 76px;

    margin: auto;

    padding: 0 30px;

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

.brand {

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--text);

    text-decoration: none;
}

.brand-mark {

    width: 33px;
    height: 33px;

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

    border-radius: 10px;

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

    font-size: 15px;
    font-weight: 850;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .12);
}

.brand-name {

    font-size: 20px;
    font-weight: 800;

    letter-spacing: -.7px;
}

.main-nav {

    display: flex;
    align-items: center;

    gap: 34px;
}

.main-nav a {

    color: #7d7d79;

    text-decoration: none;

    font-size: 13px;
    font-weight: 550;

    transition: .2s;
}

.main-nav a:hover {
    color: var(--text);
}

.nav-actions {

    display: flex;
    align-items: center;

    gap: 9px;
}

.ghost-btn {

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

    background: rgba(255,255,255,.75);

    color: #555;

    padding: 9px 15px;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 650;

    cursor: pointer;

    transition: .2s;
}

.ghost-btn:hover {

    border-color: var(--border-dark);

    background: white;
}

.nav-cta {

    padding: 10px 15px;

    border-radius: 10px;

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

    text-decoration: none;

    font-size: 12px;
    font-weight: 650;

    transition: .2s;
}

.nav-cta:hover {

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.14);
}


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

.hero {

    position: relative;

    min-height: 600px;

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

    overflow: hidden;

    padding:
        75px 24px
        100px;
}

.hero-grid {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .45;

    background-image:
        linear-gradient(
            rgba(0,0,0,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,.035) 1px,
            transparent 1px
        );

    background-size: 72px 72px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
}

.hero-grid::after {

    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    left: 50%;
    top: 30%;

    transform: translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(98,87,245,.11),
            transparent 65%
        );

    filter: blur(15px);
}

.hero-content {

    position: relative;

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

    text-align: center;

    z-index: 1;
}

.eyebrow {

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

    gap: 8px;

    padding: 8px 13px;

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

    background: rgba(255,255,255,.78);

    border-radius: 999px;

    color: #777773;

    font-size: 11px;
    font-weight: 650;

    box-shadow:
        0 8px 25px rgba(0,0,0,.035);
}

.eyebrow-dot {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 4px rgba(98,87,245,.09);
}

.hero h1 {

    margin-top: 25px;

    font-size:
        clamp(58px, 8vw, 94px);

    line-height: .94;

    letter-spacing: -6px;

    font-weight: 850;
}

.hero h1 span {

    color: var(--accent);

    display: inline-block;
}

.hero-subtitle {

    max-width: 560px;

    margin:
        26px auto
        35px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   SEARCH
========================================================= */

.tool-search {

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

    margin: auto;

    position: relative;

    z-index: 10;
}

.search-box {

    height: 68px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding:
        0 14px
        0 21px;

    background: rgba(255,255,255,.94);

    border: 1px solid #dcdcd6;

    border-radius: 18px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.09);

    transition: .2s;
}

.search-box:focus-within {

    border-color: #bbb9c9;

    box-shadow:
        0 25px 80px rgba(0,0,0,.12),
        0 0 0 4px rgba(98,87,245,.055);
}

.search-icon {

    color: #999;

    font-size: 28px;

    line-height: 1;
}

.search-box input {

    flex: 1;

    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    color: var(--text);

    font-size: 16px;
}

.search-box input::placeholder {
    color: #aaa;
}

.search-box kbd {

    padding: 6px 9px;

    border: 1px solid #e3e3de;

    border-radius: 7px;

    background: #f7f7f4;

    color: #999;

    font-size: 10px;

    font-family: inherit;
}


/* =========================================================
   SEARCH RESULTS
========================================================= */

.search-results {

    display: grid;

    gap: 7px;

    margin-top: 9px;
}

.search-result {

    width: 100%;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 15px;

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

    border-radius: 14px;

    background: white;

    text-align: left;

    cursor: pointer;

    transition: .18s;
}

.search-result:hover {

    transform: translateY(-1px);

    border-color: #ccc;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

.result-icon {

    width: 39px;
    height: 39px;

    flex-shrink: 0;

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

    border-radius: 10px;

    background: var(--surface-soft);

    color: #555;

    font-size: 9px;
    font-weight: 800;
}

.result-info {

    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.result-info strong {
    font-size: 13px;
}

.result-info small {

    color: #999;

    font-size: 11px;
}

.search-empty {

    margin-top: 8px;

    padding: 18px;

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

    border-radius: 14px;

    background: white;

    color: #999;

    font-size: 13px;
}

.hidden {
    display: none !important;
}


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

.hero-quick {

    margin-top: 17px;

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

    flex-wrap: wrap;

    gap: 6px;

    color: #a0a09b;

    font-size: 11px;
}

.hero-quick button {

    border: none;

    background: transparent;

    color: #777;

    padding: 4px 8px;

    border-radius: 6px;

    cursor: pointer;

    transition: .2s;
}

.hero-quick button:hover {

    background: #eaeae6;

    color: var(--text);
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {

    width: calc(100% - 48px);

    max-width: 1080px;

    min-height: 112px;

    margin:
        -35px auto
        0;

    position: relative;

    z-index: 5;

    display: grid;

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

    background: rgba(255,255,255,.94);

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

    border-radius: 23px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.07);

    overflow: hidden;
}

.trust-item {

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 24px 30px;

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

.trust-item:last-child {
    border-right: none;
}

.trust-icon {

    width: 43px;
    height: 43px;

    flex-shrink: 0;

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

    border-radius: 13px;

    background: var(--surface-soft);

    color: #666;

    font-size: 19px;
}

.trust-item strong {

    display: block;

    margin-bottom: 4px;

    font-size: 14px;
}

.trust-item span {

    display: block;

    color: #aaa;

    font-size: 11px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.featured-section,
.tools-section,
.how-section {

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

    margin:
        135px auto
        0;

    padding:
        0 24px;
}

.section-top {

    display: flex;
    align-items: end;
    justify-content: space-between;

    margin-bottom: 32px;
}

.section-kicker {

    margin-bottom: 9px;

    color: #999;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.section-top h2,
.how-header h2 {

    font-size: 35px;

    line-height: 1;

    letter-spacing: -1.8px;

    font-weight: 800;
}

.section-top > p {

    color: #aaa;

    font-size: 12px;
}


/* =========================================================
   FEATURED BENTO
========================================================= */

.featured-grid {

    display: grid;

    grid-template-columns:
        1.45fr
        1fr;

    grid-template-rows:
        1fr
        1fr;

    gap: 12px;

    min-height: 430px;
}

.featured-main {

    grid-row: 1 / 3;

    position: relative;

    overflow: hidden;

    padding: 30px;

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

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f4ff 100%
        );

    cursor: pointer;

    transition: .3s;
}

.featured-main:hover {

    transform: translateY(-4px);

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

    border-color: #d7d3ff;
}

.featured-glow {

    position: absolute;

    width: 340px;
    height: 340px;

    right: -100px;
    bottom: -120px;

    background:
        radial-gradient(
            circle,
            rgba(98,87,245,.17),
            transparent 68%
        );

    filter: blur(10px);

    pointer-events: none;
}

.featured-top {

    position: relative;

    display: flex;
    justify-content: space-between;
}

.featured-badge {

    padding: 6px 9px;

    border-radius: 7px;

    background: var(--accent-soft);

    color: var(--accent);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;
}

.featured-arrow {

    color: #999;

    font-size: 20px;
}

.featured-icon {

    width: 72px;
    height: 72px;

    margin-top: 65px;

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

    border-radius: 19px;

    background: white;

    border: 1px solid #e5e3f7;

    color: var(--accent);

    font-size: 13px;
    font-weight: 850;

    box-shadow:
        0 12px 30px rgba(98,87,245,.08);
}

.featured-content {

    position: relative;

    margin-top: 25px;
}

.featured-label {

    color: #aaa;

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .14em;
}

.featured-content h3 {

    margin-top: 8px;

    font-size: 29px;

    letter-spacing: -1.3px;
}

.featured-content p {

    max-width: 400px;

    margin-top: 9px;

    color: #999;

    font-size: 12px;

    line-height: 1.65;
}

.featured-footer {

    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 27px;

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

    padding-top: 18px;

    border-top: 1px solid rgba(0,0,0,.07);

    color: #aaa;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .06em;
}

.featured-footer strong {

    color: var(--text);

    font-size: 11px;

    letter-spacing: 0;
}


/* SMALL FEATURED */

.featured-small {

    position: relative;

    display: flex;
    align-items: center;

    gap: 17px;

    padding: 24px;

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

    border-radius: 20px;

    background: white;

    cursor: pointer;

    transition: .25s;
}

.featured-small:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow);

    border-color: #d4d4ce;
}

.small-icon {

    width: 56px;
    height: 56px;

    flex-shrink: 0;

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

    border-radius: 15px;

    background: var(--surface-soft);

    color: #555;

    font-size: 10px;
    font-weight: 850;
}

.small-content {

    padding-right: 25px;
}

.small-content > span {

    color: #aaa;

    font-size: 8px;

    font-weight: 850;

    letter-spacing: .12em;
}

.small-content h3 {

    margin-top: 5px;

    font-size: 17px;

    letter-spacing: -.4px;
}

.small-content p {

    margin-top: 5px;

    color: #999;

    font-size: 11px;

    line-height: 1.5;
}

.small-arrow {

    position: absolute;

    top: 23px;
    right: 23px;

    color: #aaa;

    font-size: 17px;
}


/* =========================================================
   TOOL COLLECTION
========================================================= */

.tools-section {

    margin-top: 150px;
}

.tool-category {

    margin-top: 54px;
}

.category-heading {

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;
}

.category-heading span {

    color: #b2b2ae;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .08em;
}

.category-heading h3 {

    color: #777773;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.tools-grid {

    display: grid;

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

    gap: 12px;
}

.tool-card {

    min-height: 218px;

    display: flex;
    flex-direction: column;

    padding: 21px;

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

    border-radius: 18px;

    background: rgba(255,255,255,.88);

    cursor: pointer;

    transition: .25s;
}

.tool-card:hover {

    transform: translateY(-4px);

    border-color: #d4d4cf;

    background: white;

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

.card-icon {

    width: 44px;
    height: 44px;

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

    margin-bottom: auto;

    border-radius: 12px;

    background: var(--surface-soft);

    color: #5d5d59;

    font-size: 9px;

    font-weight: 850;
}

.tool-card h3 {

    margin-top: 28px;

    font-size: 15px;

    letter-spacing: -.25px;
}

.tool-card p {

    min-height: 38px;

    margin-top: 8px;

    color: #999;

    font-size: 11px;

    line-height: 1.55;
}

.card-link {

    margin-top: 17px;

    color: #555;

    font-size: 10px;

    font-weight: 750;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {

    margin-top: 155px;

    padding-bottom: 40px;
}

.how-header {

    display: flex;
    align-items: end;
    justify-content: space-between;
}

.how-header > p {

    max-width: 240px;

    color: #aaa;

    font-size: 12px;

    line-height: 1.6;

    text-align: right;
}

.steps {

    display: grid;

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

    gap: 12px;

    margin-top: 38px;
}

.step {

    position: relative;

    min-height: 215px;

    padding: 25px;

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

    border-radius: 18px;

    background: white;
}

.step-number {

    color: var(--accent);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .08em;
}

.step-line {

    width: 100%;
    height: 1px;

    margin-top: 20px;

    background: var(--border);
}

.step h3 {

    margin-top: 28px;

    font-size: 16px;

    letter-spacing: -.3px;
}

.step p {

    max-width: 240px;

    margin-top: 8px;

    color: #999;

    font-size: 11px;

    line-height: 1.6;
}


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

.final-cta {

    width: calc(100% - 48px);

    max-width: 1072px;

    min-height: 390px;

    position: relative;

    overflow: hidden;

    margin:
        110px auto
        125px;

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

    border-radius: 28px;

    background: #171717;

    color: white;

    text-align: center;
}

.cta-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(98,87,245,.28),
            transparent 65%
        );

    filter: blur(10px);
}

.cta-content {

    position: relative;

    max-width: 650px;

    padding: 40px;
}

.final-cta .section-kicker {
    color: #858585;
}

.cta-content h2 {

    font-size:
        clamp(36px, 5vw, 58px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;
}

.cta-content h2 span {
    color: #8f87ff;
}

.cta-content p {

    max-width: 430px;

    margin: 19px auto 26px;

    color: #999;

    font-size: 13px;

    line-height: 1.65;
}

.cta-button {

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

    gap: 14px;

    padding: 13px 17px;

    border-radius: 11px;

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

    text-decoration: none;

    font-size: 12px;
    font-weight: 750;

    transition: .2s;
}

.cta-button span {

    font-size: 16px;

    transition: .2s;
}

.cta-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.25);
}

.cta-button:hover span {
    transform: translateX(3px);
}


/* =========================================================
   FOOTER
========================================================= */

footer {

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

    margin: auto;

    padding:
        28px 24px
        45px;

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

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

.footer-brand .brand {
    display: inline-flex;
}

.footer-brand p {

    margin-top: 10px;

    color: #aaa;

    font-size: 10px;
}

.footer-right {

    display: flex;
    align-items: center;

    gap: 25px;

    color: #aaa;

    font-size: 10px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 560px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: none;
    }

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

    .featured-main {
        grid-row: auto;
        grid-column: 1 / 3;
        min-height: 380px;
    }

    .featured-small {
        min-height: 150px;
    }

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

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 620px) {

    .nav {

        height: 68px;

        padding:
            0 18px;
    }

    .nav-cta {
        display: none;
    }

    .hero {

        min-height: 535px;

        padding:
            55px 18px
            80px;
    }

    .hero h1 {

        font-size: 55px;

        letter-spacing: -3.5px;
    }

    .hero-subtitle {

        margin-top: 20px;

        font-size: 13px;
    }

    .search-box {

        height: 60px;

        border-radius: 15px;

        padding-left: 16px;
    }

    .search-box kbd {
        display: none;
    }

    .search-box input {
        font-size: 14px;
    }

    .hero-quick {
        margin-top: 13px;
    }

    .trust-strip {

        width:
            calc(100% - 32px);

        border-radius: 18px;
    }

    .trust-item {

        padding:
            20px;
    }

    .featured-section,
    .tools-section,
    .how-section {

        margin-top: 100px;

        padding:
            0 18px;
    }

    .section-top {

        display: block;

        margin-bottom: 25px;
    }

    .section-top h2,
    .how-header h2 {

        font-size: 29px;

        letter-spacing: -1.3px;
    }

    .section-top > p {

        margin-top: 9px;
    }

    .featured-grid {

        display: flex;
        flex-direction: column;

        min-height: 0;
    }

    .featured-main {

        min-height: 390px;
    }

    .featured-small {

        min-height: 135px;
    }

    .featured-icon {

        margin-top: 48px;
    }

    .tools-grid {

        grid-template-columns: 1fr;
    }

    .tool-card {

        min-height: 190px;
    }

    .how-header {

        display: block;
    }

    .how-header > p {

        margin-top: 12px;

        text-align: left;
    }

    .steps {

        grid-template-columns: 1fr;
    }

    .step {

        min-height: 190px;
    }

    .final-cta {

        width:
            calc(100% - 32px);

        min-height: 350px;

        margin:
            85px auto
            90px;

        border-radius: 22px;
    }

    .cta-content {

        padding: 28px 20px;
    }

    .cta-content h2 {

        font-size: 40px;

        letter-spacing: -2px;
    }

    footer {

        padding:
            25px 18px
            35px;

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .footer-right {

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;
    }

}








/* =========================
   PREMIUM TOOL CARD EFFECTS
========================= */

.tool-card {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(20, 20, 20, 0.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,1),
            rgba(250,250,248,1)
        );

    box-shadow:
        0 8px 25px rgba(0,0,0,.025);

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        box-shadow .35s ease,
        border-color .35s ease;
}


/* Soft light inside card */

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

    position: absolute;

    width: 180px;
    height: 180px;

    top: -90px;
    right: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(98,87,245,.12),
            rgba(98,87,245,0) 70%
        );

    opacity: 0;

    transition:
        opacity .35s ease,
        transform .5s ease;
}


/* Bottom shine */

.tool-card::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(98,87,245,.35),
            transparent
        );

    opacity: 0;

    transition: opacity .35s ease;
}


/* Hover */

.tool-card:hover {
    transform:
        translateY(-7px)
        scale(1.01);

    border-color:
        rgba(98,87,245,.18);

    box-shadow:
        0 25px 60px rgba(20,20,20,.08),
        0 5px 20px rgba(98,87,245,.06);
}


.tool-card:hover::before {
    opacity: 1;

    transform:
        scale(1.35);
}


.tool-card:hover::after {
    opacity: 1;
}


/* =========================
   CARD ICON
========================= */

.card-icon {
    position: relative;
    z-index: 1;

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1),
        background .35s ease,
        color .35s ease;
}


.tool-card:hover .card-icon {
    transform:
        translateY(-3px)
        rotate(-3deg);

    background:
        linear-gradient(
            135deg,
            #6257f5,
            #8178ff
        );

    color: white;

    box-shadow:
        0 8px 20px rgba(98,87,245,.22);
}


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

.tool-card h3,
.tool-card p,
.card-link {
    position: relative;
    z-index: 1;
}


.tool-card h3 {
    transition:
        transform .3s ease;
}


.tool-card:hover h3 {
    transform:
        translateX(2px);
}


.card-link {
    transition:
        color .25s ease,
        transform .25s ease;
}


.tool-card:hover .card-link {
    color: var(--accent);

    transform:
        translateX(4px);
}


/* =========================
   CATEGORY TITLES
========================= */

.category-title {
    display: flex;
    align-items: center;

    gap: 12px;
}


.category-title::after {
    content: "";

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--border),
            transparent
        );
}


/* =========================
   QUICK TOOL PREMIUM HOVER
========================= */

.quick-tool {
    position: relative;
    overflow: hidden;

    transition:
        transform .3s cubic-bezier(.2,.8,.2,1),
        box-shadow .3s ease,
        border-color .3s ease;
}


.quick-tool::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -70px;
    right: -50px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(98,87,245,.10),
            transparent 70%
        );

    opacity: 0;

    transition: opacity .3s ease;
}


.quick-tool:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(98,87,245,.16);

    box-shadow:
        0 18px 40px rgba(0,0,0,.07);
}


.quick-tool:hover::before {
    opacity: 1;
}


.quick-tool:hover .tool-icon {
    background:
        #6257f5;

    color: white;

    transform:
        scale(1.05);
}


.quick-tool .tool-icon {
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.quick-tool:hover .arrow {
    color: var(--accent);

    transform:
        translateX(4px);
}


.quick-tool .arrow {
    transition:
        transform .25s ease,
        color .25s ease;
}


/* =========================
   SEARCH RESULT HOVER
========================= */

.search-result {
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.search-result:hover {
    transform:
        translateX(3px);

    border-color:
        rgba(98,87,245,.18);

    box-shadow:
        0 12px 30px rgba(0,0,0,.06);
}


.search-result:hover .result-icon {
    background:
        #6257f5;

    color: white;
}


.search-result .result-icon {
    transition:
        background .25s ease,
        color .25s ease;
}


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

.section-heading h2 {
    position: relative;
}


.section-heading h2::after {
    content: "";

    display: block;

    width: 42px;
    height: 4px;

    margin-top: 13px;

    border-radius: 99px;

    background:
        linear-gradient(
            90deg,
            #6257f5,
            #9b94ff
        );
}


/* =========================
   SMOOTH APPEARANCE
========================= */

.tool-category {
    animation:
        fadeUp .6s ease both;
}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

}


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

@media (max-width: 560px) {

    .tool-card:hover {
        transform:
            translateY(-4px);
    }

}








