/*------------------------------------------------------------------
  THREAT 2026: CONTINUUM — Modernized UI Overrides
  This stylesheet is loaded ONLY on 2026 pages.
  It layers on top of the base style.css without modifying it,
  keeping past-conference pages (2025, 2023, etc.) untouched.
-------------------------------------------------------------------*/

/* ============================
   CSS CUSTOM PROPERTIES
   ============================ */
:root {
    --t26-primary: #d72515;
    --t26-primary-dark: #9e1421;
    --t26-primary-glow: rgba(215, 37, 21, 0.4);
    --t26-accent-green: #0eac55;
    --t26-accent-green-glow: rgba(14, 172, 85, 0.3);
    --t26-accent-orange: #e17a05;
    --t26-dark: #030919;
    --t26-dark-surface: #0a1128;
    --t26-grey-bg: #f4f5f7;
    --t26-card-radius: 16px;
    --t26-card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --t26-card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --t26-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --t26-font-heading: 'Poppins', sans-serif;
    --t26-font-body: 'Roboto', sans-serif;
    --t26-glass-bg: rgba(255, 255, 255, 0.06);
    --t26-glass-border: rgba(255, 255, 255, 0.12);
}

/* ============================
   GLOBAL ENHANCEMENTS
   ============================ */
.t26 body {
    font-family: var(--t26-font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.t26 {
    scroll-behavior: smooth;
}

/* ============================
   NAVBAR
   ============================ */
.t26 .navbar-area {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background-color: rgba(3, 9, 25, 0.82);
    border-bottom: 1px solid var(--t26-glass-border);
    transition: background-color var(--t26-transition), border-color var(--t26-transition);
}

.t26 .navbar-area.is-sticky {
    background-color: rgba(3, 9, 25, 0.96);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.t26 .main-nav nav .navbar-nav .nav-item a {
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color var(--t26-transition);
    position: relative;
}

.t26 .main-nav nav .navbar-nav .nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--t26-primary);
    transition: width var(--t26-transition), left var(--t26-transition);
    border-radius: 2px;
}

.t26 .main-nav nav .navbar-nav .nav-item a:hover::after,
.t26 .main-nav nav .navbar-nav .nav-item a.active::after {
    width: 60%;
    left: 20%;
}

/* ============================
   HEADER / HERO
   ============================ */
.t26 .header-bg {
    padding-top: 200px;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.t26 .header-bg-image-v1 {
    position: relative;
    background: url(../images/2026/banner/banner3.png) no-repeat center center;
    background-size: cover;
}

.t26 .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(3, 9, 25, 0.7) 0%,
            rgba(3, 9, 25, 0.4) 40%,
            rgba(3, 9, 25, 0.6) 70%,
            rgba(3, 9, 25, 0.9) 100%);
    z-index: 0;
    pointer-events: none;
}

.t26 .page-bg-2 {
    background-image: url(../images/2026/banner/banner5.png);
}

.t26 .header-bottom-space {
    padding-bottom: 140px;
}

/* Edition badge */
.t26 .hero-edition-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border: 1px solid var(--t26-glass-border);
    border-radius: 50px;
    background: var(--t26-glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: fadeInDown 1s ease 0.2s both;
}

.t26 .hero-edition-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--t26-accent-green);
    box-shadow: 0 0 8px var(--t26-accent-green-glow);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.t26 .header-content h1 img.logo {
    filter: drop-shadow(0 4px 30px rgba(215, 37, 21, 0.3));
    transition: filter var(--t26-transition), transform var(--t26-transition);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.t26 .header-content h1 img.logo:hover {
    filter: drop-shadow(0 8px 40px rgba(215, 37, 21, 0.5));
    transform: scale(1.03);
}

.t26 .hero-tagline code {
    font-size: 1.3em;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px var(--t26-accent-green-glow), 0 0 60px rgba(14, 172, 85, 0.15);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.t26 .hero-date {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(225, 122, 5, 0.35);
    animation: fadeInUp 0.8s ease 0.7s both;
}

.t26 .hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.9s both;
}

/* Countdown Timer */
.t26 .hero-countdown {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.t26 .countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
    padding: 12px 8px;
    background: var(--t26-glass-bg);
    border: 1px solid var(--t26-glass-border);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.t26 .countdown-number {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 12px var(--t26-primary-glow);
}

.t26 .countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.t26 .countdown-separator {
    color: var(--t26-primary);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    animation: blink-colon 1s step-end infinite;
}

@keyframes blink-colon {
    50% {
        opacity: 0.3;
    }
}

.t26 .countdown-live {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    padding: 16px 40px;
    background: var(--t26-glass-bg);
    border: 1px solid var(--t26-primary);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

/* Hero button glow */
.t26 .hero-btn-primary {
    background: linear-gradient(135deg, var(--t26-primary), #e84333) !important;
    border: none !important;
    box-shadow: 0 4px 20px var(--t26-primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

.t26 .hero-btn-primary:hover {
    box-shadow: 0 8px 35px var(--t26-primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.t26 .header-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.92;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   BUTTONS
   ============================ */
.t26 .main-btn {
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--t26-transition);
    box-shadow: 0 4px 15px rgba(215, 37, 21, 0.15);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.t26 .main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.t26 .main-btn:hover::before {
    left: 100%;
}

.t26 .main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 37, 21, 0.3);
}

.t26 .main-btn.main-btn-white {
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.t26 .main-btn.main-btn-white:hover {
    box-shadow: 0 8px 25px rgba(215, 37, 21, 0.25);
    border-color: var(--t26-primary);
    background: var(--t26-primary);
}

/* ============================
   STATS COUNTER SECTION
   ============================ */
.t26 .stats-counter-section {
    background: var(--t26-dark);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.t26 .stats-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--t26-primary), var(--t26-accent-green), transparent);
}

.t26 .stat-item {
    padding: 20px 10px;
}

.t26 .stat-number {
    font-family: 'Courier New', monospace;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    display: inline;
}

.t26 .stat-plus {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--t26-accent-green);
}

.t26 .stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 8px;
}

/* ============================
   SECTION TITLES
   ============================ */
.t26 .section-title {
    margin-bottom: 56px;
}

.t26 .section-title small {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.t26 .section-title small code {
    color: var(--t26-accent-green);
    font-weight: 600;
}

.t26 .section-title h2 {
    font-family: var(--t26-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.t26 .section-title p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.t26 .section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--t26-primary), var(--t26-accent-green));
    margin: 18px auto 0;
    border-radius: 3px;
}

.t26 .section-title.section-title-left h2::after {
    margin-left: 0;
}

.t26 .section-title.section-title-white h2::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
}

/* ============================
   PARTNER / ASSOCIATION SECTION
   ============================ */
.t26 .partner-section {
    background-color: var(--t26-grey-bg);
    padding-top: 80px;
    padding-bottom: 80px;
}

.t26 .partner-carousel {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 10px 0;
    height: 200px;
}

.t26 .partner-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 150px;
    margin: 0 10px;
}

.t26 .partner-carousel .item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--t26-transition), filter var(--t26-transition);
    filter: grayscale(40%);
}

.t26 .partner-carousel .item img:hover {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* ============================
   CONFERENCE DETAILS (feature cards)
   ============================ */
.t26 .newsletter-section {
    position: relative;
}

.t26 .feature-card {
    border-radius: var(--t26-card-radius);
    box-shadow: var(--t26-card-shadow);
    padding: 32px;
    transition: all var(--t26-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #fff;
    overflow: hidden;
    position: relative;
}

.t26 .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--t26-primary), var(--t26-accent-green));
    opacity: 0;
    transition: opacity var(--t26-transition);
}

.t26 .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--t26-card-shadow-hover);
}

.t26 .feature-card:hover::before {
    opacity: 1;
}

.t26 .feature-card-header span {
    font-size: 20px;
    font-weight: 700;
    color: var(--t26-dark);
}

.t26 .feature-card-thumb {
    border-radius: 12px;
    width: 56px;
    height: 56px;
    font-size: 28px;
}

.t26 .feature-card-thumb.feature-card-thumb-red-dark {
    background: linear-gradient(135deg, var(--t26-primary), #ff4d3a);
    box-shadow: 0 4px 14px rgba(215, 37, 21, 0.25);
}

.t26 .feature-card-body p {
    font-size: 0.95rem;
    line-height: 1.65;
}

.t26 .feature-card-body a.redirect-link {
    color: var(--t26-primary);
    font-weight: 600;
    transition: color var(--t26-transition);
}

.t26 .feature-card-body a.redirect-link:hover {
    color: var(--t26-primary-dark);
}

/* ============================
   CO-CHAIRS & SIDEBAR CARDS
   ============================ */
.t26 .sidebar-item.card {
    border: none;
    border-radius: var(--t26-card-radius);
    box-shadow: var(--t26-card-shadow);
    transition: all var(--t26-transition);
    overflow: hidden;
}

.t26 .sidebar-item.card:hover {
    box-shadow: var(--t26-card-shadow-hover);
    transform: translateY(-4px);
}

.t26 .sidebar-item .author-info img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--t26-primary);
    box-shadow: 0 4px 12px rgba(215, 37, 21, 0.15);
}

.t26 .sidebar-item .author-info-details h3 {
    font-family: var(--t26-font-heading);
    font-weight: 700;
}

/* ============================
   EDITORIAL BOARD (job cards)
   ============================ */
.t26 .job-card {
    border-radius: var(--t26-card-radius);
    box-shadow: var(--t26-card-shadow);
    padding: 28px;
    transition: all var(--t26-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--t26-primary);
    background: #fff;
}

.t26 .job-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--t26-card-shadow-hover);
    border-left-color: var(--t26-accent-green);
}

.t26 .job-card-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--t26-font-heading);
}

.t26 .job-card-title h4 {
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #eee;
}

/* ============================
   ABOUT SECTION
   ============================ */
.t26 .about-section {
    background-color: var(--t26-grey-bg);
}

.t26 .about-section .about-item-image img {
    border-radius: var(--t26-card-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: transform var(--t26-transition);
}

.t26 .about-section .about-item-image img:hover {
    transform: scale(1.02);
}

.t26 .about-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: #444;
}

/* ============================
   THEMES / ACCORDION
   ============================ */
.t26 .accordion-item {
    border-radius: var(--t26-card-radius) !important;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow var(--t26-transition);
}

.t26 .accordion-item:hover {
    box-shadow: var(--t26-card-shadow);
}

.t26 .accordion-button {
    font-family: var(--t26-font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 28px;
    color: var(--t26-dark);
    background-color: #fff;
    transition: background-color var(--t26-transition), color var(--t26-transition);
}

.t26 .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--t26-primary), #e84333);
    color: #fff;
    box-shadow: none;
}

.t26 .accordion-button:not(.collapsed)::after {
    filter: brightness(10);
}

.t26 .accordion-button:focus {
    border-color: rgba(215, 37, 21, 0.2);
    box-shadow: 0 0 0 3px rgba(215, 37, 21, 0.1);
}

.t26 .accordion-body {
    padding: 24px 28px;
    background-color: #fafafa;
}

.t26 .accordion-body .footer-list li p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================
   AGENDA SECTION
   ============================ */
.t26 .feature-section .feature-card {
    border-left: 4px solid var(--t26-primary);
    border-radius: var(--t26-card-radius);
}

.t26 .feature-section .feature-card .theme-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--t26-transition);
}

.t26 .feature-section .feature-card .theme-item:last-child {
    border-bottom: none;
}

.t26 .feature-section .feature-card .theme-item:hover {
    background-color: rgba(215, 37, 21, 0.02);
    border-radius: 8px;
    padding-left: 10px;
}

.t26 .feature-section .feature-card .theme-item .icofont-clock-time {
    color: var(--t26-primary);
}

/* ============================
   SPEAKERS (team cards)
   ============================ */
.t26 .team-card {
    border-radius: var(--t26-card-radius);
    box-shadow: var(--t26-card-shadow);
    transition: all var(--t26-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: #fff;
}

.t26 .team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--t26-card-shadow-hover);
}

.t26 .team-card-thumb {
    border-radius: var(--t26-card-radius) var(--t26-card-radius) 0 0;
    position: relative;
    overflow: hidden;
}

.t26 .team-card-thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    pointer-events: none;
}

.t26 .team-card-content {
    padding: 20px;
}

.t26 .team-card-content h3 {
    font-family: var(--t26-font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.t26 .team-card-content h4 {
    font-size: 0.85rem;
    color: #888;
}

/* ============================
   PRICING / FEES
   ============================ */
.t26 .pricing-card {
    border-radius: var(--t26-card-radius);
    box-shadow: var(--t26-card-shadow);
    padding: 48px 40px;
    transition: all var(--t26-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    background: #fff;
}

.t26 .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--t26-primary), var(--t26-accent-orange));
}

.t26 .pricing-card:hover {
    background: linear-gradient(135deg, var(--t26-dark), var(--t26-dark-surface));
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(215, 37, 21, 0.2);
}

.t26 .pricing-card:hover h3,
.t26 .pricing-card:hover p {
    color: #fff;
}

.t26 .pricing-info h3 {
    font-family: var(--t26-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
}

/* ============================
   SPONSORS
   ============================ */
.t26 .testimonial-section .blog-card-image img {
    transition: transform var(--t26-transition), filter var(--t26-transition);
    filter: grayscale(20%) opacity(0.85);
    border-radius: 12px;
}

.t26 .testimonial-section .blog-card-image img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ============================
   CONTACT FORM
   ============================ */
.t26 .contact-form-section .form-control {
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    transition: all var(--t26-transition);
}

.t26 .contact-form-section .form-control:focus {
    border-color: var(--t26-primary);
    box-shadow: 0 0 0 4px rgba(215, 37, 21, 0.08);
    background-color: #fff;
}

.t26 .contact-form-section textarea.form-control {
    border-radius: 12px;
}

/* ============================
   VENUE SECTION
   ============================ */
.t26 .news-section .section-title h4 {
    font-size: 1.05rem;
    color: #555;
    margin-top: 8px;
}

.t26 .news-section .section-title h4 i {
    color: var(--t26-primary);
}

/* ============================
   FOOTER
   ============================ */
.t26 .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.t26 .footer .footer-upper {
    padding-top: 80px;
    padding-bottom: 60px;
}

.t26 .footer .footer-content-title h3 {
    font-family: var(--t26-font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 12px;
}

.t26 .footer .footer-content-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--t26-primary);
    border-radius: 2px;
}

.t26 .footer .footer-list li a {
    transition: all var(--t26-transition);
    position: relative;
    padding-left: 0;
}

.t26 .footer .footer-list li a:hover {
    padding-left: 6px;
    color: var(--t26-primary) !important;
}

.t26 .footer .social-list li a {
    transition: all var(--t26-transition);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.t26 .footer .social-list li a:hover {
    background: var(--t26-primary);
    border-color: var(--t26-primary);
    transform: translateY(-3px);
}



/* ============================
   PARTICLES CANVAS
   ============================ */
.t26 #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.t26 #particles-js canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* ============================
   SCROLL ANIMATIONS (subtle)
   ============================ */
.t26 [data-cue="slideInUp"] {
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ============================
   PRELOADER — uses same style as 2025
   (no overrides needed — inherits from style.css)
   ============================ */

/* ============================
   MISC UTILITY CLASSES
   ============================ */
.t26 .bg-grey {
    background-color: var(--t26-grey-bg);
}

.t26 .text-green {
    color: var(--t26-accent-green);
}

.t26 .text-orange {
    color: var(--t26-accent-orange);
}

/* Glass card utility */
.t26 .glass-card {
    background: var(--t26-glass-bg);
    border: 1px solid var(--t26-glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--t26-card-radius);
}

/* Gradient text utility */
.t26 .gradient-text {
    background: linear-gradient(135deg, var(--t26-primary), var(--t26-accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider line between sections */
.t26 .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    margin: 0;
    border: none;
}

/* ============================
   RESPONSIVE — 2026 Overrides
   ============================ */
@media only screen and (max-width: 991px) {
    .t26 .header-bg {
        padding-top: 160px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .t26 .header-bottom-space {
        padding-bottom: 80px;
    }

    .t26 .section-title h2 {
        font-size: 1.75rem;
    }

    .t26 .pricing-card {
        padding: 36px 28px;
    }

    .t26 .feature-card {
        padding: 24px;
    }

    .t26 .countdown-unit {
        min-width: 60px;
        padding: 10px 6px;
    }

    .t26 .countdown-number {
        font-size: 1.6rem;
    }

    .t26 .stat-number {
        font-size: 2.4rem;
    }
}

@media only screen and (max-width: 767px) {
    .t26 .header-bg {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .t26 .hero-date {
        font-size: 1.3rem;
    }

    .t26 .section-title h2 {
        font-size: 1.5rem;
    }

    .t26 .main-btn {
        padding: 12px 26px;
        font-size: 13px;
    }

    .t26 .accordion-button {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    .t26 .job-card {
        padding: 20px;
    }

    .t26 .countdown-unit {
        min-width: 52px;
        padding: 8px 4px;
    }

    .t26 .countdown-number {
        font-size: 1.3rem;
    }

    .t26 .countdown-separator {
        font-size: 1.3rem;
    }

    .t26 .hero-edition-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .t26 .stat-number {
        font-size: 2rem;
    }

    .t26 .stats-counter-section {
        padding: 40px 0;
    }

    .t26 .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}