/* Google Fonts - ქართული ფონტისთვის */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #eff6ff;
    --secondary: #0f172a;
    --secondary-soft: #1e293b;
    --bg-light: #f8fafc;
    --bg-page: #f3f6fb;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-dark: #0f172a;
    --white: #ffffff;
    --border: #e2e8f0;
    --border-soft: #f1f5f9;

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 26px;

    --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.05);
    --shadow-md: 0 8px 24px rgb(15 23 42 / 0.08);
    --shadow-lg: 0 20px 55px rgb(15 23 42 / 0.12);
    --shadow-hover: 0 24px 70px rgb(15 23 42 / 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans Georgian', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.75;
    color: var(--text-main);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.logo a {
    display: inline-flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: -0.035em;
    color: var(--secondary);
    white-space: nowrap;
}

.logo span {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    list-style: none;
}

.main-nav a {
    color: var(--text-dark);
    font-size: 0.93rem;
    font-weight: 700;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--primary);
}

.header-call-btn {
    min-height: 40px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
    white-space: nowrap;
}

.header-call-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.35);
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-secondary,
.cta-link,
.tb-cta-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 0.98rem;
    line-height: 1.25;
    font-weight: 900;
    cursor: pointer;
    text-align: center;
}

.btn-primary,
.cta-link,
.tb-cta-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover,
.cta-link:hover,
.tb-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* =========================
   HOMEPAGE HERO
========================= */

.hero {
    padding: 86px 0 104px;
    background:
        radial-gradient(circle at 88% 6%, rgba(37, 99, 235, 0.13), transparent 32%),
        linear-gradient(135deg, #eff6ff 0%, #ffffff 72%);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 60px;
    align-items: center;
}

.hero h1 {
    max-width: 760px;
    color: var(--text-dark);
    font-size: clamp(2.25rem, 4.2vw, 4rem);
    line-height: 1.12;
    margin-bottom: 22px;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.hero p {
    max-width: 720px;
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 32px;
    display: grid;
    gap: 12px;
}

.hero-bullets li {
    position: relative;
    padding-left: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* =========================
   QUOTE FORM
========================= */

.hero-card {
    background: var(--white);
    border-radius: 26px;
    padding: 34px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.82);
}

.hero-card h2 {
    color: var(--text-dark);
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 8px;
    font-weight: 900;
}

.hero-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.quote-form label {
    display: block;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 7px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 13px 16px;
    border-radius: 14px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: var(--text-dark);
    font-size: 0.96rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quote-form textarea {
    resize: vertical;
    min-height: 116px;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.11);
}

/* =========================
   SECTIONS
========================= */

.section,
.section-alt {
    padding: 86px 0;
}

.section {
    background: var(--bg-light);
}

.section-alt {
    background: var(--white);
}

.section-header {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.section h2,
.section-alt h2,
.section-header h2 {
    color: var(--text-dark);
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.section-intro {
    max-width: 780px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* =========================
   GRIDS / CARDS
========================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.card {
    position: relative;
    background: var(--white);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.12);
}

.card h3 {
    color: var(--text-dark);
    font-size: 1.18rem;
    line-height: 1.42;
    margin-bottom: 12px;
    font-weight: 900;
}

.card p {
    color: var(--text-main);
    font-size: 0.98rem;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 9px;
    color: var(--text-main);
    font-size: 0.98rem;
    line-height: 1.62;
}

.card li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 900;
}

.card-highlight {
    border: 1px solid rgba(37, 99, 235, 0.22);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.service-card {
    min-height: 240px;
    padding-bottom: 66px;
}

.service-more {
    position: absolute;
    bottom: 26px;
    left: 28px;
    right: 28px;
    color: var(--primary);
    font-size: 0.93rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-more:hover {
    gap: 10px;
}

/* =========================
   TB SECTIONS / ABOUT / BLOG
========================= */

.tb-section {
    padding: 86px 0;
    background: var(--white);
}

.tb-bg-light {
    background: var(--bg-light);
}

.tb-container {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
}

.tb-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.tb-heading {
    color: var(--text-dark);
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.tb-subheading {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.tb-about-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 58px;
    align-items: center;
}

.tb-description {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.tb-feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.tb-feature-list li {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.tb-stats-card {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: var(--white);
    padding: 42px;
    border-radius: 24px;
    box-shadow: 0 22px 44px rgba(37, 99, 235, 0.28);
    text-align: center;
    overflow: hidden;
}

.tb-stats-title {
    color: var(--white);
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 900;
}

.tb-stat-item {
    margin-bottom: 24px;
}

.tb-stat-item:last-child {
    margin-bottom: 0;
}

.tb-stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 7px;
}

.tb-stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.tb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.tb-blog-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.tb-blog-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

.tb-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tb-tag {
    display: inline-flex;
    align-self: flex-start;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.tb-card-title {
    color: var(--text-dark);
    font-size: 1.17rem;
    line-height: 1.45;
    font-weight: 900;
    margin-bottom: 12px;
}

.tb-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tb-read-more {
    color: var(--primary);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tb-read-more:hover {
    gap: 10px;
}

/* =========================
   SEO ARTICLE / LANDING PAGES
========================= */

.tb-article-header {
    background:
        radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.26), transparent 34%),
        linear-gradient(135deg, #0f1f3d 0%, #172a4d 54%, #0f172a 100%);
    padding: 72px 0 112px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tb-article-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 22%),
        radial-gradient(circle at 80% 10%, rgba(37,99,235,0.16), transparent 26%);
    pointer-events: none;
}

.tb-article-header > .container {
    position: relative;
    z-index: 1;
}

.tb-breadcrumbs {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.tb-breadcrumbs a {
    color: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(255,255,255,0.28);
}

.tb-breadcrumbs a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.tb-article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.tb-article-meta span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 0.86rem;
    font-weight: 800;
}

.tb-article-title {
    max-width: 980px;
    margin: 0 auto 22px;
    color: var(--white);
    font-size: clamp(2.1rem, 4.3vw, 4.25rem);
    line-height: 1.12;
    letter-spacing: -0.058em;
    font-weight: 900;
}

.tb-article-header p {
    max-width: 920px !important;
    color: rgba(255,255,255,0.86) !important;
    font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
    line-height: 1.78 !important;
    margin: 0 auto 28px !important;
}

.tb-article-container {
    width: min(100% - 40px, 1080px);
    margin: -58px auto 84px;
    position: relative;
    z-index: 5;
}

.tb-content {
    background: var(--white);
    border-radius: 26px;
    padding: clamp(34px, 4.8vw, 68px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

.tb-content > p:first-child {
    font-size: 1.13rem;
    color: #26344a;
}

.tb-content p {
    color: var(--text-main);
    font-size: 1.06rem;
    line-height: 1.88;
    margin-bottom: 22px;
}

.tb-content strong {
    color: var(--text-dark);
    font-weight: 900;
}

.tb-content a {
    color: var(--primary);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.tb-content a:hover {
    color: var(--primary-dark);
}

.tb-content h2 {
    color: var(--text-dark);
    font-size: clamp(1.5rem, 2.2vw, 2.15rem);
    line-height: 1.28;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 54px 0 18px;
    padding-left: 18px;
    border-left: 5px solid var(--primary);
}

.tb-content h3 {
    color: var(--text-dark);
    font-size: 1.16rem;
    line-height: 1.38;
    font-weight: 900;
    margin-bottom: 14px;
}

.tb-content ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.tb-content > ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 11px;
    color: var(--text-main);
    font-size: 1.04rem;
    line-height: 1.7;
}

.tb-content > ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
}

.tb-highlight-box {
    margin: 34px 0;
    padding: 24px 28px;
    border-radius: 18px;
    background: #eff6ff;
    border-left: 5px solid var(--primary);
    color: #1e3a8a;
    font-size: 1.03rem;
    line-height: 1.78;
    font-weight: 800;
}

.tb-content .grid-3 {
    margin: 30px 0 46px;
}

.tb-content .card {
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.tb-content .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.tb-content .card ul {
    margin: 0;
}

.tb-content .card li {
    font-size: 0.96rem;
}

/* =========================
   STEPS
========================= */

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 32px 0 48px;
}

.step {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.step-number {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 16px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}

.step h3 {
    color: var(--text-dark);
    font-weight: 900;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* =========================
   FAQ
========================= */

.faq-list {
    max-width: 900px;
    margin: 26px auto 0;
    display: grid;
    gap: 14px;
}

.faq-list details {
    background: var(--white);
    border-radius: 18px;
    padding: 18px 22px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-list details[open] {
    border-color: rgba(37, 99, 235, 0.42);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.faq-list summary {
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.5;
}

.faq-list p {
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
}

/* =========================
   CTA / AUTHOR
========================= */

.section-cta {
    margin: 50px 0 36px;
    padding: 34px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 15% 15%, rgba(255,255,255,0.16), transparent 30%),
        linear-gradient(135deg, #0f1f3d, var(--primary));
    color: var(--white);
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 18px;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}

.section-cta p {
    max-width: 820px;
    color: rgba(255,255,255,0.92);
    font-size: 1.12rem;
    line-height: 1.65;
    margin: 0;
    font-weight: 700;
}

.section-cta .cta-link {
    background: var(--white);
    color: var(--primary);
    box-shadow: none;
}

.section-cta .cta-link:hover {
    background: #eff6ff;
}

.tb-author-box {
    margin-top: 36px;
    padding: 24px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    align-items: center;
    gap: 18px;
}

.tb-author-img {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.tb-author-info h4 {
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 900;
}

.tb-author-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* =========================
   LANGUAGES
========================= */

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.languages-grid ul {
    list-style: none;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
}

.languages-grid li {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.languages-grid li:hover {
    background: #f1f5f9;
}

.flag {
    font-size: 1.35rem;
}

/* =========================
   TESTIMONIALS / CONTACT
========================= */

.testimonial-card {
    text-align: center;
    padding: 38px 30px;
}

.testimonial-text {
    color: #475569;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 18px;
}

.testimonial-author {
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 54px;
    align-items: start;
}

/* =========================
   FOOTER / FLOATING
========================= */

.site-footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 42px 0;
}

.footer-inner {
    text-align: center;
}

.floating-call {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.38);
    z-index: 1000;
    border: 4px solid var(--white);
}

.floating-call:hover {
    transform: scale(1.08);
}

.tb-sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 999;
    width: min(92vw, 420px);
    min-height: 58px;
    padding: 10px 12px 10px 20px;
    border-radius: 999px;
    background: #0f172a;
    color: var(--white);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.tb-sticky-cta:hover {
    transform: translateX(-50%) translateY(-3px);
}

.tb-cta-text {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 800;
}

.tb-sticky-cta .tb-cta-btn {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 0.84rem;
    box-shadow: none;
    white-space: nowrap;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {
    .grid-3,
    .tb-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-card {
        max-width: 680px;
    }

    .tb-about-wrapper {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .tb-stats-card {
        max-width: 620px;
    }
}

@media (max-width: 920px) {
    .header-inner {
        min-height: auto;
        padding: 14px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 22px;
    }

    .logo {
        flex: 1 1 100%;
        text-align: center;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav ul {
        justify-content: flex-start;
        min-width: max-content;
        gap: 18px;
        padding: 2px 4px 7px;
    }

    .main-nav a {
        font-size: 0.88rem;
    }

    .header-call-btn {
        min-height: 38px;
        padding: 9px 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    body {
        background: var(--bg-page);
        font-size: 15px;
        line-height: 1.7;
        padding-bottom: 84px;
    }

    .container,
    .tb-container {
        width: min(100% - 28px, 100%);
    }

    .site-header {
        position: static;
        background: var(--white);
    }

    .header-inner {
        padding: 13px 0;
    }

    .logo a {
        font-size: 1.08rem;
    }

    .header-call-btn {
        width: min(100%, 280px);
    }

    .hero {
        padding: 48px 0 62px;
    }

    .hero-inner {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.18;
    }

    .hero p {
        font-size: 1rem;
        margin-inline: auto;
    }

    .hero-bullets {
        display: inline-grid;
        text-align: left;
        margin-inline: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn-primary,
    .btn-secondary,
    .cta-link {
        width: 100%;
        min-height: 48px;
    }

    .hero-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .section,
    .section-alt,
    .tb-section {
        padding: 56px 0;
    }

    .section-header,
    .tb-header-center {
        margin-bottom: 30px;
    }

    .section h2,
    .section-alt h2,
    .section-header h2,
    .tb-heading {
        font-size: 1.6rem;
    }

    .section-intro,
    .tb-subheading {
        font-size: 0.98rem;
    }

    .grid-3,
    .tb-blog-grid,
    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card,
    .step {
        padding: 20px;
        border-radius: 18px;
    }

    .service-card {
        min-height: auto;
        padding-bottom: 58px;
    }

    .service-more {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .tb-article-header {
        padding: 42px 0 76px;
    }

    .tb-breadcrumbs {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }

    .tb-article-meta {
        gap: 8px;
        margin-bottom: 16px;
    }

    .tb-article-meta span {
        min-height: 28px;
        padding: 5px 10px;
        font-size: 0.76rem;
    }

    .tb-article-title {
        font-size: 1.82rem;
        line-height: 1.2;
        letter-spacing: -0.045em;
        margin-bottom: 18px;
    }

    .tb-article-header p {
        font-size: 0.98rem !important;
        line-height: 1.72 !important;
    }

    .tb-article-header .hero-cta {
        gap: 10px;
    }

    .tb-article-container {
        width: min(100% - 24px, 100%);
        margin: -42px auto 54px;
    }

    .tb-content {
        padding: 24px 18px;
        border-radius: 20px;
        box-shadow: 0 16px 44px rgba(15, 23, 42, 0.11);
    }

    .tb-content > p:first-child,
    .tb-content p {
        font-size: 0.99rem;
        line-height: 1.82;
        margin-bottom: 18px;
    }

    .tb-content h2 {
        margin: 40px 0 16px;
        padding-left: 14px;
        border-left-width: 4px;
        font-size: 1.34rem;
        line-height: 1.32;
    }

    .tb-content h3 {
        font-size: 1.06rem;
    }

    .tb-content > ul li {
        font-size: 0.98rem;
        line-height: 1.66;
    }

    .tb-highlight-box {
        margin: 26px 0;
        padding: 18px;
        border-radius: 16px;
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .tb-content .grid-3 {
        margin: 24px 0 36px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-list details {
        padding: 16px 18px;
        border-radius: 16px;
    }

    .faq-list summary {
        font-size: 0.96rem;
    }

    .section-cta {
        margin: 38px 0 28px;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .section-cta p {
        font-size: 0.98rem;
    }

    .tb-author-box {
        align-items: flex-start;
        gap: 14px;
        padding: 18px;
        border-radius: 18px;
    }

    .tb-author-img {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .tb-author-info p {
        font-size: 0.9rem;
    }

    .floating-call {
        display: none;
    }

    .tb-sticky-cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: none;
        width: auto;
        max-width: none;
        min-height: 58px;
        border-radius: 18px;
        padding: 10px 10px 10px 14px;
    }

    .tb-sticky-cta:hover {
        transform: none;
    }

    .tb-cta-text {
        font-size: 0.84rem;
        white-space: normal;
    }

    .tb-sticky-cta .tb-cta-btn {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 9px 14px;
    }

    .site-footer {
        padding: 34px 0 92px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 430px) {
    .container,
    .tb-container {
        width: min(100% - 22px, 100%);
    }

    .main-nav ul {
        gap: 14px;
    }

    .tb-article-title {
        font-size: 1.62rem;
    }

    .tb-content {
        padding: 22px 15px;
    }

    .tb-content h2 {
        font-size: 1.2rem;
    }

    .tb-content .card li,
    .card li {
        font-size: 0.92rem;
    }

    .tb-sticky-cta {
        gap: 8px;
    }
}