/* ============================
   RESET & BASE
============================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

/* ============================
   VARIABLES
============================ */
:root {
    --navy: #0a1628;
    --navy-90: #0f1d32;
    --navy-80: #162640;
    --blue: #2563eb;
    --blue-hover: #1d4ed8;
    --blue-light: #dbeafe;
    --blue-glow: rgba(37, 99, 235, 0.15);
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   CONTAINER
============================ */
.tt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================
   TOP BAR
============================ */
.tt-topbar {
    background: var(--navy);
    color: var(--gray-400);
    font-size: 0.8rem;
    padding: 10px 0;
    letter-spacing: 0.01em;
}

.tt-topbar .tt-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tt-topbar-contact {
    display: flex;
    gap: 24px;
}

.tt-topbar a {
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tt-topbar a:hover {
    color: var(--white);
}

/* ============================
   HEADER
============================ */
.tt-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

.tt-header .tt-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.tt-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--navy);
}

.tt-logo span {
    color: var(--blue);
}

.tt-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tt-nav-links a {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 8px;
    transition: var(--transition);
}

.tt-nav-links a:hover {
    color: var(--navy);
    background: var(--gray-50);
}

.tt-nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    padding: 10px 24px !important;
}

.tt-nav-cta:hover {
    background: var(--blue-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hamburger */
.tt-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.tt-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.tt-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tt-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.tt-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   HERO
============================ */
.tt-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

.tt-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tt-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.55) 100%);
}

.tt-hero-decor {
    display: none;
}

.tt-hero .tt-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.tt-hero-content {
    display: contents;
}

.tt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.tt-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.tt-hero h1 em {
    font-style: normal;
    color: #60a5fa;
}

.tt-hero p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--gray-400);
    margin-bottom: 40px;
    max-width: 520px;
}

.tt-hero-buttons {
    display: flex;
    gap: 16px;
}

/* Buttons */
.tt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.tt-btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.tt-btn-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.tt-btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.tt-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Hero Visual */
.tt-hero-visual {
    position: relative;
}

.tt-hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.tt-hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.tt-hero-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Floating Cards */
.tt-hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: tt-float 4s ease-in-out infinite;
}

.tt-hero-floating-card.card-1 {
    bottom: -20px;
    left: -30px;
}

.tt-hero-floating-card.card-2 {
    top: 20px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes tt-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.tt-floating-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--blue-light);
    color: var(--blue);
}

.tt-floating-stat-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.tt-floating-stat-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.tt-floating-stat-text span {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================
   PARTNERS BAR
============================ */
.tt-partners-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 28px 0;
}

.tt-partners-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.tt-partners-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tt-partner-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    opacity: 0.5;
    transition: var(--transition);
}

.tt-partner-logo:hover {
    opacity: 1;
    color: var(--navy);
}

/* ============================
   SECTION SHARED
============================ */
.tt-section {
    padding: 100px 0;
}

.tt-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.tt-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.tt-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.tt-section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================
   SERVICES
============================ */
.tt-services {
    background: var(--gray-50);
}

.tt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tt-service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.tt-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.tt-service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tt-service-card-body {
    padding: 28px;
}

.tt-service-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.tt-service-card-body p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tt-service-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tt-service-link:hover {
    gap: 10px;
}

/* ============================
   STATS
============================ */
.tt-stats {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tt-stats::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
    pointer-events: none;
}

.tt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.tt-stat-item {
    text-align: center;
}

.tt-stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 8px;
}

.tt-stat-number span {
    color: #60a5fa;
}

.tt-stat-label {
    font-size: 0.92rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ============================
   ABOUT
============================ */
.tt-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tt-about-image {
    position: relative;
}

.tt-about-image img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.tt-about-image::after {
    content: '';
    position: absolute;
    inset: 16px -16px -16px 16px;
    border: 2px solid var(--blue);
    border-radius: var(--radius);
    opacity: 0.2;
    z-index: -1;
}

.tt-about-content .tt-section-label {
    text-align: left;
}

.tt-about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    line-height: 1.15;
}

.tt-about-content>p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 36px;
    line-height: 1.75;
}

.tt-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tt-about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.tt-about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tt-about-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
}

.tt-about-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.tt-about-feature-text p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.55;
}

/* ============================
   CTA
============================ */
.tt-cta-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.tt-cta-card {
    background: linear-gradient(135deg, var(--navy) 0%, #162640 100%);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tt-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.12), transparent 50%);
    pointer-events: none;
}

.tt-cta-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
    position: relative;
}

.tt-cta-card p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
}

.tt-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.tt-cta-buttons .tt-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* ============================
   FOOTER
============================ */
.tt-footer {
    background: var(--navy);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.tt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-footer-brand .tt-logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
}

.tt-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--gray-400);
}

.tt-footer-social {
    display: flex;
    gap: 10px;
}

.tt-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tt-footer-social a:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.tt-footer h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.tt-footer ul li {
    margin-bottom: 12px;
}

.tt-footer ul a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.tt-footer ul a:hover {
    color: var(--white);
}

.tt-footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.tt-footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.tt-footer-contact-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.tt-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* ============================
   SVG ICONS
============================ */
.tt-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    vertical-align: middle;
}

/* Joomla menu module override */
.tt-nav-links .mod-menu {
    display: contents;
}

.tt-nav-links .mod-menu__sub,
.tt-nav-links .mod-menu__separator {
    display: none;
}

/* ============================
   SCROLL REVEAL
============================ */
.tt-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.tt-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
    .tt-hero .tt-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tt-hero p {
        margin: 0 auto 40px;
    }

    .tt-hero-buttons {
        justify-content: center;
    }

    .tt-hero-visual {
        max-width: 500px;
        margin: 40px auto 0;
    }

    .tt-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }

    .tt-about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .tt-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .tt-hamburger {
        display: flex;
    }

    .tt-nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

    .tt-nav-links.open {
        display: flex;
    }

    .tt-hero h1 {
        font-size: 2.5rem;
    }

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

    .tt-section-title {
        font-size: 2rem;
    }

    .tt-services-grid {
        grid-template-columns: 1fr;
    }

    .tt-about-features {
        grid-template-columns: 1fr;
    }

    .tt-cta-card {
        padding: 48px 28px;
    }

    .tt-cta-card h2 {
        font-size: 1.75rem;
    }

    .tt-footer-grid {
        grid-template-columns: 1fr;
    }

    .tt-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tt-hero-floating-card {
        display: none;
    }

    .tt-topbar .tt-container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .tt-topbar-contact {
        gap: 16px;
    }

    .tt-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================
   BREADCRUMBS
============================ */
.tt-breadcrumbs-section {
    background: var(--gray-50);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.mod-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--gray-500);
    padding: 0;
    margin: 0;
}

.mod-breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mod-breadcrumbs li:not(:last-child)::after {
    content: '/';
    opacity: 0.3;
}

.mod-breadcrumbs a {
    color: var(--gray-600);
    font-weight: 500;
}

.mod-breadcrumbs a:hover {
    color: var(--blue);
}

/* ============================
   LAYOUT WITH SIDEBAR
============================ */
.tt-layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
}

@media (max-width: 991px) {
    .tt-layout-with-sidebar {
        grid-template-columns: 1fr;
    }
}

.tt-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tt-sidebar .mod-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.tt-sidebar .mod-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--navy);
    border-bottom: 2px solid var(--blue-light);
    padding-bottom: 12px;
}

/* ============================
   BLOG GRID
============================ */
.tt-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.tt-blog-grid-single {
    grid-template-columns: minmax(320px, 800px);
    justify-content: center;
}

.tt-blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tt-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}

.tt-blog-img-link {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.tt-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tt-blog-card:hover .tt-blog-img {
    transform: scale(1.05);
}

.tt-blog-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tt-blog-meta {
    font-size: 0.78rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.tt-blog-body h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tt-blog-body p {
    font-size: 0.92rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tt-blog-btn {
    margin-top: auto;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tt-blog-btn:hover {
    gap: 12px;
}

/* ============================
   SINGLE ARTICLE
============================ */
.tt-article-page {
    line-height: 1.8;
}

.tt-article-header {
    margin-bottom: 40px;
}

.tt-article-image {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.tt-article-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.tt-article-meta {
    display: flex;
    gap: 24px;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.tt-article-content {
    font-size: 1.1rem;
    color: var(--gray-700);
}

.tt-article-content h2 {
    margin: 48px 0 24px;
    color: var(--navy);
}

.tt-article-content p {
    margin-bottom: 24px;
}

/* ============================
   SUB-PAGE HERO
============================ */
.tt-sub-hero {
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 100px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.tt-sub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.4) 100%);
    pointer-events: none;
    z-index: 0;
}

.tt-sub-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tt-sub-hero .tt-section-label {
    color: var(--blue-light);
    margin-bottom: 20px;
}

.tt-sub-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .tt-sub-hero {
        padding: 80px 0 60px;
    }
}

/* ============================
   SINGLE ARTICLE PAGE
============================ */
.tt-article-page {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
}

.tt-article-main-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.tt-article-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.tt-article-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-200);
    gap: 20px;
    flex-wrap: wrap;
}

.tt-meta-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.tt-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.tt-meta-item svg {
    color: var(--blue);
}

.tt-author-badge {
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--navy);
    border: 1px solid var(--gray-200);
}

.tt-article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151; /* Gray-700 */
}

.tt-article-content p {
    margin-bottom: 28px;
}

.tt-article-content h2, 
.tt-article-content h3 {
    color: var(--navy);
    font-weight: 700;
    margin: 48px 0 24px;
    line-height: 1.3;
}

.tt-article-content h2 { font-size: 1.8rem; }
.tt-article-content h3 { font-size: 1.5rem; }

.tt-article-content ul, 
.tt-article-content ol {
    margin-bottom: 32px;
    padding-left: 24px;
}

.tt-article-content li {
    margin-bottom: 12px;
}

.tt-article-content blockquote {
    border-left: 4px solid var(--blue);
    background: var(--gray-100);
    padding: 32px 40px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--navy);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Pagination */
.tt-pagination {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .tt-article-meta-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tt-article-content {
        font-size: 1.1rem;
    }
    
    .tt-article-content blockquote {
        padding: 24px 28px;
    }
}

.tt-pagination {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
}