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

.tbs-page *, .tbs-page *::before, .tbs-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

.tbs-page {
    font-family: 'Poppins', sans-serif;
    color: #111827;
    --green:       #1dbf73;
    --green-dark:  #17a362;
    --green-light: #e8faf2;
    --blue:        #1a56a0;
    --blue-dark:   #0f3460;
    --gold:        #f59e0b;
    --ink:         #111827;
    --ink-2:       #374151;
    --ink-3:       #6b7280;
    --ink-4:       #9ca3af;
    --surface-2:   #f8fafc;
    --surface-3:   #f1f5f9;
    --border:      #e2e8f0;
    --radius:      14px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
    --shadow-md:   0 4px 16px rgba(0,0,0,.1);
    --shadow-lg:   0 12px 40px rgba(0,0,0,.13);
    --shadow-xl:   0 20px 60px rgba(0,0,0,.16);
}

.tbs-page a { text-decoration: none; }

/* ── BUTTONS ─────────────────────────────────── */
.tbs-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
    padding: 11px 24px; border-radius: 8px; cursor: pointer;
    border: none; transition: all .22s; white-space: nowrap;
}
.tbs-btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(29,191,115,.35); }
.tbs-btn-green:hover { background: var(--green-dark); transform: translateY(-1px); color: #fff; }
.tbs-btn-outline { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.22); }
.tbs-btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ── HERO ────────────────────────────────────── */
.tbs-hero {
    padding: 80px 0 72px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    position: relative; overflow: hidden;
}
.tbs-hero::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(29,191,115,.07) 0%, transparent 70%);
    pointer-events: none;
}
.tbs-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.tbs-hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }

.tbs-eyebrow-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: #fff; border: 1px solid var(--border);
    border-radius: 999px; padding: 5px 14px 5px 8px;
    font-size: 12px; font-weight: 600; color: var(--ink-2);
    margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.tbs-pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green); flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(29,191,115,.2);
    animation: tbsPulse 2s infinite;
}
@keyframes tbsPulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(29,191,115,.2); }
    50%      { box-shadow: 0 0 0 6px rgba(29,191,115,.07); }
}
.tbs-hero h1          { font-size: clamp(28px,4vw,44px); font-weight: 800; line-height: 1.15; color: var(--ink); margin-bottom: 10px; }
.tbs-hero-subtitle    { font-size: clamp(16px,2vw,20px); font-weight: 600; color: var(--blue); margin-bottom: 18px; }
.tbs-hero-desc        { font-size: 15px; color: var(--ink-3); line-height: 1.75; max-width: 480px; margin-bottom: 32px; }

.tbs-rating-bar { display: flex; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); max-width: 440px; }
.tbs-rating-left { display: flex; align-items: center; gap: 10px; padding: 16px 20px; flex: 1; }
.tbs-gold-star   { font-size: 24px; color: var(--gold); }
.tbs-rating-label { font-size: 15px; font-weight: 700; color: var(--ink); }
.tbs-rating-div   { width: 1px; height: 54px; background: var(--border); flex-shrink: 0; }
.tbs-rating-right { padding: 0 16px; }

/* ── FIVERR CARD ──────────────────────────────── */
.tbs-fcard { background: #fff; border-radius: 20px; box-shadow: var(--shadow-xl); overflow: hidden; }
.tbs-fcard-head {
    background: linear-gradient(135deg, #1dbf73 0%, #0fa060 100%);
    padding: 20px 24px 18px; display: flex; justify-content: space-between;
    align-items: flex-start; position: relative; overflow: hidden;
}
.tbs-fcard-head::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,.1); }
.tbs-fcard-logo { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 6px; }
.tbs-fcard-logo-icon { background: #fff; color: var(--green); width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; }
.tbs-fcard-years { background: rgba(255,255,255,.2); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 6px; }
.tbs-fcard-body  { padding: 24px; }
.tbs-fcard-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.tbs-fcard-stars span { font-size: 22px; color: var(--gold); }
.tbs-fcard-score { font-size: 26px; font-weight: 800; color: var(--ink); }
.tbs-fcard-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--surface-3); }
.tbs-fcard-item:last-of-type { border-bottom: none; }
.tbs-fcard-check { width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.tbs-fcard-text  { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.tbs-fcard-cta   { margin-top: 20px; }
.tbs-fcard-cta .tbs-btn { width: 100%; justify-content: center; font-size: 15px; padding: 14px; border-radius: 10px; }

/* ── STATS ───────────────────────────────────── */
.tbs-stats { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tbs-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.tbs-stat { padding: 32px 24px; text-align: center; border-right: 1px solid var(--border); transition: background .2s; }
.tbs-stat:last-child { border-right: none; }
.tbs-stat:hover { background: #fff; }
.tbs-stat-icon  { font-size: 22px; margin-bottom: 8px; }
.tbs-stat-num   { font-size: clamp(28px,4vw,46px); font-weight: 800; line-height: 1; color: var(--blue-dark); margin-bottom: 6px; }
.tbs-stat-label { font-size: 13px; font-weight: 500; color: var(--ink-3); }

/* ── SECTION HEADER ──────────────────────────── */
.tbs-sec-header { text-align: center; margin-bottom: 48px; }
.tbs-sec-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.tbs-sec-header h2 { font-size: clamp(22px,3.5vw,36px); font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.tbs-sec-header p  { font-size: 15px; color: var(--ink-3); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ── REVIEWS ─────────────────────────────────── */
.tbs-reviews      { padding: 80px 0; }
.tbs-reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.tbs-review-card  { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: all .25s; }
.tbs-review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(29,191,115,.25); }
.tbs-rc-top      { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tbs-rc-brand    { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 900; color: #1dbf73; }
.tbs-rc-stars span { font-size: 16px; color: var(--gold); }
.tbs-rc-reviewer { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.tbs-rc-avatar   { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; }
.tbs-rc-name     { font-size: 14px; font-weight: 700; color: var(--ink); }
.tbs-rc-date     { font-size: 12px; color: var(--ink-4); margin-top: 2px; }
.tbs-rc-text     { font-size: 14px; line-height: 1.7; color: var(--ink-2); margin-bottom: 14px; }
.tbs-rc-project  { font-size: 12px; color: var(--ink-3); display: flex; align-items: center; gap: 5px; border-top: 1px solid var(--surface-3); padding-top: 12px; }
.tbs-rc-project span { font-weight: 600; color: var(--ink-2); }

/* ── TRUST BANNER ────────────────────────────── */
.tbs-trust-banner { background: linear-gradient(135deg, #0f3460 0%, #0c2a50 100%); padding: 40px 0; }
.tbs-trust-inner  { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.tbs-trust-item   { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; color: #fff; }
.tbs-t-icon       { font-size: 22px; }
.tbs-trust-sep    { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* ── TESTIMONIALS ────────────────────────────── */
.tbs-testimonials  { padding: 80px 0; background: var(--surface-2); }
.tbs-testi-wrap    { background: #fff; border-radius: 20px; border: 1px solid var(--border); padding: 36px; box-shadow: var(--shadow-md); }
.tbs-testi-title   { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 28px; display: flex; align-items: center; gap: 10px; }
.tbs-testi-title-icon { background: #dbeafe; color: #1d4ed8; padding: 7px 10px; border-radius: 8px; font-size: 18px; }
.tbs-testi-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tbs-tcard         { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: all .22s; }
.tbs-tcard:hover   { background: #fff; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tbs-tcard-top     { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tbs-tcard-avatar  { width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: #fff; box-shadow: 0 3px 10px rgba(0,0,0,.15); }
.tbs-tcard-name    { font-size: 14px; font-weight: 700; color: var(--ink); }
.tbs-tcard-location { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.tbs-tcard-stars   { display: flex; gap: 2px; margin-left: auto; }
.tbs-tcard-stars span { font-size: 14px; color: var(--gold); }
.tbs-tcard-text    { font-size: 13px; line-height: 1.7; color: var(--ink-2); margin-bottom: 14px; }
.tbs-tcard-footer  { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 12px; }
.tbs-tcard-author  { font-size: 12px; font-weight: 600; color: var(--ink); }
.tbs-tcard-platform { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #1dbf73; background: var(--green-light); padding: 4px 8px; border-radius: 6px; }

/* ── TECH & SERVICES ─────────────────────────── */
.tbs-tech        { padding: 80px 0; }
.tbs-tech-inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.tbs-col-title   { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.tbs-col-title-icon { padding: 7px 10px; border-radius: 8px; font-size: 16px; }
.tbs-chips       { display: flex; flex-wrap: wrap; gap: 10px; }
.tbs-chip        { display: flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 10px 16px; font-size: 13px; font-weight: 500; color: var(--ink); box-shadow: var(--shadow-sm); transition: all .2s; }
.tbs-chip:hover  { border-color: var(--green); box-shadow: 0 4px 14px rgba(29,191,115,.15); transform: translateY(-1px); }
.tbs-chip-icon   { font-size: 18px; }
.tbs-svc-list    { display: flex; flex-direction: column; gap: 12px; }
.tbs-svc-item    { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: flex-start; gap: 14px; box-shadow: var(--shadow-sm); transition: all .2s; }
.tbs-svc-item:hover { border-color: rgba(29,191,115,.3); box-shadow: var(--shadow-md); }
.tbs-svc-icon    { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.tbs-svc-title   { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.tbs-svc-desc    { font-size: 12px; color: var(--ink-3); line-height: 1.55; }

/* ── CTA ─────────────────────────────────────── */
.tbs-cta { padding: 80px 0; background: linear-gradient(135deg, #0f2850 0%, #0c1f3a 50%, #0a1a30 100%); position: relative; overflow: hidden; }
.tbs-cta::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(29,191,115,.12) 0%, transparent 70%); }
.tbs-cta::after  { content: ''; position: absolute; bottom: -80px; right: -80px; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.1) 0%, transparent 70%); }
.tbs-cta-inner   { text-align: center; position: relative; z-index: 1; }
.tbs-cta-logos   { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.tbs-cta-logo    { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.5); font-size: 15px; font-weight: 500; }
.tbs-cta-logo-icon { font-size: 24px; opacity: .7; }
.tbs-cta-logo-sep  { width: 1px; height: 24px; background: rgba(255,255,255,.15); }
.tbs-cta-heading { font-size: clamp(24px,4vw,42px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.tbs-cta-heading em { font-style: normal; color: var(--green); }
.tbs-cta-sub     { font-size: 16px; color: rgba(255,255,255,.55); max-width: 480px; margin: 0 auto 36px; line-height: 1.65; }
.tbs-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.tbs-cta-note    { text-align: center; margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.35); }

/* ── FADE-UP ─────────────────────────────────── */
.tbs-fade         { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.tbs-fade.tbs-visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .tbs-hero-inner { grid-template-columns: 1fr; }
    .tbs-fcard { max-width: 460px; margin: 0 auto; }
    .tbs-stats-grid { grid-template-columns: repeat(2,1fr); }
    .tbs-stat:nth-child(2) { border-right: none; }
    .tbs-stat:nth-child(3),
    .tbs-stat:nth-child(4) { border-top: 1px solid var(--border); }
    .tbs-stat:nth-child(4) { border-right: none; }
    .tbs-tech-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
    .tbs-hero { padding: 52px 0; }
    .tbs-reviews-grid { grid-template-columns: 1fr; }
    .tbs-testi-grid   { grid-template-columns: 1fr; }
    .tbs-testi-wrap   { padding: 20px 16px; }
    .tbs-trust-sep    { display: none; }
    .tbs-trust-inner  { gap: 20px; }
    .tbs-rating-bar   { flex-direction: column; }
    .tbs-rating-div   { width: 100%; height: 1px; }
    .tbs-rating-right { padding: 14px 16px; width: 100%; display: flex; justify-content: center; }
    .tbs-cta-buttons  { flex-direction: column; align-items: stretch; }
    .tbs-cta-buttons .tbs-btn { justify-content: center; }
}
@media (max-width: 480px) {
    .tbs-stats-grid { grid-template-columns: 1fr 1fr; }
    .tbs-hero h1    { font-size: 26px; }
}
