:root {
    --tj-primary: #2366f2;
    --tj-primary-dark: #1d4ed8;
    --tj-dark: #07152f;
    --tj-muted: #5f6b7a;
    --tj-border: #e8edf5;
    --tj-bg: #f6f8fc;
    --tj-card: #ffffff;
    --tj-radius: 20px;
    --tj-shadow: 0 18px 45px rgba(18, 38, 63, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #14213d;
    background: #ffffff;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

.tj-container {
    width: min(1180px, 92%);
    margin: auto;
}

/* Top Bar */
.tj-topbar {
    background: var(--tj-dark);
    color: #dbe7ff;
    font-size: 14px;
}

.tj-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
}

.tj-topbar-inner span,
.tj-topbar-inner a {
    color: #dbe7ff;
}

.tj-topbar-inner a:hover {
    color: #ffffff;
}

/* Header */
.tj-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--tj-border);
}

.tj-header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.tj-logo,
.tj-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--tj-dark);
}

.tj-logo img,
.tj-footer-logo img {
    object-fit: contain;
}

.tj-mainnav {
    margin-left: auto;
}

.tj-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tj-nav > li {
    position: relative;
}

.tj-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 650;
    color: #253858;
}

.tj-nav a:hover {
    background: #eef4ff;
    color: var(--tj-primary);
}

.tj-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    list-style: none;
    padding: 10px;
    margin: 0;
    background: #ffffff;
    border: 1px solid var(--tj-border);
    border-radius: 16px;
    box-shadow: var(--tj-shadow);
}

.has-dropdown:hover .tj-dropdown {
    display: block;
}

.tj-dropdown a {
    display: block;
    padding: 10px 12px;
}

.tj-client-btn,
.tj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 15px;
    background: var(--tj-primary);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(35, 102, 242, .22);
    transition: .2s ease;
}

.tj-client-btn:hover,
.tj-btn:hover {
    background: var(--tj-primary-dark);
    transform: translateY(-1px);
}

.tj-menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: #eef4ff;
    color: var(--tj-dark);
    border-radius: 12px;
    padding: 10px 13px;
    font-size: 22px;
    cursor: pointer;
}

/* Hero */
.tj-hero {
    background: radial-gradient(circle at 20% 20%, #dfeaff, transparent 30%), linear-gradient(135deg, #f7faff 0%, #eef4ff 100%);
    padding: 82px 0;
}

.tj-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 34px;
    align-items: center;
}

.tj-kicker {
    display: inline-flex;
    border: 1px solid #cfe0ff;
    background: #ffffff;
    color: var(--tj-primary);
    font-weight: 800;
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 16px;
}

.tj-hero h1 {
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.05;
    margin: 0 0 18px;
    color: var(--tj-dark);
}

.tj-hero p {
    font-size: 20px;
    color: var(--tj-muted);
    max-width: 720px;
}

.tj-card {
    background: var(--tj-card);
    border: 1px solid var(--tj-border);
    border-radius: var(--tj-radius);
    box-shadow: var(--tj-shadow);
    padding: 28px;
}

.tj-section {
    padding: 72px 0;
}

.tj-section h1,
.tj-section h2 {
    color: var(--tj-dark);
    line-height: 1.15;
}

.tj-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Footer */
.tj-footer {
    background: #07152f;
    color: #dce7fb;
    margin-top: 40px;
}

.tj-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 26px;
    padding: 54px 0;
}

.tj-footer h3 {
    color: #ffffff;
    margin: 0 0 16px;
}

.tj-footer p {
    color: #b8c5dc;
}

.tj-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tj-footer-links li {
    margin: 9px 0;
}

.tj-footer-links a {
    color: #c7d4ea;
}

.tj-footer-links a:hover {
    color: #ffffff;
}

.tj-footer-logo {
    color: #ffffff;
}

.tj-whatsapp {
    display: inline-block;
    margin-top: 8px;
    background: #19c37d;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
}

.tj-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .11);
    padding: 18px 0;
    color: #aebbd0;
    font-size: 14px;
}

/* Accessibility helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Header: Phone + Email / Logo + Client Area + Menu */
@media (max-width: 900px) {

    .tj-topbar {
        font-size: 12px;
        background: #07152f;
    }

    .tj-topbar-inner {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 7px 0 !important;
        white-space: nowrap;
    }

    .tj-topbar-inner span,
    .tj-topbar-inner a {
        display: inline-flex !important;
        align-items: center;
        margin: 0 !important;
        line-height: 1.2;
        color: #dbe7ff;
    }

    .tj-header-inner {
        height: 68px !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        flex-wrap: nowrap !important;
        gap: 10px;
        position: relative;
    }

    .tj-logo {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 46%;
        gap: 8px;
    }

    .tj-logo img {
        width: auto !important;
        height: 42px !important;
        max-width: 145px !important;
        object-fit: contain;
        display: block;
    }

    .tj-logo span {
        display: none;
    }

    .tj-client-btn {
        order: 2;
        margin-left: auto !important;
        margin-right: 10px !important;
        padding: 10px 15px !important;
        min-height: 42px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 900;
        white-space: nowrap;
        box-shadow: 0 10px 22px rgba(35, 102, 242, .22);
    }

    .tj-menu-toggle {
        order: 3;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        margin-left: 0 !important;
        padding: 0 !important;
        border: 0;
        border-radius: 15px;
        background: #eef4ff;
        color: #07152f;
        font-size: 25px !important;
        font-weight: 900;
        line-height: 1;
        cursor: pointer;
    }

    .tj-mainnav {
        order: 4;
        width: 100%;
        display: none;
        margin: 0 !important;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #ffffff;
        border-top: 1px solid #e8edf5;
        box-shadow: 0 18px 36px rgba(15, 23, 42, .14);
        padding: 10px 4%;
    }

    .tj-mainnav.open {
        display: block;
    }

    .tj-nav {
        display: block;
    }

    .tj-nav > li {
        position: relative;
    }

    .tj-nav a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 12px;
        border-radius: 12px;
        font-size: 15px;
    }

    .tj-dropdown {
        position: static;
        display: block;
        min-width: 100%;
        box-shadow: none;
        border: 0;
        background: #f7faff;
        margin: 4px 0 10px 10px;
        padding: 6px;
        border-radius: 14px;
    }

    .tj-hero-grid,
    .tj-grid-3,
    .tj-footer-grid {
        grid-template-columns: 1fr;
    }

    .tj-hero {
        padding: 58px 0;
    }

    .tj-hero p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {

    .tj-container {
        width: min(100% - 28px, 1180px);
    }

    .tj-topbar-inner {
        font-size: 11px;
        gap: 8px;
    }

    .tj-topbar-inner a {
        max-width: 168px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tj-header-inner {
        height: 64px !important;
        gap: 7px;
    }

    .tj-logo {
        max-width: 41%;
    }

    .tj-logo img {
        height: 38px !important;
        max-width: 128px !important;
    }

    .tj-client-btn {
        padding: 9px 13px !important;
        font-size: 12px;
        min-height: 40px;
        margin-right: 9px !important;
    }

    .tj-menu-toggle {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        font-size: 24px !important;
    }

    .tj-card {
        padding: 22px;
    }

    .tj-section {
        padding: 54px 0;
    }
}

@media (max-width: 380px) {

    .tj-topbar-inner {
        font-size: 10.5px;
    }

    .tj-topbar-inner a {
        max-width: 135px;
    }

    .tj-logo {
        max-width: 38%;
    }

    .tj-logo img {
        height: 34px !important;
        max-width: 112px !important;
    }

    .tj-client-btn {
        font-size: 11px;
        padding: 8px 10px !important;
        min-height: 38px;
        margin-right: 8px !important;
    }

    .tj-menu-toggle {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        font-size: 23px !important;
    }
}