/* =================================================================
   Tasaw9 Showcase Theme — main stylesheet
   Editorial-tech aesthetic for an Arabic e-commerce theme showcase.
   Deep midnight + emerald + warm coral. RTL-first.
   ================================================================= */

/* ---------- Variables (LIGHT THEME) ---------- */
:root {
    /* Surface — warm off-white paper feel */
    --bg:        #FAFAF5;
    --bg-2:      #F4F4ED;
    --surface:   #FFFFFF;
    --surface-2: #F8F8F3;
    --border:    rgba(15,23,42,.08);
    --border-2:  rgba(15,23,42,.14);

    /* Text — deep slate */
    --text:      #0A0E1A;
    --text-2:    #334155;
    --text-3:    #64748B;
    --text-4:    #94A3B8;

    /* Brand */
    --emerald:    #10B981;
    --emerald-2:  #059669;     /* darker for legibility on light */
    --emerald-d:  #047857;
    --emerald-soft: #D1FAE5;
    --coral:     #F97316;
    --coral-2:   #FB923C;
    --gold:      #F59E0B;
    --rose:      #FB7185;
    --violet:    #A855F7;

    /* Layout */
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --container: 1200px;
    --container-narrow: 920px;

    /* Type */
    --font-display: 'Readex Pro', 'Tajawal', system-ui, -apple-system, sans-serif;
    --font-body:    'Tajawal', 'Readex Pro', system-ui, -apple-system, sans-serif;
    --font-mono:    'SF Mono', Menlo, Consolas, monospace;

    /* Motion */
    --ease: cubic-bezier(.25,.46,.45,.94);
    --ease-back: cubic-bezier(.34,1.56,.64,1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(1200px 800px at 80% -10%, rgba(16,185,129,.08), transparent 60%),
        radial-gradient(900px 600px at -10% 30%, rgba(249,115,22,.05), transparent 60%);
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* Subtle film grain overlay */
.t9sc-grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .12;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .15 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.screen-reader-text {
    position: absolute !important; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap;
}
.skip-link {
    position: absolute; top: -100px; right: 1rem;
    background: var(--emerald); color: #000; padding: .75rem 1rem; border-radius: 8px;
    z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Container ---------- */
.t9sc-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ---------- Typography ---------- */
.t9sc-h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1.25rem;
}
.t9sc-h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 1rem;
}
.t9sc-grad-text {
    background: linear-gradient(110deg, var(--emerald-2) 0%, var(--emerald) 35%, var(--coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.t9sc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 500;
    color: var(--emerald-2);
    background: rgba(16,185,129,.08);
    border: 1px solid rgba(16,185,129,.2);
    padding: .4rem .85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    letter-spacing: .02em;
}
.t9sc-eyebrow svg { width: 14px; height: 14px; }
.t9sc-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--emerald);
    box-shadow: 0 0 0 4px rgba(16,185,129,.2);
    animation: t9sc-pulse 2s var(--ease) infinite;
}
@keyframes t9sc-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
    50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

/* ---------- Buttons ---------- */
.t9sc-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.4rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .95rem;
    transition: all .25s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.t9sc-btn-icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.t9sc-btn:hover .t9sc-btn-icon { transform: translateX(-3px); }

.t9sc-btn-primary {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-d));
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(16,185,129,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.t9sc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16,185,129,.4), inset 0 1px 0 rgba(255,255,255,.2);
}

.t9sc-btn-ghost {
    background: rgba(15,23,42,.04);
    border-color: var(--border-2);
    color: var(--text);
}
.t9sc-btn-ghost:hover {
    background: rgba(15,23,42,.07);
    border-color: rgba(15,23,42,.25);
}

.t9sc-btn-large {
    padding: .95rem 1.7rem;
    font-size: 1rem;
}

/* ---------- Section base ---------- */
.t9sc-section {
    padding: clamp(60px, 9vw, 110px) 0;
    position: relative;
}
.t9sc-section-tight { padding: clamp(40px, 6vw, 80px) 0; }

.t9sc-section-head {
    margin-bottom: 4rem;
}
.t9sc-section-head-center {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.t9sc-section-sub {
    font-size: 1.1rem;
    color: var(--text-2);
    max-width: 640px;
    margin: 0;
}
.t9sc-section-head-center .t9sc-section-sub {
    margin: 0 auto;
}

/* ---------- Fade-up animation ---------- */
.t9sc-fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: t9sc-fadeUp .8s var(--ease) forwards;
    animation-delay: var(--delay, 0s);
}
@keyframes t9sc-fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.t9sc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.t9sc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================================================================
   HEADER (site nav)
   ================================================================= */
.t9sc-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,250,245,.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all .3s var(--ease);
}
.t9sc-header.is-scrolled {
    background: rgba(250,250,245,.9);
    border-bottom-color: var(--border-2);
}
.t9sc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 14px;
    padding-bottom: 14px;
}

.t9sc-logo {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--text);
}
.t9sc-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-d));
    color: #fff;
    border-radius: 9px;
    font-weight: 700;
    font-size: .95rem;
    position: relative;
    box-shadow: 0 4px 14px rgba(16,185,129,.3);
    letter-spacing: -.05em;
}
.t9sc-logo-9 {
    color: #FFE5B4;
    margin-right: -2px;
}
.t9sc-logo-text {
    font-feature-settings: "ss01";
}

/* Uploaded logo image */
.t9sc-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.t9sc-logo-has-image .t9sc-logo-mark { display: none; }
.t9sc-logo-text-with-img {
    font-size: 1.1rem;
}

.t9sc-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
/* wp_nav_menu output: <ul class="t9sc-nav-list"><li><a></a></li></ul> */
.t9sc-nav-list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.t9sc-nav-list li { margin: 0; padding: 0; }
.t9sc-nav-list a,
.t9sc-nav a {
    font-size: .92rem;
    color: var(--text-2);
    font-weight: 400;
    transition: color .2s var(--ease);
    position: relative;
    text-decoration: none;
}
.t9sc-nav-list a:hover,
.t9sc-nav a:hover { color: var(--text); }
.t9sc-nav-list a::after,
.t9sc-nav a::after {
    content: "";
    position: absolute;
    bottom: -6px; right: 0; left: 0;
    height: 1px;
    background: var(--emerald);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s var(--ease);
}
.t9sc-nav-list a:hover::after,
.t9sc-nav a:hover::after { transform: scaleX(1); }
/* Highlight current page */
.t9sc-nav-list .current-menu-item > a,
.t9sc-nav-list .current_page_item > a {
    color: var(--text);
    font-weight: 500;
}

.t9sc-header-cta {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.t9sc-header-cta .t9sc-btn { padding: .55rem 1.1rem; font-size: .88rem; }

.t9sc-burger {
    display: none;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(15,23,42,.04);
    border: 1px solid var(--border);
    color: var(--text);
    align-items: center;
    justify-content: center;
}
.t9sc-burger svg { width: 20px; height: 20px; }

.t9sc-mobile-nav {
    display: none;
    flex-direction: column;
    gap: .25rem;
    padding: 1rem 24px 1.5rem;
    border-top: 1px solid var(--border);
    background: rgba(250,250,245,.98);
}
.t9sc-mobile-nav a,
.t9sc-mobile-nav-list a {
    padding: .85rem 1rem;
    font-size: 1rem;
    color: var(--text-2);
    border-radius: 10px;
    transition: background .2s;
    display: block;
    text-decoration: none;
}
.t9sc-mobile-nav a:hover,
.t9sc-mobile-nav-list a:hover { background: rgba(15,23,42,.04); color: var(--text); }
.t9sc-mobile-nav.is-open { display: flex; }
/* wp_nav_menu mobile list */
.t9sc-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    width: 100%;
}
.t9sc-mobile-nav-list li { margin: 0; padding: 0; }
.t9sc-mobile-cta {
    margin-top: .75rem;
    background: var(--emerald);
    color: #fff !important;
    text-align: center;
    font-weight: 600;
}

/* Add space for fixed header */
.t9sc-main { padding-top: 70px; }

/* =================================================================
   HERO BACKGROUND DECORATIONS (orbs, grid, grain)
   The actual hero layout is defined further down (jude-themes style).
   ================================================================= */
.t9sc-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.t9sc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .35;
    will-change: auto;
}
.t9sc-orb-1 {
    width: 540px; height: 540px;
    background: radial-gradient(circle, var(--emerald) 0%, transparent 70%);
    top: -180px; right: -120px;
    animation: t9sc-float 14s var(--ease) infinite alternate;
}
.t9sc-orb-2 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
    top: 30%; left: -150px;
    opacity: .22;
    animation: t9sc-float 18s var(--ease) infinite alternate-reverse;
}
@keyframes t9sc-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.05); }
}

.t9sc-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,23,42,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 30%, transparent 80%);
}

/* Reusable product image gradients */
.t9sc-img-1 { background: linear-gradient(135deg, #1E3A8A, #3B82F6); }
.t9sc-img-2 { background: linear-gradient(135deg, #831843, #DB2777); }
.t9sc-img-3 { background: linear-gradient(135deg, #14532D, #16A34A); }
.t9sc-img-4 { background: linear-gradient(135deg, #78350F, #F59E0B); }

/* =================================================================
   STATS BAR
   ================================================================= */
.t9sc-stats {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(15,23,42,.02));
}
.t9sc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.t9sc-stat {
    padding: 0 1rem;
    border-left: 1px solid var(--border);
}
.t9sc-stat:last-child { border-left: 0; }
.t9sc-stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    background: linear-gradient(135deg, var(--text), var(--text-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.02em;
    line-height: 1;
}
.t9sc-stat-lbl {
    font-size: .85rem;
    color: var(--text-3);
    margin-top: .35rem;
}

/* =================================================================
   FEATURE LAYOUT (text + visual two-column)
   ================================================================= */
.t9sc-feat {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}
.t9sc-feat-reverse { direction: ltr; }
.t9sc-feat-reverse > * { direction: rtl; }

.t9sc-feat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 4rem;
    line-height: 1;
    background: linear-gradient(180deg, rgba(16,185,129,.5), rgba(16,185,129,.05) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: .5rem;
    letter-spacing: -.04em;
}

.t9sc-feat-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.75;
    margin: 0 0 1.5rem;
}
.t9sc-feat-desc strong { color: var(--text); font-weight: 600; }

.t9sc-feat-list { display: flex; flex-direction: column; gap: .55rem; margin-top: 1rem; }
.t9sc-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .98rem;
    color: var(--text-2);
    line-height: 1.55;
}
.t9sc-feat-list li svg {
    flex: 0 0 auto;
    width: 18px; height: 18px;
    margin-top: 4px;
    color: var(--emerald);
    background: rgba(16,185,129,.12);
    border-radius: 50%;
    padding: 3px;
}

.t9sc-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.t9sc-pill {
    display: inline-flex;
    padding: .35rem .8rem;
    background: rgba(15,23,42,.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .82rem;
    color: var(--text-2);
    transition: all .2s var(--ease);
}
.t9sc-pill:hover {
    background: rgba(16,185,129,.08);
    border-color: rgba(16,185,129,.3);
    color: var(--emerald-2);
}

/* The visual panel: framed mockups */
.t9sc-feat-visual {
    position: relative;
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow:
        0 30px 60px rgba(15,23,42,.07),
        0 8px 16px rgba(15,23,42,.04),
        inset 0 1px 0 rgba(255,255,255,.6);
    overflow: hidden;
}
.t9sc-feat-visual::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,.4), transparent);
}
.t9sc-feat-visual::after {
    content: "";
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 30% 20%, rgba(16,185,129,.05), transparent 50%);
    pointer-events: none;
}

/* =================================================================
   SECTION 1: ANNOUNCEMENT BAR DEMO
   ================================================================= */
.t9sc-ann-demo { display: flex; flex-direction: column; gap: .75rem; position: relative; z-index: 2; }
.t9sc-ann-bar {
    padding: .9rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .92rem;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.1);
}
.t9sc-ann-1 { background: linear-gradient(90deg, #0F172A, #1E293B); }
.t9sc-ann-2 { background: linear-gradient(90deg, var(--emerald-d), var(--emerald)); color: #fff; }
.t9sc-ann-3 { background: linear-gradient(90deg, #7C2D12, #C2410C); }
.t9sc-ann-icon { font-size: 1.1rem; }

.t9sc-ann-controls {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
    justify-content: center;
}
.t9sc-ann-tag {
    padding: .25rem .7rem;
    background: rgba(15,23,42,.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .72rem;
    color: var(--text-3);
}

/* =================================================================
   SECTION 2: HEADER DEMO
   ================================================================= */
.t9sc-hd-demo { position: relative; z-index: 2; }
.t9sc-hd-bar {
    background: #fff;
    border-radius: 14px 14px 0 0;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #EAEAEA;
}
.t9sc-hd-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #0F172A;
    letter-spacing: -.02em;
}
.t9sc-hd-search {
    flex: 1;
    background: #F4F4F2;
    border: 1px solid #E5E5E3;
    border-radius: 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.t9sc-hd-cat {
    padding: 8px 14px;
    font-size: .82rem;
    color: #555;
    background: rgba(0,0,0,.03);
}
.t9sc-hd-sep { width: 1px; height: 20px; background: #E5E5E3; }
.t9sc-hd-input {
    flex: 1;
    padding: 8px 14px;
    font-size: .82rem;
    color: #999;
}
.t9sc-hd-search-btn {
    width: 36px; height: 36px;
    background: var(--emerald);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin: 4px;
    border-radius: 100px;
}
.t9sc-hd-search-btn svg { width: 16px; height: 16px; }
.t9sc-hd-cart {
    position: relative;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: #F4F4F2;
    color: #0F172A;
    display: flex; align-items: center; justify-content: center;
}
.t9sc-hd-cart svg { width: 18px; height: 18px; }
.t9sc-hd-cart-badge {
    position: absolute;
    top: -3px; left: -3px;
    background: var(--coral);
    color: #fff;
    width: 18px; height: 18px;
    border-radius: 50%;
    font-size: .65rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.t9sc-hd-menu {
    background: #FAFAF9;
    border: 1px solid #EAEAEA;
    border-top: 0;
    border-radius: 0 0 14px 14px;
    padding: 10px 18px;
    display: flex;
    gap: 1.5rem;
}
.t9sc-hd-link {
    font-size: .85rem;
    color: #555;
    padding: 4px 0;
    position: relative;
}
.t9sc-hd-active {
    color: var(--emerald-2);
    font-weight: 600;
}
.t9sc-hd-active::after {
    content: "";
    position: absolute;
    bottom: -10px; right: 0; left: 0;
    height: 2px;
    background: var(--emerald);
    border-radius: 2px;
}
.t9sc-hd-flag {
    margin-top: 1.5rem;
    text-align: center;
    font-size: .82rem;
    color: var(--emerald-2);
    background: rgba(16,185,129,.07);
    border: 1px dashed rgba(16,185,129,.3);
    border-radius: 10px;
    padding: .6rem;
}

/* =================================================================
   SECTION 3: PRODUCTS GRID DEMO
   ================================================================= */
.t9sc-cols-row {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    background: rgba(15,23,42,.03);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.t9sc-cols-row > div { flex: 1; }
.t9sc-cols-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--emerald-2);
    letter-spacing: -.02em;
}
.t9sc-cols-lbl { font-size: .8rem; color: var(--text-3); }

.t9sc-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 2;
}
.t9sc-prod {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    text-align: center;
    color: #1A1A1A;
    border: 1px solid #EAEAEA;
    transition: transform .3s var(--ease);
}
.t9sc-prod:hover { transform: translateY(-4px); }
.t9sc-prod-img {
    aspect-ratio: 1;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
}
.t9sc-prod-sale {
    position: absolute;
    top: 8px; left: 8px;
    background: var(--coral);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}
.t9sc-prod-cat { font-size: .72rem; color: #888; margin-bottom: 4px; }
.t9sc-prod-name { font-size: .88rem; font-weight: 600; color: #0F172A; margin-bottom: 4px; }
.t9sc-prod-stars { font-size: .8rem; color: var(--gold); margin-bottom: 4px; }
.t9sc-prod-price { font-size: .85rem; color: var(--emerald-d); font-weight: 700; margin-bottom: 8px; }
.t9sc-prod-price s { color: #BBB; font-weight: 400; margin-left: 4px; font-size: .75rem; }
.t9sc-prod-btn {
    width: 100%;
    background: #0F172A;
    color: #fff;
    padding: 7px 0;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 500;
    transition: background .2s;
}
.t9sc-prod-btn:hover { background: var(--emerald-d); }

/* =================================================================
   SECTION 4: CATEGORIES DEMO
   ================================================================= */
.t9sc-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    position: relative;
    z-index: 2;
}
.t9sc-cat {
    aspect-ratio: 1.4;
    border-radius: 18px;
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: transform .3s var(--ease);
}
.t9sc-cat:hover { transform: translateY(-4px); }
.t9sc-cat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 60%);
}
.t9sc-cat-1 { background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%); }
.t9sc-cat-2 { background: linear-gradient(135deg, #831843 0%, #EC4899 100%); }
.t9sc-cat-3 { background: linear-gradient(135deg, #4C1D95 0%, #A78BFA 100%); }
.t9sc-cat-4 { background: linear-gradient(135deg, #14532D 0%, #22C55E 100%); }
.t9sc-cat-icon {
    font-size: 2rem;
    margin-bottom: auto;
    position: relative; z-index: 2;
}
.t9sc-cat-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 4px;
    position: relative; z-index: 2;
}
.t9sc-cat-count {
    font-size: .82rem;
    opacity: .85;
    position: relative; z-index: 2;
}

/* =================================================================
   SECTION 5: PRODUCT PAGE DEMO
   ================================================================= */
.t9sc-toggle-demo {
    background: rgba(15,23,42,.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.t9sc-toggle-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}
.t9sc-toggle-lbl {
    font-size: .85rem;
    color: var(--text-3);
    min-width: 95px;
}
.t9sc-toggle-opt {
    padding: .35rem .75rem;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .82rem;
    color: var(--text-2);
    cursor: pointer;
    transition: all .2s;
}
.t9sc-toggle-active {
    background: rgba(16,185,129,.12);
    border-color: var(--emerald);
    color: var(--emerald-2);
}
.t9sc-slider-demo {
    flex: 1;
    height: 6px;
    background: rgba(15,23,42,.07);
    border-radius: 100px;
    position: relative;
    min-width: 120px;
}
.t9sc-slider-fill {
    position: absolute;
    inset: 0 0 0 auto;
    width: 45%;
    background: linear-gradient(90deg, var(--emerald-d), var(--emerald));
    border-radius: 100px;
}
.t9sc-slider-thumb {
    position: absolute;
    top: 50%;
    right: 45%;
    transform: translate(50%, -50%);
    width: 18px; height: 18px;
    background: var(--emerald);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16,185,129,.2), 0 2px 6px rgba(15,23,42,.15);
}
.t9sc-slider-val {
    font-family: var(--font-mono);
    font-size: .85rem;
    color: var(--emerald-2);
    min-width: 40px;
    text-align: left;
}

.t9sc-prodpage {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 1rem;
    background: #fff;
    color: #0F172A;
    border-radius: 14px;
    padding: 14px;
    position: relative;
    z-index: 2;
}
.t9sc-prodpage-gallery { display: flex; flex-direction: column; gap: 8px; }
.t9sc-prodpage-main {
    aspect-ratio: 1;
    border-radius: 10px;
}
.t9sc-prodpage-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.t9sc-prodpage-thumb {
    aspect-ratio: 1;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
}
.t9sc-thumb-active { border-color: var(--emerald); }
.t9sc-prodpage-info { padding: 6px 4px; }
.t9sc-prodpage-cat { font-size: .72rem; color: #888; margin-bottom: 4px; }
.t9sc-prodpage-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #0F172A;
    margin-bottom: 6px;
}
.t9sc-prodpage-stars { font-size: .82rem; color: var(--gold); margin-bottom: 8px; }
.t9sc-prodpage-stars span { color: #888; font-size: .75rem; }
.t9sc-prodpage-price { font-size: 1.1rem; color: var(--emerald-d); font-weight: 700; margin-bottom: 8px; }
.t9sc-prodpage-price s { color: #BBB; font-weight: 400; margin-left: 6px; font-size: .9rem; }
.t9sc-prodpage-desc { font-size: .82rem; color: #555; line-height: 1.6; margin-bottom: 12px; }
.t9sc-prodpage-btn {
    width: 100%;
    background: var(--emerald);
    color: #fff;
    padding: 10px 0;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16,185,129,.3);
}

/* =================================================================
   SECTION 6: FOOTER DEMO
   ================================================================= */
.t9sc-foot-demo {
    background: linear-gradient(180deg, #FAFAF7, #F4F4ED);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    color: var(--text);
    position: relative;
    z-index: 2;
}
.t9sc-foot-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.t9sc-foot-demo-h {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: .5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}
.t9sc-foot-demo-l {
    font-size: .82rem;
    color: var(--text-3);
    padding: 3px 0;
    transition: color .2s;
}
.t9sc-foot-demo-l:hover { color: var(--emerald-2); cursor: pointer; }
.t9sc-foot-demo-phone {
    font-size: .82rem;
    color: var(--emerald-2);
    display: flex;
    align-items: center;
    gap: .5rem;
}
.t9sc-foot-demo-phone svg { width: 14px; height: 14px; }
.t9sc-foot-demo-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    text-align: center;
    font-size: .78rem;
    color: var(--text-4);
}

/* =================================================================
   SECTION 7: SOCIAL GRID
   ================================================================= */
.t9sc-soc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
    z-index: 2;
}
.t9sc-soc-card {
    aspect-ratio: 1;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: #fff;
    transition: transform .25s var(--ease);
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.t9sc-soc-card:hover { transform: translateY(-4px) scale(1.03); cursor: pointer; }
.t9sc-soc-card span {
    font-size: .72rem;
    font-weight: 500;
    opacity: .9;
}
.t9sc-soc-fb { background: linear-gradient(135deg, #1877F2, #0866FF); }
.t9sc-soc-ig { background: linear-gradient(135deg, #F58529, #DD2A7B 50%, #8134AF 100%); }
.t9sc-soc-tt { background: linear-gradient(135deg, #25F4EE, #FE2C55 50%, #000 100%); }
.t9sc-soc-x  { background: linear-gradient(135deg, #1A1A1A, #000); }
.t9sc-soc-yt { background: linear-gradient(135deg, #FF0000, #C4302B); }
.t9sc-soc-tg { background: linear-gradient(135deg, #2AABEE, #229ED9); }
.t9sc-soc-sc { background: linear-gradient(135deg, #FFFC00, #FFD700); color: #000; }

/* =================================================================
   SECTION 8: MINI FEATURES GRID
   ================================================================= */
.t9sc-mini-feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.t9sc-mini-feat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15,23,42,.04);
}
.t9sc-mini-feat:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15,23,42,.08);
}
.t9sc-mini-feat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.t9sc-mini-feat-icon svg { width: 22px; height: 22px; }
.t9sc-mfi-green {
    background: rgba(34,197,94,.12);
    color: #22C55E;
    border: 1px solid rgba(34,197,94,.25);
}
.t9sc-mfi-orange {
    background: rgba(251,146,60,.12);
    color: var(--coral);
    border: 1px solid rgba(251,146,60,.25);
}
.t9sc-mfi-blue {
    background: rgba(59,130,246,.12);
    color: #3B82F6;
    border: 1px solid rgba(59,130,246,.25);
}
.t9sc-mfi-pink {
    background: rgba(236,72,153,.12);
    color: #EC4899;
    border: 1px solid rgba(236,72,153,.25);
}
.t9sc-mini-feat h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0 .5rem;
    color: var(--text);
}
.t9sc-mini-feat p {
    font-size: .9rem;
    color: var(--text-3);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

/* WhatsApp pulse demo */
.t9sc-wa-demo {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 20px rgba(37,211,102,.3);
}
.t9sc-wa-demo svg { width: 28px; height: 28px; }
.t9sc-wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: t9sc-wa-pulse 2s ease-out infinite;
}
@keyframes t9sc-wa-pulse {
    0% { transform: scale(1); opacity: .7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Back-to-top demo */
.t9sc-totop-demo {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--coral);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(251,146,60,.35);
    animation: t9sc-totop-bounce 2s ease-in-out infinite;
}
.t9sc-totop-demo svg { width: 22px; height: 22px; }
@keyframes t9sc-totop-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Speed gauge */
.t9sc-speed-demo {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.t9sc-speed-bar {
    flex: 1;
    height: 8px;
    background: rgba(15,23,42,.07);
    border-radius: 100px;
    overflow: hidden;
}
.t9sc-speed-fill {
    width: 97%;
    height: 100%;
    background: linear-gradient(90deg, #22C55E, #3B82F6);
    border-radius: 100px;
    animation: t9sc-fill 1.5s var(--ease);
}
@keyframes t9sc-fill {
    from { width: 0; }
}
.t9sc-speed-demo span {
    font-family: var(--font-mono);
    font-size: .85rem;
    color: #3B82F6;
    font-weight: 600;
    min-width: 50px;
    text-align: left;
}

/* Mobile/tablet/desktop devices */
.t9sc-mob-demo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 50px;
}
.t9sc-mob-phone, .t9sc-mob-tab, .t9sc-mob-desk {
    background: linear-gradient(180deg, #EC4899, #BE185D);
    border-radius: 4px;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(15,23,42,.1);
}
.t9sc-mob-phone { width: 14px; height: 28px; }
.t9sc-mob-tab   { width: 22px; height: 36px; }
.t9sc-mob-desk  { width: 50px; height: 44px; }

/* =================================================================
   SECTION 9: COLOR PICKER
   ================================================================= */
.t9sc-picker {
    background: #fff;
    border: 1px solid var(--border-2);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(15,23,42,.06), inset 0 1px 0 rgba(255,255,255,.8);
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin: 0 auto;
}
.t9sc-picker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.t9sc-picker-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
}
.t9sc-picker-tag {
    font-size: .7rem;
    color: var(--text-3);
    background: rgba(15,23,42,.05);
    padding: 3px 8px;
    border-radius: 100px;
}

/* The big saturation/value square */
.t9sc-picker-canvas {
    width: 100%;
    aspect-ratio: 1.6;
    border-radius: 12px;
    background:
        linear-gradient(0deg, #000, transparent),
        linear-gradient(90deg, #fff, transparent),
        var(--emerald);
    position: relative;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.t9sc-picker-cursor {
    position: absolute;
    top: 25%;
    right: 28%;
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,.25), 0 2px 4px rgba(0,0,0,.3);
    background: transparent;
    transform: translate(50%, -50%);
}

/* Hue slider */
.t9sc-picker-hue {
    height: 12px;
    border-radius: 100px;
    background: linear-gradient(90deg,
        #ff0000 0%, #ffff00 17%, #00ff00 33%,
        #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
    margin-bottom: 14px;
    position: relative;
    border: 1px solid var(--border);
}
.t9sc-picker-hue::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 64%;
    width: 14px; height: 18px;
    border-radius: 4px;
    background: #fff;
    border: 2px solid var(--text);
    transform: translate(50%, -50%);
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

.t9sc-picker-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}
.t9sc-picker-swatch {
    width: 38px; height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border-2);
    flex: 0 0 auto;
}
.t9sc-picker-current {
    background: var(--emerald);
    box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--emerald);
}
.t9sc-picker-input {
    flex: 1;
    background: rgba(15,23,42,.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    direction: ltr;
}
.t9sc-picker-hash {
    color: var(--text-4);
    font-weight: 400;
}
.t9sc-picker-hex {
    color: var(--text);
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .04em;
}

.t9sc-picker-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.t9sc-preset {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--c, var(--emerald));
    border: 1px solid rgba(15,23,42,.1);
    cursor: pointer;
    transition: transform .15s var(--ease);
}
.t9sc-preset:hover { transform: scale(1.12); }
.t9sc-preset-plus {
    background: rgba(15,23,42,.04) !important;
    color: var(--text-3);
    border: 1px dashed var(--border-2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}


/* =================================================================
   SECTION 11: CUSTOMIZER MOCKUP
   ================================================================= */
.t9sc-cust-mock {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(15,23,42,.1),
        0 8px 16px rgba(15,23,42,.05),
        inset 0 1px 0 rgba(255,255,255,.6);
    direction: rtl;
}

.t9sc-cust-sidebar {
    background: #F8F9FB;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.t9sc-cust-head {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .75rem;
}
.t9sc-cust-back {
    width: 28px; height: 28px;
    border-radius: 6px;
    background: rgba(15,23,42,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    font-size: 1rem;
}
.t9sc-cust-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

.t9sc-cust-list {
    flex: 1;
    padding: .5rem;
    overflow: auto;
}
.t9sc-cust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem .85rem;
    border-radius: 10px;
    color: var(--text-2);
    font-size: .92rem;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: 2px;
}
.t9sc-cust-item:hover {
    background: rgba(15,23,42,.04);
    color: var(--text);
}
.t9sc-cust-active {
    background: rgba(16,185,129,.08) !important;
    color: var(--emerald-2) !important;
    border: 1px solid rgba(16,185,129,.25);
}
.t9sc-cust-emoji { font-size: 1.05rem; }
.t9sc-cust-arrow {
    margin-right: auto;
    color: var(--text-4);
    font-size: 1.2rem;
}

.t9sc-cust-publish {
    margin: 1rem;
    padding: .85rem;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-d));
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(16,185,129,.3);
}

.t9sc-cust-preview {
    background: linear-gradient(180deg, #F4F4ED, #E8E8E0);
    display: flex;
    flex-direction: column;
}
.t9sc-cust-preview-bar {
    padding: .85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: .5rem;
}
.t9sc-cust-device {
    width: 36px; height: 32px;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all .2s;
}
.t9sc-cust-device:hover {
    background: rgba(255,255,255,.9);
}
.t9sc-cust-device-active {
    background: rgba(16,185,129,.12) !important;
    border-color: rgba(16,185,129,.3) !important;
}

.t9sc-cust-preview-screen {
    flex: 1;
    margin: 1.25rem;
    background: #FAFAF9;
    border-radius: 12px;
    overflow: hidden;
    color: #0F172A;
    position: relative;
    box-shadow: 0 20px 40px rgba(15,23,42,.1);
}
.t9sc-cust-preview-ann {
    background: #0F172A;
    color: #fff;
    padding: 7px;
    text-align: center;
    font-size: .72rem;
    font-weight: 500;
}
.t9sc-cust-preview-hd {
    background: #fff;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #EAEAEA;
}
.t9sc-cust-preview-hd > span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: #0F172A;
    letter-spacing: -.02em;
}
.t9sc-cust-preview-icons {
    display: flex;
    gap: .65rem;
    color: #555;
}
.t9sc-cust-preview-icons svg { width: 18px; height: 18px; }
.t9sc-cust-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px;
}
.t9sc-cust-preview-card {
    aspect-ratio: 1;
    border-radius: 10px;
}
.t9sc-cust-preview-live {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(16,185,129,.95);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    animation: t9sc-blink 1.5s var(--ease) infinite;
}
@keyframes t9sc-blink {
    50% { opacity: .65; }
}

/* =================================================================
   SECTION 13: TECH SPECS
   ================================================================= */
.t9sc-specs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 4rem;
}
.t9sc-spec-card {
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all .25s var(--ease);
    box-shadow: 0 2px 8px rgba(15,23,42,.04);
}
.t9sc-spec-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-2);
    box-shadow: 0 12px 24px rgba(15,23,42,.08);
}
.t9sc-spec-logo {
    width: 48px; height: 48px;
    margin: 0 auto .75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    letter-spacing: -.02em;
}
.t9sc-spec-wp   { background: linear-gradient(135deg, #21759B, #185573); }
.t9sc-spec-wc   { background: linear-gradient(135deg, #96588A, #7C5A8A); }
.t9sc-spec-php  { background: linear-gradient(135deg, #777BB4, #4F549A); }
.t9sc-spec-rtl  { background: linear-gradient(135deg, var(--coral), #C2410C); }
.t9sc-spec-resp { background: linear-gradient(135deg, #3B82F6, #1D4ED8); font-size: 1.5rem; }
.t9sc-spec-trans { background: linear-gradient(135deg, var(--emerald), var(--emerald-d)); font-size: 1.5rem; }
.t9sc-spec-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .92rem;
    color: var(--text);
    margin-bottom: 4px;
}
.t9sc-spec-ver {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--emerald-2);
}

/* =================================================================
   FOOTER (the showcase site's actual footer)
   ================================================================= */
.t9sc-footer {
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

.t9sc-cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF, #F8F8F3);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
    margin-bottom: 5rem;
    box-shadow: 0 30px 60px rgba(15,23,42,.06);
}
.t9sc-cta-grain {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 50% 0%, rgba(16,185,129,.12), transparent 60%),
        radial-gradient(600px 300px at 100% 100%, rgba(249,115,22,.08), transparent 60%);
    pointer-events: none;
}
.t9sc-cta-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin: 0 0 1rem;
    position: relative; z-index: 2;
}
.t9sc-cta-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 580px;
    margin: 0 auto 2rem;
    position: relative; z-index: 2;
}
.t9sc-cta-buttons {
    display: flex;
    gap: .85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative; z-index: 2;
}
.t9sc-cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    justify-content: center;
    position: relative; z-index: 2;
}
.t9sc-cta-points li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: var(--text-2);
}
.t9sc-cta-points li svg {
    width: 16px; height: 16px;
    color: var(--emerald);
    background: rgba(16,185,129,.15);
    padding: 2px;
    border-radius: 50%;
}

.t9sc-foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}
.t9sc-foot-brand .t9sc-logo { margin-bottom: 1rem; }
.t9sc-foot-desc {
    font-size: .92rem;
    color: var(--text-3);
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
}
.t9sc-foot-col h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    margin: 0 0 1rem;
}
.t9sc-foot-col a {
    display: block;
    font-size: .9rem;
    color: var(--text-3);
    padding: .35rem 0;
    transition: color .2s;
    text-decoration: none;
}
.t9sc-foot-col a:hover { color: var(--emerald-2); }

/* wp_nav_menu output for footer columns: <ul class="t9sc-foot-list"><li><a></a></li></ul> */
.t9sc-foot-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.t9sc-foot-list li {
    margin: 0;
    padding: 0;
}
.t9sc-foot-list a {
    display: block;
    font-size: .9rem;
    color: var(--text-3);
    padding: .35rem 0;
    transition: color .2s;
    text-decoration: none;
}
.t9sc-foot-list a:hover { color: var(--emerald-2); }
.t9sc-foot-list .current-menu-item > a,
.t9sc-foot-list .current_page_item > a {
    color: var(--emerald-2);
    font-weight: 500;
}

.t9sc-foot-social {
    display: flex;
    gap: .65rem;
}
.t9sc-foot-social a {
    width: 36px; height: 36px;
    background: rgba(15,23,42,.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    transition: all .25s var(--ease);
    padding: 0;
}
.t9sc-foot-social a:hover {
    background: rgba(16,185,129,.1);
    border-color: rgba(16,185,129,.3);
    color: var(--emerald-2);
    transform: translateY(-2px);
}

.t9sc-foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.t9sc-foot-bottom p {
    margin: 0;
    font-size: .85rem;
    color: var(--text-4);
}
.t9sc-heart { color: #EF4444; }

.t9sc-totop {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--emerald);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16,185,129,.4);
    z-index: 50;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all .3s var(--ease);
}
.t9sc-totop.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.t9sc-totop:hover {
    transform: translateY(-4px);
    background: var(--emerald-d);
}
.t9sc-totop svg { width: 20px; height: 20px; }

/* =================================================================
   GENERIC PAGE/POST/404 STYLES
   ================================================================= */
.t9sc-page-inner {
    max-width: var(--container-narrow);
    padding-top: 40px;
    padding-bottom: 40px;
}
.t9sc-page-article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(15,23,42,.04);
}
.t9sc-page-content {
    color: var(--text-2);
    font-size: 1.02rem;
    line-height: 1.8;
}
.t9sc-page-content a { color: var(--emerald-2); border-bottom: 1px dashed rgba(16,185,129,.4); }
.t9sc-page-content h2, .t9sc-page-content h3 {
    font-family: var(--font-display);
    color: var(--text);
    margin-top: 2rem;
}
.t9sc-page-content p { margin: 1rem 0; }
.t9sc-page-content blockquote {
    border-right: 3px solid var(--emerald);
    padding-right: 1rem;
    margin: 1.5rem 0;
    color: var(--text-3);
    font-style: italic;
}
.t9sc-page-content code {
    background: rgba(15,23,42,.05);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: .9em;
    color: var(--coral);
}

.t9sc-post-meta {
    font-size: .85rem;
    color: var(--text-4);
    margin-bottom: .75rem;
}
.t9sc-post-thumb {
    border-radius: 14px;
    overflow: hidden;
    margin: 1.5rem 0;
}
.t9sc-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.t9sc-post-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all .25s var(--ease);
}
.t9sc-post-card:hover {
    border-color: var(--border-2);
    transform: translateY(-3px);
}
.t9sc-post-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 .5rem;
}
.t9sc-post-title a { color: var(--text); }
.t9sc-post-title a:hover { color: var(--emerald-2); }
.t9sc-post-excerpt {
    font-size: .92rem;
    color: var(--text-3);
    line-height: 1.6;
}

.t9sc-404 { text-align: center; padding-top: 60px; padding-bottom: 60px; }
.t9sc-404-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 9rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--emerald), var(--coral));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -.05em;
}
.t9sc-404 .t9sc-btn { margin-top: 2rem; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
    .t9sc-feat {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .t9sc-feat-reverse { direction: rtl; }
    .t9sc-cust-mock { grid-template-columns: 1fr; }
    .t9sc-cust-sidebar { border-left: 0; border-bottom: 1px solid var(--border); }
    .t9sc-foot-grid { grid-template-columns: 1fr 1fr; }
    .t9sc-mini-feats { grid-template-columns: repeat(2, 1fr); }
    .t9sc-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .t9sc-stat:nth-child(2) { border-left: 0; }
    .t9sc-specs-grid { grid-template-columns: repeat(3, 1fr); }
    .t9sc-soc-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 760px) {
    .t9sc-nav { display: none; }
    .t9sc-burger { display: flex; }
    .t9sc-header-cta .t9sc-btn-ghost { display: none; }
    .t9sc-prod-grid { grid-template-columns: repeat(2, 1fr); }
    .t9sc-prod-grid > .t9sc-prod:nth-child(3) { display: none; }
    .t9sc-cat-grid { grid-template-columns: 1fr 1fr; }
    .t9sc-soc-grid { grid-template-columns: repeat(3, 1fr); }
    .t9sc-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .t9sc-stat { border-left: 0; padding: 1rem 0; }
    .t9sc-prodpage { grid-template-columns: 1fr; }
    .t9sc-foot-grid { grid-template-columns: 1fr; gap: 2rem; text-align: right; }
    .t9sc-page-article { padding: 1.5rem; }
    .t9sc-section { padding: 50px 0; }
    .t9sc-picker { max-width: 100%; }

    /* MOBILE PERFORMANCE: kill GPU-heavy effects on small screens */
    .t9sc-grain { display: none; }
    .t9sc-orb { display: none; }
    .t9sc-grid-bg { display: none; }
    .t9sc-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(250,250,245,.96); }
    .t9sc-mobile-nav { backdrop-filter: none; -webkit-backdrop-filter: none; }
    /* Reduce expensive shadows */
    .t9sc-feat-visual { box-shadow: 0 8px 20px rgba(15,23,42,.06); }
    .t9sc-cust-mock { box-shadow: 0 8px 20px rgba(15,23,42,.08); }
    .t9sc-cta-card { box-shadow: 0 8px 20px rgba(15,23,42,.05); }
}

@media (max-width: 480px) {
    :root { --radius-xl: 20px; --radius-lg: 16px; }
    .t9sc-mini-feats { grid-template-columns: 1fr; }
    .t9sc-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .t9sc-cat-grid { grid-template-columns: 1fr; }
    .t9sc-cta-points { flex-direction: column; gap: .85rem; align-items: center; }
    .t9sc-feat-num { font-size: 3rem; }
    .t9sc-totop { width: 42px; height: 42px; bottom: 16px; left: 16px; }
    .t9sc-cust-list { padding: .25rem; }
    .t9sc-feat-visual { padding: 1.25rem; }
    .t9sc-404-num { font-size: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* On mobile, kill infinite animations (CPU/battery saver) */
@media (max-width: 760px) {
    .t9sc-orb-1, .t9sc-orb-2,
    .t9sc-eyebrow-dot,
    .t9sc-wa-pulse,
    .t9sc-totop-demo,
    .t9sc-cust-preview-live {
        animation: none !important;
    }
    /* Reduce motion of fade-in too on mobile - skip the transform GPU work */
    .t9sc-fade-up { animation: none; opacity: 1; transform: none; }
    .t9sc-reveal { opacity: 1; transform: none; transition: none; }
}

/* =================================================================
   JUDE-STYLE LANDING SECTIONS
   ================================================================= */

/* Hero — 2-column layout */
.t9sc-hero {
    position: relative;
    overflow: hidden;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}
.t9sc-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: right;
    position: relative;
    z-index: 2;
}
.t9sc-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.t9sc-hero-text > .t9sc-eyebrow {
    align-self: flex-start;
}
.t9sc-hero-title {
    margin: 0;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 800;
}
.t9sc-hero-title .t9sc-grad-text {
    display: inline-block;
}
.t9sc-hero-sub {
    margin: 0;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 540px;
}
.t9sc-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: .25rem;
}
.t9sc-hero-stats {
    display: flex;
    gap: 2.25rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.t9sc-hero-stat-num {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: .35rem;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-d) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.t9sc-hero-stat-lbl {
    font-size: .85rem;
    color: var(--text-2);
    line-height: 1.4;
}

/* Hero animated dashboard mockup — completely redone */
.t9sc-hero-visual {
    position: relative;
    height: 480px;
}
.t9sc-mock-dashboard {
    position: relative;
    width: 100%;
    height: 100%;
}
.t9sc-mock-card {
    position: absolute;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 18px;
    padding: 1.25rem 1.4rem;
    box-shadow: 0 12px 40px rgba(15,23,42,.1);
    animation: floatY 6s ease-in-out infinite;
}
.t9sc-mock-card-1 {
    top: 0;
    right: 0;
    width: 220px;
    z-index: 3;
}
.t9sc-mock-card-2 {
    top: 130px;
    left: 0;
    right: auto;
    width: 280px;
    animation-delay: 1s;
    z-index: 2;
}
.t9sc-mock-card-3 {
    bottom: 20px;
    right: 30px;
    width: 240px;
    animation-delay: 2s;
    z-index: 1;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-d) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 12px 36px rgba(16,185,129,.4);
}
.t9sc-mock-card-3 .t9sc-mock-card-label,
.t9sc-mock-card-3 .t9sc-mock-card-value-sm {
    color: #fff;
}
.t9sc-mock-card-label {
    font-size: .8rem;
    color: var(--text-2);
    margin-bottom: .4rem;
    font-weight: 500;
}
.t9sc-mock-card-value {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.t9sc-mock-card-value-sm {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: .35rem;
}
.t9sc-mock-pulse {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    animation: pulse 1.5s infinite;
}
.t9sc-mock-spark {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 42px;
    margin-top: .85rem;
}
.t9sc-mock-bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(to top, var(--emerald), var(--emerald-2));
    border-radius: 4px;
    animation: barGrow 1.2s ease-out backwards;
}
.t9sc-mock-bar:nth-child(1) { animation-delay: 0s; }
.t9sc-mock-bar:nth-child(2) { animation-delay: .08s; }
.t9sc-mock-bar:nth-child(3) { animation-delay: .16s; }
.t9sc-mock-bar:nth-child(4) { animation-delay: .24s; }
.t9sc-mock-bar:nth-child(5) { animation-delay: .32s; }
.t9sc-mock-bar:nth-child(6) { animation-delay: .4s; }
.t9sc-mock-bar:nth-child(7) { animation-delay: .48s; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
    70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes barGrow {
    from { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    to   { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

/* Mobile hero adjustments */
@media (max-width: 900px) {
    .t9sc-hero {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }
    .t9sc-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .t9sc-hero-visual {
        order: 2;
        height: 360px;
        max-width: 420px;
        margin: 0 auto;
    }
    .t9sc-mock-card-1 {
        top: 10px;
        right: 0;
        width: 200px;
    }
    .t9sc-mock-card-2 {
        top: 140px;
        left: 0;
        width: 240px;
    }
    .t9sc-mock-card-3 {
        bottom: 0;
        right: 20px;
        width: 220px;
    }
    .t9sc-mock-card-value {
        font-size: 1.5rem;
    }
    .t9sc-hero-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }
    .t9sc-hero-stat-num {
        font-size: 1.35rem;
    }
    .t9sc-hero-stat-lbl {
        font-size: .8rem;
    }
}

/* Hero: small-mobile fix — prevent mock cards from overflowing */
@media (max-width: 480px) {
    .t9sc-hero-visual {
        height: 300px;
        max-width: 100%;
        overflow: hidden;
    }
    .t9sc-mock-dashboard {
        transform: scale(0.82);
        transform-origin: top center;
        width: 120%;
        margin-right: -10%;
    }
    .t9sc-mock-card-1 {
        top: 5px;
        right: 0;
        width: 175px;
    }
    .t9sc-mock-card-2 {
        top: 115px;
        left: 0;
        width: 210px;
    }
    .t9sc-mock-card-3 {
        bottom: 10px;
        right: 10px;
        width: 195px;
    }
    .t9sc-mock-card-value {
        font-size: 1.3rem;
    }
    .t9sc-hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .t9sc-hero-stat-num {
        font-size: 1.15rem;
    }
    .t9sc-hero-stat-lbl {
        font-size: .72rem;
    }
    .t9sc-hero-stat {
        text-align: center;
        flex: 1 1 auto;
        min-width: 80px;
    }
    .t9sc-hero-cta {
        flex-direction: column;
    }
    .t9sc-hero-cta .t9sc-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Hero: extra-small phones */
@media (max-width: 360px) {
    .t9sc-hero-visual {
        height: 260px;
    }
    .t9sc-mock-dashboard {
        transform: scale(0.72);
        width: 130%;
        margin-right: -15%;
    }
}

/* Protect section */
.t9sc-protect-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}
.t9sc-protect-mock {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 36px rgba(15,23,42,.06);
}
.t9sc-protect-mock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}
.t9sc-protect-mock-title { font-weight: 700; color: var(--text); }
.t9sc-protect-mock-tag {
    background: rgba(16,185,129,.1);
    color: var(--emerald-d);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 500;
}
.t9sc-protect-mock-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem;
    background: rgba(248,113,113,.05);
    border-right: 3px solid #f87171;
    border-radius: 8px;
    margin-bottom: .65rem;
}
.t9sc-protect-mock-status {
    background: #fee2e2;
    color: #b91c1c;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
    white-space: nowrap;
}
.t9sc-protect-mock-info { flex: 1; }
.t9sc-protect-mock-info strong {
    display: block;
    color: var(--text);
    font-size: .9rem;
}
.t9sc-protect-mock-meta {
    color: var(--text-2);
    font-size: .75rem;
    font-family: monospace;
}
.t9sc-protect-mock-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.t9sc-protect-mock-bottom span { color: var(--text-2); font-size: .85rem; }
.t9sc-protect-mock-bottom strong {
    font-size: 1.5rem;
    color: var(--emerald-d);
}
.t9sc-protect-feats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.t9sc-protect-feat {
    background: rgba(255,255,255,.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}
.t9sc-protect-feat h4 { margin: 0 0 .35rem; font-size: .95rem; color: var(--text); }
.t9sc-protect-feat p { margin: 0; font-size: .8rem; color: var(--text-2); }

@media (max-width: 760px) {
    .t9sc-protect-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .t9sc-protect-feats { grid-template-columns: 1fr; }
}

/* Trusted stores */
.t9sc-trust-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: center;
}
.t9sc-trust-item {
    background: rgba(255,255,255,.5);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all .25s var(--ease);
}
.t9sc-trust-item:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15,23,42,.06);
}
.t9sc-trust-item img {
    max-width: 100%;
    height: 40px;
    object-fit: contain;
    filter: grayscale(.4);
    transition: filter .25s;
}
.t9sc-trust-item:hover img { filter: none; }
.t9sc-trust-name {
    font-weight: 600;
    color: var(--text-2);
    font-size: .9rem;
}
@media (max-width: 1024px) { .t9sc-trust-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .t9sc-trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* Features grid (15 cards) */
.t9sc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.t9sc-feat-card {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all .25s var(--ease);
    position: relative;
}
.t9sc-feat-card:hover {
    transform: translateY(-4px);
    border-color: var(--emerald);
    box-shadow: 0 8px 28px rgba(16,185,129,.12);
}
.t9sc-feat-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(16,185,129,.08);
    color: var(--emerald-d);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 500;
}
.t9sc-feat-card-icon {
    font-size: 2rem;
    margin-bottom: .85rem;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(4,120,87,.05));
    border-radius: 14px;
}
.t9sc-feat-card-title {
    font-size: 1.05rem;
    margin: 0 0 .5rem;
    color: var(--text);
    font-weight: 600;
}
.t9sc-feat-card-desc {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 1024px) { .t9sc-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .t9sc-features-grid { grid-template-columns: 1fr; } }

/* Native integrations */
.t9sc-integ-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.t9sc-integ-card {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: all .25s var(--ease);
}
.t9sc-integ-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15,23,42,.08);
}
.t9sc-integ-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.t9sc-integ-card-1 .t9sc-integ-icon { background: #1877F2; }
.t9sc-integ-card-2 .t9sc-integ-icon { background: linear-gradient(135deg, #00f2ea, #ff0050); }
.t9sc-integ-card-3 .t9sc-integ-icon { background: #25D366; }
.t9sc-integ-card-4 .t9sc-integ-icon { background: #34A853; }
.t9sc-integ-live {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    color: var(--emerald-d);
    font-size: .75rem;
    font-weight: 500;
}
.t9sc-integ-card h4 {
    margin: 0 0 .5rem;
    font-size: 1.05rem;
    color: var(--text);
}
.t9sc-integ-card p {
    margin: 0;
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.6;
}
@media (max-width: 1024px) { .t9sc-integ-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .t9sc-integ-grid { grid-template-columns: 1fr; } }

/* Demos */
.t9sc-demos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.t9sc-demo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all .3s var(--ease);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.t9sc-demo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15,23,42,.12);
}
.t9sc-demo-img {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
    overflow: hidden;
}
.t9sc-demo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.t9sc-demo-card:hover .t9sc-demo-img img { transform: scale(1.05); }
.t9sc-demo-placeholder {
    width: 100%; height: 100%;
}
.t9sc-demo-img-1 { background: linear-gradient(135deg, #10B981, #047857); }
.t9sc-demo-img-2 { background: linear-gradient(135deg, #F97316, #EA580C); }
.t9sc-demo-img-3 { background: linear-gradient(135deg, #EC4899, #BE185D); }
.t9sc-demo-img-4 { background: linear-gradient(135deg, #1F2937, #111827); }
.t9sc-demo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--emerald);
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
}
.t9sc-demo-body { padding: 1.5rem; }
.t9sc-demo-title {
    margin: 0 0 .5rem;
    font-size: 1.2rem;
    color: var(--text);
}
.t9sc-demo-desc {
    margin: 0 0 1rem;
    font-size: .9rem;
    color: var(--text-2);
}
.t9sc-demo-link {
    color: var(--emerald);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .9rem;
}
.t9sc-demo-link svg { width: 14px; height: 14px; }
@media (max-width: 760px) { .t9sc-demos-grid { grid-template-columns: 1fr; } }

/* Pricing */
.t9sc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.t9sc-price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all .25s var(--ease);
}
.t9sc-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15,23,42,.08);
}
.t9sc-price-card-popular {
    border: 2px solid var(--emerald);
    box-shadow: 0 12px 36px rgba(16,185,129,.18);
    transform: scale(1.02);
}
.t9sc-price-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--emerald), var(--emerald-d));
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16,185,129,.3);
    white-space: nowrap;
}
.t9sc-price-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .35rem;
}
.t9sc-price-subtitle {
    font-size: .85rem;
    color: var(--text-2);
    margin-bottom: 1rem;
}
.t9sc-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-d));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.t9sc-price-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    border-top: 1px dashed var(--border);
    padding-top: 1rem;
}
.t9sc-price-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem 0;
    font-size: .85rem;
    color: var(--text-2);
}
.t9sc-price-features li svg {
    width: 16px;
    height: 16px;
    color: var(--emerald);
    flex-shrink: 0;
}
.t9sc-btn-block {
    width: 100%;
    justify-content: center;
}
@media (max-width: 1024px) { .t9sc-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  {
    .t9sc-pricing-grid { grid-template-columns: 1fr; }
    .t9sc-price-card-popular { transform: scale(1); }
}

/* Custom contact pricing card */
.t9sc-price-custom {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, var(--text) 0%, #1F2937 100%);
    color: #fff;
    border-radius: 22px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}
.t9sc-price-custom h3 { color: #fff; margin: 0 0 .5rem; }
.t9sc-price-custom p { color: rgba(255,255,255,.7); margin: 0 0 1rem; }
.t9sc-price-custom .t9sc-price-features {
    border-top-color: rgba(255,255,255,.15);
}
.t9sc-price-custom .t9sc-price-features li {
    color: rgba(255,255,255,.85);
}
.t9sc-price-custom .t9sc-price-features li svg { color: var(--emerald); }
@media (max-width: 760px) {
    .t9sc-price-custom {
        grid-template-columns: 1fr;
        text-align: right;
        padding: 1.75rem;
    }
}

/* ===== WhatsApp Button ===== */
.t9sc-btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(37,211,102,.3), inset 0 1px 0 rgba(255,255,255,.18);
    justify-content: center;
}
.t9sc-btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,.45), inset 0 1px 0 rgba(255,255,255,.2);
    color: #fff;
}
.t9sc-wa-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
