*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:       #f0f4f9;
    --white:    #ffffff;
    --surface:  #f7f9fc;
    --border:   #e2e8f0;
    --border2:  #cbd5e1;
    --text:     #0f172a;
    --body:     #475569;
    --muted:    #94a3b8;
    --accent:   #0d6efd;
    --accent-d: #8ab9ff;
    --accent-l: #e6f0ff;
    --danger:   #ef4444;
    --success:  #22c55e;
    --warn:     #f59e0b;
    --font:     'Outfit', sans-serif;
    --mono:     'JetBrains Mono', monospace;
    --r:        14px;
    --sh:       0 1px 3px rgba(0,0,0,0.05), 0 6px 24px rgba(0,0,0,0.08);
    --sh-lg:    0 4px 8px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.12);
}

html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 80px; 
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
}

#navbar {
    position: sticky; top: 0; z-index: 100;
    height: 64px;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 20px;
    height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    text-decoration: none; 
    color: var(--text); 
}

.logo:hover {
    text-decoration: none;
    color: var(--text);
}

.logo-mark {
    width: 36px; 
    height: 36px; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    box-shadow: none; 
    background: transparent; 
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

.logo-name { 
    font-size: 20px; 
    font-weight: 800; 
    letter-spacing: -0.5px; 
    color: var(--text); 
    line-height: 1; 
}

.logo-name span { 
    color: var(--accent); 
}

.logo-ext {
    font-weight: 400; 
    opacity: 0.9;     
    color: #000000; 
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
    font-size: 14px; font-weight: 500; color: var(--body);
    text-decoration: none; padding: 6px 14px; border-radius: 8px;
    transition: all 0.15s;
}
.nav-links a:hover { color: var(--accent); background: var(--accent-l); }
.nav-links .cta {
    background: var(--accent); color: white !important;
    font-weight: 700; box-shadow: 0 2px 8px rgba(14,165,233,0.3);
}
.nav-links .cta:hover { background: var(--accent-d) !important; }

.mob-btn { display: none; background: transparent; border: none; font-size: 22px; color: var(--text); cursor: pointer; padding: 5px; }

@media(max-width:640px) { 
    .nav-links { 
        display: none; 
        position: absolute; top: 64px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--border);
        flex-direction: column; align-items: flex-start;
        padding: 16px 20px; gap: 10px; box-shadow: var(--sh-lg);
    }
    .nav-links.open { display: flex; } 
    .nav-links li { width: 100%; }
    .nav-links a { display: block; width: 100%; padding: 10px 14px; }
    .nav-links .cta { text-align: center; }
    .mob-btn { display: block; } 
}

#hero {
    padding: 60px 20px 36px;
    text-align: center;
}

.badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent-l); color: var(--accent-d);
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px;
    border: 1px solid rgba(14,165,233,0.25);
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 900; line-height: 1.1; letter-spacing: -1.5px;
    color: var(--text); max-width: 680px; margin: 0 auto 16px;
}

h1 em {
    font-style: normal; color: var(--accent);
    text-decoration: underline; text-decoration-color: rgba(14,165,233,0.3);
    text-underline-offset: 5px; text-decoration-thickness: 3px;
}

.hero-p {
    font-size: clamp(14px, 2vw, 17px); color: var(--body);
    max-width: 520px; margin: 0 auto 18px;
}

.hero-pills {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
}

.pill {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; color: var(--body);
    background: var(--white); border: 1px solid var(--border);
    padding: 4px 12px; border-radius: 100px;
}
.pill i { color: var(--success); font-size: 10px; }

#voice-recorder {
    max-width: 1280px; margin: 0 auto;
    padding: 0 16px 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px; align-items: start;
}

@media(min-width: 900px) {
    #voice-recorder { grid-template-columns: 140px 1fr 140px; }
}
@media(min-width: 1100px) {
    #voice-recorder { grid-template-columns: 170px 1fr 170px; }
}

.ad-slot {
    border-radius: var(--r);
    visibility: hidden;
    border: 2px dashed var(--border2);
    background: var(--white);
    min-height: 300px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; padding: 16px 8px; text-align: center;
    color: var(--muted); font-size: 11px; font-weight: 600;
    position: sticky; top: 82px;
}
.ad-slot i { font-size: 24px; opacity: 0.3; }
.ad-slot span { opacity: 0.5; line-height: 1.5; }
@media(max-width: 899px) { .ad-slot { display: none; } }

#card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}

.card-bar {
    height: 44px; padding: 0 18px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.s-pill { display: flex; align-items: center; gap: 7px; }

.s-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--muted); transition: background 0.3s;
}
.s-dot.idle     { background: var(--muted); }
.s-dot.ready    { background: var(--success); }
.s-dot.recording{ background: var(--danger); animation: blink 1s ease-in-out infinite; }
.s-dot.playing  { background: var(--accent); animation: blink 1.5s ease-in-out infinite; }
.s-dot.paused   { background: var(--warn); }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.s-label {
    font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--muted); transition: color 0.3s;
}

.timer {
    font-family: var(--mono); font-size: 17px; font-weight: 500;
    color: var(--text); letter-spacing: 0.8px; user-select: none;
}

.wv-area {
    position: relative; height: 185px; overflow: hidden;
    background: #f8fafc; cursor: crosshair;
}
@media(min-width: 640px) { .wv-area { height: 205px; } }

.wv-area::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 40px 40px; pointer-events: none;
}

#waveform { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

#sel-overlay {
    position: absolute; top: 0; bottom: 0;
    background: rgba(14,165,233,0.07);
    border-left: 1.5px solid var(--accent);
    border-right: 1.5px solid var(--accent);
    display: none; pointer-events: none; z-index: 3;
}
.s-badge {
    position: absolute; background: var(--accent); color: white;
    font-size: 9px; font-weight: 700; font-family: var(--mono); padding: 2px 6px;
}
.s-badge.a { top: 0; left: 0; border-radius: 0 0 4px 0; }
.s-badge.b { bottom: 0; right: 0; border-radius: 4px 0 0 0; }

#ph {
    position: absolute; top: 0; bottom: 0; width: 1.5px;
    background: var(--danger); z-index: 10; pointer-events: none;
    display: none; box-shadow: 0 0 6px rgba(239,68,68,0.4);
}
#ph::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    border-left: 5px solid transparent; border-right: 5px solid transparent;
    border-top: 7px solid var(--danger);
}

#tcs { position: absolute; bottom: 0; left: 0; right: 0; height: 18px; pointer-events: none; z-index: 2; }
.tc { position: absolute; font-family: var(--mono); font-size: 9px; color: var(--muted); transform: translateX(-50%); user-select: none; }

#empty {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 10px;
    pointer-events: none; z-index: 2;
}
.e-wrap { position: relative; width: 68px; height: 68px; display: flex; align-items: center; justify-content: center; }
.e-ring {
    position: absolute; border-radius: 50%; border: 1.5px solid rgba(14,165,233,0.2);
    animation: eRing 2.5s ease-out infinite;
}
.e-ring:nth-child(1) { width: 38px; height: 38px; animation-delay: 0s; }
.e-ring:nth-child(2) { width: 56px; height: 56px; animation-delay: 0.55s; }
.e-ring:nth-child(3) { width: 74px; height: 74px; animation-delay: 1.1s; }
@keyframes eRing { 0%{opacity:0.7;transform:scale(0.85)} 100%{opacity:0;transform:scale(1.1)} }
.e-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--accent-l); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; position: relative; z-index: 2;
}
#empty p { font-size: 13px; font-weight: 600; color: var(--muted); }
#empty small { font-size: 11px; color: var(--border2); font-family: var(--mono); }

#toolbar {
    border-top: 1px solid var(--border);
    background: var(--surface);
    height: 48px;
    display: flex; align-items: center; padding: 0 8px; gap: 2px;
    overflow-x: auto; scrollbar-width: none;
    transition: opacity 0.25s;
}
#toolbar::-webkit-scrollbar { display: none; }
#toolbar.off { opacity: 0.3; pointer-events: none; }

.tb { display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 8px; border: none; background: transparent; color: var(--muted); font-family: var(--font); font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.15s; }
.tb i { font-size: 12px; }
.tb:hover:not(:disabled) { background: var(--accent-l); color: var(--accent-d); }
.tb.on { background: var(--accent-l); color: var(--accent-d); }
.tb:disabled { opacity: 0.35; pointer-events: none; }

.tb-div { width: 1px; height: 20px; background: var(--border); margin: 0 4px; flex-shrink: 0; }

#sp {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 16px 18px;
    display: none;
    animation: spIn 0.2s ease;
}
@keyframes spIn { from{opacity:0;transform:translateY(5px)} to{opacity:1;transform:translateY(0)} }

.sp-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sp-t { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); }
.sp-x { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--border2); background: transparent; color: var(--muted); cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.sp-x:hover { background: var(--white); color: var(--text); }

.fade-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fade-o {
    padding: 11px; border-radius: 10px; border: 1.5px solid var(--border);
    background: var(--white); color: var(--body); font-family: var(--font);
    font-size: 13px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.15s;
}
.fade-o:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-l); }

.vc-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.vc-row::-webkit-scrollbar { display: none; }

.vc {
    flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 5px;
    padding: 9px 10px; border-radius: 12px; border: 1.5px solid var(--border);
    background: var(--white); cursor: pointer; min-width: 68px;
    transition: all 0.15s;
}
.vc:hover { border-color: var(--accent); background: var(--accent-l); }
.vc.on { border-color: var(--accent); background: var(--accent-l); }
.vc.on .vc-ico { transform: scale(1.1); }

.vc-ico { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: transform 0.15s; }
.vc-lbl { font-size: 10px; font-weight: 600; color: var(--muted); text-align: center; line-height: 1.2; }
.vc.on .vc-lbl { color: var(--accent-d); }

.dn-box {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--white);
}
.dn-box strong { font-size: 13px; font-weight: 700; display: block; }
.dn-box span { font-size: 11px; color: var(--muted); font-family: var(--mono); }
.apply {
    padding: 8px 18px; border-radius: 8px; border: none;
    background: var(--accent); color: white; font-family: var(--font); font-size: 12px; font-weight: 700;
    cursor: pointer; transition: all 0.15s; letter-spacing: 0.3px;
}
.apply:hover { background: var(--accent-d); box-shadow: 0 3px 12px rgba(14,165,233,0.3); }

.kbd-row {
    display: none; gap: 14px; flex-wrap: wrap; padding: 8px 18px;
    border-top: 1px solid var(--border); background: var(--surface);
}
@media(min-width: 640px) { .kbd-row { display: flex; } }
.kh { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--muted); }
kbd { font-family: var(--mono); font-size: 10px; background: var(--white); border: 1px solid var(--border2); border-radius: 4px; padding: 1px 6px; box-shadow: 0 1px 0 var(--border2); color: var(--body); }

#xport {
    height: 84px; border-top: 1px solid var(--border); background: var(--white);
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 0 16px; position: relative;
}
.xp-side { position: absolute; display: flex; align-items: center; gap: 6px; }
.xp-side.l { left: 14px; }
.xp-side.r { right: 14px; }

.ic {
    width: 40px; height: 40px; border-radius: 11px;
    border: 1.5px solid var(--border); background: transparent;
    color: var(--muted); font-size: 15px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.ic:hover:not(:disabled) { color: var(--text); border-color: var(--border2); background: var(--surface); }
.ic:disabled { opacity: 0.25; pointer-events: none; }

.rec {
    width: 58px; height: 58px; border-radius: 50%; border: none;
    background: var(--danger); color: white; font-size: 21px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(239,68,68,0.28);
    transition: transform 0.15s, box-shadow 0.3s;
}
.rec:hover { transform: scale(1.05); }
.rec:active { transform: scale(0.95); }
.rec.go { animation: rPulse 1.5s ease-in-out infinite; background: #dc2626; }
.rec.hold { background: var(--warn); box-shadow: 0 4px 14px rgba(245,158,11,0.28); }
@keyframes rPulse { 0%,100%{box-shadow:0 4px 16px rgba(239,68,68,0.28)} 50%{box-shadow:0 4px 28px rgba(239,68,68,0.6)} }

.ply {
    width: 58px; height: 58px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-d));
    color: white; font-size: 21px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(14,165,233,0.28);
    transition: all 0.15s;
}
.ply:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 6px 24px rgba(14,165,233,0.4); }
.ply:active:not(:disabled) { transform: scale(0.95); }
.ply:disabled { opacity: 0.3; pointer-events: none; filter: grayscale(1); }
.ply.paused { background: var(--surface); border: 1.5px solid var(--border2); color: var(--text); box-shadow: none; }

#toasts {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column-reverse; align-items: center; gap: 8px;
    z-index: 9999; pointer-events: none;
}
.toast {
    background: var(--text); color: white;
    font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 100px;
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    animation: tIn 0.25s ease;
}
.toast.exit { animation: tOut 0.25s ease forwards; }
.toast i { font-size: 11px; }
.toast.success i { color: #86efac; }
.toast.error   i { color: #fca5a5; }
.toast.warn    i { color: #fcd34d; }
.toast.info    i { color: #7dd3fc; }
@keyframes tIn  { from{opacity:0;transform:translateY(10px) scale(0.95)} to{opacity:1;transform:translateY(0)} }
@keyframes tOut { from{opacity:1} to{opacity:0;transform:translateY(10px) scale(0.95)} }

#ldr {
    position: fixed; inset: 0;
    background: rgba(240,244,249,0.8); backdrop-filter: blur(4px);
    z-index: 9000; display: none;
    flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.spin { width: 36px; height: 36px; border: 3px solid var(--accent-l); border-top-color: var(--accent); border-radius: 50%; animation: sp 0.7s linear infinite; }
@keyframes sp { to { transform: rotate(360deg); } }
.ldr-t { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }

.sec { padding: 80px 20px; }
.sec-in { max-width: 1100px; margin: 0 auto; }
.eye { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px; }
.sec-sub { font-size: 16px; color: var(--body); max-width: 540px; line-height: 1.7; }

.feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 46px; }
.feat { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 26px 22px; transition: box-shadow 0.2s, transform 0.2s; }
.feat:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.feat-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-l); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.feat h3 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.feat p  { font-size: 13px; color: var(--body); line-height: 1.65; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 46px; }
.step { display: flex; flex-direction: column; gap: 12px; }
.step-n { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-d)); color: white; font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 15px; font-weight: 700; }
.step p { font-size: 13px; color: var(--body); line-height: 1.65; }

.faq-g { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 38px; }
.faq { padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--r); background: var(--surface); }
.faq h4 { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.faq p  { font-size: 13px; color: var(--body); line-height: 1.7; }

hr.div { border: none; border-top: 1px solid var(--border); margin: 0; }

footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 40px 20px; text-align: center; }
.ft-in { max-width: 1100px; margin: 0 auto; }
.ft-logo { font-size: 20px; font-weight: 800; color: white; margin-bottom: 10px; letter-spacing: -0.5px; }
.ft-logo span { color: var(--accent); }
footer p { font-size: 13px; }
footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
footer a:hover { color: var(--accent); }

.priv-note {
    max-width: 620px;
    margin: 24px auto 60px; 
    
    background: var(--white);
    border: 1px solid #dbeafe; 
    border-left: 4px solid var(--accent); 
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.06); 
    
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 14px;
    padding: 16px 24px;
    
    color: var(--body);
    font-size: 13px;
    line-height: 1.6;
    text-align: left; 
}

.priv-note i {
    color: var(--accent);
    font-size: 20px; 
    flex-shrink: 0;  
}

.priv-note strong {
    color: var(--text); 
    font-weight: 700;
}

@media (max-width: 640px) {
    .priv-note {
        flex-direction: column; 
        text-align: center;
        margin: 20px 16px 50px;
        gap: 10px;
    }
}

.uc-list {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    border-top: 1px solid var(--border);
}

.uc-row {
    display: grid;
    grid-template-columns: 60px 1fr 180px; 
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.uc-row:hover {
    background: rgba(255,255,255,0.5); 
}

.uc-num {
    font-family: var(--mono);
    font-size: 24px;
    font-weight: 500;
    color: var(--accent-d); 
    opacity: 0.6;
    padding-top: 4px;
}

.uc-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.uc-content p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

.uc-tag {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.tag-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--muted);
}

.tag-val {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    background: var(--accent-l);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

@media (max-width: 700px) {
    .uc-row {
        grid-template-columns: 1fr; 
        gap: 12px;
        padding: 24px 0;
    }
    .uc-num { font-size: 14px; color: var(--muted); margin-bottom: -8px; }
    .uc-tag { align-items: flex-start; text-align: left; margin-top: 6px; flex-direction: row; align-items: center; }
}

.pt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pt-item {
    padding-top: 24px;
    border-top: 4px solid var(--border); 
    transition: all 0.3s ease;
}

.pt-item:hover {
    border-top-color: var(--accent); 
    transform: translateY(-4px);
}

.pt-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 12px;
}

.pt-item h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pt-item p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.7;
    margin: 0;
}

.pt-item:nth-child(1) { border-top-color: #22c55e; } 
.pt-item:nth-child(2) { border-top-color: #f59e0b; } 
.pt-item:nth-child(3) { border-top-color: #0d6efd; }