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


/* =========================================================
   NORATAM
   GLOBAL COLOR SYSTEM
   HOME + TOOLS
========================================================= */

:root {
    --bg: #050b12;
    --bg2: #07111a;

    --panel: #0b151f;
    --panel2: #0d1924;

    --line: #253440;

    --text: #f4f7f9;
    --muted: #aab4bd;
    --muted2: #71808c;

    --orange: #ff6a00;
    --orange2: #ff8a22;

    --blue: #0a1722;

    --max: 1160px;
}


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

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--max), calc(100% - 64px));
    margin: 0 auto;
}


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

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 76px;

    z-index: 1000;

    background: rgba(4, 10, 16, 0.94);

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

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav {
    width: min(1160px, calc(100% - 64px));

    height: 76px;

    margin: 0 auto;

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

    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

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

    flex-shrink: 0;

    line-height: 1;
}

.brand-name {
    color: #fff;

    font-size: 25px;
    font-weight: 900;

    letter-spacing: 1px;
    line-height: 1;
}

.brand-name span {
    color: var(--orange);
}

.brand small {
    display: block;

    margin-top: 5px;

    color: #8d99a2;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 3px;
    line-height: 1;
}


/* =========================================================
   MAIN NAV
========================================================= */

.main-nav {
    height: 100%;

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

    gap: 29px;

    margin-left: auto;
}

.main-nav a {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    color: #d6dde1;

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

    white-space: nowrap;

    transition: color .25s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: width .25s ease;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: #fff;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* SEARCH BUTTON */

.search-btn {
    width: 38px;
    height: 40px;

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

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 25px;

    cursor: pointer;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 40px;

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

    padding: 0 20px;

    border-radius: 3px;

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

    white-space: nowrap;

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

.btn-orange {
    background: var(--orange);

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

    color: #fff;

    box-shadow:
        0 0 22px rgba(255, 106, 0, .12);
}

.btn-orange:hover {
    background: var(--orange2);

    border-color: var(--orange2);

    transform: translateY(-2px);

    box-shadow:
        0 7px 25px rgba(255, 106, 0, .2);
}

.btn-outline {
    background: transparent;

    border: 1px solid #586773;

    color: #fff;
}

.btn-outline:hover {
    border-color: var(--orange);

    color: var(--orange);
}

.btn-large {
    min-height: 45px;

    padding: 0 22px;
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    display: none;

    width: 34px;
    height: 34px;

    padding: 4px;

    border: 0;

    background: transparent;
}

.hamburger span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 6px 0;

    background: #fff;

    transition: .25s ease;
}

.mobile-nav {
    display: none;
}


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

.hero {
    min-height: 620px;

    padding-top: 76px;

    position: relative;

    overflow: hidden;

    /* Old gradient background:
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(17, 52, 73, .32),
            transparent 33%
        ),
        linear-gradient(
            115deg,
            #030910 0%,
            #07131d 55%,
            #050c13 100%
        );
    */
    background-image: url('assets/images/noratam_hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid-lines {
    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:
        linear-gradient(
            rgba(89, 116, 132, .13) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(89, 116, 132, .13) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 85%
        );
}

.hero-inner {
    min-height: 544px;

    display: grid;

    grid-template-columns: 45% 55%;

    align-items: center;

    position: relative;
}

.hero-copy {
    padding: 48px 0 50px;

    position: relative;

    z-index: 3;
}

.eyebrow,
.section-label {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--orange);
}

.eyebrow i {
    display: inline-block;

    width: 24px;
    height: 1px;

    background: var(--orange);

    vertical-align: middle;

    margin-right: 9px;
}

.hero h1 {
    font-size: 58px;

    line-height: 1;

    letter-spacing: -2px;

    margin: 14px 0 18px;

    font-weight: 900;
}

.hero h1 em {
    font-style: normal;

    color: var(--orange);
}

.hero-copy > p {
    max-width: 430px;

    color: #c3ccd2;

    font-size: 16px;

    line-height: 1.65;
}

.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 23px;
}

.trust {
    margin-top: 27px;
}

.trust > span {
    font-size: 12px;

    color: #aeb9c0;
}

.trust-line {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 8px;
}

.avatars {
    display: flex;
}

.avatars i {
    width: 27px;
    height: 27px;

    border-radius: 50%;

    background: #64717b;

    border: 2px solid #0a1118;

    display: grid;

    place-items: center;

    margin-right: -5px;

    font-size: 9px;

    font-style: normal;

    font-weight: 800;
}

.trust-line strong {
    font-size: 13px;
}

.stars {
    color: var(--orange);

    letter-spacing: 2px;

    font-size: 17px;
}


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

.hero-visual {
    height: 490px;

    position: relative;

    display: grid;

    place-items: center;
}

.chip-glow {
    position: absolute;

    width: 300px;
    height: 220px;

    background: rgba(255, 93, 0, .25);

    filter: blur(55px);

    border-radius: 50%;
}

.circuit-field {
    position: absolute;

    inset: 10px;

    overflow: hidden;

    transform:
        perspective(700px)
        rotateX(55deg)
        rotateZ(-4deg);

    opacity: .75;
}

.trace {
    position: absolute;

    height: 1px;

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

    box-shadow:
        0 0 8px rgba(255, 106, 0, .65);

    transform-origin: left;
}

.t1 {
    width: 48%;
    left: 1%;
    top: 45%;
    transform: rotate(-16deg);
}

.t2 {
    width: 42%;
    right: 0;
    top: 38%;
    transform: rotate(17deg);
}

.t3 {
    width: 35%;
    left: 4%;
    top: 62%;
    transform: rotate(16deg);
}

.t4 {
    width: 42%;
    right: 3%;
    top: 63%;
    transform: rotate(-14deg);
}

.t5 {
    width: 28%;
    left: 17%;
    top: 25%;
    transform: rotate(28deg);
}

.t6 {
    width: 28%;
    right: 15%;
    top: 26%;
    transform: rotate(-27deg);
}

.node {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 12px var(--orange);
}

.n1 {
    left: 20%;
    top: 35%;
}

.n2 {
    right: 22%;
    top: 34%;
}

.n3 {
    left: 15%;
    top: 66%;
}

.n4 {
    right: 17%;
    top: 67%;
}

.ai-chip {
    width: 275px;
    height: 190px;

    position: relative;

    z-index: 2;

    border-radius: 26px;

    transform:
        perspective(650px)
        rotateX(55deg)
        rotateZ(-3deg);

    background:
        linear-gradient(
            145deg,
            #2a333b,
            #080d12 55%,
            #202a31
        );

    box-shadow:
        0 15px 0 #070b0e,
        0 30px 55px rgba(0, 0, 0, .75),
        0 0 0 3px #303b43,
        0 0 38px rgba(255, 89, 0, .6);

    padding: 24px;
}

.chip-top {
    height: 100%;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #202a32,
            #070b0f
        );

    border: 1px solid #4c5962;

    display: grid;

    place-items: center;

    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, .04);
}

.chip-label {
    font-size: 70px;

    font-weight: 900;

    letter-spacing: -5px;

    color: var(--orange);

    text-shadow:
        0 0 20px rgba(255, 106, 0, .65);
}

.chip-mark {
    position: absolute;

    width: 215px;
    height: 130px;

    border: 1px solid rgba(255, 115, 30, .18);

    border-radius: 12px;
}

.chip-edge {
    position: absolute;

    width: 35px;
    height: 7px;

    background: #10161b;

    border: 1px solid #44515a;
}

.e1 {
    left: -20px;
    top: 35px;
}

.e2 {
    right: -20px;
    top: 35px;
}

.e3 {
    left: -20px;
    bottom: 35px;
}

.e4 {
    right: -20px;
    bottom: 35px;
}

.tech-orbit {
    position: absolute;

    border: 1px solid rgba(255, 106, 0, .17);

    border-radius: 50%;

    width: 430px;
    height: 230px;

    transform: rotate(-17deg);
}

.orbit-2 {
    width: 510px;
    height: 280px;

    border-color: rgba(112, 161, 192, .12);

    transform: rotate(25deg);
}

.floating-label {
    position: absolute;

    color: #84929c;

    font-size: 10px;

    letter-spacing: 2px;

    border: 1px solid #27343e;

    padding: 7px 10px;

    background: rgba(5, 12, 18, .65);
}

.label-1 {
    right: 3%;
    top: 26%;
}

.label-2 {
    left: 5%;
    bottom: 25%;
}


/* =========================================================
   MAIN SECTIONS
========================================================= */

.section {
    padding: 28px 0;
}

.section-dark {
    background: #08121b;
}

.section-head {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 17px;

    letter-spacing: .2px;
}

.section-head a {
    font-size: 11px;

    font-weight: 800;

    color: #d7dde0;
}

.section-head a span {
    font-size: 16px;

    margin-left: 7px;
}


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

.why {
    background: #09131c;

    border-top: 1px solid #26333d;

    border-bottom: 1px solid #26333d;
}

.why-grid {
    display: grid;

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

    margin-top: 8px;
}

.why-item {
    display: flex;

    gap: 15px;

    padding: 17px 25px;

    border-right: 1px solid #293641;
}

.why-item:first-child {
    padding-left: 3px;
}

.why-item:last-child {
    border-right: 0;
}

.why-icon {
    font-size: 35px;

    color: var(--orange);

    line-height: 1;

    width: 36px;

    text-align: center;
}

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

    margin-bottom: 5px;
}

.why-item p {
    font-size: 12px;

    color: #a9b4bb;

    line-height: 1.5;
}


/* =========================================================
   HOME — CATEGORIES
========================================================= */

.categories {
    background: #050c13;
}

.categories .category-grid {
    display: grid;

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

    gap: 9px;
}

.categories .category-card {
    height: 70px;

    border: 1px solid #2b3944;

    border-radius: 5px;

    background:
        linear-gradient(
            145deg,
            #101b25,
            #09121a
        );

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 3px;

    transition: .25s;
}

.categories .category-card:hover {
    transform: translateY(-4px);

    border-color: var(--orange);

    background: #0e1a23;
}

.categories .category-card > span {
    font-size: 23px;

    color: var(--orange);

    line-height: 1;

    margin-bottom: 3px;
}

.categories .category-card strong {
    font-size: 11px;
}

.categories .category-card small {
    font-size: 9px;

    color: #8d9aa3;
}


/* =========================================================
   HOME — TRENDING AI TOOLS
========================================================= */

.trending {
    background: #08131d;

    border-top: 1px solid #1f2d37;

    border-bottom: 1px solid #1f2d37;
}

.trending .tool-grid {
    display: grid;

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

    gap: 10px;
}

.trending .tool-card {
    min-height: 183px;

    border: 1px solid #2b3944;

    border-radius: 6px;

    background:
        linear-gradient(
            150deg,
            #111d27,
            #09131c
        );

    padding: 13px;

    transition: .25s;
}

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

    border-color: #526471;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .22);
}

.tool-head {
    display: flex;

    gap: 10px;

    align-items: center;
}


/* =========================================================
   TOOL LOGOS
========================================================= */

.tool-logo {
    width: 39px;
    height: 39px;
    

    border-radius: 7px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    font-weight: 900;

    font-size: 22px;

    background: #fff;

    color: #111;

    line-height: 1;

    border: 0px solid rgba(255, 255, 255, .12);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .20);
}

/* LOGO IMAGE */
.tool-logo img {
    width: 37px;
    height: 37px;

    object-fit: contain;

    display: block;
}

.logo-chat {
    
    color: #1baf89;
}

.logo-mid {
    font-size: 25px;
}

.logo-notion {
    border: 0px solid #222;
    font-family: Georgia, serif;
    box-sizing: border-box;
}

.logo-notion img {
    width: calc(100% - 6px) !important;
    height: calc(100% - 6px) !important;
    object-fit: contain !important;
}

.logo-runway {
    
    color: #fff;
}

.logo-copy {
   
    color: #fff;
}

.logo-claude {
    
    color: #151515;
}

.logo-cursor {
   
    color: #111;
    font-size: 15px;
}

.logo-perplexity {
    
    color: #111;
    font-size: 17px;
}

.logo-canva {
   
    color: #111;
    font-size: 12px;
}


.trending .tool-card h3 {
    font-size: 13px;
}

.trending .tool-card small {
    font-size: 9px;

    color: var(--orange);
}

.rating {
    margin: 12px 0 7px;

    font-size: 9px;
}

.rating b {
    color: var(--orange);
}

.rating span {
    color: #83919b;

    margin-left: 5px;
}

.trending .tool-card p {
    font-size: 11px;

    color: #b5bec5;

    line-height: 1.55;

    min-height: 42px;
}

.trending .tool-card > a {
    font-size: 8px;

    font-weight: 800;

    display: block;

    margin-top: 10px;
}

.trending .tool-card > a b {
    font-size: 14px;

    margin-left: 5px;
}

.slider-dots {
    text-align: center;

    margin-top: 10px;
}

.slider-dots i {
    display: inline-block;

    width: 6px;
    height: 6px;

    background: #35424b;

    border-radius: 50%;

    margin: 0 3px;
}

.slider-dots i.active {
    background: var(--orange);
}


/* =========================================================
   HOME — RECOMMEND
========================================================= */

.recommend {
    background: #050c13;
}

.recommend-box {
    min-height: 190px;

    border: 1px solid #34424d;

    border-radius: 6px;

    overflow: hidden;

    position: relative;

    background:
        radial-gradient(
            circle at 76% 45%,
            rgba(255, 91, 0, .14),
            transparent 25%
        ),
        linear-gradient(
            100deg,
            #101b25,
            #08121a
        );
}

.recommend-copy {
    position: relative;

    z-index: 2;

    padding: 25px 17px;
}

.recommend-copy > span {
    font-size: 13px;
}

.recommend-copy h2 {
    font-size: 24px;

    line-height: 1.1;

    margin: 4px 0 7px;
}

.recommend-copy p {
    font-size: 12px;

    color: #adb7be;

    max-width: 340px;

    margin-bottom: 14px;
}

.recommend-visual {
    position: absolute;

    right: 0;
    top: 0;

    width: 52%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 106, 0, .04)
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0 49px,
            rgba(255, 255, 255, .04) 50px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0 49px,
            rgba(255, 255, 255, .04) 50px
        );
}

.search-orb {
    position: absolute;

    left: 38%;
    top: 32%;

    width: 63px;
    height: 63px;

    border: 2px solid var(--orange);

    border-radius: 10px;

    display: grid;

    place-items: center;

    font-size: 37px;

    color: var(--orange);

    box-shadow:
        0 0 35px rgba(255, 106, 0, .25);
}

.mini-box {
    position: absolute;

    width: 38px;
    height: 38px;

    border: 1px solid #4c3b31;

    color: #8f7668;

    display: grid;

    place-items: center;

    border-radius: 5px;
}

.b1 {
    left: 19%;
    top: 25%;
}

.b2 {
    left: 29%;
    bottom: 21%;
}

.b3 {
    right: 27%;
    top: 22%;
}

.b4 {
    right: 18%;
    bottom: 24%;
}

.robot-arm {
    position: absolute;

    right: 4%;
    bottom: -20px;

    width: 150px;
    height: 120px;

    border-radius: 70% 20% 10% 15%;

    border: 10px solid #2e3b42;

    transform: rotate(-18deg);

    box-shadow:
        0 0 30px rgba(255, 106, 0, .2);
}


/* =========================================================
   HOME — ARTICLES
========================================================= */

.articles {
    background: #07121b;

    border-top: 1px solid #22303a;
}

.articles .article-grid {
    display: grid;

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

    gap: 12px;
}

.article-card {
    border: 1px solid #2c3943;

    border-radius: 5px;

    overflow: hidden;

    background: #0a151f;
}

.article-art {
    height: 100px;

    position: relative;

    padding: 12px;

    background:
        linear-gradient(
            135deg,
            #18242d,
            #070e14
        );

    overflow: hidden;
}

.article-art::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 50%;

    right: -40px;
    top: -80px;

    box-shadow:
        0 0 0 20px rgba(255, 255, 255, .025),
        0 0 0 45px rgba(255, 255, 255, .02);
}

.article-art span {
    font-size: 10px;

    font-weight: 800;

    color: var(--orange);

    position: relative;

    z-index: 2;
}

.compass,
.clock,
.bulb {
    position: absolute;

    right: 38px;
    bottom: 14px;

    font-size: 62px;

    color: #59666d;

    opacity: .6;

    z-index: 1;
}

.art-2 {
    background:
        linear-gradient(
            135deg,
            #15212a,
            #090f14
        );
}

.art-3 {
    background:
        linear-gradient(
            135deg,
            #16242b,
            #090e13
        );
}

.article-body {
    padding: 12px;
}

.article-body h3 {
    font-size: 14px;

    line-height: 1.35;

    margin-bottom: 9px;
}

.article-body small {
    font-size: 10px;

    color: #88959e;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews {
    background:
        radial-gradient(
            circle at 80%,
            rgba(255, 106, 0, .08),
            transparent 35%
        ),
        #050c13;

    border-top: 1px solid #22303a;
}

.review-inner {
    display: grid;

    grid-template-columns: 1fr 100px 2fr;

    gap: 25px;

    align-items: center;
}

.reviews h2 {
    font-size: 28px;

    line-height: 1.1;

    margin-top: 8px;
}

.reviews h2 span {
    color: var(--orange);
}

.review-quote {
    font-size: 90px;

    color: var(--orange);

    line-height: .7;

    text-align: center;
}

.reviews blockquote {
    font-size: 16px;

    color: #c6cdd2;

    line-height: 1.65;
}

.review-person {
    grid-column: 3;

    font-size: 12px;
}

.review-person small {
    display: block;

    color: #788791;

    margin-top: 3px;
}


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

.footer {
    background: #040a10;

    border-top: 1px solid #24313b;

    padding: 40px 0;
}

.footer-grid {
    display: grid;

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

    gap: 35px;
}

.footer p {
    font-size: 12px;

    color: #9aa6ae;

    max-width: 220px;

    margin: 18px 0;
}

.footer h4 {
    font-size: 11px;

    letter-spacing: .5px;

    margin-bottom: 13px;
}

.footer-grid > div:not(.footer-brand):not(.subscribe) a {
    display: block;

    color: #aeb7bd;

    font-size: 11px;

    margin: 8px 0;

    transition: color .2s ease;
}

.footer-grid > div:not(.footer-brand):not(.subscribe) a:hover {
    color: var(--orange);
}

.socials {
    display: flex;

    gap: 7px;
}

.socials a {
    width: 27px;
    height: 27px;

    border-radius: 50%;

    background: #18232c;

    display: grid;

    place-items: center;

    font-size: 11px;

    color: #bac3c8;
}

.socials a:hover {
    color: var(--orange);
}

.copyright {
    display: block;

    color: #697680;

    font-size: 9px;

    margin-top: 18px;
}

.subscribe p {
    margin: 0 0 12px;
}

.subscribe form {
    display: flex;
}

.subscribe input {
    min-width: 0;

    width: 100%;

    height: 32px;

    background: #0c151e;

    border: 1px solid #303d47;

    padding: 0 9px;

    color: #fff;

    font-size: 10px;
}

.subscribe button {
    border: 0;

    background: var(--orange);

    color: #fff;

    font-size: 10px;

    font-weight: 800;

    padding: 0 12px;

    cursor: pointer;
}


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

.search-overlay {
    position: fixed;

    z-index: 2000;

    inset: 0;

    background: rgba(2, 7, 11, .94);

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;
}

.search-overlay.open {
    display: flex;
}

.search-overlay > button {
    position: absolute;

    right: 30px;
    top: 20px;

    background: none;

    border: 0;

    color: #fff;

    font-size: 35px;

    cursor: pointer;
}

.search-box {
    width: min(650px, 100%);

    border-bottom: 2px solid var(--orange);

    display: flex;

    align-items: center;

    gap: 15px;
}

.search-box span {
    font-size: 30px;

    color: var(--orange);
}

.search-box input {
    width: 100%;

    background: none;

    border: 0;

    outline: 0;

    color: #fff;

    font-size: 25px;

    padding: 15px 0;
}


/* =========================================================
   REVEALS
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(18px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: none;
}

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


/* =========================================================
   TOOLS PAGE
========================================================= */


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

.tools-hero {
    position: relative;

    overflow: hidden;

    padding: 150px 0 100px;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(255, 106, 0, .10),
            transparent 30%
        ),
        linear-gradient(
            115deg,
            #030910 0%,
            #07131d 55%,
            #050c13 100%
        );

    border-bottom: 1px solid #1f2d37;
}

.tools-hero-content {
    max-width: 820px;
}

.tools-hero .section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.tools-hero h1 {
    margin: 0;

    max-width: 850px;

    color: #fff;

    font-size: clamp(48px, 7vw, 82px);

    line-height: .98;

    letter-spacing: -.045em;

    font-weight: 900;
}

.tools-hero h1 span {
    color: var(--orange);
}

.tools-hero p {
    max-width: 650px;

    margin: 28px 0 35px;

    color: #aab4bd;

    font-size: 17px;

    line-height: 1.7;
}


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

.tools-search {
    display: flex;

    width: min(650px, 100%);

    padding: 6px;

    background: #0b151f;

    border: 1px solid #2b3944;

    border-radius: 6px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .25);
}

.tools-search input {
    flex: 1;

    min-width: 0;

    height: 52px;

    padding: 0 18px;

    border: 0;

    outline: 0;

    background: transparent;

    color: #fff;

    font-family: inherit;

    font-size: 16px;
}

.tools-search input::placeholder {
    color: #71808c;
}

.tools-search button {
    height: 52px;

    padding: 0 26px;

    border: 0;

    border-radius: 4px;

    background: var(--orange);

    color: #fff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.tools-search button:hover {
    background: var(--orange2);

    transform: translateY(-1px);
}


/* =========================================================
   TOOLS SECTIONS
========================================================= */

.tools-section {
    padding: 10px 0;

    background: #050c13;
}

.tools-list-section {
    padding-top: 30px;
    padding-bottom: 15px;

    background: #08131d;

    border-top: 1px solid #1f2d37;
}


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

.tools-section .section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 15px;
}

.tools-list-section .section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 15px;
}

.tools-list-section .view-all {
    font-size: 11px;

    flex-shrink: 0;

    margin-bottom: 3px;
}

.tools-section .section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.tools-section .section-heading h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(28px, 4vw, 42px);

    line-height: 1.05;

    letter-spacing: -.035em;

    font-weight: 900;
}

.tools-section .view-all {
    color: #d7dde0;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    transition: color .2s ease;
}

.tools-section .view-all:hover {
    color: var(--orange);
}


/* =========================================================
   TOOLS CATEGORIES
========================================================= */

.tools-section .category-grid {
    display: grid;

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

    gap: 9px;
}

.tools-section .category-card {
    height: 35px;

    min-height: 35px;

    padding: 0 14px;

    border: 1px solid #2b3944;

    border-radius: 5px;

    background:
        linear-gradient(
            145deg,
            #101b25,
            #09121a
        );

    color: #fff;

    display: flex;

    align-items: center;

    gap: 9px;

    text-align: left;

    cursor: pointer;

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

.tools-section .category-card:hover {
    transform: translateY(-2px);

    border-color: var(--orange);

    background: #0e1a23;

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

.tools-section .category-card span {
    display: block;

    margin: 0;

    color: var(--orange);

    font-size: 18px;

    line-height: 1;

    flex-shrink: 0;
}

.tools-section .category-card strong {
    display: block;

    margin: 0;

    color: #fff;

    font-size: 11px;

    line-height: 1;
}

.tools-section .category-card small {
    margin-left: auto;

    color: #8d9aa3;

    font-size: 9px;

    line-height: 1;

    white-space: nowrap;
}


/* =========================================================
   TOOLS — POPULAR AI TOOLS
========================================================= */

.tools-list-section .tool-grid {
    display: grid;

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

    gap: 12px;
}


/* =========================================================
   TOOL CARD
   НЕ УВЕЛИЧИВАЕМ — КАРТОЧКИ ОСТАЮТСЯ КАК БЫЛИ
========================================================= */

.tools-list-section .tool-card {
    position: relative;

    min-height: 185px;

    padding: 15px;

    border: 1px solid #2b3944;

    border-radius: 6px;

    background:
        linear-gradient(
            150deg,
            #111d27,
            #09131c
        );

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

.tools-list-section .tool-card:hover {
    transform: translateY(-4px);

    border-color: #526471;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .22);
}


/* =========================================================
   TOOL CARD TOP
========================================================= */

.tools-list-section .tool-card-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 12px;

    margin-bottom: 17px;
}


/* =========================================================
   TOOL CATEGORY
========================================================= */

.tools-list-section .tool-category {
    padding: 5px 9px;

    border: 1px solid rgba(255, 106, 0, .25);

    border-radius: 20px;

    background: rgba(255, 106, 0, .08);

    color: var(--orange);

    font-size: 8px;

    font-weight: 800;

    white-space: nowrap;
}


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

.tools-list-section .tool-card h3 {
    margin: 0 0 8px;

    color: #fff;

    font-size: 14px;

    line-height: 1.3;

    letter-spacing: -.1px;

    font-weight: 800;
}


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

.tools-list-section .tool-card p {
    margin: 0;

    max-width: 95%;

    color: #aeb9c0;

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   TOOL CARD BOTTOM
========================================================= */

.tools-list-section .tool-card-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 17px;

    padding-top: 11px;

    border-top: 1px solid #26343e;
}

.tools-list-section .tool-rating {
    color: var(--orange);

    font-size: 9px;

    font-weight: 800;
}

.tools-list-section .tool-card-bottom a {
    color: #d7dde0;

    font-size: 9px;

    font-weight: 800;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}

.tools-list-section .tool-card-bottom a:hover {
    color: var(--orange);

    transform: translateX(2px);
}


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

@media (max-width: 1050px) {

    .nav {
        width: min(100% - 40px, 1160px);
    }

    .main-nav {
        gap: 17px;
    }

    .nav-actions .btn {
        padding: 0 12px;
    }

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

    .categories .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trending .tool-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .why-item:nth-child(3) {
        padding-left: 3px;
    }

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

    .footer-brand {
        grid-column: span 3;
    }

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

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


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

@media (max-width: 760px) {

    .container {
        width: min(100% - 40px, 600px);
    }


    /* HEADER */

    .header {
        height: 66px;
    }

    .nav {
        width: calc(100% - 40px);

        height: 66px;
    }

    .main-nav {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

    .nav-actions {
        margin-left: auto;

        gap: 7px;
    }

    .hamburger {
        display: block;
    }

    .search-btn {
        display: flex;

        width: 32px;
    }

    .mobile-nav {
        width: 100%;

        display: flex;

        flex-direction: column;

        max-height: 0;

        overflow: hidden;

        background: #071019;

        border-top: 0 solid #26333d;

        transition:
            max-height .3s ease,
            border-color .3s ease;
    }

    .mobile-nav.open {
        max-height: 430px;

        border-top: 1px solid #26333d;

        padding: 8px 16px 15px;
    }

    .mobile-nav a {
        display: block;

        padding: 12px 5px;

        color: #d6dde1;

        font-size: 12px;

        font-weight: 700;

        border-bottom: 1px solid #18242d;
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }


    /* HERO */

    .hero {
        padding-top: 66px;
    }

    .hero-inner {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .hero-copy {
        padding: 65px 0 20px;
    }

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

    .hero-copy > p {
        font-size: 14px;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-visual {
        height: 330px;

        order: 2;
    }

    .ai-chip {
        width: 215px;
        height: 150px;
    }

    .chip-label {
        font-size: 52px;
    }

    .chip-mark {
        width: 165px;
        height: 100px;
    }

    .tech-orbit {
        width: 330px;
        height: 180px;
    }

    .orbit-2 {
        width: 380px;
        height: 210px;
    }


    /* WHY */

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

    .why-item,
    .why-item:nth-child(3) {
        border-right: 0;

        border-bottom: 1px solid #293641;

        padding: 15px 0;
    }

    .why-item:last-child {
        border-bottom: 0;
    }


    /* HOME CATEGORIES */

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


    /* HOME TRENDING */

    .trending .tool-grid {
        grid-template-columns: 1fr;
    }

    .trending .tool-card {
        min-height: 160px;
    }


    /* MAIN */

    .section {
        padding: 25px 0;
    }

    .section-head a {
        font-size: 10px;
    }

    .section-head h2 {
        font-size: 15px;
    }

    .recommend-copy {
        padding: 24px 18px;
    }

    .recommend-copy h2 {
        font-size: 21px;
    }

    .recommend-copy p {
        font-size: 12px;
    }

    .recommend-visual {
        opacity: .35;

        width: 75%;
    }

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

    .review-inner {
        grid-template-columns: 1fr;
    }

    .reviews blockquote {
        font-size: 14px;
    }

    .review-person {
        grid-column: auto;
    }


    /* FOOTER */

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

        gap: 25px;
    }

    .footer-brand {
        grid-column: span 3;
    }


    /* TOOLS MOBILE */

    .tools-hero {
        padding: 110px 0 75px;
    }

    .tools-hero h1 {
        font-size: 48px;
    }

    .tools-hero p {
        font-size: 15px;
    }


    /* SEARCH */

    .tools-search {
        flex-direction: column;

        background: #0b151f;
    }

    .tools-search button {
        width: 100%;
    }


    /* SECTIONS */

    .tools-section {
        padding: 60px 0;
    }

    .tools-section .section-heading {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 30px;
    }


    /* CATEGORIES */

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


    /* TOOL CARDS */

    .tools-list-section .tool-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .tools-list-section .tool-card {
        min-height: 200px;

        padding: 17px;
    }
}


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

@media (max-width: 430px) {

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

    .hero-actions .btn {
        width: 100%;
    }

    .section-head {
        align-items: flex-start;

        gap: 10px;
    }

    .section-head h2 {
        font-size: 13px;
    }

    .categories .category-card {
        height: 85px;
    }


    /* TOOLS */

    .tools-hero h1 {
        font-size: 40px;
    }

    .tools-section .category-grid {
        grid-template-columns: 1fr;
    }

    .tools-list-section .tool-card {
        padding: 17px;
    }
}


#categories {
    scroll-margin-top: 75px;
}

@media (max-width: 768px) {
    #categories {
        scroll-margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .tools-search {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .tools-search input {
        flex: 1;
        min-width: 0;
        width: auto;
    }

    .tools-search button {
        flex-shrink: 0;
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .tools-search button {
        height: 44px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

#searchInput {
    color: #fff !important;
    background: transparent !important;
    -webkit-text-fill-color: #fff !important;
}

#searchInput:-webkit-autofill,
#searchInput:-webkit-autofill:hover,
#searchInput:-webkit-autofill:focus,
#searchInput:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px #02070b inset !important;
    caret-color: #fff !important;
}

/* Header search button */
#headerSearchSubmit {
    flex-shrink: 0;
    margin-left: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 7px;
    background: #f97316;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

#headerSearchSubmit:hover {
    background: #ea580c;
}

@media (max-width: 768px) {
    #headerSearchSubmit {
        padding: 9px 13px;
        font-size: 13px;
        margin-left: 6px;
    }
}

#homeSearchSubmit {
    height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: #f97316;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

#homeSearchSubmit:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

#homeSearchSubmit:active {
    transform: translateY(0);
}


/* SEARCH BOX */
.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* INPUT */
.search-box input {
    flex: 1;
    min-width: 0;
}


/* MOBILE */
@media (max-width: 600px) {

    #homeSearchSubmit {
        height: 44px;
        padding: 0 14px;
        font-size: 14px;
    }

    .search-box {
        gap: 7px;
    }

}

.trending-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.trending-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding-top: 6px;
}

.trending-viewport .tool-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    transition: transform 0.45s ease;
}

.trending-viewport .tool-card {
    flex: 0 0 calc(
        (100% - 40px) / 3
    );

    width: calc(
        (100% - 40px) / 3
    );

    max-width: none;
}


/* =========================================
   ARROWS
   ========================================= */

.trending-arrow {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;

    background: rgba(255,255,255,0.04);
    color: #fff;

    font-size: 22px;

    cursor: pointer;

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

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease;

    z-index: 2;
}

.trending-arrow:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
}

.trending-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}


/* =========================================
   DOTS
   ========================================= */

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 7px;
    margin-top: 24px;
}

.slider-dots i {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

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

    transition: all 0.25s ease;
}

.slider-dots i.active {
    width: 20px;

    border-radius: 10px;

    background: #ff6a00;
}


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

@media (max-width: 1000px) {

    .trending-viewport .tool-card {
        flex-basis: calc(
            (100% - 20px) / 2
        );

        width: calc(
            (100% - 20px) / 2
        );
    }

}


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

@media (max-width: 700px) {

    .trending-slider {
        gap: 8px;
    }

    .trending-viewport {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .trending-viewport .tool-grid {
        gap: 14px;
    }

    .trending-viewport .tool-card {
        /*
         * Ровно одна карточка
         * в доступной области.
         */

        flex: 0 0 100%;
        width: 100%;
    }

    .trending-arrow {
        flex: 0 0 34px;

        width: 34px;
        height: 34px;

        font-size: 18px;
    }

}




/* =====================================================
   TOOL PAGE & ARTICLE LAYOUT SYSTEM
   ===================================================== */

.tool-page {
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: 800px;
}

/* Breadcrumbs */
.tool-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--muted2);
    flex-wrap: wrap;
}

.tool-breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s ease;
}

.tool-breadcrumbs a:hover {
    color: var(--orange);
}

.tool-breadcrumbs span {
    color: var(--muted2);
}

.tool-breadcrumbs span.current {
    color: var(--text);
    font-weight: 600;
}

/* =====================================================
   TOOL HERO SUMMARY
   ===================================================== */

.tool-detail {
    background: linear-gradient(145deg, rgba(13, 25, 36, 0.95), rgba(7, 17, 26, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 45px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.tool-detail::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -150px;
    top: -200px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.14), transparent 70%);
    pointer-events: none;
}

.tool-detail-main {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.tool-detail-logo {
    width: 140px;
    height: 140px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    font-size: 40px;
    font-weight: 900;
    flex-shrink: 0;
}

.tool-detail-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.tool-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.tool-detail-category {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border: 1px solid rgba(255, 106, 0, 0.35);
    border-radius: 999px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(255, 106, 0, 0.08);
}

.tool-verified-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border: 1px solid rgba(39, 201, 63, 0.3);
    border-radius: 999px;
    color: #27c93f;
    font-size: 11px;
    font-weight: 700;
    background: rgba(39, 201, 63, 0.08);
}

.tool-pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border: 1px solid rgba(0, 196, 204, 0.3);
    border-radius: 999px;
    color: #00c4cc;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 196, 204, 0.08);
}

.tool-detail-info h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--text);
    font-weight: 900;
}

.tool-detail-description {
    max-width: 820px;
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

/* Metadata Bar */
.tool-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.15);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.meta-author strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    line-height: 1.2;
}

.meta-author small {
    font-size: 11px;
    color: var(--muted2);
}

.meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
}

.meta-date, .meta-read-time {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted2);
    font-weight: 700;
}

.meta-date strong, .meta-read-time strong {
    font-size: 13px;
    color: var(--muted);
}

.meta-rating-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-left: auto;
}

.meta-rating-box .star-icon {
    color: #ffb400;
    font-size: 16px;
}

.meta-rating-box .score-val {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

.meta-rating-box small {
    font-size: 12px;
    color: var(--muted2);
}

.tool-detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.external-icon {
    display: inline-block;
    margin-left: 4px;
    font-weight: 800;
}

/* =====================================================
   3-COLUMN LAYOUT GRID
   ===================================================== */

.tool-layout-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 300px;
    gap: 36px;
    align-items: start;
    margin-top: 48px;
}

.sidebar-sticky-wrapper {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-header h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #d6dde1;
    text-transform: uppercase;
    margin: 0;
}

.sidebar-icon {
    font-size: 14px;
}

/* Table of Contents */
.toc-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-link {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.toc-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.toc-link.active {
    color: var(--orange);
    background: rgba(255, 106, 0, 0.09);
    border-left-color: var(--orange);
    font-weight: 700;
}

/* Quick Specs */
.specs-list {
    display: flex;
    flex-direction: column;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
}

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

.spec-item dt {
    color: var(--muted2);
    font-weight: 600;
}

.spec-item dd {
    color: var(--text);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

/* Score Breakdown */
.score-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.score-bar-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.score-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.score-bar-header strong {
    color: var(--text);
}

.score-progress-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.score-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), #ff9900);
    border-radius: 999px;
    transition: width 0.8s ease;
}

/* =====================================================
   MAIN ARTICLE CONTENT
   ===================================================== */

.tool-article-main {
    min-width: 0;
}

.article-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.article-section h2 {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.article-lead {
    font-size: 17px;
    line-height: 1.85;
    color: #d6dde1;
    margin-bottom: 24px;
}

.rich-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 20px;
}

.accent-text {
    color: var(--orange);
}

/* Article Media Container */
.article-media-container {
    margin: 28px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #081119;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.article-image {
    display: block;
    width: 100%;
    height: auto;
}

.media-caption {
    padding: 12px 18px;
    font-size: 12px;
    color: var(--muted2);
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
}

/* Workflow Step Cards */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0 32px;
}

.workflow-step-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 18px;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.workflow-step-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateY(-2px);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 106, 0, 0.12);
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 106, 0, 0.25);
}

.workflow-step-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.workflow-step-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

/* Features Grid */
.tool-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tool-feature {
    padding: 24px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tool-feature:hover {
    border-color: rgba(0, 196, 204, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 18px;
    color: #00c4cc;
    margin-bottom: 10px;
}

.tool-feature h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.tool-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.pricing-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card.popular {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(255, 106, 0, 0.08) 0%, var(--panel) 100%);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.12);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.plan-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.plan-price {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-price .currency {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.plan-price .period {
    display: block;
    font-size: 11px;
    color: var(--muted2);
    margin-top: 3px;
    line-height: 1.3;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 10px;
    line-height: 1.45;
}

.plan-features .check {
    color: #27c93f;
    font-weight: 800;
}

.plan-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 12px;
}

/* Pros & Cons */
.tool-pros-cons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tool-pros, .tool-cons {
    padding: 26px;
    border-radius: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.pros-header, .cons-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.pros-header h3, .cons-header h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.status-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: .05em;
}

.status-badge.green {
    background: rgba(39, 201, 63, 0.15);
    color: #27c93f;
    border: 1px solid rgba(39, 201, 63, 0.3);
}

.status-badge.red {
    background: rgba(255, 95, 86, 0.15);
    color: #ff5f56;
    border: 1px solid rgba(255, 95, 86, 0.3);
}

.tool-pros ul, .tool-cons ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tool-pros li, .tool-cons li {
    padding: 9px 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tool-pros li:last-child, .tool-cons li:last-child {
    border-bottom: none;
}

/* Audience */
.audience-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 18px;
}

.audience-col h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--muted2);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tool-best-list, .tool-not-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.audience-tag {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 16px;
    background: var(--panel2);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 600;
}

.audience-tag.not-rec {
    border-color: rgba(255, 95, 86, 0.3);
    color: #ff8e88;
    background: rgba(255, 95, 86, 0.06);
}

/* Verdict */
.verdict-card {
    background: linear-gradient(145deg, #0e1c29, #09131d);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.verdict-top {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.verdict-score-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 18px;
    background: rgba(255, 106, 0, 0.1);
    border: 2px solid var(--orange);
    flex-shrink: 0;
}

.verdict-label {
    font-size: 9px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.1em;
}

.verdict-score-badge strong {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 4px 0;
}

.verdict-score-badge .stars {
    color: #ffb400;
    font-size: 11px;
}

.verdict-summary-head h2 {
    font-size: 24px;
    margin-bottom: 0;
}

.verdict-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #d6dde1;
    margin-bottom: 26px;
}

.verdict-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 22px 26px;
    gap: 20px;
    flex-wrap: wrap;
}

.verdict-cta-box .cta-copy h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.verdict-cta-box .cta-copy p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* =====================================================
   RIGHT SIDEBAR WIDGETS
   ===================================================== */

.top-tools-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-tool-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.top-tool-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.top-tool-main-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-grow: 1;
    min-width: 0;
}

.top-tool-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
    overflow: hidden;
}

.top-tool-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.top-tool-info {
    min-width: 0;
}

.top-tool-info h5 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-tool-info small {
    font-size: 11px;
    color: var(--muted2);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-tool-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.top-tool-rating {
    font-size: 11.5px;
    font-weight: 700;
    color: #ffb400;
}

.top-tool-review-btn {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
}

.top-tool-review-btn:hover {
    text-decoration: underline;
}

.sidebar-more-link {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-align: right;
    text-decoration: none;
}

.sidebar-more-link:hover {
    text-decoration: underline;
}

/* Latest Articles Widget */
.sidebar-articles-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-article-item {
    display: block;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-article-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.article-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: 4px;
}

.sidebar-article-item h5 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    margin: 0 0 4px;
}

.sidebar-article-item small {
    font-size: 11px;
    color: var(--muted2);
}

/* Mini Newsletter Box */
.newsletter-mini-box {
    background: linear-gradient(145deg, #101c27, #0b151f);
    border-color: rgba(255, 106, 0, 0.2);
    text-align: center;
}

.mini-orb {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.12);
    color: var(--orange);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
}

.newsletter-mini-box h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.newsletter-mini-box p {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.45;
}

.sidebar-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-subscribe-form input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    background: #050b12;
    border: 1px solid var(--line);
    color: #fff;
    font-size: 12px;
}

.sidebar-subscribe-form button {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    justify-content: center;
}

/* =====================================================
   DUAL ACTION CARDS (FOR HOME & TOOLS CATALOG)
   ==================================================== */

.tool-card-actions-dual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-read-review {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-read-review:hover {
    transform: translateX(3px);
}

.btn-visit-direct {
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-visit-direct:hover {
    background: rgba(255, 106, 0, 0.12);
    border-color: var(--orange);
    color: #fff;
}

/* =====================================================
   ERROR STATE
   ===================================================== */

.tool-error {
    padding: 100px 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.tool-error h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.tool-error p {
    color: var(--muted);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

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

@media (max-width: 1200px) {
    .tool-layout-grid {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .tool-sidebar-right {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 20px;
    }

    .tool-sidebar-right .sidebar-sticky-wrapper {
        position: static;
        display: contents;
    }

    .newsletter-mini-box {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .tool-layout-grid {
        grid-template-columns: 1fr;
    }

    .tool-sidebar-left .sidebar-sticky-wrapper {
        position: static;
    }

    .tool-sidebar-right {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
    }

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

    .tool-feature-grid {
        grid-template-columns: 1fr;
    }

    .tool-pros-cons {
        grid-template-columns: 1fr;
    }

    .tool-detail {
        padding: 30px 24px;
    }

    .tool-detail-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tool-detail-logo {
        width: 100px;
        height: 100px;
        border-radius: 20px;
    }

    .verdict-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .tool-page {
        padding-top: 100px;
    }

    .tool-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .meta-divider {
        display: none;
    }

    .meta-rating-box {
        margin-left: 0;
        margin-top: 4px;
    }

    .tool-detail-actions {
        flex-direction: column;
    }

    .tool-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .verdict-cta-box {
        flex-direction: column;
        align-items: stretch;
    }

    .verdict-cta-box .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   ARTICLES CAROUSEL (HOME PAGE)
   ===================================================== */

.art-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.art-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    padding: 10px 0;
    margin: -10px 0;
}

.art-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

/* Single carousel card */
.art-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .2s ease, transform .2s ease;
}

.art-card:hover {
    border-color: rgba(255, 106, 0, .35);
    transform: translateY(-3px);
}

.art-card-visual {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--line);
}

.art-card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 106, 0, .1), transparent 60%);
}

.art-card-icon {
    font-size: 42px;
    position: relative;
    z-index: 1;
    opacity: .85;
}

.art-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    z-index: 1;
}

.art-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.art-card-body h3 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.art-card-body p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 14px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.art-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,.05);
    padding-top: 12px;
    margin-top: auto;
}

.art-card-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 106, 0, .14);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    border: 1px solid rgba(255, 106, 0, .25);
    flex-shrink: 0;
}

.art-card-meta small {
    font-size: 11px;
    color: var(--muted2);
}

/* Arrow buttons */
.art-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--muted);
    font-size: 16px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s, background .2s;
}

.art-arrow:hover {
    border-color: rgba(255, 106, 0, .5);
    color: var(--orange);
    background: rgba(255, 106, 0, .08);
}

/* Dots */
.art-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}

.art-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.15);
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}

.art-dot.active {
    background: var(--orange);
    transform: scale(1.25);
}

/* Loading state */
.art-loading {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.art-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 106, 0, .15);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

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

.art-empty {
    padding: 60px 20px;
    color: var(--muted);
    text-align: center;
}

/* Responsive */
@media (max-width: 960px) {
    .art-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 640px) {
    .art-card {
        flex: 0 0 100%;
    }
    .art-arrow {
        display: none;
    }
}

/* =====================================================
   STATIC PAGES (About, Contact, Terms, Privacy)
   ===================================================== */

.static-page {
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: 80vh;
}

.static-hero {
    margin-bottom: 56px;
}

.static-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin: 10px 0 16px;
}

.static-hero h1 em {
    color: var(--orange);
    font-style: normal;
}

.static-hero p {
    font-size: 17px;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.65;
}

.static-body {
    max-width: 820px;
}

.static-body h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 40px 0 14px;
}

.static-body h2:first-child {
    margin-top: 0;
}

.static-body p,
.static-body li {
    font-size: 15.5px;
    line-height: 1.8;
    color: #b8c4ce;
}

.static-body ul,
.static-body ol {
    padding-left: 20px;
    margin: 12px 0 20px;
}

.static-body li {
    margin-bottom: 8px;
}

.static-body a {
    color: var(--orange);
    text-decoration: none;
}

.static-body a:hover {
    text-decoration: underline;
}

/* Contact form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted2);
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color .2s;
    box-sizing: border-box;
}

.contact-form select option {
    background: #07101a;
    color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 106, 0, .5);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item h4 {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.contact-info-item p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   AI TOOL MATCHER / RECOMMENDATION WIZARD MODAL
   ===================================================== */

.recommend-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.recommend-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.wizard-modal {
    background: #07101a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 106, 0, 0.1);
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.25s ease;
}

.recommend-modal-overlay.open .wizard-modal {
    transform: scale(1) translateY(0);
}

.wizard-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.wizard-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.35);
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.wizard-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.wizard-header p {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.wizard-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    color: var(--muted);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.wizard-close-btn:hover {
    background: rgba(255, 106, 0, 0.2);
    color: #fff;
    border-color: var(--orange);
}

.wizard-body {
    padding: 24px 28px 28px;
}

.wizard-step {
    margin-bottom: 24px;
}

.wizard-step-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.wizard-pills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

.wizard-pill-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-align: left;
}

.wizard-pill-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.wizard-pill-btn.active {
    background: rgba(255, 106, 0, 0.15);
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 0 16px rgba(255, 106, 0, 0.2);
}

.wizard-pill-icon {
    font-size: 16px;
}

.wizard-submit-btn {
    width: 100%;
    height: 48px;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Results View */
.wizard-results-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.wizard-result-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.wizard-result-card:hover {
    border-color: rgba(255, 106, 0, 0.4);
    background: rgba(255, 106, 0, 0.03);
    transform: translateY(-2px);
}

.wrc-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.wrc-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--line);
}

.wrc-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wrc-info {
    min-width: 0;
}

.wrc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.wrc-head h4 {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.wrc-badge {
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.wrc-rating {
    font-size: 12px;
    font-weight: 800;
    color: var(--orange);
}

.wrc-desc {
    font-size: 12.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wrc-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.wrc-actions .btn {
    padding: 6px 14px;
    font-size: 11.5px;
    white-space: nowrap;
    justify-content: center;
}

.wizard-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 600px) {
    .wizard-result-card {
        flex-direction: column;
        align-items: stretch;
    }
    .wrc-actions {
        flex-direction: row;
    }
    .wrc-actions .btn {
        flex: 1;
    }
    .wizard-pills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   GLOBAL LOGO & IMAGE MOCKUP ADJUSTMENTS
   ========================================================= */
.tool-logo, .tool-detail-logo, .top-tool-logo, .table-logo-box, .wrc-logo, .ranked-logo {
    overflow: hidden !important;
}
.tool-logo img, .tool-detail-logo img, .top-tool-logo img, .table-logo-box img, .wrc-logo img, .ranked-logo img {
    border-radius: inherit !important;
    object-fit: cover !important;
}