/* ROOT */
:root {
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --purple: #8b5cf6;
    --green: #4ade80;
    --bg-outer: #060b18;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(59, 130, 246, 0.06);
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(59, 130, 246, 0.4);
    --text: #f1f5f9;
    --grey: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-outer);
    background-image:
        radial-gradient(ellipse at 15% 40%, rgba(37,99,235,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 10%, rgba(139,92,246,0.08) 0%, transparent 55%);
    font-family: 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* URGENCY BANNER */
.urgency-bar {
    background: linear-gradient(90deg, #1d4ed8, #7c3aed);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.82rem;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.urgency-bar a {
    color: #fde68a;
    font-weight: 700;
    margin-left: 10px;
    text-decoration: none;
}

/* SITE WRAPPER */
.site-wrapper {
    max-width: 860px;
    margin: 20px auto 80px;
    background: rgba(10, 17, 35, 0.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(59,130,246,0.08),
        0 30px 100px rgba(0,0,0,0.8),
        0 0 120px rgba(59,130,246,0.04);
}

.container-inner { padding: 0 44px; }

/* NAVBAR */
.navbar {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    background: rgba(10,17,35,0.97);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 37px;
    z-index: 100;
}

.navbar .container-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area { display: flex; align-items: center; gap: 10px; }

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    object-fit: contain;
}

.logo-text { font-size: 1.1rem; font-weight: 800; color: #fff; }
.logo-text span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 22px; }

.nav-links a {
    color: var(--grey);
    text-decoration: none;
    font-size: 0.83rem;
    transition: 0.2s;
}

.nav-links a:hover { color: #fff; }

.btn-nav {
    color: var(--primary) !important;
    border: 1px solid rgba(59,130,246,0.35);
    padding: 7px 15px;
    border-radius: 8px;
    font-weight: 700 !important;
    background: rgba(59,130,246,0.06);
    transition: 0.3s !important;
    font-size: 0.83rem !important;
}

.btn-nav:hover {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* HERO */
.hero {
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hero .container-inner { position: relative; z-index: 1; }

.badge {
    display: inline-block;
    background: rgba(59,130,246,0.1);
    color: var(--primary);
    border: 1px solid rgba(59,130,246,0.25);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.7rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--grey);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* PLATFORM BADGES */
.platform-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.platform-badges span {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--grey);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* BUTTONS */
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 0.93rem;
    transition: 0.3s;
    box-shadow: 0 0 30px var(--primary-glow);
    font-family: inherit;
}

.btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 0 50px rgba(59,130,246,0.7);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--grey);
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: 0.3s;
    font-size: 0.93rem;
}

.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.2); }

/* STATS */
.stats-bar {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(59,130,246,0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
    text-align: center;
}

.stat-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}

.stat p {
    color: var(--grey);
    font-size: 0.75rem;
    margin-top: 5px;
}

/* SCROLLING TOOLS */
.tools-scroll {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
    overflow: hidden;
}

.label {
    font-size: 0.68rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.scroll-track {
    overflow: hidden;
    width: 100%;
    margin: 12px 0 10px;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.scroll-content {
    display: flex;
    gap: 12px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
}

.scroll-content:hover { animation-play-state: paused; }

.scroll-content span {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--grey);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    cursor: default;
}

.scroll-content span:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tools-note {
    font-size: 0.75rem;
    color: var(--grey);
    margin-top: 8px;
}

.tools-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* ABOUT */
.about {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 40px;
    align-items: center;
}

.about-image { position: relative; }

.about-image img {
    width: 175px;
    height: 175px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(59,130,246,0.25);
    display: block;
}

.about-tag {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10,17,35,0.95);
    border: 1px solid var(--border);
    color: var(--grey);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-text h2 { font-size: 1.8rem; margin: 10px 0 14px; }
.about-text p { color: var(--grey); line-height: 1.7; margin-bottom: 12px; font-size: 0.9rem; }

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
}

.about-skills span {
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.2);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* SERVICES */
.services {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
}

.service-list { display: flex; flex-direction: column; gap: 12px; }

.s-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(15px);
}

.s-item.visible { opacity: 1; transform: translateY(0); }

.s-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.s-icon {
    width: 40px;
    height: 40px;
    background: rgba(59,130,246,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s-icon i { color: var(--primary); font-size: 1rem; }

.s-item h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.s-item p { color: var(--grey); font-size: 0.85rem; line-height: 1.55; }

.s-tags {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.s-tags span {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--grey);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
}

/* PROCESS */
.process {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.process-grid {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.process-step {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(15px);
}

.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step:hover { border-color: var(--border-hover); }

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step i {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.process-step h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--grey); font-size: 0.82rem; line-height: 1.5; }

.process-arrow {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    opacity: 0.6;
}

.process-cta { margin-top: 10px; }
.process-cta .btn-primary { width: auto; }

/* CASES */
.cases {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 25px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(15px);
}

.case-card.visible { opacity: 1; transform: translateY(0); }
.case-card:hover { border-color: var(--border-hover); }

.case-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59,130,246,0.08);
    color: var(--primary);
    border: 1px solid rgba(59,130,246,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-card h3 {
    font-size: 1rem;
    margin: 14px 0 12px;
    color: #fff;
}

.case-detail { display: flex; flex-direction: column; gap: 8px; }

.case-problem, .case-solution {
    color: var(--grey);
    font-size: 0.85rem;
    line-height: 1.55;
}

.case-result {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.t-grid { display: flex; flex-direction: column; gap: 12px; }

.t-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 12px;
    padding: 22px 25px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(15px);
}

.t-card.visible { opacity: 1; transform: translateY(0); }

.stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 10px; }

.t-card p {
    color: var(--grey);
    font-size: 0.88rem;
    line-height: 1.65;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.t-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.t-author strong { font-size: 0.82rem; color: #fff; }

/* PRICING */
.pricing {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: left;
    position: relative;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(15px);
}

.price-card.visible { opacity: 1; transform: translateY(0); }

.price-card.featured {
    border-color: var(--primary);
    background: rgba(59,130,246,0.06);
    box-shadow: 0 0 30px rgba(59,130,246,0.1);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.currency { color: var(--primary); font-size: 1rem; font-weight: 700; }

.price-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.period {
    font-size: 0.8rem;
    color: var(--grey);
    font-weight: 400;
}

.price-card > p {
    color: var(--grey);
    font-size: 0.8rem;
    margin-bottom: 18px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 22px;
}

.price-card ul li {
    color: var(--grey);
    font-size: 0.82rem;
    padding: 4px 0;
}

.price-card .btn-primary,
.price-card .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
}

/* FAQ */
.faq {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    transition: 0.3s;
}

.faq-item.open { border-color: rgba(59,130,246,0.3); }

.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    transition: 0.3s;
}

.faq-q:hover { color: var(--primary); }

.faq-q i {
    color: var(--grey);
    transition: 0.3s;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
    padding: 0 20px 16px;
    color: var(--grey);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* CONTACT */
.contact { padding: 60px 0; }

.contact-sub {
    text-align: center;
    color: var(--grey);
    margin-bottom: 28px;
    font-size: 0.88rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

input, textarea, select {
    width: 100%;
    padding: 11px 14px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    font-size: 0.88rem;
    transition: 0.3s;
    font-family: inherit;
}

select option { background: #0f172a; color: #fff; }

textarea { height: 110px; resize: none; }

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

input::placeholder, textarea::placeholder { color: var(--grey); }

.form-side .btn-primary { width: 100%; margin-top: 5px; }

/* FOOTER */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 0 24px;
    background: rgba(5,10,20,0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand p { color: var(--grey); font-size: 0.8rem; line-height: 1.65; max-width: 230px; }

.footer-socials { display: flex; gap: 10px; margin-top: 4px; }

.footer-socials a {
    width: 34px;
    height: 34px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--grey);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 { color: #fff; font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; }
.footer-links a { color: var(--grey); font-size: 0.8rem; text-decoration: none; transition: 0.2s; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    color: var(--grey);
    font-size: 0.78rem;
}

/* FLOATING CTA */
.floating-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    box-shadow: 0 0 30px var(--primary-glow);
    z-index: 9999;
    transition: 0.3s;
    animation: pulse 2.5s infinite;
}

.floating-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 50px rgba(59,130,246,0.7);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--primary-glow); }
    70% { box-shadow: 0 0 0 12px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

/* MOBILE */
@media (max-width: 700px) {
    .site-wrapper { margin: 0; border-radius: 0; }
    .container-inner { padding: 0 20px; }
    .hero h1 { font-size: 2rem; letter-spacing: -1px; }
    .hero p { font-size: 0.93rem; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-image { display: flex; flex-direction: column; align-items: center; }
    .about-tag { position: static; transform: none; margin-top: 12px; }
    .about-skills { justify-content: center; }
    .process-grid { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); font-size: 1rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links a:not(.btn-nav) { display: none; }
    .platform-badges { gap: 6px; }
}

/* REVIEW SUMMARY */
.review-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 25px;
    margin-bottom: 25px;
}

.review-score { text-align: center; }

.big-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.review-score .review-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin: 4px 0;
}

.review-score p {
    color: var(--grey);
    font-size: 0.75rem;
}

.review-counts {
    display: flex;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.r-count { text-align: center; }

.r-count span {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.r-count p {
    color: var(--grey);
    font-size: 0.75rem;
}

/* SLIDER */
.t-slider { overflow: hidden; position: relative; }

.t-track {
    display: flex;
    transition: transform 0.4s ease;
}

.t-page {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* UPDATED TESTIMONIAL CARD */
.t-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: 12px;
    padding: 18px 20px;
    transition: 0.3s;
}

.t-card:hover { border-color: var(--border-hover); }

.t-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.t-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.t-top > div:nth-child(2) { flex: 1; }

.t-top strong {
    display: block;
    font-size: 0.88rem;
    color: #fff;
}

.t-country {
    font-size: 0.75rem;
    color: var(--grey);
}

.t-rating {
    font-size: 0.82rem;
    color: #fbbf24;
    font-weight: 700;
    white-space: nowrap;
}

.t-card > p {
    color: var(--grey);
    font-size: 0.85rem;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 12px;
}

.t-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.t-meta span {
    font-size: 0.72rem;
    color: var(--grey);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 10px;
}

/* CONTROLS */
.t-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.t-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--grey);
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    transition: 0.3s;
}

.t-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.t-dots { display: flex; gap: 6px; }

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.t-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
}

.t-counter {
    text-align: center;
    color: var(--grey);
    font-size: 0.78rem;
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 700px) {
    .review-summary { flex-direction: column; text-align: center; }
    .review-counts { gap: 15px; }
}