﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: #f8fafc;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.tb-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.tb-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(248, 250, 252, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

body.admin-bar .tb-nav {
    top: 32px;
}

.tb-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 28px;
}

.tb-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.tb-logo img {
    display: block;
    width: auto;
    height: 50px;
    max-width: 270px;
    object-fit: contain;
}

.tb-desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 15px;
    color: #374151;
}

.tb-desktop-nav > a:not(.tb-nav-cta):hover,
.tb-footer a:hover {
    color: #f97316;
}

.tb-nav-cta {
    padding: 11px 17px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-weight: 700;
}

.tb-menu-toggle,
.tb-mobile-nav {
    display: none;
}

.tb-hero {
    padding: 76px 0 72px;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tb-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.tb-eyebrow {
    margin: 0 0 18px;
    color: #f97316;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tb-hero h1,
.tb-section h2 {
    margin: 0;
    color: #0f172a;
    letter-spacing: -0.055em;
}

.tb-hero h1 {
    max-width: 850px;
    font-size: clamp(46px, 7vw, 84px);
    line-height: 0.98;
}

.tb-intro {
    max-width: 740px;
    margin: 26px 0 0;
    font-size: 21px;
    line-height: 1.62;
    color: #374151;
}

.tb-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.tb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.tb-button:hover {
    transform: translateY(-1px);
}

.tb-button-primary {
    background: #f97316;
    color: #fff;
    box-shadow: 0 18px 38px rgba(249, 115, 22, 0.24);
}

.tb-button-secondary {
    background: #fff;
    color: #111827;
    border-color: rgba(17, 24, 39, 0.12);
}

.tb-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.tb-proof span {
    padding: 9px 12px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
}

.tb-device-card {
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 34px;
    background: #111827;
    padding: 22px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.tb-device-top {
    display: flex;
    gap: 8px;
    padding: 4px 0 22px;
}

.tb-device-top span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.tb-order-card {
    padding: 20px;
    border-radius: 22px;
    margin-bottom: 14px;
    background: #fff;
}

.tb-order-card strong {
    display: block;
    font-size: 20px;
    color: #0f172a;
}

.tb-order-card p {
    margin: 8px 0 0;
    color: #4b5563;
    line-height: 1.45;
}

.tb-order-card-new {
    border-left: 8px solid #f59e0b;
}

.tb-order-card-progress {
    border-left: 8px solid #8b5cf6;
}

.tb-order-card-ready {
    border-left: 8px solid #fb923c;
    margin-bottom: 0;
}

.tb-section {
    padding: 76px 0;
}

.tb-section h2 {
    max-width: 760px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.03;
}

.tb-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.tb-card-grid article,
.tb-panel {
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 28px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.tb-card-grid span {
    color: #f97316;
    font-weight: 900;
}

.tb-card-grid h3 {
    margin: 16px 0 10px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.tb-card-grid p,
.tb-panel p,
.tb-section-dark p,
.tb-contact p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
    font-size: 17px;
}

.tb-section-intro {
    max-width: 720px;
    margin: 22px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
}

.tb-showcase {
    background: #fff;
}

.tb-showcase-feature {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
    align-items: center;
    margin-top: 36px;
    padding: 24px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 30px;
    background: #f8fafc;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.tb-showcase-copy h3 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.tb-showcase-copy p:not(.tb-panel-label) {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

.tb-showcase figure {
    margin: 0;
}

.tb-showcase img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 22px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    background: #fff;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.tb-showcase-feature img {
    max-height: 390px;
}

.tb-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 24px;
}

.tb-showcase-grid article {
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 30px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.tb-showcase-grid img {
    max-height: 320px;
}

.tb-showcase-grid h3 {
    margin: 18px 8px 8px;
    color: #0f172a;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.tb-showcase-grid p {
    margin: 0 8px 8px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.65;
}

.tb-section-dark {
    background: #0f172a;
    color: #fff;
}

.tb-section-dark h2 {
    color: #fff;
}

.tb-section-dark p {
    color: #cbd5e1;
    margin-top: 24px;
}

.tb-split {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.tb-steps {
    display: grid;
    gap: 14px;
}

.tb-steps div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.tb-steps strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 999px;
    background: #fb923c;
    color: #431407;
}

.tb-steps span {
    color: #e5e7eb;
    font-weight: 700;
}

.tb-audience-section {
    background: #f8fafc;
}

.tb-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tb-panel {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tb-owner-panel {
    background: #fff;
}

.tb-panel-accent {
    background: #fff7ed;
    border-color: rgba(249, 115, 22, 0.24);
}

.tb-panel-label {
    margin: 0 0 16px !important;
    color: #f97316 !important;
    font-size: 13px !important;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tb-panel h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
}

.tb-text-link {
    display: inline-flex;
    margin-top: auto;
    padding-top: 26px;
    color: #f97316;
    font-weight: 800;
}

.tb-contact {
    background: #fff;
}

.tb-contact-heading {
    text-align: center;
}

.tb-contact-heading .tb-eyebrow,
.tb-contact-heading h2,
.tb-contact-heading p {
    margin-left: auto;
    margin-right: auto;
}

.tb-contact-heading h2 {
    max-width: 850px;
}

.tb-contact-heading > p:last-child {
    max-width: 680px;
    margin-top: 20px;
    margin-bottom: 34px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

.tb-form-notice {
    max-width: 860px;
    margin: 0 auto 24px;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 700;
    text-align: left;
}

.tb-form-notice-success {
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.tb-form-notice-error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.tb-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 24px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
    text-align: left;
}

.tb-demo-form,
.tb-contact-card {
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.tb-demo-form {
    position: relative;
    padding: 28px;
}

.tb-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tb-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tb-field-wide {
    grid-column: 1 / -1;
}

.tb-field label {
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
}

.tb-field input,
.tb-field select,
.tb-field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    font: inherit;
    padding: 13px 14px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.tb-field textarea {
    resize: vertical;
    min-height: 140px;
}

.tb-field input:focus,
.tb-field select:focus,
.tb-field textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.13);
}

.tb-form-submit {
    margin-top: 22px;
    border: 0;
    cursor: pointer;
}

.tb-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.tb-contact-card {
    padding: 28px;
    background: #fff7ed;
    border-color: rgba(249, 115, 22, 0.24);
}

.tb-contact-card h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 32px;
    letter-spacing: -0.04em;
}

.tb-contact-card > p:not(.tb-panel-label) {
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

.tb-contact-card > a {
    display: inline-flex;
    color: #f97316;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.tb-contact-points {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.tb-contact-points span {
    position: relative;
    padding-left: 22px;
    color: #374151;
    font-size: 15px;
    font-weight: 700;
}

.tb-contact-points span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: 900;
}

.tb-footer {
    padding: 64px 0 26px;
    background: #0b1120;
    color: #fff;
}

.tb-footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    padding-bottom: 46px;
}

.tb-footer-brand {
    max-width: 520px;
}

.tb-footer-brand img {
    display: block;
    width: auto;
    height: 50px;
    max-width: 270px;
    object-fit: contain;
    margin-bottom: 20px;
}

.tb-footer-brand p {
    margin: 0;
    max-width: 500px;
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
}

.tb-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 50px;
}

.tb-footer-links div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.tb-footer-links strong {
    margin-bottom: 4px;
}

.tb-footer-links a {
    color: #94a3b8;
}

.tb-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 900px) {
    .tb-desktop-nav {
        display: none;
    }

    .tb-menu-toggle {
        display: inline-flex;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid rgba(17, 24, 39, 0.12);
        border-radius: 14px;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .tb-menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #111827;
    }

    .tb-mobile-nav {
        display: block;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        background: #fff;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
        transition: max-height 220ms ease, visibility 220ms ease;
    }

    .tb-mobile-nav.is-open {
        max-height: 320px;
        visibility: visible;
    }

    .tb-mobile-nav .tb-container {
        display: flex;
        flex-direction: column;
        padding-top: 10px;
        padding-bottom: 18px;
    }

    .tb-mobile-nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(17, 24, 39, 0.08);
        font-weight: 700;
    }

    .tb-hero-grid,
    .tb-split,
    .tb-two-col,
    .tb-footer-main,
    .tb-showcase-feature,
    .tb-contact-layout {
        grid-template-columns: 1fr;
    }

    .tb-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tb-footer-main {
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .tb-container {
        width: min(100% - 28px, 1120px);
    }

    body.admin-bar .tb-nav {
        top: 46px;
    }

    .tb-nav-inner {
        min-height: 72px;
    }

    .tb-logo img {
        height: 38px;
        max-width: 205px;
    }

    .tb-hero {
        padding: 54px 0 58px;
    }

    .tb-hero h1 {
        font-size: 44px;
    }

    .tb-intro {
        font-size: 18px;
    }

    .tb-card-grid,
    .tb-showcase-grid {
        grid-template-columns: 1fr;
    }

    .tb-showcase-feature {
        padding: 18px;
        border-radius: 26px;
    }

    .tb-section {
        padding: 62px 0;
    }

    .tb-panel {
        min-height: auto;
    }

    .tb-form-grid {
        grid-template-columns: 1fr;
    }

    .tb-field-wide {
        grid-column: auto;
    }

    .tb-demo-form,
    .tb-contact-card {
        padding: 20px;
        border-radius: 24px;
    }

    .tb-text-link {
        margin-top: 24px;
        padding-top: 0;
    }

    .tb-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .tb-footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}



